updated example manifest
[profile/ivi/automotive-message-broker.git] / README
1 Automotive Message Broker is a vehicle network abstraction system.  It brokers information from the vehicle
2 to applications.  It provides application with a rich API for accessing vehicle data.
3
4 Automotive Message Broker is built using CMake and requires libltdl (libtool), libjson-c, and boost packages.  
5
6
7 About the Git Tree:
8 master is expected to be unstable and may not even compile.  If you want something more stable, checkout one of the 
9 release branches (ie, 0.9.0, 0.10, etc)
10
11
12 To build:
13
14 cd automotive-message-broker
15 mkdir build
16 cd build
17 cmake ..
18 make
19
20 To install:
21
22 sudo make install
23
24 To run:
25
26 ambd
27
28 ambd can load different plugins.  The config file specifies what plugins to use.  The default config located in
29 /etc/ambd/config.  You can change this or use your own config to have ambd use your own plugins.  For example:
30
31 # copy the config to your own config
32 cp /etc/ambd/config myconfig
33
34 # edit myconfig and specify the path to your plugin:
35 # change the line: 
36 "sources" : [ { "path" : "../plugins/examplesourceplugin.so" } ],
37 # to:
38 "sources" : [ { "path" : "/path/to/mysourceplugin.so" } ],
39
40 Now you can run ambd with:
41
42 ambd -c /path/to/myconfig
43
44 also see ambd -h
45
46
47 Running on multiple machines
48
49 ambd can run on multiple machines and share data across a network.  This is primarily done through the websocket
50 sink and source plugins.  The server machine, the machine with physical access to data, runs the 
51 websocket sink plugin and the client, the machine elsewhere on the network, runs the websocket source plugin.
52
53 There are example configurations in the source called "configwebsocketsink" and "configwebsocketsource" that
54 show how to configure ambd.  These are found in the examples folder.
55
56 Here's an example on how to run:
57
58 cd automotive-message-broker/examples
59 ambd -c configwebsocketsink
60
61 (in another terminal)
62 ambd -c configwebsocketsource
63
64
65
66 Running with other plugins
67
68 To learn about running AMB with other plugins, please see the plugins/*/README.  
69
70
71
72 Running with the Qt mainloop:
73
74 Some source and sink plugins may want to use the Qt-based mainloop to take advantage of Qt features. To enable
75 the Qt mainloop, run cmake with -Duse_qtcore=On:
76
77 cmake .. -Duse_qtcore=On
78
79 Alternatively, the Qt-based mainloop will be enabled if you enable an Qt-based
80 source or sink plugin at compile time.
81
82 You will also need to edit your config to enable the Qt-based mainloop:
83
84 {
85         "mainloop" : "/usr/lib/automotive-message-broker/qtmainloopplugin.so",
86         "sources" : [...],
87         "sinks" : [...]
88 }
89
90 NOTE: by default the glib mainloop will be used.
91
92
93
94 Questions/Issues/Comments:
95
96 Questions or Comments can be emailed to:
97 tripzero.kev@gmail.com
98
99 Issues can be submitted on our github page:
100 https://github.com/otcshare/automotive-message-broker/issues