Update INSTALL and devnotes for 2.10 release
[ganeti-local] / doc / devnotes.rst
1 Developer notes
2 ===============
3
4 .. highlight:: shell-example
5
6 Build dependencies
7 ------------------
8
9 Most dependencies from :doc:`install-quick`, including ``qemu-img``
10 (marked there as optional) plus (for Python):
11
12 - `GNU make <http://www.gnu.org/software/make/>`_
13 - `GNU tar <http://www.gnu.org/software/tar/>`_
14 - `Gzip <http://www.gnu.org/software/gzip/>`_
15 - `pandoc <http://johnmacfarlane.net/pandoc/>`_
16 - `python-epydoc <http://epydoc.sourceforge.net/>`_
17 - `python-sphinx <http://sphinx.pocoo.org/>`_
18   (tested with version 1.1.3)
19 - `python-mock <http://www.voidspace.org.uk/python/mock/>`_
20   (tested with version 1.0.1)
21 - `graphviz <http://www.graphviz.org/>`_
22 - the `en_US.UTF-8` locale must be enabled on the system
23 - `pylint <http://www.logilab.org/857>`_ and its associated
24   dependencies
25 - `pep8 <https://github.com/jcrocholl/pep8/>`_
26 - `PyYAML <http://pyyaml.org/>`_
27
28 For older developement (Ganeti < 2.4) ``docbook`` was used instead of
29 ``pandoc``.
30
31 Note that for pylint, at the current moment the following versions
32 must be used::
33
34     $ pylint --version
35     pylint 0.26.0,
36     astng 0.24.1, common 0.58.3
37
38 The same with pep8, other versions may give you errors::
39
40      $ pep8 --version
41      1.3.3
42
43 Both these versions are the ones shipped with Ubuntu 13.04.
44
45 To generate unittest coverage reports (``make coverage``), `coverage
46 <http://pypi.python.org/pypi/coverage>`_ needs to be installed.
47
48 Installation of all dependencies listed here::
49
50      $ apt-get install python-setuptools automake git fakeroot
51      $ apt-get install pandoc python-epydoc graphviz python-sphinx
52      $ apt-get install python-yaml
53      $ cd / && easy_install \
54                logilab-astng==0.24.1 \
55                logilab-common==0.58.3 \
56                pylint==0.26.0 \
57                pep8==1.3.3 \
58                mock==1.0.1 \
59                coverage
60
61 For Haskell development, again all things from the quick install
62 document, plus:
63
64 - `haddock <http://www.haskell.org/haddock/>`_, documentation
65   generator (equivalent to epydoc for Python)
66 - `HsColour <http://hackage.haskell.org/package/hscolour>`_, again
67   used for documentation (it's source-code pretty-printing)
68 - `hlint <http://community.haskell.org/~ndm/hlint/>`_, a source code
69   linter (equivalent to pylint for Python), recommended version 1.8 or
70   above (tested with 1.8.43)
71 - the `QuickCheck <http://hackage.haskell.org/package/QuickCheck>`_
72   library, version 2.x
73 - the `HUnit <http://hunit.sourceforge.net/>`_ library (tested with
74   1.2.x)
75 - the `test-framework
76   <http://batterseapower.github.com/test-framework/>`_ libraries,
77   tested versions: ``test-framework``: 0.6, ``test-framework-hunit``:
78   0.2.7, ``test-framework-quickcheck2``: 0.2.12.1
79 - ``hpc``, which comes with the compiler, so you should already have
80   it
81 - `shelltestrunner <http://joyful.com/shelltestrunner>`_, used for
82   running shell-based unit-tests
83 - `temporary <https://github.com/batterseapower/temporary/>`_ library,
84   tested with version 1.1.2.3
85
86 Under Debian Wheezy or later, these can be installed (on top of the
87 required ones from the quick install document) via::
88
89   $ apt-get install libghc-quickcheck2-dev libghc-hunit-dev \
90         libghc-test-framework-dev \
91         libghc-test-framework-quickcheck2-dev \
92         libghc-test-framework-hunit-dev \
93         libghc-temporary-dev shelltestrunner \
94         hscolour hlint
95
96 Or alternatively via ``cabal``::
97
98   $ cabal install QuickCheck HUnit \
99           test-framework test-framework-quickcheck2 test-framework-hunit \
100           temporary hscolour hlint shelltestrunner
101
102
103 Configuring for development
104 ---------------------------
105
106 Run the following command (only use ``PYTHON=...`` if you need to use a
107 different python version)::
108
109   $ ./autogen.sh && \
110     ./configure --prefix=/usr/local --sysconfdir=/etc --localstatedir=/var
111
112 Note that doing development on a machine which already has Ganeti
113 installed is problematic, as ``PYTHONPATH`` behaviour can be confusing
114 (see Issue 170 for a bit of history/details; in general it works if
115 the installed and developed versions are very similar, and/or if
116 PYTHONPATH is customised correctly). As such, in general it's
117 recommended to use a "clean" machine for ganeti development.
118
119 Haskell development notes
120 -------------------------
121
122 There are a few things which can help writing or debugging the Haskell
123 code.
124
125 You can run the Haskell linter :command:`hlint` via::
126
127   $ make hlint
128
129 This is not enabled by default (as the htools component is
130 optional). The above command will generate both output on the terminal
131 and, if any warnings are found, also an HTML report at
132 ``doc/hs-lint.html``.
133
134 When writing or debugging TemplateHaskell code, it's useful to see
135 what the splices are converted to. This can be done via::
136
137   $ make HEXTRA="-ddump-splices"
138
139 Or, more interactively::
140
141   $ ghci
142   λ> :set -ddump-splices
143   λ> :l src/Ganeti/Objects.hs
144
145 And you will get the spliced code as the module is loaded.
146
147 To build profiling code you must install the ``ghc-prof`` (or
148 ``gch6-prof``) package, and all the relevant libraries with their
149 ``-prof`` counterparts. If installing libraries through cabal the config
150 file should include ``library-profiling: True`` or the ``-p`` flag
151 should be used. Any library already installed can be updated by passing
152 ``--reinstall`` as well.
153
154 Due to the way TemplateHaskell works, it's not straightforward to
155 build profiling code. The recommended way is to run ``make hs-prof``,
156 or alternatively the manual sequence is::
157
158   $ make clean
159   $ make src/htools HEXTRA="-osuf .o"
160   $ rm src/htools
161   $ make src/htools HEXTRA="-osuf .prof_o -prof -auto-all"
162
163 This will build the binary twice, per the TemplateHaskell
164 documentation, the second one with profiling enabled.
165
166 The binary files generated by compilation and the profiling/coverage
167 files can "break" tab-completion in the sources; they can be ignored,
168 for example, in bash via ``.bashrc``::
169
170   FIGNORE='.o:.hi:.prof_o:.tix'
171
172 or in emacs via ``completion-ignored-extensions`` (run ``M-x
173 customize-var completion-ignored-extensions``).
174
175 Running individual tests
176 ~~~~~~~~~~~~~~~~~~~~~~~~
177
178 When developing code, running the entire test suite can be
179 slow. Running individual tests is possible. There are different
180 Makefile targets for running individual Python and Haskell tests.
181
182 For Python tests::
183
184   $ export PYTHONPATH=$PWD
185   $ python ./test/py/ganeti.%mytest%
186
187 For Haskell tests::
188
189   $ make hs-test-%pattern%
190
191 Where ``pattern`` can be a simple test pattern (e.g. ``comma``,
192 matching any test whose name contains ``comma``), a test pattern
193 denoting a group (ending with a slash, e.g. ``Utils/``), or more
194 complex glob pattern. For more details, search for glob patterns in
195 the documentation of `test-framework
196 <http://batterseapower.github.com/test-framework/>`_).
197
198 For individual Haskell shelltests::
199
200   $ make hs-shell-%name%
201
202 which runs the test ``test/hs/shelltests/htools-%name%.test``. For
203 example, to run the test ``test/hs/shelltests/htools-balancing.test``,
204 use::
205
206   $ make hs-shell-balancing
207
208 For combined Haskell shelltests::
209
210   $ make hs-shell-{%name1%,%name2%,...}
211
212 for example::
213
214   $ make hs-shell-{balancing,basic}
215
216 Checking for the correct style of the NEWS file is also possible, by running::
217
218   $ make check-news
219
220 Packaging notes
221 ===============
222
223 Ganeti is mostly developed and tested on `Debian
224 <http://www.debian.org/>`_-based distributions, while still keeping
225 adaptability to other Linux distributions in mind.
226
227 The ``doc/examples/`` directory contains a number of potentially useful
228 scripts and configuration files. Some of them might need adjustment
229 before use.
230
231 ``daemon-util``
232 ---------------
233
234 This script, in the source code as ``daemons/daemon-util.in``, is used
235 to start/stop Ganeti and do a few other things related to system
236 daemons. It is recommended to use ``daemon-util`` also from the system's
237 init scripts. That way the code starting and stopping daemons is shared
238 and future changes have to be made in only one place.
239
240 ``daemon-util`` reads extra arguments from variables (``*_ARGS``) in
241 ``/etc/default/ganeti``. When modifying ``daemon-util``, keep in mind to
242 not remove support for the ``EXTRA_*_ARGS`` variables for starting
243 daemons. Some parts of Ganeti use them to pass additional arguments when
244 starting a daemon.
245
246 The ``reload_ssh_keys`` function can be adjusted to use another command
247 for reloading the OpenSSH daemon's host keys.
248
249 .. vim: set textwidth=72 :