Add unittests for ht module
[ganeti-local] / Makefile.am
1 # Ganeti makefile
2 # - Indent with tabs only.
3 # - Keep files sorted; one line per file.
4 # - Directories in lib/ must have their own *dir variable (see hypervisor).
5 # - All directories must be listed DIRS.
6 # - Use autogen.sh to generate Makefile.in and configure script.
7
8 # Automake doesn't export these variables before version 1.10.
9 abs_top_builddir = @abs_top_builddir@
10 abs_top_srcdir = @abs_top_srcdir@
11
12 ACLOCAL_AMFLAGS = -I autotools
13 BUILD_BASH_COMPLETION = $(top_srcdir)/autotools/build-bash-completion
14 RUN_IN_TEMPDIR = $(top_srcdir)/autotools/run-in-tempdir
15 CHECK_PYTHON_CODE = $(top_srcdir)/autotools/check-python-code
16 CHECK_MAN = $(top_srcdir)/autotools/check-man
17 CHECK_VERSION = $(top_srcdir)/autotools/check-version
18 REPLACE_VARS_SED = autotools/replace_vars.sed
19
20 clientdir = $(pkgpythondir)/client
21 hypervisordir = $(pkgpythondir)/hypervisor
22 httpdir = $(pkgpythondir)/http
23 masterddir = $(pkgpythondir)/masterd
24 confddir = $(pkgpythondir)/confd
25 rapidir = $(pkgpythondir)/rapi
26 serverdir = $(pkgpythondir)/server
27 watcherdir = $(pkgpythondir)/watcher
28 impexpddir = $(pkgpythondir)/impexpd
29 toolsdir = $(pkglibdir)/tools
30 docdir = $(datadir)/doc/$(PACKAGE)
31
32 # Delete output file if an error occurred while building it
33 .DELETE_ON_ERROR:
34
35 DIRS = \
36         autotools \
37         daemons \
38         devel \
39         doc \
40         doc/examples \
41         doc/examples/hooks \
42         doc/examples/gnt-debug \
43         lib \
44         lib/client \
45         lib/build \
46         lib/confd \
47         lib/http \
48         lib/hypervisor \
49         lib/impexpd \
50         lib/masterd \
51         lib/rapi \
52         lib/server \
53         lib/watcher \
54         man \
55         qa \
56         test \
57         test/data \
58         tools
59
60 BUILDTIME_DIR_AUTOCREATE = \
61         scripts \
62         doc/api \
63         doc/coverage
64
65 BUILDTIME_DIRS = \
66         $(BUILDTIME_DIR_AUTOCREATE) \
67         doc/html
68
69 DIRCHECK_EXCLUDE = \
70         $(BUILDTIME_DIRS) \
71         ganeti-[0-9]*.[0-9]*.[0-9]* \
72         doc/html/_*
73
74 all_dirfiles = $(addsuffix /.dir,$(DIRS) $(BUILDTIME_DIR_AUTOCREATE))
75
76 MAINTAINERCLEANFILES = \
77         $(docpng) \
78         $(maninput) \
79         doc/install-quick.rst \
80         doc/news.rst \
81         vcs-version
82
83 maintainer-clean-local:
84         rm -rf $(BUILDTIME_DIRS)
85
86 CLEANFILES = \
87         $(addsuffix /*.py[co],$(DIRS)) \
88         $(all_dirfiles) \
89         $(PYTHON_BOOTSTRAP) \
90         autotools/replace_vars.sed \
91         daemons/daemon-util \
92         daemons/ensure-dirs \
93         daemons/ganeti-cleaner \
94         devel/upload \
95         doc/examples/bash_completion \
96         doc/examples/ganeti.initd \
97         doc/examples/ganeti-kvm-poweroff.initd \
98         doc/examples/ganeti.cron \
99         doc/examples/gnt-config-backup \
100         doc/examples/hooks/ipsec \
101         $(man_MANS) \
102         $(manhtml) \
103         stamp-srclinks \
104         $(nodist_pkgpython_PYTHON)
105
106 # BUILT_SOURCES should only be used as a dependency on phony targets. Otherwise
107 # it'll cause the target to rebuild every time.
108 BUILT_SOURCES = \
109         ganeti \
110         stamp-srclinks \
111         lib/_autoconf.py \
112         $(all_dirfiles) \
113         $(PYTHON_BOOTSTRAP)
114
115 nodist_pkgpython_PYTHON = \
116         lib/_autoconf.py
117
118 noinst_PYTHON = \
119         lib/build/__init__.py
120
121 pkgpython_PYTHON = \
122         lib/__init__.py \
123         lib/asyncnotifier.py \
124         lib/backend.py \
125         lib/bdev.py \
126         lib/bootstrap.py \
127         lib/cli.py \
128         lib/cmdlib.py \
129         lib/compat.py \
130         lib/config.py \
131         lib/constants.py \
132         lib/daemon.py \
133         lib/errors.py \
134         lib/ht.py \
135         lib/jqueue.py \
136         lib/jstore.py \
137         lib/locking.py \
138         lib/luxi.py \
139         lib/mcpu.py \
140         lib/netutils.py \
141         lib/objects.py \
142         lib/opcodes.py \
143         lib/qlang.py \
144         lib/query.py \
145         lib/rpc.py \
146         lib/runtime.py \
147         lib/serializer.py \
148         lib/ssconf.py \
149         lib/ssh.py \
150         lib/storage.py \
151         lib/utils.py \
152         lib/uidpool.py \
153         lib/workerpool.py
154
155 client_PYTHON = \
156         lib/client/__init__.py \
157         lib/client/gnt_backup.py \
158         lib/client/gnt_cluster.py \
159         lib/client/gnt_debug.py \
160         lib/client/gnt_group.py \
161         lib/client/gnt_instance.py \
162         lib/client/gnt_job.py \
163         lib/client/gnt_node.py \
164         lib/client/gnt_os.py
165
166 hypervisor_PYTHON = \
167         lib/hypervisor/__init__.py \
168         lib/hypervisor/hv_base.py \
169         lib/hypervisor/hv_chroot.py \
170         lib/hypervisor/hv_fake.py \
171         lib/hypervisor/hv_kvm.py \
172         lib/hypervisor/hv_lxc.py \
173         lib/hypervisor/hv_xen.py
174
175 rapi_PYTHON = \
176         lib/rapi/__init__.py \
177         lib/rapi/baserlib.py \
178         lib/rapi/client.py \
179         lib/rapi/client_utils.py \
180         lib/rapi/connector.py \
181         lib/rapi/rlib2.py
182
183 http_PYTHON = \
184         lib/http/__init__.py \
185         lib/http/auth.py \
186         lib/http/client.py \
187         lib/http/server.py
188
189 confd_PYTHON = \
190         lib/confd/__init__.py \
191         lib/confd/client.py \
192         lib/confd/querylib.py \
193         lib/confd/server.py
194
195 masterd_PYTHON = \
196         lib/masterd/__init__.py \
197         lib/masterd/instance.py
198
199 impexpd_PYTHON = \
200         lib/impexpd/__init__.py
201
202 watcher_PYTHON = \
203         lib/watcher/__init__.py
204
205 server_PYTHON = \
206         lib/server/__init__.py \
207         lib/server/confd.py \
208         lib/server/masterd.py \
209         lib/server/noded.py \
210         lib/server/rapi.py
211
212 docrst = \
213         doc/admin.rst \
214         doc/design-2.0.rst \
215         doc/design-2.1.rst \
216         doc/design-2.2.rst \
217         doc/design-2.3.rst \
218         doc/design-oob.rst \
219         doc/design-query2.rst \
220         doc/cluster-merge.rst \
221         doc/devnotes.rst \
222         doc/glossary.rst \
223         doc/hooks.rst \
224         doc/iallocator.rst \
225         doc/index.rst \
226         doc/install-quick.rst \
227         doc/install.rst \
228         doc/locking.rst \
229         doc/move-instance.rst \
230         doc/news.rst \
231         doc/rapi.rst \
232         doc/security.rst \
233         doc/walkthrough.rst
234
235 $(RUN_IN_TEMPDIR): | $(all_dirfiles)
236
237 doc/html/index.html: $(docrst) $(docpng) doc/conf.py configure.ac \
238         $(RUN_IN_TEMPDIR)
239         @test -n "$(SPHINX)" || \
240             { echo 'sphinx-build' not found during configure; exit 1; }
241         @mkdir_p@ $(dir $@)
242         PYTHONPATH=. $(RUN_IN_TEMPDIR) $(SPHINX) -q -W -b html \
243             -d . \
244             -D version="$(VERSION_MAJOR).$(VERSION_MINOR)" \
245             -D release="$(PACKAGE_VERSION)" \
246             $(abs_top_srcdir)/doc $(CURDIR)/doc/html
247         rm -f doc/html/.buildinfo doc/html/objects.inv
248         touch $@
249
250 doc/html: doc/html/index.html
251
252 doc/news.rst: NEWS
253         set -e; \
254         { echo '.. This file is automatically updated at build time from $<.'; \
255           echo '.. Do not edit.'; \
256           echo; \
257           cat $<; \
258         } > $@
259
260 doc/install-quick.rst: INSTALL
261         set -e; \
262         { echo '.. This file is automatically updated at build time from $<.'; \
263           echo '.. Do not edit.'; \
264           echo; \
265           cat $<; \
266         } > $@
267
268 docdot = \
269         doc/arch-2.0.dot \
270         doc/design-2.1-lock-acquire.dot \
271         doc/design-2.1-lock-release.dot
272
273 docpng = $(patsubst %.dot,%.png,$(docdot))
274
275 # Things to build but not to install (add it to EXTRA_DIST if it should be
276 # distributed)
277 noinst_DATA = \
278         devel/upload \
279         doc/html \
280         doc/examples/bash_completion \
281         doc/examples/ganeti.cron \
282         doc/examples/ganeti.initd \
283         doc/examples/ganeti-kvm-poweroff.initd \
284         doc/examples/gnt-config-backup \
285         doc/examples/hooks/ipsec \
286         $(manhtml)
287
288 gnt_scripts = \
289         scripts/gnt-backup \
290         scripts/gnt-cluster \
291         scripts/gnt-debug \
292         scripts/gnt-group \
293         scripts/gnt-instance \
294         scripts/gnt-job \
295         scripts/gnt-node \
296         scripts/gnt-os
297
298 PYTHON_BOOTSTRAP = \
299         daemons/ganeti-confd \
300         daemons/ganeti-masterd \
301         daemons/ganeti-noded \
302         daemons/ganeti-watcher \
303         daemons/ganeti-rapi \
304         scripts/gnt-backup \
305         scripts/gnt-cluster \
306         scripts/gnt-debug \
307         scripts/gnt-group \
308         scripts/gnt-instance \
309         scripts/gnt-job \
310         scripts/gnt-node \
311         scripts/gnt-os
312
313 qa_scripts = \
314         qa/ganeti-qa.py \
315         qa/qa_cluster.py \
316         qa/qa_config.py \
317         qa/qa_daemon.py \
318         qa/qa_env.py \
319         qa/qa_error.py \
320         qa/qa_instance.py \
321         qa/qa_node.py \
322         qa/qa_os.py \
323         qa/qa_rapi.py \
324         qa/qa_tags.py \
325         qa/qa_utils.py
326
327 dist_sbin_SCRIPTS = \
328         tools/ganeti-listrunner
329
330 nodist_sbin_SCRIPTS = \
331         $(PYTHON_BOOTSTRAP) \
332         daemons/ganeti-cleaner
333
334 dist_tools_SCRIPTS = \
335         tools/burnin \
336         tools/cfgshell \
337         tools/cfgupgrade \
338         tools/cfgupgrade12 \
339         tools/cluster-merge \
340         tools/lvmstrap \
341         tools/move-instance \
342         tools/setup-ssh \
343         tools/sanitize-config
344
345 pkglib_python_scripts = \
346         daemons/import-export \
347         tools/check-cert-expired
348
349 pkglib_SCRIPTS = \
350         daemons/daemon-util \
351         daemons/ensure-dirs \
352         $(pkglib_python_scripts)
353
354 EXTRA_DIST = \
355         NEWS \
356         pylintrc \
357         autotools/build-bash-completion \
358         autotools/check-python-code \
359         autotools/check-man \
360         autotools/check-tar \
361         autotools/check-version \
362         autotools/gen-coverage \
363         autotools/testrunner \
364         $(RUN_IN_TEMPDIR) \
365         daemons/daemon-util.in \
366         daemons/ensure-dirs.in \
367         daemons/ganeti-cleaner.in \
368         $(pkglib_python_scripts) \
369         devel/upload.in \
370         $(docdot) \
371         $(docpng) \
372         $(docrst) \
373         doc/conf.py \
374         doc/html \
375         doc/examples/ganeti.initd.in \
376         doc/examples/ganeti-kvm-poweroff.initd.in \
377         doc/examples/ganeti.cron.in \
378         doc/examples/gnt-config-backup.in \
379         doc/examples/dumb-allocator \
380         doc/examples/ganeti.default \
381         doc/examples/ganeti.default-debug \
382         doc/examples/hooks/ethers \
383         doc/examples/hooks/ipsec.in \
384         doc/examples/gnt-debug/README \
385         doc/examples/gnt-debug/delay0.json \
386         doc/examples/gnt-debug/delay50.json \
387         test/testutils.py \
388         test/mocks.py \
389         $(dist_TESTS) \
390         $(TEST_FILES) \
391         man/footer.rst \
392         $(manrst) \
393         $(maninput) \
394         qa/qa-sample.json \
395         $(qa_scripts)
396
397 man_MANS = \
398         man/ganeti.7 \
399         man/ganeti-cleaner.8 \
400         man/ganeti-confd.8 \
401         man/ganeti-listrunner.8 \
402         man/ganeti-masterd.8 \
403         man/ganeti-noded.8 \
404         man/ganeti-os-interface.7 \
405         man/ganeti-rapi.8 \
406         man/ganeti-watcher.8 \
407         man/gnt-backup.8 \
408         man/gnt-cluster.8 \
409         man/gnt-debug.8 \
410         man/gnt-group.8 \
411         man/gnt-instance.8 \
412         man/gnt-job.8 \
413         man/gnt-node.8 \
414         man/gnt-os.8
415
416 manrst = $(patsubst %.7,%.rst,$(patsubst %.8,%.rst,$(man_MANS)))
417 manhtml = $(patsubst %.rst,%.html,$(manrst))
418 maninput = \
419         $(patsubst %.7,%.7.in,$(patsubst %.8,%.8.in,$(man_MANS))) \
420         $(patsubst %.html,%.html.in,$(manhtml)) \
421         man/footer.man man/footer.html
422
423 TEST_FILES = \
424         test/data/bdev-drbd-8.0.txt \
425         test/data/bdev-drbd-8.3.txt \
426         test/data/bdev-drbd-disk.txt \
427         test/data/bdev-drbd-net-ip4.txt \
428         test/data/bdev-drbd-net-ip6.txt \
429         test/data/cert1.pem \
430         test/data/proc_drbd8.txt \
431         test/data/proc_drbd80-emptyline.txt \
432         test/data/proc_drbd83.txt \
433         test/data/sys_drbd_usermode_helper.txt \
434         test/import-export_unittest-helper
435
436 python_tests = \
437         test/ganeti.asyncnotifier_unittest.py \
438         test/ganeti.backend_unittest.py \
439         test/ganeti.bdev_unittest.py \
440         test/ganeti.cli_unittest.py \
441         test/ganeti.daemon_unittest.py \
442         test/ganeti.cmdlib_unittest.py \
443         test/ganeti.compat_unittest.py \
444         test/ganeti.confd.client_unittest.py \
445         test/ganeti.config_unittest.py \
446         test/ganeti.constants_unittest.py \
447         test/ganeti.errors_unittest.py \
448         test/ganeti.hooks_unittest.py \
449         test/ganeti.ht_unittest.py \
450         test/ganeti.http_unittest.py \
451         test/ganeti.hypervisor_unittest.py \
452         test/ganeti.hypervisor.hv_kvm_unittest.py \
453         test/ganeti.impexpd_unittest.py \
454         test/ganeti.jqueue_unittest.py \
455         test/ganeti.locking_unittest.py \
456         test/ganeti.luxi_unittest.py \
457         test/ganeti.masterd.instance_unittest.py \
458         test/ganeti.mcpu_unittest.py \
459         test/ganeti.netutils_unittest.py \
460         test/ganeti.objects_unittest.py \
461         test/ganeti.opcodes_unittest.py \
462         test/ganeti.qlang_unittest.py \
463         test/ganeti.query_unittest.py \
464         test/ganeti.rapi.client_unittest.py \
465         test/ganeti.rapi.resources_unittest.py \
466         test/ganeti.rapi.rlib2_unittest.py \
467         test/ganeti.rpc_unittest.py \
468         test/ganeti.runtime_unittest.py \
469         test/ganeti.serializer_unittest.py \
470         test/ganeti.ssh_unittest.py \
471         test/ganeti.uidpool_unittest.py \
472         test/ganeti.utils_unittest.py \
473         test/ganeti.utils_mlockall_unittest.py \
474         test/ganeti.workerpool_unittest.py \
475         test/cfgupgrade_unittest.py \
476         test/docs_unittest.py \
477         test/tempfile_fork_unittest.py
478
479 dist_TESTS = \
480         test/check-cert-expired_unittest.bash \
481         test/daemon-util_unittest.bash \
482         test/ganeti-cleaner_unittest.bash \
483         test/import-export_unittest.bash \
484         $(python_tests)
485
486 nodist_TESTS =
487
488 TESTS = $(dist_TESTS) $(nodist_TESTS)
489
490 # Environment for all tests
491 PLAIN_TESTS_ENVIRONMENT = \
492         PYTHONPATH=. TOP_SRCDIR=$(abs_top_srcdir) PYTHON=$(PYTHON) $(RUN_IN_TEMPDIR)
493
494 # Environment for tests run by automake
495 TESTS_ENVIRONMENT = \
496         $(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/testrunner
497
498 all_python_code = \
499         $(dist_sbin_SCRIPTS) \
500         $(dist_tools_SCRIPTS) \
501         $(pkglib_python_scripts) \
502         $(python_tests) \
503         $(pkgpython_PYTHON) \
504         $(client_PYTHON) \
505         $(hypervisor_PYTHON) \
506         $(rapi_PYTHON) \
507         $(server_PYTHON) \
508         $(http_PYTHON) \
509         $(confd_PYTHON) \
510         $(masterd_PYTHON) \
511         $(impexpd_PYTHON) \
512         $(watcher_PYTHON) \
513         $(noinst_PYTHON) \
514         $(qa_scripts)
515
516 srclink_files = \
517         man/footer.rst \
518         test/check-cert-expired_unittest.bash \
519         test/daemon-util_unittest.bash \
520         test/ganeti-cleaner_unittest.bash \
521         test/import-export_unittest.bash \
522         $(all_python_code)
523
524 check_python_code = \
525         $(BUILD_BASH_COMPLETION) \
526         $(all_python_code)
527
528 lint_python_code = \
529         ganeti \
530         ganeti/http/server.py \
531         $(dist_sbin_SCRIPTS) \
532         $(dist_tools_SCRIPTS) \
533         $(pkglib_python_scripts) \
534         $(BUILD_BASH_COMPLETION) \
535         $(PYTHON_BOOTSTRAP)
536
537 test/daemon-util_unittest.bash: daemons/daemon-util
538
539 test/ganeti-cleaner_unittest.bash: daemons/ganeti-cleaner
540
541 devel/upload: devel/upload.in $(REPLACE_VARS_SED)
542         sed -f $(REPLACE_VARS_SED) < $< > $@
543         chmod u+x $@
544
545 daemons/%: daemons/%.in $(REPLACE_VARS_SED)
546         sed -f $(REPLACE_VARS_SED) < $< > $@
547         chmod +x $@
548
549 doc/examples/%: doc/examples/%.in $(REPLACE_VARS_SED)
550         sed -f $(REPLACE_VARS_SED) < $< > $@
551
552 doc/examples/hooks/%: doc/examples/hooks/%.in $(REPLACE_VARS_SED)
553         sed -f $(REPLACE_VARS_SED) < $< > $@
554
555 doc/examples/bash_completion: $(BUILD_BASH_COMPLETION) $(RUN_IN_TEMPDIR) \
556         lib/cli.py $(gnt_scripts) $(client_PYTHON) tools/burnin
557         PYTHONPATH=. $(RUN_IN_TEMPDIR) $(CURDIR)/$(BUILD_BASH_COMPLETION) > $@
558
559 doc/%.png: doc/%.dot
560         @test -n "$(DOT)" || { echo 'dot' not found during configure; exit 1; }
561         $(DOT) -Tpng -o $@ $<
562
563 man/footer.man: man/footer.rst
564         @test -n "$(PANDOC)" || \
565           { echo 'pandoc' not found during configure; exit 1; }
566         $(PANDOC) -f rst -t man -o $@ $<
567
568 man/footer.html: man/footer.rst
569         @test -n "$(PANDOC)" || \
570           { echo 'pandoc' not found during configure; exit 1; }
571         $(PANDOC) -f rst -t html -o $@ $<
572
573 man/%.7.in man/%.8.in: man/%.rst man/footer.man
574         @test -n "$(PANDOC)" || \
575           { echo 'pandoc' not found during configure; exit 1; }
576         $(PANDOC) -s -f rst -t man -A man/footer.man $< | \
577           sed -e 's/\\@/@/g' > $@
578         if test -n "$(MAN_HAS_WARNINGS)"; then $(CHECK_MAN) $@; fi
579
580 man/%.html.in: man/%.rst man/footer.html
581         @test -n "$(PANDOC)" || \
582           { echo 'pandoc' not found during configure; exit 1; }
583         $(PANDOC) -s -f rst -t html -A man/footer.html $< | \
584           sed -e 's/\\@/@/g' > $@
585
586
587 man/%.7: man/%.7.in $(REPLACE_VARS_SED)
588         sed -f $(REPLACE_VARS_SED) < $< > $@
589
590 man/%.8: man/%.8.in $(REPLACE_VARS_SED)
591         sed -f $(REPLACE_VARS_SED) < $< > $@
592
593 man/%.html: man/%.html.in $(REPLACE_VARS_SED)
594         sed -f $(REPLACE_VARS_SED) < $< > $@
595
596 vcs-version:
597         if test -d .git; then \
598           git describe > $@; \
599         elif test ! -f $@ ; then \
600           echo "Cannot auto-generate $@ file"; exit 1; \
601         fi
602
603 .PHONY: regen-vcs-version
604 regen-vcs-version:
605         set -e; \
606         cd $(srcdir); \
607         if test -d .git; then \
608           rm -f vcs-version; \
609           $(MAKE) vcs-version; \
610         fi
611
612 lib/_autoconf.py: Makefile vcs-version | lib/.dir
613         set -e; \
614         VCSVER=`cat $(abs_top_srcdir)/vcs-version`; \
615         { echo '# This file is automatically generated, do not edit!'; \
616           echo '#'; \
617           echo ''; \
618           echo '"""Build-time configuration for Ganeti.'; \
619           echo '';\
620           echo 'This file is autogenerated by the build process.'; \
621           echo 'For any changes you need to re-run ./configure (and'; \
622           echo 'not edit by hand).'; \
623           echo ''; \
624           echo '"""'; \
625           echo ''; \
626           echo '# pylint: disable-msg=C0301,C0324'; \
627           echo '# because this is autogenerated, we do not want'; \
628           echo '# style warnings' ; \
629           echo ''; \
630           echo "PACKAGE_VERSION = '$(PACKAGE_VERSION)'"; \
631           echo "VERSION_MAJOR = '$(VERSION_MAJOR)'"; \
632           echo "VERSION_MINOR = '$(VERSION_MINOR)'"; \
633           echo "VERSION_REVISION = '$(VERSION_REVISION)'"; \
634           echo "VERSION_SUFFIX = '$(VERSION_SUFFIX)'"; \
635           echo "VERSION_FULL = '$(VERSION_FULL)'"; \
636           echo "LOCALSTATEDIR = '$(localstatedir)'"; \
637           echo "SYSCONFDIR = '$(sysconfdir)'"; \
638           echo "SSH_CONFIG_DIR = '$(SSH_CONFIG_DIR)'"; \
639           echo "EXPORT_DIR = '$(EXPORT_DIR)'"; \
640           echo "OS_SEARCH_PATH = [$(OS_SEARCH_PATH)]"; \
641           echo "XEN_BOOTLOADER = '$(XEN_BOOTLOADER)'"; \
642           echo "XEN_KERNEL = '$(XEN_KERNEL)'"; \
643           echo "XEN_INITRD = '$(XEN_INITRD)'"; \
644           echo "FILE_STORAGE_DIR = '$(FILE_STORAGE_DIR)'"; \
645           echo "ENABLE_FILE_STORAGE = $(ENABLE_FILE_STORAGE)"; \
646           echo "IALLOCATOR_SEARCH_PATH = [$(IALLOCATOR_SEARCH_PATH)]"; \
647           echo "KVM_PATH = '$(KVM_PATH)'"; \
648           echo "SOCAT_PATH = '$(SOCAT)'"; \
649           echo "SOCAT_USE_ESCAPE = $(SOCAT_USE_ESCAPE)"; \
650           echo "SOCAT_USE_COMPRESS = $(SOCAT_USE_COMPRESS)"; \
651           echo "LVM_STRIPECOUNT = $(LVM_STRIPECOUNT)"; \
652           echo "TOOLSDIR = '$(toolsdir)'"; \
653           echo "GNT_SCRIPTS = [$(foreach i,$(notdir $(gnt_scripts)),'$(i)',)]"; \
654           echo "PKGLIBDIR = '$(pkglibdir)'"; \
655           echo "DRBD_BARRIERS = $(DRBD_BARRIERS)"; \
656           echo "SYSLOG_USAGE = '$(SYSLOG_USAGE)'"; \
657           echo "DAEMONS_GROUP = '$(DAEMONS_GROUP)'"; \
658           echo "ADMIN_GROUP = '$(ADMIN_GROUP)'"; \
659           echo "MASTERD_USER = '$(MASTERD_USER)'"; \
660           echo "MASTERD_GROUP = '$(MASTERD_GROUP)'"; \
661           echo "RAPI_USER = '$(RAPI_USER)'"; \
662           echo "RAPI_GROUP = '$(RAPI_GROUP)'"; \
663           echo "CONFD_USER = '$(CONFD_USER)'"; \
664           echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \
665           echo "NODED_USER = '$(NODED_USER)'"; \
666           echo "VCS_VERSION = '$$VCSVER'"; \
667           echo "DISK_SEPARATOR = '$(DISK_SEPARATOR)'"; \
668         } > $@
669
670 $(REPLACE_VARS_SED): Makefile
671         set -e; \
672         { echo 's#@PREFIX@#$(prefix)#g'; \
673           echo 's#@SYSCONFDIR@#$(sysconfdir)#g'; \
674           echo 's#@LOCALSTATEDIR@#$(localstatedir)#g'; \
675           echo 's#@BINDIR@#$(bindir)#g'; \
676           echo 's#@SBINDIR@#$(sbindir)#g'; \
677           echo 's#@GANETI_VERSION@#$(PACKAGE_VERSION)#g'; \
678           echo 's#@CUSTOM_XEN_BOOTLOADER@#$(XEN_BOOTLOADER)#g'; \
679           echo 's#@CUSTOM_XEN_KERNEL@#$(XEN_KERNEL)#g'; \
680           echo 's#@CUSTOM_XEN_INITRD@#$(XEN_INITRD)#g'; \
681           echo 's#@CUSTOM_IALLOCATOR_SEARCH_PATH@#$(IALLOCATOR_SEARCH_PATH)#g'; \
682           echo 's#@CUSTOM_EXPORT_DIR@#$(EXPORT_DIR)#g'; \
683           echo 's#@RPL_FILE_STORAGE_DIR@#$(FILE_STORAGE_DIR)#g'; \
684           echo 's#@RPL_SSH_INITD_SCRIPT@#$(SSH_INITD_SCRIPT)#g'; \
685           echo 's#@PKGLIBDIR@#$(pkglibdir)#g'; \
686           echo 's#@GNTMASTERUSER@#$(MASTERD_USER)#g'; \
687           echo 's#@GNTRAPIUSER@#$(RAPI_USER)#g'; \
688           echo 's#@GNTCONFDUSER@#$(CONFD_USER)#g'; \
689           echo 's#@GNTNODEDUSER@#$(NODED_USER)#g'; \
690           echo 's#@GNTRAPIGROUP@#$(RAPI_GROUP)#g'; \
691           echo 's#@GNTADMINGROUP@#$(ADMIN_GROUP)#g'; \
692           echo 's#@GNTCONFDGROUP@#$(CONFD_GROUP)#g'; \
693           echo 's#@GNTMASTERDGROUP@#$(MASTERD_GROUP)#g'; \
694           echo 's#@GNTDAEMONSGROUP@#$(DAEMONS_GROUP)#g'; \
695         } > $@
696
697 # Using deferred evaluation
698 daemons/ganeti-%: MODULE = ganeti.server.$(patsubst ganeti-%,%,$(notdir $@))
699 daemons/ganeti-watcher: MODULE = ganeti.watcher
700 scripts/%: MODULE = ganeti.client.$(subst -,_,$(notdir $@))
701
702 $(PYTHON_BOOTSTRAP): Makefile | $(all_dirfiles)
703         test -n "$(MODULE)" || { echo Missing module; exit 1; }
704         set -e; \
705         { echo '#!/usr/bin/python'; \
706           echo '# This file is automatically generated, do not edit!'; \
707           echo "# Edit $(MODULE) instead."; \
708           echo; \
709           echo '"""Bootstrap script for L{$(MODULE)}"""'; \
710           echo; \
711           echo '# pylint: disable-msg=C0103'; \
712           echo '# C0103: Invalid name'; \
713           echo; \
714           echo 'import sys'; \
715           echo 'import $(MODULE) as main'; \
716           echo; \
717           echo '# Temporarily alias commands until bash completion'; \
718           echo '# generator is changed'; \
719           echo 'if hasattr(main, "commands"):'; \
720                 echo '  commands = main.commands # pylint: disable-msg=E1101'; \
721           echo; \
722           echo 'if __name__ == "__main__":'; \
723           echo '  sys.exit(main.Main())'; \
724         } > $@
725         chmod u+x $@
726
727 # We need to create symlinks because "make distcheck" will not install Python
728 # files when building.
729 stamp-srclinks: Makefile | $(all_dirfiles)
730         set -e; \
731         for i in $(srclink_files); do \
732                 if test ! -f $$i -a -f $(abs_top_srcdir)/$$i; then \
733                         $(LN_S) $(abs_top_srcdir)/$$i $$i; \
734                 fi; \
735         done
736         touch $@
737
738 .PHONY: ganeti
739 ganeti:
740         cd $(top_builddir) && test -h "$@" || { rm -f $@ && $(LN_S) lib $@; }
741
742 .PHONY: check-dirs
743 check-dirs: $(BUILT_SOURCES)
744         @set -e; \
745         find . -type d \( \( -name . \) -o \( \
746                 -name .git -o \
747                 -name autom4te.cache \
748                 \) -prune -o -print \) | { \
749                 error=; \
750                 while read dir; do \
751                         case "$$dir" in \
752                                 $(strip $(patsubst %,(./%) ;;,$(DIRCHECK_EXCLUDE) $(DIRS))) \
753                                 *) error=1; echo "Directory $$dir not listed in Makefile" >&2 ;; \
754                         esac; \
755                 done; \
756                 for dir in $(DIRS); do \
757                         if ! test -d "$$dir"; then \
758                                 echo "Directory $$dir listed in DIRS does not exist" >&2; \
759                                 error=1; \
760                         fi \
761                 done; \
762                 if test -n "$$error"; then exit 1; else exit 0; fi; \
763         }
764
765 check-local: check-dirs
766         $(CHECK_PYTHON_CODE) $(check_python_code)
767         $(CHECK_VERSION) $(VERSION) $(top_srcdir)/NEWS
768
769 .PHONY: lint
770 lint: $(BUILT_SOURCES)
771         @test -n "$(PYLINT)" || { echo 'pylint' not found during configure; exit 1; }
772         $(PYLINT) $(LINT_OPTS) $(lint_python_code)
773
774 # a dist hook rule for updating the vcs-version file; this is
775 # hardcoded due to where it needs to build the file...
776 dist-hook:
777         $(MAKE) regen-vcs-version && \
778         rm -f $(top_distdir)/vcs-version && \
779         cp -p $(srcdir)/vcs-version $(top_distdir)
780
781 # a distcheck hook rule for catching revision control directories
782 distcheck-hook:
783         if find $(top_distdir) -name .svn -or -name .git | grep .; then \
784                 echo "Found revision control files in final archive." 1>&2; \
785                 exit 1; \
786         fi
787         if find $(top_distdir) -name '*.py[co]' | grep .; then \
788                 echo "Found Python byte code in final archive." 1>&2; \
789                 exit 1; \
790         fi
791         if find $(top_distdir) -name '*~' | grep .; then \
792                 echo "Found backup files in final archive." 1>&2; \
793                 exit 1; \
794         fi
795 # Empty files or directories should not be distributed. They can cause
796 # unnecessary warnings for packagers. Directories used by automake during
797 # distcheck must be excluded.
798         if find $(top_distdir) -empty -and -not \( \
799                         -path $(top_distdir)/_build -or \
800                         -path $(top_distdir)/_inst \) | grep .; then \
801                 echo "Found empty files or directories in final archive." 1>&2; \
802                 exit 1; \
803         fi
804         if test -n "$(BUILD_RELEASE)" && \
805            grep -n -H -E '^\*.*unreleased' $(top_distdir)/NEWS; then \
806                 echo "Found unreleased version in NEWS." >&2; \
807                 exit 1; \
808         fi
809
810 # When building a release, stricter checks should be used
811 distcheck-release dist-release: export BUILD_RELEASE = 1
812 distcheck-release: distcheck
813
814 dist-release: dist
815         set -e; \
816         for i in $(DIST_ARCHIVES); do \
817                 echo -n "Checking $$i ... "; \
818                 autotools/check-tar < $$i; \
819                 echo OK; \
820         done
821
822 install-exec-local:
823         @mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
824           "$(DESTDIR)${localstatedir}/log/ganeti" \
825           "$(DESTDIR)${localstatedir}/run/ganeti"
826
827 # To avoid conflicts between directory names and other targets, a file inside
828 # the directory is used to ensure its existence.
829 %.dir:
830         @mkdir_p@ $* && touch $@
831
832 .PHONY: apidoc
833 apidoc: epydoc.conf $(RUN_IN_TEMPDIR) $(BUILT_SOURCES)
834         $(RUN_IN_TEMPDIR) epydoc -v \
835                 --conf $(CURDIR)/epydoc.conf \
836                 --output $(CURDIR)/doc/api
837
838 .PHONY: TAGS
839 TAGS: $(BUILT_SOURCES)
840         rm -f TAGS
841         find . -path './lib/*.py' -o -path './scripts/gnt-*' -o \
842           -path './daemons/ganeti-*' -o -path './tools/*' -o \
843           -path './qa/*.py' | \
844           etags -l python -
845
846 .PHONY: coverage
847 coverage: $(BUILT_SOURCES) $(python_tests)
848         set -e; \
849         COVERAGE_FILE=$(CURDIR)/doc/coverage/data \
850         TEXT_COVERAGE=$(CURDIR)/doc/coverage/report.txt \
851         HTML_COVERAGE=$(CURDIR)/doc/coverage \
852         $(PLAIN_TESTS_ENVIRONMENT) $(abs_top_srcdir)/autotools/gen-coverage \
853         $(python_tests)
854
855 commit-check: distcheck lint apidoc
856
857 -include ./Makefile.local
858
859 # vim: set noet :