This is KUKSA.val, the KUKSA Vehicle Abstration Layer.
KUKSA.val provides a Genivi VSS data model describing data in a vehicle. This data is provided to applications using a variant based on the W3C VISS Interface. KUKSA.val supports VISS V1 https://www.w3.org/TR/vehicle-information-service/ and extensions as well as parts of the upcomming VISS2 standard (Gen2 Core, Gen2 Transport), that are applicable to in-vehicle VSS servers.
See Supported Protocol for a detailled overview.
- Websocket interface, TLS-secured or plain
- Experimental REST interface, TLS-secured or plain
- Fine-grained authorisation based on JSON Webtokens (RFC 7519)
- Optional JSON signing of messages
- Built-in MQTT publisher
- Python viss client to interactively explore and modify the VISS data points and data structure
- Multiple example apps in different programming languages to communicate with different frameworks
- Multiple feeders to provide vehicle data for the
kuksa.val
server
If you prefer to build kuksa.val yourself skip to Building KUKSA.val.
Download a current docker image from our CI server:
https://ci.eclipse.org/kuksa/job/kuksa.val/job/master/
The container images should work with any OCI compliant container runtime, in this document we assume you are using docker
Import the docker image
docker load -i kuksa-val-b3084b9-amd64.tar.xz
Your build tag may vary, and for ARM machines you need to choose an arm64 images.
Prepare an empty directory $HOME/kuksaval.config
. Run the docker image using the tag reported by docker load
:
docker run -it --rm -v $HOME/kuksaval.config:/config -p 127.0.0.1:8090:8090 -e LOG_LEVEL=ALL amd64/kuksa-val:b3084b9
More information on using the docker images can be found here.
To learn, how to build your own docker image see doc/build-docker.md.
If this is succesful you can skip to using kuksa.val.
KUKSA.val uses the cmake build system. First install the required packages. On Ubuntu 20.04 this can be achieved by
sudo apt install cmake build-essential libssl-dev libmosquitto-dev
Note: If you use cmake >= 3.14
, you do not need to install boost on your system. cmake
will download the required boost for building. Otherwise you need install the boost==1.75
on the system.
When fetching the source, make sure you also get the needed submodules, e.g. by using the --recursive
flag
git clone --recursive https://github.com/eclipse/kuksa.val.git
Then create a build folder inside the kuksa.val folder and execute cmake
mkdir build
cd build
cmake ..
If there are any missing dependencies, cmake will tell you. If everythig works fine, execute make
make
(if you have more cores, you can speed up compilation with something like make -j8
Additional information about our cmake setup (in case you need adavanced options or intend to extend it) can be found here.
After you successfully built the kuksa.val server you can run it like this
#assuming you are inside kuksa.val/build directory
cd src
./kuksa-val-server --vss ./vss_release_2.0.json --log-level ALL
Setting log level to ALL
gives you some more information about what is going on.
You can also edit config.ini file to configure kuksa val server. This file will be copied to the build directory and used als default config,
if no other config file is specified using the command line option -c/--config-file
.
For more information check usage.
The easiest way to try kuksa.val
out, is to use the test client kuksa_viss_client
:
pip install kuksa-viss-client
kuksa_viss_client
The jwt tokens for testing can also be found under kuksa_certificates/jwt.
You can also use the provided python sdk to develop your own kuksa.val
clients. More details about kuksa_viss_client
can be found here.
Additionally, you can use the example apps and feeders to handle vehicle data, interacting with the kuksa.val
server.