1 | Please see the latest Installation instructions on http://ariba-underlay.org/
|
---|
2 | here: http://ariba-underlay.org/trac/spovnet-base/wiki/BaseInstall
|
---|
3 |
|
---|
4 | Please see also http://spovnet.de/ for further information
|
---|
5 | about Ariba and its application.
|
---|
6 |
|
---|
7 |
|
---|
8 | Prerequisites
|
---|
9 | =============
|
---|
10 | ariba depends on libraries that may not be installed on your system:
|
---|
11 |
|
---|
12 | * Boost (version >=1.42)
|
---|
13 | * GMP
|
---|
14 | * CMake (version >=2.8)
|
---|
15 |
|
---|
16 | and optionally on
|
---|
17 |
|
---|
18 | * Log4Cxx (version >= 0.10.0) for more sophisticated logging
|
---|
19 | * Avahi for more efficient bootstrapping in local networks
|
---|
20 | * LibBluetooth/Bluez for bluetooth support
|
---|
21 | * Doxygen to build the documentation
|
---|
22 |
|
---|
23 | Furthermore, you need default development tools - that are most likely already
|
---|
24 | installed on your system - such as gcc/g++, libtool, liblt-dev ...
|
---|
25 |
|
---|
26 |
|
---|
27 | Quick Install (If all dependencies are satisfied)
|
---|
28 | =============
|
---|
29 |
|
---|
30 | ariba currently builds on Linux systems. Our reference platform is Ubuntu 8.04
|
---|
31 | with the g++ compiler version 4.1. However, latest Ubuntu releases should work
|
---|
32 | too.
|
---|
33 |
|
---|
34 | Download the latest ariba package from the the download site
|
---|
35 | http://ariba-underlay.org/downloads or get the latest trunk code:
|
---|
36 | > svn co https://svn.tm.kit.edu/SpoVNet-KA/entwicklung/ariba/trunk ariba-trunk
|
---|
37 |
|
---|
38 | If you downloaded ariba from the website extract the archive and change into the
|
---|
39 | project directory:
|
---|
40 | > tar xfz ./ariba-x.x.x.tar.gz
|
---|
41 | > cd ariba-x.x.x
|
---|
42 |
|
---|
43 | For SVN checkout you have to:
|
---|
44 | > cd ariba-trunk
|
---|
45 |
|
---|
46 | Now create a directory to build ariba in:
|
---|
47 | > mkdir build
|
---|
48 | > cd build
|
---|
49 |
|
---|
50 | Next the makefiles have to be generated and the source compiled:
|
---|
51 | > cmake ..
|
---|
52 | > make
|
---|
53 |
|
---|
54 | HINT: you may use
|
---|
55 | > make -j 2
|
---|
56 | for a double processor/core system to speed up the compilation,
|
---|
57 | make -j 4 if you have quad-core respectively, and so on. If
|
---|
58 | the compilation stops, try make without the -j option again.
|
---|
59 |
|
---|
60 | And finally ariba will be installed into the system:
|
---|
61 | > make install
|
---|
62 |
|
---|
63 |
|
---|
64 | Custom Build Options
|
---|
65 | ====================
|
---|
66 | The build may be customized in various ways by setting CMake options. This can
|
---|
67 | be done by giving them as arguments on the command line:
|
---|
68 | > cmake .. -DOPTION=value
|
---|
69 |
|
---|
70 | by using the CMake GUI which lets you set the variables graphically:
|
---|
71 | > cmake-gui ..
|
---|
72 |
|
---|
73 | or running cmake in interactive mode:
|
---|
74 | > cmake -i ..
|
---|
75 |
|
---|
76 | The last two ways also give an overview which options exist.
|
---|
77 |
|
---|
78 | Important options:
|
---|
79 |
|
---|
80 | CMAKE_INSTALL_PREFIX - Where to install the compiled files. The default on Unix
|
---|
81 | platforms is /usr/local/. If you for example don't want
|
---|
82 | or can't install system wide, you can specify a directory
|
---|
83 | you have control over. The files will be installed to
|
---|
84 | "${prefix}/include/", "${prefix}/lib/" and so on.
|
---|
85 |
|
---|
86 | CMAKE_BUILD_TYPE - One of "", "Release", "Debug", "RelWithDebInfo" or
|
---|
87 | "MinSizeRel". This influences the build in various ways
|
---|
88 | (e.g. which compiler optimizations are turned on, whether
|
---|
89 | debug symbols are included, what warnings to show).
|
---|
90 |
|
---|
91 | ENABLE_{AVAHI,BLUETOOTH,LOG4CXX}
|
---|
92 | - If set to OFF or 0 (ON is the default) it disables the
|
---|
93 | support of the feature even if the corresponding library
|
---|
94 | (see above) was detected to be present.
|
---|
95 |
|
---|
96 | <library>_INCLUDE_DIR - Where the directory containing the header files for
|
---|
97 | <library> is located. If the library is installed in the
|
---|
98 | usual system paths CMake should be able to automatically
|
---|
99 | find the right location. If the library is located
|
---|
100 | elsewhere (e.g. because you compiled it yourself in your
|
---|
101 | home directory) then you may need to set this variable
|
---|
102 | manually.
|
---|
103 |
|
---|
104 | <library>_LIBRARY - Where the library file (aka the .so, .a or .dll file) for
|
---|
105 | <library> is located. If the library is installed in the
|
---|
106 | usual system paths CMake should be able to automatically
|
---|
107 | find the right location. If the library is located
|
---|
108 | elsewhere (e.g. because you compiled it yourself in your
|
---|
109 | home directory) then you may need to set this variable
|
---|
110 | manually.
|
---|
111 |
|
---|
112 | DOCUMENTATION_GENERATE_GRAPHICS
|
---|
113 | - Whether the documentation should include graphics such as
|
---|
114 | inheritance and include graphs (OFF by default). This
|
---|
115 | might take a long time and consume a lot of space.
|
---|
116 |
|
---|
117 | CMAKE_{C,CXX}_COMPILER - Which C/C++ compiler to use
|
---|
118 | CMAKE_{C,CXX}_FLAGS - Which additional flags to give to the compiler (e.g. -pg
|
---|
119 | for profiling support)
|
---|
120 |
|
---|
121 |
|
---|
122 | Running the PingPong Sample
|
---|
123 | ===========================
|
---|
124 | The PingPong binary pingpong is installed in "${prefix}/lib/ariba/" or found
|
---|
125 | directly in the build tree at "sample/pingpong/pingpong". It has one parameter,
|
---|
126 | a configuration file. You can find sample configuration files in the
|
---|
127 | "etc/pingpong" folder. If no configuration file is given, the node will randomly
|
---|
128 | select its NodeID but will not find other nodes. This is because bootstrap
|
---|
129 | modules are selected in the configuration file.
|
---|
130 | > ./sample/pingpong/pingpong ../etc/pingpong/settings_node1.cnf
|
---|
131 |
|
---|
132 | If this fails to find the libariba you may have to set the LD_LIBRARY_PATH
|
---|
133 | correctly in your current terminal, or better add it to your .bashrc
|
---|
134 | > export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/user/ariba/build/source/ariba
|
---|
135 |
|
---|
136 | When running the pingpong application it will output a large number of log
|
---|
137 | messages and the initiator will wait for other nodes to join. You can start them
|
---|
138 | using the configuration files settings_node1.cnf and settings_node2.cnf. You may
|
---|
139 | need to adjust the configurations files: currently both node1 and node2 try to
|
---|
140 | join the initiator on the local machine. This will only work if you start all
|
---|
141 | instances on a local machine.
|
---|
142 |
|
---|
143 | Once the PingPong sample is running and the nodes have connected, each node will
|
---|
144 | send out ping messages to every node he knows in the overlay structure every
|
---|
145 | 5 seconds. You can now e.g. test mobility of Ariba and change the IP address of
|
---|
146 | a node, or swith from LAN connection to WLAN. The links established by the
|
---|
147 | PingPong sample through Ariba are mobility invariant and automatically repaired.
|
---|
148 |
|
---|
149 |
|
---|
150 | Cross-Compiling for Maemo
|
---|
151 | =========================
|
---|
152 | Ariba runs on Nokia Maemo 4 (tested) and probably Maemo 5. We have tested Ariba
|
---|
153 | on an N810 device. Cross-Compiling is done using Scratchbox. Use the
|
---|
154 | preassembled Scratchbox version provided by Nokia which will install and
|
---|
155 | configure the complete Scratchbox system automatically.
|
---|
156 |
|
---|
157 | If you compile for Maemo you have to set the HAVE_MAEMO option in CMake.
|
---|
158 |
|
---|
159 | Internally there are a number of special cases where handling on Maemo is
|
---|
160 | different from normal Linux. If you require special handling, do the following
|
---|
161 | in your code:
|
---|
162 |
|
---|
163 | #include "ariba/config.h"
|
---|
164 | ...
|
---|
165 | #ifdef HAVE_MAEMO
|
---|
166 | // special Maemo handling
|
---|
167 | #endif
|
---|