docs:smbdotconf: fix tabs/space mixup in logon parameter metadata
[Samba.git] / ctdb / wscript
blob0acb6ff20e091586239b85a4a973c8d5113f25f7
1 #!/usr/bin/env python
3 APPNAME = 'ctdb'
5 blddir = 'bin'
7 import sys, os
9 # find the buildtools directory
10 srcdir = '.'
11 while not os.path.exists(srcdir+'/buildtools') and len(srcdir.split('/')) < 5:
12 srcdir = srcdir + '/..'
13 sys.path.insert(0, srcdir + '/buildtools/wafsamba')
15 import wafsamba, samba_dist, Options, Logs, Utils
16 import samba_utils, samba_version
18 env = samba_utils.LOAD_ENVIRONMENT()
19 if os.path.isfile('./VERSION'):
20 vdir = '.'
21 elif os.path.isfile('../VERSION'):
22 vdir = '..'
23 else:
24 Logs.error("VERSION file not found")
26 version = samba_version.samba_version_file('%s/VERSION' % vdir, vdir, env)
27 VERSION = version.STRING.replace('-', '.')
29 default_prefix = Options.default_prefix = '/usr/local'
31 samba_dist.DIST_DIRS('''ctdb:. lib/replace:lib/replace lib/talloc:lib/talloc
32 lib/tevent:lib/tevent lib/tdb:lib/tdb
33 lib/socket_wrapper:lib/socket_wrapper
34 third_party/popt:third_party/popt
35 lib/util:lib/util lib/tdb_wrap:lib/tdb_wrap
36 lib/ccan:lib/ccan libcli/util:libcli/util
37 buildtools:buildtools third_party/waf:third_party/waf''')
39 manpages = [
40 'ctdb.1',
41 'ctdb.7',
42 'ctdbd.1',
43 'ctdbd.conf.5',
44 'ctdbd_wrapper.1',
45 'ctdb-statistics.7',
46 'ctdb-tunables.7',
47 'ltdbtool.1',
48 'onnode.1',
49 'ping_pong.1'
53 def set_options(opt):
54 opt.PRIVATE_EXTENSION_DEFAULT('ctdb')
56 opt.RECURSE('lib/replace')
58 opt.RECURSE('lib/util')
60 opt.RECURSE('lib/talloc')
61 opt.RECURSE('lib/tevent')
62 opt.RECURSE('lib/tdb')
64 opt.add_option('--enable-infiniband',
65 help=("Turn on infiniband support (default=no)"),
66 action="store_true", dest='ctdb_infiniband', default=False)
67 opt.add_option('--enable-pmda',
68 help=("Turn on PCP pmda support (default=no)"),
69 action="store_true", dest='ctdb_pmda', default=False)
71 opt.add_option('--with-logdir',
72 help=("Path to log directory"),
73 action="store", dest='ctdb_logdir', default=None)
74 opt.add_option('--with-socketpath',
75 help=("path to CTDB daemon socket"),
76 action="store", dest='ctdb_sockpath', default=None)
79 def configure(conf):
81 # CTDB relies on nested event loops
82 conf.env.TEVENT_DEPRECATED = 1
84 # No need to build python bindings for talloc/tevent/tdb
85 if conf.IN_LAUNCH_DIR():
86 conf.env.standalone_ctdb = True
87 Options.options.disable_python = True
89 conf.RECURSE('lib/replace')
91 if conf.env.standalone_ctdb:
92 conf.SAMBA_CHECK_PERL(mandatory=True)
94 conf.SAMBA_CHECK_PYTHON(mandatory=True, version=(2,5,0))
95 conf.SAMBA_CHECK_PYTHON_HEADERS(mandatory=True)
97 if conf.CHECK_FOR_THIRD_PARTY():
98 conf.RECURSE('third_party/popt')
99 else:
100 if not conf.CHECK_POPT():
101 raise Utils.WafError('popt development packages have not been found\nIf third_party is installed, check that it is in the proper place.')
102 else:
103 conf.define('USING_SYSTEM_POPT', 1)
105 conf.RECURSE('lib/util')
107 conf.RECURSE('lib/talloc')
108 conf.RECURSE('lib/tevent')
109 conf.RECURSE('lib/tdb')
110 if conf.env.standalone_ctdb or conf.CONFIG_GET('ENABLE_SELFTEST'):
111 conf.RECURSE('lib/socket_wrapper')
113 conf.CHECK_HEADERS('sched.h')
114 conf.CHECK_HEADERS('procinfo.h')
115 if sys.platform.startswith('aix') and not conf.CHECK_FUNCS('thread_setsched'):
116 Logs.error('Need thread_setsched() on AIX')
117 sys.exit(1)
118 elif not conf.CHECK_FUNCS('sched_setscheduler'):
119 Logs.error('Need sched_setscheduler()')
120 sys.exit(1)
121 conf.CHECK_FUNCS('mlockall')
123 if not conf.CHECK_VARIABLE('ETIME', headers='errno.h'):
124 conf.DEFINE('ETIME', 'ETIMEDOUT')
126 if sys.platform.startswith('linux'):
127 conf.SET_TARGET_TYPE('pcap', 'EMPTY')
128 else:
129 if not conf.CHECK_HEADERS('pcap.h'):
130 Logs.error('Need libpcap')
131 sys.exit(1)
132 if not conf.CHECK_FUNCS_IN('pcap_open_live', 'pcap', headers='pcap.h'):
133 Logs.error('Need libpcap')
134 sys.exit(1)
136 if not conf.CHECK_FUNCS_IN('backtrace backtrace_symbols', 'execinfo',
137 checklibc=True, headers='execinfo.h'):
138 Logs.error('backtrace support not available')
140 have_pmda = False
141 if Options.options.ctdb_pmda:
142 pmda_support = True
144 if not conf.CHECK_HEADERS('pcp/pmapi.h pcp/impl.h pcp/pmda.h',
145 together=True):
146 pmda_support = False
147 if not conf.CHECK_FUNCS_IN('pmProgname', 'pcp'):
148 pmda_support = False
149 if not conf.CHECK_FUNCS_IN('pmdaDaemon', 'pcp_pmda'):
150 pmda_support = False
151 if pmda_support:
152 have_pmda = True
153 else:
154 Logs.error("PMDA support not available")
155 if have_pmda:
156 Logs.info('Building with PMDA support')
157 conf.define('HAVE_PMDA', 1)
158 conf.env.CTDB_PMDADIR = os.path.join(conf.env.LOCALSTATEDIR,
159 'lib/pcp/pmdas/ctdb')
161 have_infiniband = False
162 if Options.options.ctdb_infiniband:
163 ib_support = True
165 if not conf.CHECK_HEADERS('infiniband/verbs.h rdma/rdma_cma.h'):
166 ib_support = False
167 if not conf.CHECK_FUNCS_IN('ibv_create_qp', 'ibverbs'):
168 ib_support = False
169 if not conf.CHECK_FUNCS_IN('rdma_connect', 'rdmacm'):
170 ib_support = False
171 if ib_support:
172 have_infiniband = True
173 else:
174 Logs.error("Infiniband support not available")
175 if have_infiniband:
176 Logs.info('Building with Infiniband support')
177 conf.define('HAVE_INFINIBAND', 1)
178 conf.define('USE_INFINIBAND', 1)
180 conf.env.CTDB_BINDIR = os.path.join(conf.env.EXEC_PREFIX, 'bin')
181 conf.env.CTDB_ETCDIR = os.path.join(conf.env.SYSCONFDIR, 'ctdb')
182 conf.env.CTDB_VARDIR = os.path.join(conf.env.LOCALSTATEDIR, 'lib/ctdb')
183 conf.env.CTDB_RUNDIR = os.path.join(conf.env.LOCALSTATEDIR, 'run/ctdb')
185 if Options.options.ctdb_logdir:
186 conf.env.CTDB_LOGDIR = Options.options.ctdb_logdir
187 else:
188 conf.env.CTDB_LOGDIR = os.path.join(conf.env.LOCALSTATEDIR, 'log')
190 if Options.options.ctdb_sockpath:
191 conf.env.CTDB_SOCKPATH = Options.options.ctdb_sockpath
192 else:
193 conf.env.CTDB_SOCKPATH = os.path.join(conf.env.CTDB_RUNDIR,
194 'ctdbd.socket')
195 conf.define('CTDB_SOCKET', conf.env.CTDB_SOCKPATH)
197 conf.ADD_CFLAGS('''-DCTDB_HELPER_BINDIR=\"%s\"
198 -DLOGDIR=\"%s\"
199 -DCTDB_ETCDIR=\"%s\"
200 -DCTDB_VARDIR=\"%s\"
201 -DCTDB_RUNDIR=\"%s\"''' % (
202 conf.env.CTDB_BINDIR,
203 conf.env.CTDB_LOGDIR,
204 conf.env.CTDB_ETCDIR,
205 conf.env.CTDB_VARDIR,
206 conf.env.CTDB_RUNDIR))
208 conf.env.CTDB_TEST_DATADIR = os.path.join(conf.env.EXEC_PREFIX,
209 'share/ctdb-tests')
210 conf.env.CTDB_TEST_LIBDIR = os.path.join(conf.env.LIBDIR, 'ctdb-tests')
212 # Allow unified compilation and separate compilation of utilities
213 # to find includes
214 if not conf.env.standalone_ctdb:
215 conf.ADD_EXTRA_INCLUDES('#include/public #ctdb/include #ctdb')
216 else:
217 if srcdir == '.':
218 # Building from tarball
219 conf.ADD_EXTRA_INCLUDES('#include')
220 else:
221 # Building standalone CTDB from within Samba tree
222 conf.ADD_EXTRA_INCLUDES('#ctdb/include')
223 conf.ADD_EXTRA_INCLUDES('#ctdb')
224 conf.ADD_EXTRA_INCLUDES('#lib #lib/replace')
226 conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True)
227 conf.DEFINE('SAMBA_UTIL_CORE_ONLY', 1, add_to_cflags=True)
228 conf.SAMBA_CONFIG_H()
230 if 'XSLTPROC_MANPAGES' in conf.env and conf.env['XSLTPROC_MANPAGES']:
231 conf.env.ctdb_generate_manpages = True
232 else:
233 conf.env.ctdb_generate_manpages = False
235 Logs.info("xsltproc unavailable, checking for pre-built manpages")
236 conf.env.ctdb_prebuilt_manpages = []
237 for m in manpages:
238 if os.path.exists(os.path.join("doc", m)):
239 Logs.info(" %s: yes" % (m))
240 conf.env.ctdb_prebuilt_manpages.append(m)
241 else:
242 Logs.info(" %s: no" % (m))
244 def build(bld):
245 if bld.env.standalone_ctdb:
246 # enable building of public headers in the build tree
247 bld.env.build_public_headers = 'include/public'
249 version_h = samba_utils.os_path_relpath(os.path.join(Options.launch_dir,
250 "version.h"),
251 bld.curdir)
253 if bld.env.standalone_ctdb:
254 ctdb_mkversion = '../packaging/mkversion.sh'
255 t = bld.SAMBA_GENERATOR('ctdb-version-header',
256 target='include/ctdb_version.h',
257 rule='%s ${TGT} %s' % (ctdb_mkversion, VERSION),
258 dep_vars=['VERSION'])
259 t.env.VERSION = VERSION
261 t = bld.SAMBA_GENERATOR('ctdb-samba-version-header',
262 target=version_h,
263 rule='printf "#include \\"ctdb_version.h\\" \\n#define SAMBA_VERSION_STRING CTDB_VERSION_STRING\\n" > ${TGT}',
264 dep_vars=['VERSION'])
265 t.env.VERSION = VERSION
266 else:
267 t = bld.SAMBA_GENERATOR('ctdb-samba-version-header',
268 target='include/ctdb_version.h',
269 rule='printf "#include \\"%s\\" \\n#define CTDB_VERSION_STRING SAMBA_VERSION_STRING\\n" > ${TGT}' % version_h,
270 dep_vars=['VERSION'])
271 t.env.VERSION = VERSION
273 bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
275 bld.RECURSE('lib/replace')
276 if bld.CHECK_FOR_THIRD_PARTY():
277 bld.RECURSE('third_party/popt')
279 bld.RECURSE('lib/tdb_wrap')
280 bld.RECURSE('lib/util')
282 bld.RECURSE('lib/talloc')
283 bld.RECURSE('lib/tevent')
284 bld.RECURSE('lib/tdb')
285 if bld.env.standalone_ctdb or bld.CONFIG_GET('SOCKET_WRAPPER'):
286 bld.RECURSE('lib/socket_wrapper')
288 if bld.env.standalone_ctdb:
289 # If a combined build is implemented, CTDB will want to
290 # build against samba-util rather than samba-util-core.
291 # Similarly, other Samba subsystems expect samba-util. So,
292 # for a standalone build, just define a fake samba-util
293 # subsystem that pulls in samba-util-core.
294 bld.SAMBA_SUBSYSTEM('samba-util',
295 source='',
296 deps='samba-util-core')
298 bld.SAMBA_SUBSYSTEM('ctdb-tcp',
299 source=bld.SUBDIR('tcp',
300 'tcp_connect.c tcp_init.c tcp_io.c'),
301 includes='include',
302 deps='replace tdb talloc tevent')
304 ib_deps = ''
305 if bld.env.HAVE_INFINIBAND:
306 bld.SAMBA_SUBSYSTEM('ctdb-ib',
307 source=bld.SUBDIR('ib',
308 '''ibwrapper.c ibw_ctdb.c
309 ibw_ctdb_init.c'''),
310 includes='include',
311 deps='replace talloc tevent')
312 ib_deps = ' ctdb-ib rdmacm ibverbs'
314 if sys.platform.startswith('linux'):
315 CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_linux.c')
316 elif sys.platform.startswith('aix'):
317 CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_aix.c')
318 elif sys.platform.startswith('freebsd'):
319 CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_freebsd.c')
320 elif sys.platform == 'kfreebsd':
321 CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_kfreebsd.c')
322 elif sys.platform == 'gnu':
323 CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_gnu.c')
324 else:
325 Logs.error("Platform %s not supported" % sys.platform)
327 bld.SAMBA_SUBSYSTEM('ctdb-system',
328 source=bld.SUBDIR('common',
329 'system_common.c system_util.c') +
330 CTDB_SYSTEM_SRC,
331 includes='include',
332 deps='replace talloc tevent tdb pcap')
334 bld.SAMBA_SUBSYSTEM('ctdb-common',
335 source=bld.SUBDIR('common',
336 '''ctdb_io.c ctdb_util.c ctdb_ltdb.c
337 cmdline.c rb_tree.c'''),
338 includes='include',
339 deps='replace popt talloc tevent tdb popt ctdb-system')
341 bld.SAMBA_SUBSYSTEM('ctdb-util',
342 source=bld.SUBDIR('common',
343 '''db_hash.c srvid.c reqid.c
344 pkt_read.c pkt_write.c comm.c
345 logging.c'''),
346 deps='replace talloc tevent tdb tevent-unix-util')
348 bld.SAMBA_SUBSYSTEM('ctdb-protocol',
349 source=bld.SUBDIR('protocol',
350 '''protocol_header.c protocol_packet.c
351 protocol_types.c protocol_call.c
352 protocol_message.c
353 protocol_control.c
354 protocol_client.c
355 protocol_util.c'''),
356 includes='include',
357 deps='replace talloc tdb')
359 bld.SAMBA_SUBSYSTEM('ctdb-client',
360 source=bld.SUBDIR('client', 'ctdb_client.c'),
361 includes='include',
362 deps='''replace popt talloc tevent tdb
363 samba-util tdb-wrap ctdb-util''')
365 bld.SAMBA_SUBSYSTEM('ctdb-client2',
366 source=bld.SUBDIR('client',
367 '''client_connect.c client_call.c
368 client_message.c client_control.c
369 client_message_sync.c
370 client_control_sync.c
371 client_db.c client_util.c
372 '''),
373 includes='include',
374 deps='replace talloc tevent tdb tdb-wrap')
376 bld.SAMBA_SUBSYSTEM('ctdb-ipalloc',
377 source=bld.SUBDIR('server',
378 '''ipalloc_deterministic.c
379 ipalloc_nondeterministic.c
380 ipalloc_lcp2.c
381 ipalloc_common.c
382 ipalloc.c
383 '''),
384 includes='include',
385 deps='ctdb-protocol replace talloc tevent')
387 bld.SAMBA_SUBSYSTEM('ctdb-server',
388 source='server/ctdbd.c ' +
389 bld.SUBDIR('server',
390 '''ctdb_daemon.c ctdb_recoverd.c
391 ctdb_recover.c ctdb_freeze.c
392 ctdb_tunables.c ctdb_monitor.c
393 ctdb_server.c ctdb_control.c
394 ctdb_call.c ctdb_ltdb_server.c
395 ctdb_traverse.c eventscript.c
396 ctdb_takeover.c ctdb_serverids.c
397 ctdb_persistent.c ctdb_keepalive.c
398 ctdb_logging.c
399 ctdb_logging_syslog.c
400 ctdb_logging_file.c
401 ctdb_uptime.c
402 ctdb_vacuum.c ctdb_banning.c
403 ctdb_statistics.c
404 ctdb_update_record.c
405 ctdb_lock.c ctdb_fork.c'''),
406 includes='include',
407 deps='ctdb-ipalloc replace popt talloc tevent tdb talloc_report')
409 bld.SAMBA_BINARY('ctdbd',
410 source='',
411 deps='''ctdb-server ctdb-client ctdb-common
412 ctdb-system ctdb-tcp ctdb-util''' +
413 ib_deps,
414 install_path='${SBINDIR}',
415 manpages='ctdbd.1')
417 bld.SAMBA_BINARY('ctdb',
418 source='tools/ctdb.c',
419 deps='ctdb-client ctdb-common ctdb-system ctdb-util',
420 includes='include',
421 install_path='${BINDIR}',
422 manpages='ctdb.1')
424 bld.SAMBA_BINARY('ltdbtool',
425 source='tools/ltdbtool.c',
426 includes='include',
427 deps='tdb',
428 install_path='${BINDIR}',
429 manpages='ltdbtool.1')
431 bld.SAMBA_BINARY('ctdb_lock_helper',
432 source='server/ctdb_lock_helper.c',
433 deps='samba-util ctdb-system talloc tdb',
434 includes='include',
435 install_path='${BINDIR}')
437 bld.SAMBA_BINARY('ctdb_event_helper',
438 source='server/ctdb_event_helper.c',
439 includes='include',
440 deps='samba-util ctdb-system replace tdb',
441 install_path='${BINDIR}')
443 bld.SAMBA_BINARY('ctdb_recovery_helper',
444 source='server/ctdb_recovery_helper.c',
445 deps='''ctdb-client2 ctdb-protocol ctdb-util
446 samba-util replace tdb''',
447 install_path='${BINDIR}')
449 bld.SAMBA_GENERATOR('ctdb-smnotify-h',
450 source='utils/smnotify/smnotify.x',
451 target='utils/smnotify/smnotify.h',
452 rule='rpcgen -h ${SRC} > ${TGT}')
454 xdr_buf_hack = 'sed -e "s@^\([ \t]*register int32_t \*buf\);@\\1 = buf;@"'
456 bld.SAMBA_GENERATOR('ctdb-smnotify-x',
457 source='utils/smnotify/smnotify.x',
458 target='utils/smnotify/gen_xdr.c',
459 rule='rpcgen -c ${SRC} | ' + xdr_buf_hack + ' > ${TGT}')
461 bld.SAMBA_GENERATOR('ctdb-smnotify-c',
462 source='utils/smnotify/smnotify.x',
463 target='utils/smnotify/gen_smnotify.c',
464 rule='rpcgen -l ${SRC} > ${TGT}')
466 bld.SAMBA_BINARY('smnotify',
467 source=bld.SUBDIR('utils/smnotify',
468 'smnotify.c gen_smnotify.c gen_xdr.c'),
469 deps='ctdb-smnotify-h ctdb-smnotify-c ctdb-smnotify-x popt',
470 includes='utils utils/smnotify',
471 install_path='${BINDIR}')
473 bld.SAMBA_BINARY('ping_pong',
474 source='utils/ping_pong/ping_pong.c',
475 deps='',
476 install_path='${BINDIR}',
477 manpages='ping_pong.1')
479 if bld.env.HAVE_PMDA:
480 bld.SAMBA_BINARY('pmdactdb',
481 source='utils/pmda/pmda_ctdb.c',
482 includes='include',
483 deps='ctdb-client ctdb-common pcp_pmda pcp',
484 install_path='${CTDB_PMDADIR}')
485 bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/Install',
486 destname='Install')
487 bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/Remove',
488 destname='Remove')
489 bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/pmns',
490 destname='pmns')
491 bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/domain.h',
492 destname='domain.h')
493 bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/help',
494 destname='help')
495 bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/README',
496 destname='README')
498 sed_expr1 = 's|/usr/local/var/lib/ctdb|%s|g' % (bld.env.CTDB_VARDIR)
499 sed_expr2 = 's|/usr/local/etc/ctdb|%s|g' % (bld.env.CTDB_ETCDIR)
500 sed_expr3 = 's|/usr/local/var/log|%s|g' % (bld.env.CTDB_LOGDIR)
501 sed_expr4 = 's|/usr/local/var/run/ctdb|%s|g' % (bld.env.CTDB_RUNDIR)
502 sed_expr5 = 's|/usr/local/sbin|%s|g' % (bld.env.SBINDIR)
503 sed_cmdline = '-e "%s" -e "%s" -e "%s" -e "%s" -e "%s"' % \
504 (sed_expr1, sed_expr2, sed_expr3, sed_expr4, sed_expr5)
506 for f in manpages:
507 x = '%s.xml' % (f)
508 bld.SAMBA_GENERATOR(x,
509 source=os.path.join('doc', x),
510 target=x,
511 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
513 if bld.env.ctdb_generate_manpages:
514 bld.MANPAGES('''onnode.1 ctdbd_wrapper.1 ctdbd.conf.5
515 ctdb.7 ctdb-statistics.7 ctdb-tunables.7''',
516 True)
517 else:
518 for m in bld.env.ctdb_prebuilt_manpages:
519 bld.SAMBA_GENERATOR(m,
520 source=os.path.join("doc", m),
521 target=m,
522 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
523 bld.INSTALL_FILES('${MANDIR}/man%s' % m[-1], m)
525 bld.SAMBA_GENERATOR('ctdb-onnode',
526 source='tools/onnode',
527 target='onnode',
528 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
529 bld.INSTALL_FILES('${BINDIR}', 'onnode',
530 destname='onnode', chmod=0755)
532 bld.SAMBA_GENERATOR('ctdb-diagnostics',
533 source='tools/ctdb_diagnostics',
534 target='ctdb_diagnostics',
535 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
536 bld.INSTALL_FILES('${BINDIR}', 'ctdb_diagnostics',
537 destname='ctdb_diagnostics', chmod=0755)
539 bld.SAMBA_GENERATOR('ctdbd-wrapper',
540 source='config/ctdbd_wrapper',
541 target='ctdbd_wrapper',
542 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
543 bld.INSTALL_FILES('${SBINDIR}', 'ctdbd_wrapper',
544 destname='ctdbd_wrapper', chmod=0755)
546 def SUBDIR_MODE_callback(arg, dirname, fnames):
547 for f in fnames:
548 fl = os.path.join(dirname, f)
549 if os.path.isdir(fl) or os.path.islink(fl):
550 continue
551 mode = os.lstat(fl).st_mode & 0777
552 if arg['trim_path']:
553 fl = samba_utils.os_path_relpath(fl, arg['trim_path'])
554 arg['file_list'].append([fl, mode])
556 def SUBDIR_MODE(path, trim_path=None):
557 pd = {'trim_path': trim_path, 'file_list': []}
558 os.path.walk(path, SUBDIR_MODE_callback, pd)
559 return pd['file_list']
561 etc_subdirs = [
562 'events.d',
563 'nfs-checks.d'
566 if bld.env.standalone_ctdb:
567 configdir = 'config'
568 else:
569 configdir = 'ctdb/config'
571 for t in etc_subdirs:
572 files = SUBDIR_MODE('%s/%s' % (configdir, t), trim_path=configdir)
573 for fmode in files:
574 bld.INSTALL_FILES(bld.env.CTDB_ETCDIR, 'config/%s' % fmode[0],
575 destname=fmode[0], chmod=fmode[1])
577 bld.SAMBA_GENERATOR('ctdb-functions',
578 source='config/functions',
579 target='functions',
580 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
581 bld.INSTALL_FILES(bld.env.CTDB_ETCDIR, 'functions', destname='functions')
583 etc_scripts = [
584 'ctdb-crash-cleanup.sh',
585 'debug-hung-script.sh',
586 'debug_locks.sh',
587 'gcore_trace.sh',
588 'nfs-linux-kernel-callout',
589 'notify.sh',
590 'statd-callout'
593 for t in etc_scripts:
594 bld.INSTALL_FILES(bld.env.CTDB_ETCDIR, 'config/%s' % t,
595 destname=t, chmod=0755)
597 bld.SAMBA_GENERATOR('ctdb-sudoers',
598 source='config/ctdb.sudoers',
599 target='ctdb.sudoers',
600 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
601 bld.INSTALL_FILES('${SYSCONFDIR}/sudoers.d', 'ctdb.sudoers',
602 destname='ctdb')
604 bld.INSTALL_FILES('${CTDB_ETCDIR}/notify.d', 'config/notify.d.README',
605 destname='README')
607 bld.install_dir(bld.env.CTDB_LOGDIR)
608 bld.install_dir(bld.env.CTDB_RUNDIR)
609 bld.install_dir(bld.env.CTDB_VARDIR)
611 sed_expr = 's/@PACKAGE_VERSION@/%s/g' % VERSION
612 t = bld.SAMBA_GENERATOR('ctdb-pc',
613 source='ctdb.pc.in',
614 target='ctdb.pc',
615 rule='sed -e "%s" ${SRC} > ${TGT}' % sed_expr,
616 dep_vars=['VERSION'])
617 t.env.VERSION = VERSION
618 bld.INSTALL_FILES('${LIBDIR}/pkgconfig', 'ctdb.pc')
620 # Unit tests
621 ctdb_unit_tests = [
622 'db_hash_test',
623 'srvid_test',
624 'pkt_read_test',
625 'pkt_write_test',
626 'comm_test',
627 'comm_server_test',
628 'comm_client_test',
629 'protocol_types_test',
630 'protocol_client_test',
633 for target in ctdb_unit_tests:
634 src = 'tests/src/' + target + '.c'
636 bld.SAMBA_BINARY(target,
637 source=src,
638 deps='talloc tevent tdb tevent-unix-util',
639 install_path='${CTDB_TEST_LIBDIR}')
641 bld.SAMBA_BINARY('reqid_test',
642 source='tests/src/reqid_test.c',
643 deps='samba-util',
644 install_path='${CTDB_TEST_LIBDIR}')
646 # Test binaries
647 ctdb_tests = [
648 'rb_test',
649 'ctdb_bench',
650 'ctdb_fetch',
651 'ctdb_fetch_one',
652 'ctdb_fetch_readonly_once',
653 'ctdb_fetch_readonly_loop',
654 'ctdb_trackingdb_test',
655 'ctdb_update_record',
656 'ctdb_update_record_persistent',
657 'ctdb_store',
658 'ctdb_traverse',
659 'ctdb_randrec',
660 'ctdb_persistent',
661 'ctdb_porting_tests',
662 'ctdb_transaction',
663 'ctdb_lock_tdb'
666 for target in ctdb_tests:
667 src = 'tests/src/' + target + '.c'
669 bld.SAMBA_BINARY(target,
670 source=src,
671 includes='include',
672 deps='ctdb-client ctdb-common ctdb-util',
673 install_path='${CTDB_TEST_LIBDIR}')
675 bld.SAMBA_BINARY('ctdb_takeover_tests',
676 source='tests/src/ctdb_takeover_tests.c',
677 deps='''replace popt tdb tevent talloc ctdb-system
678 samba-util tdb-wrap talloc_report
679 ctdb-protocol''' +
680 ib_deps,
681 includes='include',
682 install_path='${CTDB_TEST_LIBDIR}')
684 bld.SAMBA_BINARY('ctdb_functest',
685 source='tests/src/ctdb_functest.c',
686 deps='''replace tdb tevent talloc popt ctdb-system
687 samba-util tdb-wrap''',
688 includes='include',
689 install_path='${CTDB_TEST_LIBDIR}')
691 bld.SAMBA_BINARY('ctdb_stubtest',
692 source='tests/src/ctdb_test.c',
693 deps='''replace tdb tevent talloc popt ctdb-system
694 samba-util tdb-wrap''',
695 includes='include',
696 install_path='${CTDB_TEST_LIBDIR}')
698 if bld.env.HAVE_INFINIBAND:
699 bld.SAMBA_BINARY('ibwrapper_test',
700 source='ib/ibwrapper_test.c',
701 includes='include',
702 deps='replace talloc ctdb-client ctdb-common' +
703 ib_deps,
704 install_path='${CTDB_TEST_LIBDIR}')
706 test_subdirs = [
707 'complex',
708 'cunit',
709 'events.d',
710 'eventscripts',
711 'onnode',
712 'simple',
713 'takeover',
714 'tool'
717 for t in test_subdirs:
718 files = SUBDIR_MODE('tests/%s' % t, trim_path='tests')
719 for fmode in files:
720 bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR, 'tests/%s' % fmode[0],
721 destname=fmode[0], chmod=fmode[1])
723 # Install tests/scripts directory without test_wrap
724 test_scripts = [
725 'common.sh',
726 'integration.bash',
727 'unit.sh'
730 for t in test_scripts:
731 bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR,
732 os.path.join('tests/scripts', t),
733 destname=os.path.join('scripts', t))
735 sed_expr = 's@^TEST_SCRIPTS_DIR=.*@&\\nexport TEST_BIN_DIR=\"%s\"@' % (
736 bld.env.CTDB_TEST_LIBDIR)
737 bld.SAMBA_GENERATOR('ctdb-test-wrap',
738 source='tests/scripts/test_wrap',
739 target='test_wrap',
740 rule='sed -e "%s" ${SRC} > ${TGT}' % sed_expr)
741 bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR+"/scripts", 'test_wrap',
742 destname='test_wrap', chmod=0755)
744 sed_expr1 = 's@^test_dir=.*@test_dir=%s\\nexport TEST_BIN_DIR=\"%s\"@' % (
745 bld.env.CTDB_TEST_DATADIR, bld.env.CTDB_TEST_LIBDIR)
746 sed_expr2 = 's@^\(export CTDB_TESTS_ARE_INSTALLED\)=false@\\1=true@'
747 bld.SAMBA_GENERATOR('ctdb-test-runner',
748 source='tests/run_tests.sh',
749 target='ctdb_run_tests.sh',
750 rule='sed -e "%s" -e "%s" ${SRC} > ${TGT}' % (
751 sed_expr1, sed_expr2))
752 bld.INSTALL_FILES('${BINDIR}', 'ctdb_run_tests.sh',
753 destname='ctdb_run_tests', chmod=0755)
754 bld.symlink_as(os.path.join(bld.env.BINDIR, 'ctdb_run_cluster_tests'),
755 'ctdb_run_tests')
757 test_eventscript_links = [
758 'events.d',
759 'functions',
760 'nfs-checks.d',
761 'nfs-linux-kernel-callout',
762 'statd-callout'
765 test_link_dir = os.path.join(bld.env.CTDB_TEST_DATADIR,
766 'eventscripts/etc-ctdb')
767 for t in test_eventscript_links:
768 bld.symlink_as(os.path.join(test_link_dir, t),
769 os.path.join(bld.env.CTDB_ETCDIR, t))
771 # Tests that use onnode need to overwrite link to in-tree
772 # functions file when installed
773 bld.symlink_as(os.path.join(bld.env.CTDB_TEST_DATADIR, 'onnode/functions'),
774 os.path.join(bld.env.CTDB_ETCDIR, 'functions'))
775 bld.symlink_as(os.path.join(bld.env.CTDB_TEST_DATADIR, 'simple/functions'),
776 os.path.join(bld.env.CTDB_ETCDIR, 'functions'))
778 # Need a link to nodes file because $CTDB_BASE is overridden
779 bld.symlink_as(os.path.join(bld.env.CTDB_TEST_DATADIR, 'simple/nodes'),
780 os.path.join(bld.env.CTDB_ETCDIR, 'nodes'))
783 def testonly(ctx):
784 cmd = 'tests/run_tests.sh -V tests/var'
785 ret = samba_utils.RUN_COMMAND(cmd)
786 if ret != 0:
787 print('tests exited with exit status %d' % ret)
788 sys.exit(ret)
791 def test(ctx):
792 import Scripting
793 Scripting.commands.append('build')
794 Scripting.commands.append('testonly')
797 def autotest(ctx):
798 ld = 'LD_PRELOAD=%s/bin/shared/libsocket-wrapper.so' % os.getcwd()
799 cmd = '%s tests/run_tests.sh -e -S -C' % ld
800 ret = samba_utils.RUN_COMMAND(cmd)
801 if ret != 0:
802 print('autotest exited with exit status %d' % ret)
803 sys.exit(ret)
806 def show_version(ctx):
807 print VERSION
810 def dist():
811 samba_dist.DIST_FILES('VERSION:VERSION', extend=True)
813 t = 'include/ctdb_version.h'
814 cmd = 'packaging/mkversion.sh %s %s' % (t, VERSION)
815 ret = samba_utils.RUN_COMMAND(cmd)
816 if ret != 0:
817 print('Command "%s" failed with exit status %d' % (cmd, ret))
818 sys.exit(ret)
819 samba_dist.DIST_FILES('ctdb/%s:%s' % (t, t), extend=True)
821 t = 'ctdb.spec'
822 sed_expr1 = 's/@VERSION@/%s/g' % VERSION
823 sed_expr2 = 's/@RELEASE@/%s/g' % '1'
824 cmd = 'sed -e "%s" -e "%s" packaging/RPM/ctdb.spec.in > %s' % (
825 sed_expr1, sed_expr2, t)
826 ret = samba_utils.RUN_COMMAND(cmd)
827 if ret != 0:
828 print('Command "%s" failed with exit status %d' % (cmd, ret))
829 sys.exit(ret)
830 samba_dist.DIST_FILES('ctdb/%s:%s' % (t, t), extend=True)
832 cmd = 'make -C doc'
833 ret = samba_utils.RUN_COMMAND(cmd)
834 if ret != 0:
835 print('Command "%s" failed with exit status %d' % (cmd, ret))
836 sys.exit(ret)
837 for t in manpages:
838 samba_dist.DIST_FILES('ctdb/doc/%s:doc/%s' % (t, t), extend=True)
839 samba_dist.DIST_FILES('ctdb/doc/%s.html:doc/%s.html' % (t, t),
840 extend=True)
842 samba_dist.dist()
845 def rpmonly(ctx):
846 opts = os.getenv('RPM_OPTIONS') or ''
847 cmd = 'rpmbuild -ta --clean --rmsource %s ctdb-%s.tar.gz' % (opts, VERSION)
848 ret = samba_utils.RUN_COMMAND(cmd)
849 if ret != 0:
850 print('rpmbuild exited with exit status %d' % ret)
851 sys.exit(ret)
854 def rpm(ctx):
855 import Scripting
856 Scripting.commands.append('dist')
857 Scripting.commands.append('rpmonly')
860 def ctags(ctx):
861 "build 'tags' file using ctags"
862 import Utils
863 source_root = os.path.dirname(Utils.g_module.root_path)
864 cmd = 'ctags $(find %s -name "*.[ch]")' % source_root
865 print("Running: %s" % cmd)
866 ret = samba_utils.RUN_COMMAND(cmd)
867 if ret != 0:
868 print('ctags failed with exit status %d' % ret)
869 sys.exit(ret)