Skip to content

profusion/vss-tools

 
 

Repository files navigation

VSS Tools

License Build Status

The overall goal of VSS Tools is to provide a set of tools that can be used to convert or verify Vehicle Signal Specifications defined by the format specified by the COVESA VSS project. VSS Tools is developed in parallel with VSS, please visit the COVESA VSS project for information on how to contribute. If any questions arise, please check out the FAQ for more information.

Available Tools

This repository contains two types of tools. Community Supported Tools are tools that are actively maintained by the VSS community. They are run as part of the Continuous Integration process for both this repository and for the COVESA VSS project repository, and pull request will normally not be merged if any of the tools fails. That assures that the tools always are compatible with the latest version of the COVESA VSS.

In addition this repository also contains contributed tools. These are tools that are not actively maintained by the VSS community. Instead they are maintained by individual contributors, or not maintained at all. Even if many of them are run as part of the continuous integration process, it is not a requirement that they must run successfully on the latest VSS version and a change in VSS may be merged even if it cause some contributed tools to fail.

Examples on tool usage can be found in the VSS Makefile and in tool-specific documentation, if existing.

Tool Description Type of Tool Documentation
vspec2x.py Parses and expands VSS into different text based output formats. Currently supports json, yaml,csv Community Supported ./vspec2x --help
vspec2csv.py Shortcut for vspec2x.py generating CSV output Community Supported -
vspec2json.py Shortcut for vspec2x.py generating JSON output Community Supported -
vspec2yaml.py Shortcut for vspec2x.py generating flattened YAML output Community Supported -
vspec2binary.py The binary toolset consists of a tool that translates the VSS YAML specification to the binary file format (see below), and two libraries that provides methods that are likely to be needed by a server that manages the VSS tree, one written in C, and one in Go Community Supported Documentation
vspec2franca.py Parses and expands a VSS and generates a Franca IDL specification Community Supported -
test_contants.py Tool used for internal testing Community Supported -
test_vsstree.py Tool used for internal testing Community Supported -
vspec2c.py The vspec2c tooling allows a vehicle signal specification to be translated from its source YAML file to native C code that has the entire specification encoded in it. Contrib (Obsolete, no longer functional) Documentation
vspec2ocf.py Parses and expands a VSS and generates a OCF specification Contrib (Obsolete, no longer functional) -
vspec2proto.py Parses and expands a VSS and generates a Protobuf specification Contrib (Beta) -
vspec2ttl.py Parses and expands a VSS and generates a TTL specification Contrib -
vspec2graphql.py Parses and expands a VSS and generates a GraphQL specification Contrib -

Tool Architecture

All current tools are based on common Python functionality in the vspec folder to read, parse and expand a Vehicle Signal Specification files(*.vspec files). As an example, if the standard VSS root file is given as input then the Python tooling will read all included files, do a validation of the content, expand any instances used and create an in-memory representation which then can be used by specialized tools to generate the wanted output.

Getting started

Prerequisites

  • Python 3.8.12 installed
  • If the installation (pip install) is executed behind a (corporate) proxy, the following environments variables must be set: http_proxy and https_proxy (including authentication e.g., http://${proxy_username):$(proxy_password)@yourproxy.yourdomain)
  • If you do not run with administration rights, you may need to configure pip target path to write to your user home directory or consider using the pipenv method.
On Unix and Mac OS X the configuration file is: $HOME/.pip/pip.conf
If the file does not exist, create an empty file with that name.

Add or replace the following lines:
[global]
target=/somedir/where/your/account/can/write/to

On Windows, the configuration file is: %HOME%\pip\pip.ini 
If the file does not exist, create an empty file with that name.

Add or replace the following lines:
[global]
target=C:\SomeDir\Where\Your\Account\Can\Write\To

Project Setup

  • Checkout vss-tools as submodule of the Vehicle Signal Specification repository (git clone --recurse-submodules -j8 https://github.com/COVESA/vehicle_signal_specification.git)
  • If you use a custom pip installation directory, set the PYTHONPATH environment variable to the directory that you set in the pip.ini file.

Setup with pipenv

pipenv is a tool that manages a virtual environment and install the package and its dependencies, making the process much simpler and predictable, since the Pipfile states the dependencies, while Pipfile.lock freezes the exact version in use.

If pyenv shell command is not installed, use its installer to get it:

curl https://pyenv.run | bash  # download and install
exec $SHELL                    # restart your shell using the new $PATH

Make sure Python version 3.8.12 is installed:

pyenv install 3.8.12  # install the versions required by Pipfile

Install this project and its dependencies in the local .venv folder in this project, then use it (pipenv shell):

export PIPENV_VENV_IN_PROJECT=1 # will create a local `.venv` in the project, otherwise uses global location
pipenv install --dev # install the development dependencies as well
pipenv shell         # starts a shell configured to use the virtual environment

Releases

No releases published

Packages

No packages published

Languages

  • Python 55.0%
  • C 28.1%
  • Go 15.8%
  • Makefile 1.1%