fcdb7c03e838060ebc3ee369a0f2fcd555e55bd4
[ambi/samba-autobuild/.git] / ctdb / wscript
1 #!/usr/bin/env python
2
3 APPNAME = 'ctdb'
4
5 blddir = 'bin'
6
7 import sys, os
8
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')
14
15 import wafsamba, samba_dist, Options, Logs, Utils
16 import samba_utils, samba_version
17
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")
25
26 version = samba_version.samba_version_file('%s/VERSION' % vdir, vdir, env)
27 VERSION = version.STRING.replace('-', '.')
28
29 default_prefix = Options.default_prefix = '/usr/local'
30
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''')
38
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'
50 ]
51
52
53 def set_options(opt):
54     opt.PRIVATE_EXTENSION_DEFAULT('ctdb')
55
56     opt.RECURSE('lib/replace')
57
58     opt.RECURSE('lib/util')
59
60     opt.RECURSE('lib/talloc')
61     opt.RECURSE('lib/tevent')
62     opt.RECURSE('lib/tdb')
63
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)
70
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)
77
78
79 def configure(conf):
80
81     # CTDB relies on nested event loops
82     conf.env.TEVENT_DEPRECATED = 1
83
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
88
89     conf.RECURSE('lib/replace')
90
91     if conf.env.standalone_ctdb:
92         conf.SAMBA_CHECK_PERL(mandatory=True)
93
94         conf.SAMBA_CHECK_PYTHON(mandatory=True, version=(2,5,0))
95         conf.SAMBA_CHECK_PYTHON_HEADERS(mandatory=True)
96
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)
104
105     conf.RECURSE('lib/util')
106
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')
112
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')
122
123     if not conf.CHECK_VARIABLE('ETIME', headers='errno.h'):
124         conf.DEFINE('ETIME', 'ETIMEDOUT')
125
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)
135
136     if not conf.CHECK_FUNCS_IN('backtrace backtrace_symbols', 'execinfo',
137                                checklibc=True, headers='execinfo.h'):
138         Logs.error('backtrace support not available')
139
140     have_pmda = False
141     if Options.options.ctdb_pmda:
142         pmda_support = True
143
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')
160
161     have_infiniband = False
162     if Options.options.ctdb_infiniband:
163         ib_support = True
164
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)
179
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')
184
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')
189
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
196     conf.ADD_CFLAGS('''-DCTDB_HELPER_BINDIR=\"%s\"
197                        -DLOGDIR=\"%s\"
198                        -DSOCKPATH=\"%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_SOCKPATH,
205                     conf.env.CTDB_ETCDIR,
206                     conf.env.CTDB_VARDIR,
207                     conf.env.CTDB_RUNDIR))
208
209     conf.env.CTDB_TEST_DATADIR = os.path.join(conf.env.EXEC_PREFIX,
210                                               'share/ctdb-tests')
211     conf.env.CTDB_TEST_LIBDIR = os.path.join(conf.env.LIBDIR, 'ctdb-tests')
212
213     # Allow unified compilation and separate compilation of utilities
214     # to find includes
215     if not conf.env.standalone_ctdb:
216         conf.ADD_EXTRA_INCLUDES('#include/public #ctdb/include')
217     else:
218         if srcdir == '.':
219             # Building from tarball
220             conf.ADD_EXTRA_INCLUDES('#include')
221             conf.ADD_EXTRA_INCLUDES('#include/internal')
222         else:
223             # Building standalone CTDB from within Samba tree
224             conf.ADD_EXTRA_INCLUDES('#ctdb/include')
225             conf.ADD_EXTRA_INCLUDES('#ctdb/include/internal')
226             conf.ADD_EXTRA_INCLUDES('#ctdb')
227         conf.ADD_EXTRA_INCLUDES('#lib #lib/replace')
228
229         conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True)
230         conf.DEFINE('SAMBA_UTIL_CORE_ONLY', 1, add_to_cflags=True)
231         conf.SAMBA_CONFIG_H()
232
233
234 def build(bld):
235     if bld.env.standalone_ctdb:
236         # enable building of public headers in the build tree
237         bld.env.build_public_headers = 'include/public'
238
239     version_h = samba_utils.os_path_relpath(os.path.join(Options.launch_dir,
240                                                          "version.h"),
241                                             bld.curdir)
242
243     if bld.env.standalone_ctdb:
244         ctdb_mkversion = '../packaging/mkversion.sh'
245         t = bld.SAMBA_GENERATOR('ctdb-version-header',
246                                 target='include/ctdb_version.h',
247                                 rule='%s ${TGT} %s' % (ctdb_mkversion, VERSION),
248                                 dep_vars=['VERSION'])
249         t.env.VERSION = VERSION
250
251         t = bld.SAMBA_GENERATOR('ctdb-samba-version-header',
252                                 target=version_h,
253                                 rule='printf "#include \\"ctdb_version.h\\" \\n#define SAMBA_VERSION_STRING CTDB_VERSION_STRING\\n" > ${TGT}',
254                                 dep_vars=['VERSION'])
255         t.env.VERSION = VERSION
256     else:
257         t = bld.SAMBA_GENERATOR('ctdb-samba-version-header',
258                                 target='include/ctdb_version.h',
259                                 rule='printf "#include \\"%s\\" \\n#define CTDB_VERSION_STRING SAMBA_VERSION_STRING\\n" > ${TGT}' % version_h,
260                                 dep_vars=['VERSION'])
261         t.env.VERSION = VERSION
262
263     bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
264
265     bld.RECURSE('lib/replace')
266     if bld.CHECK_FOR_THIRD_PARTY():
267         bld.RECURSE('third_party/popt')
268
269     bld.RECURSE('lib/tdb_wrap')
270     bld.RECURSE('lib/util')
271
272     bld.RECURSE('lib/talloc')
273     bld.RECURSE('lib/tevent')
274     bld.RECURSE('lib/tdb')
275     if bld.env.standalone_ctdb or bld.CONFIG_GET('SOCKET_WRAPPER'):
276         bld.RECURSE('lib/socket_wrapper')
277
278     if bld.env.standalone_ctdb:
279         # In a combined build is implemented, CTDB will wanted to
280         # build against samba-util rather than samba-util-core.
281         # Similarly, other Samba subsystems expect samba-util.  So,
282         # for a standalone build, just define a fake samba-util
283         # subsystem that pulls in samba-util-core.
284         bld.SAMBA_SUBSYSTEM('samba-util',
285                             source='',
286                             deps='samba-util-core')
287
288     bld.SAMBA_SUBSYSTEM('ctdb-tcp',
289                         source=bld.SUBDIR('tcp',
290                                           'tcp_connect.c tcp_init.c tcp_io.c'),
291                         includes='include include/internal',
292                         deps='replace tdb talloc tevent')
293
294     ib_deps = ''
295     if bld.env.HAVE_INFINIBAND:
296         bld.SAMBA_SUBSYSTEM('ctdb-ib',
297                             source=bld.SUBDIR('ib',
298                                               '''ibwrapper.c ibw_ctdb.c
299                                                  ibw_ctdb_init.c'''),
300                             includes='include include/internal',
301                             deps='replace')
302         ib_deps = ' ctdb-ib rdmacm ibverbs'
303
304     if sys.platform.startswith('linux'):
305         CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_linux.c')
306     elif sys.platform.startswith('aix'):
307         CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_aix.c')
308     elif sys.platform.startswith('freebsd'):
309         CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_freebsd.c')
310     elif sys.platform == 'kfreebsd':
311         CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_kfreebsd.c')
312     elif sys.platform == 'gnu':
313         CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_gnu.c')
314     else:
315         Logs.error("Platform %s not supported" % sys.platform)
316
317     bld.SAMBA_SUBSYSTEM('ctdb-system',
318                         source='common/system_common.c ' + CTDB_SYSTEM_SRC,
319                         includes='include include/internal',
320                         deps='replace talloc tevent tdb pcap')
321
322     bld.SAMBA_SUBSYSTEM('ctdb-common',
323                         source=bld.SUBDIR('common',
324                                           '''ctdb_io.c ctdb_util.c ctdb_ltdb.c
325                                              cmdline.c rb_tree.c
326                                              ctdb_fork.c'''),
327                         includes='include include/internal common .',
328                         deps='replace popt talloc tevent tdb popt ctdb-system')
329
330     bld.SAMBA_SUBSYSTEM('ctdb-common-util',
331                         source=bld.SUBDIR('common',
332                                           'system_util.c ctdb_logging.c'),
333                         includes='include include/internal',
334                         deps='replace tevent tdb')
335
336     bld.SAMBA_SUBSYSTEM('ctdb-util',
337                         source=bld.SUBDIR('common',
338                                           '''db_hash.c srvid.c reqid.c
339                                              pkt_read.c pkt_write.c comm.c
340                                              logging.c'''),
341                         deps='replace talloc tevent tdb tevent-unix-util')
342
343     bld.SAMBA_SUBSYSTEM('ctdb-protocol',
344                         source=bld.SUBDIR('protocol',
345                                           '''protocol_header.c protocol_packet.c
346                                              protocol_types.c protocol_call.c
347                                              protocol_message.c
348                                              protocol_control.c
349                                              protocol_client.c
350                                              protocol_util.c'''),
351                         includes='include',
352                         deps='replace talloc tdb')
353
354     bld.SAMBA_SUBSYSTEM('ctdb-client',
355                         source=bld.SUBDIR('client', 'ctdb_client.c'),
356                         includes='include include/internal',
357                         deps='''replace popt talloc tevent tdb
358                                 samba-util tdb-wrap ctdb-util''')
359
360     bld.SAMBA_SUBSYSTEM('ctdb-client2',
361                         source=bld.SUBDIR('client',
362                                           '''client_connect.c client_call.c
363                                              client_message.c client_control.c
364                                              client_message_sync.c
365                                              client_control_sync.c
366                                              client_db.c client_util.c
367                                           '''),
368                         includes='include include/internal',
369                         deps='replace talloc tevent tdb tdb-wrap')
370
371     bld.SAMBA_SUBSYSTEM('ctdb-server',
372                         source='server/ctdbd.c ' +
373                                bld.SUBDIR('server',
374                                           '''ctdb_daemon.c ctdb_recoverd.c
375                                              ctdb_recover.c ctdb_freeze.c
376                                              ctdb_tunables.c ctdb_monitor.c
377                                              ctdb_server.c ctdb_control.c
378                                              ctdb_call.c ctdb_ltdb_server.c
379                                              ctdb_traverse.c eventscript.c
380                                              ctdb_takeover.c ctdb_serverids.c
381                                              ctdb_persistent.c ctdb_keepalive.c
382                                              ctdb_logging.c
383                                              ctdb_logging_syslog.c
384                                              ctdb_logging_file.c
385                                              ctdb_uptime.c
386                                              ctdb_vacuum.c ctdb_banning.c
387                                              ctdb_statistics.c
388                                              ctdb_update_record.c
389                                              ctdb_lock.c'''),
390                         includes='include include/internal',
391                         deps='replace popt talloc tevent tdb talloc_report')
392
393     bld.SAMBA_BINARY('ctdbd',
394                      source='',
395                      deps='''ctdb-server ctdb-client ctdb-common
396                              ctdb-common-util ctdb-tcp ctdb-util''' +
397                           ib_deps,
398                      install_path='${SBINDIR}',
399                      manpages='ctdbd.1')
400
401     bld.SAMBA_BINARY('ctdb',
402                      source='tools/ctdb.c tools/ctdb_vacuum.c',
403                      deps='''ctdb-client ctdb-common ctdb-common-util
404                              ctdb-util''',
405                      includes='include include/internal',
406                      install_path='${BINDIR}',
407                      manpages='ctdb.1')
408
409     bld.SAMBA_BINARY('ltdbtool',
410                      source='tools/ltdbtool.c',
411                      includes='include',
412                      deps='tdb',
413                      install_path='${BINDIR}',
414                      manpages='ltdbtool.1')
415
416     bld.SAMBA_BINARY('ctdb_lock_helper',
417                      source='server/ctdb_lock_helper.c',
418                      deps='samba-util ctdb-common-util talloc tdb',
419                      includes='include include/internal',
420                      install_path='${BINDIR}')
421
422     bld.SAMBA_BINARY('ctdb_event_helper',
423                      source='server/ctdb_event_helper.c',
424                      includes='include include/internal',
425                      deps='samba-util ctdb-common-util replace tdb',
426                      install_path='${BINDIR}')
427
428     bld.SAMBA_GENERATOR('ctdb-smnotify-h',
429                         source='utils/smnotify/smnotify.x',
430                         target='utils/smnotify/smnotify.h',
431                         rule='rpcgen -h ${SRC} > ${TGT}')
432
433     xdr_buf_hack = 'sed -e "s@^\([ \t]*register int32_t \*buf\);@\\1 = buf;@"'
434
435     bld.SAMBA_GENERATOR('ctdb-smnotify-x',
436                         source='utils/smnotify/smnotify.x',
437                         target='utils/smnotify/gen_xdr.c',
438                         rule='rpcgen -c ${SRC} | ' + xdr_buf_hack + ' > ${TGT}')
439
440     bld.SAMBA_GENERATOR('ctdb-smnotify-c',
441                         source='utils/smnotify/smnotify.x',
442                         target='utils/smnotify/gen_smnotify.c',
443                         rule='rpcgen -l ${SRC} > ${TGT}')
444
445     bld.SAMBA_BINARY('smnotify',
446                      source=bld.SUBDIR('utils/smnotify',
447                                        'smnotify.c gen_smnotify.c gen_xdr.c'),
448                      deps='ctdb-smnotify-h ctdb-smnotify-c ctdb-smnotify-x popt',
449                      includes='utils utils/smnotify',
450                      install_path='${BINDIR}')
451
452     bld.SAMBA_BINARY('ping_pong',
453                      source='utils/ping_pong/ping_pong.c',
454                      deps='',
455                      install_path='${BINDIR}',
456                      manpages='ping_pong.1')
457
458     if bld.env.HAVE_PMDA:
459         bld.SAMBA_BINARY('pmdactdb',
460                          source='utils/pmda/pmda_ctdb.c',
461                          includes='include include/internal',
462                          deps='''ctdb-client ctdb-common
463                                  ctdb-common-util pcp_pmda pcp''',
464                          install_path='${CTDB_PMDADIR}')
465         bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/Install',
466                           destname='Install')
467         bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/Remove',
468                           destname='Remove')
469         bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/pmns',
470                           destname='pmns')
471         bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/domain.h',
472                           destname='domain.h')
473         bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/help',
474                           destname='help')
475         bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/README',
476                           destname='README')
477
478     sed_expr1 = 's|/usr/local/var/lib/ctdb|%s|g'  % (bld.env.CTDB_VARDIR)
479     sed_expr2 = 's|/usr/local/etc/ctdb|%s|g'      % (bld.env.CTDB_ETCDIR)
480     sed_expr3 = 's|/usr/local/var/log|%s|g'       % (bld.env.CTDB_LOGDIR)
481     sed_expr4 = 's|/usr/local/var/run/ctdb|%s|g'  % (bld.env.CTDB_RUNDIR)
482     sed_expr5 = 's|/usr/local/sbin|%s|g'          % (bld.env.SBINDIR)
483     sed_cmdline = '-e "%s" -e "%s" -e "%s" -e "%s" -e "%s"' % \
484                        (sed_expr1, sed_expr2, sed_expr3, sed_expr4, sed_expr5)
485
486     for f in manpages:
487         x = '%s.xml' % (f)
488         bld.SAMBA_GENERATOR(x,
489                             source=os.path.join('doc', x),
490                             target=x,
491                             rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
492
493     if 'XSLTPROC_MANPAGES' in bld.env and bld.env['XSLTPROC_MANPAGES']:
494         bld.MANPAGES('''onnode.1 ctdbd_wrapper.1 ctdbd.conf.5
495                         ctdb.7 ctdb-statistics.7 ctdb-tunables.7''',
496                       True)
497     else:
498         for m in manpages:
499             bld.SAMBA_GENERATOR(m,
500                                 source=os.path.join("doc", m),
501                                 target=m,
502                                 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
503             bld.INSTALL_FILES('${MANDIR}/man%s' % m[-1], m)
504
505     bld.SAMBA_GENERATOR('ctdb-onnode',
506                         source='tools/onnode',
507                         target='onnode',
508                         rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
509     bld.INSTALL_FILES('${BINDIR}', 'onnode',
510                       destname='onnode', chmod=0755)
511
512     bld.SAMBA_GENERATOR('ctdb-diagnostics',
513                         source='tools/ctdb_diagnostics',
514                         target='ctdb_diagnostics',
515                         rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
516     bld.INSTALL_FILES('${BINDIR}', 'ctdb_diagnostics',
517                       destname='ctdb_diagnostics', chmod=0755)
518
519     bld.SAMBA_GENERATOR('ctdbd-wrapper',
520                         source='config/ctdbd_wrapper',
521                         target='ctdbd_wrapper',
522                         rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
523     bld.INSTALL_FILES('${SBINDIR}', 'ctdbd_wrapper',
524                       destname='ctdbd_wrapper', chmod=0755)
525
526     def SUBDIR_MODE_callback(arg, dirname, fnames):
527         for f in fnames:
528             fl = os.path.join(dirname, f)
529             if os.path.isdir(fl) or os.path.islink(fl):
530                 continue
531             mode = os.lstat(fl).st_mode & 0777
532             if arg['trim_path']:
533                 fl = samba_utils.os_path_relpath(fl, arg['trim_path'])
534             arg['file_list'].append([fl, mode])
535
536     def SUBDIR_MODE(path, trim_path=None):
537         pd = {'trim_path': trim_path, 'file_list': []}
538         os.path.walk(path, SUBDIR_MODE_callback, pd)
539         return pd['file_list']
540
541     etc_subdirs = [
542         'events.d',
543         'nfs-checks.d'
544     ]
545
546     if bld.env.standalone_ctdb:
547         configdir = 'config'
548     else:
549         configdir = 'ctdb/config'
550
551     for t in etc_subdirs:
552         files = SUBDIR_MODE('%s/%s' % (configdir, t), trim_path=configdir)
553         for fmode in files:
554             bld.INSTALL_FILES(bld.env.CTDB_ETCDIR, 'config/%s' % fmode[0],
555                               destname=fmode[0], chmod=fmode[1])
556
557     bld.SAMBA_GENERATOR('ctdb-functions',
558                         source='config/functions',
559                         target='functions',
560                         rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
561     bld.INSTALL_FILES(bld.env.CTDB_ETCDIR, 'functions', destname='functions')
562
563     etc_scripts = [
564         'ctdb-crash-cleanup.sh',
565         'debug-hung-script.sh',
566         'debug_locks.sh',
567         'gcore_trace.sh',
568         'nfs-linux-kernel-callout',
569         'notify.sh',
570         'statd-callout'
571     ]
572
573     for t in etc_scripts:
574         bld.INSTALL_FILES(bld.env.CTDB_ETCDIR, 'config/%s' % t,
575                           destname=t, chmod=0755)
576
577     bld.SAMBA_GENERATOR('ctdb-sudoers',
578                         source='config/ctdb.sudoers',
579                         target='ctdb.sudoers',
580                         rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
581     bld.INSTALL_FILES('${SYSCONFDIR}/sudoers.d', 'ctdb.sudoers',
582                       destname='ctdb')
583
584     bld.INSTALL_FILES('${CTDB_ETCDIR}/notify.d', 'config/notify.d.README',
585                       destname='README')
586
587     bld.install_dir(bld.env.CTDB_LOGDIR)
588     bld.install_dir(bld.env.CTDB_RUNDIR)
589     bld.install_dir(bld.env.CTDB_VARDIR)
590
591     sed_expr = 's/@PACKAGE_VERSION@/%s/g' % VERSION
592     t = bld.SAMBA_GENERATOR('ctdb-pc',
593                             source='ctdb.pc.in',
594                             target='ctdb.pc',
595                             rule='sed -e "%s" ${SRC} > ${TGT}' % sed_expr,
596                             dep_vars=['VERSION'])
597     t.env.VERSION = VERSION
598     bld.INSTALL_FILES('${LIBDIR}/pkgconfig', 'ctdb.pc')
599
600     # Unit tests
601     ctdb_unit_tests = [
602         'db_hash_test',
603         'srvid_test',
604         'pkt_read_test',
605         'pkt_write_test',
606         'comm_test',
607         'comm_server_test',
608         'comm_client_test',
609         'protocol_types_test',
610         'protocol_client_test',
611     ]
612
613     for target in ctdb_unit_tests:
614         src = 'tests/src/' + target + '.c'
615
616         bld.SAMBA_BINARY(target,
617                          source=src,
618                          deps='talloc tevent tdb tevent-unix-util',
619                          install_path='${CTDB_TEST_LIBDIR}')
620
621     bld.SAMBA_BINARY('reqid_test',
622                      source='tests/src/reqid_test.c',
623                      deps='samba-util',
624                      install_path='${CTDB_TEST_LIBDIR}')
625
626     # Test binaries
627     ctdb_tests = [
628         'rb_test',
629         'ctdb_bench',
630         'ctdb_fetch',
631         'ctdb_fetch_one',
632         'ctdb_fetch_readonly_once',
633         'ctdb_fetch_readonly_loop',
634         'ctdb_trackingdb_test',
635         'ctdb_update_record',
636         'ctdb_update_record_persistent',
637         'ctdb_store',
638         'ctdb_traverse',
639         'ctdb_randrec',
640         'ctdb_persistent',
641         'ctdb_porting_tests',
642         'ctdb_transaction',
643         'ctdb_lock_tdb'
644     ]
645
646     for target in ctdb_tests:
647         src = 'tests/src/' + target + '.c'
648
649         bld.SAMBA_BINARY(target,
650                          source=src,
651                          includes='include include/internal',
652                          deps='''ctdb-client ctdb-common ctdb-common-util
653                                  ctdb-util''',
654                          install_path='${CTDB_TEST_LIBDIR}')
655
656     bld.SAMBA_BINARY('ctdb_takeover_tests',
657                      source='tests/src/ctdb_takeover_tests.c',
658                      deps='''replace popt tdb tevent talloc ctdb-system
659                              samba-util tdb-wrap talloc_report''' +
660                           ib_deps,
661                      includes='include include/internal',
662                      install_path='${CTDB_TEST_LIBDIR}')
663
664     bld.SAMBA_BINARY('ctdb_functest',
665                      source='tests/src/ctdb_functest.c',
666                      deps='''replace tdb tevent talloc popt ctdb-system
667                              samba-util tdb-wrap''',
668                      includes='include include/internal',
669                      install_path='${CTDB_TEST_LIBDIR}')
670
671     bld.SAMBA_BINARY('ctdb_stubtest',
672                      source='tests/src/ctdb_test.c',
673                      deps='''replace tdb tevent talloc popt ctdb-system
674                              samba-util tdb-wrap''',
675                      includes='include include/internal',
676                      install_path='${CTDB_TEST_LIBDIR}')
677
678     if bld.env.HAVE_INFINIBAND:
679         bld.SAMBA_BINARY('ibwrapper_test',
680                          source='ib/ibwrapper_test.c',
681                          includes='include include/internal',
682                          deps='replace talloc ctdb-client ctdb-common ' +
683                               ib_deps,
684                          install_path='${CTDB_TEST_LIBDIR}')
685
686     test_subdirs = [
687         'complex',
688         'cunit',
689         'events.d',
690         'eventscripts',
691         'onnode',
692         'simple',
693         'takeover',
694         'tool'
695     ]
696
697     for t in test_subdirs:
698         files = SUBDIR_MODE('tests/%s' % t, trim_path='tests')
699         for fmode in files:
700             bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR, 'tests/%s' % fmode[0],
701                               destname=fmode[0], chmod=fmode[1])
702
703     # Install tests/scripts directory without test_wrap
704     test_scripts = [
705         'common.sh',
706         'integration.bash',
707         'unit.sh'
708     ]
709
710     for t in test_scripts:
711         bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR,
712                           os.path.join('tests/scripts', t),
713                           destname=os.path.join('scripts', t))
714
715     sed_expr = 's@^TEST_SCRIPTS_DIR=.*@&\\nexport TEST_BIN_DIR=\"%s\"@' % (
716                bld.env.CTDB_TEST_LIBDIR)
717     bld.SAMBA_GENERATOR('ctdb-test-wrap',
718                         source='tests/scripts/test_wrap',
719                         target='test_wrap',
720                         rule='sed -e "%s" ${SRC} > ${TGT}' % sed_expr)
721     bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR+"/scripts", 'test_wrap',
722                       destname='test_wrap', chmod=0755)
723
724     sed_expr1 = 's@^test_dir=.*@test_dir=%s\\nexport TEST_BIN_DIR=\"%s\"@' % (
725                 bld.env.CTDB_TEST_DATADIR, bld.env.CTDB_TEST_LIBDIR)
726     sed_expr2 = 's@^\(export CTDB_TESTS_ARE_INSTALLED\)=false@\\1=true@'
727     bld.SAMBA_GENERATOR('ctdb-test-runner',
728                         source='tests/run_tests.sh',
729                         target='ctdb_run_tests.sh',
730                         rule='sed -e "%s" -e "%s" ${SRC} > ${TGT}' % (
731                              sed_expr1, sed_expr2))
732     bld.INSTALL_FILES('${BINDIR}', 'ctdb_run_tests.sh',
733                       destname='ctdb_run_tests', chmod=0755)
734     bld.symlink_as(os.path.join(bld.env.BINDIR, 'ctdb_run_cluster_tests'),
735                    'ctdb_run_tests')
736
737     test_eventscript_links = [
738         'events.d',
739         'functions',
740         'nfs-checks.d',
741         'nfs-linux-kernel-callout',
742         'statd-callout'
743     ]
744
745     test_link_dir = os.path.join(bld.env.CTDB_TEST_DATADIR,
746                                  'eventscripts/etc-ctdb')
747     for t in test_eventscript_links:
748         bld.symlink_as(os.path.join(test_link_dir, t),
749                        os.path.join(bld.env.CTDB_ETCDIR, t))
750
751     # Tests that use onnode need to overwrite link to in-tree
752     # functions file when installed
753     bld.symlink_as(os.path.join(bld.env.CTDB_TEST_DATADIR, 'onnode/functions'),
754                    os.path.join(bld.env.CTDB_ETCDIR, 'functions'))
755     bld.symlink_as(os.path.join(bld.env.CTDB_TEST_DATADIR, 'simple/functions'),
756                    os.path.join(bld.env.CTDB_ETCDIR, 'functions'))
757
758     # Need a link to nodes file because $CTDB_BASE is overridden
759     bld.symlink_as(os.path.join(bld.env.CTDB_TEST_DATADIR, 'simple/nodes'),
760                    os.path.join(bld.env.CTDB_ETCDIR, 'nodes'))
761
762
763 def testonly(ctx):
764     cmd = 'tests/run_tests.sh -V tests/var'
765     ret = samba_utils.RUN_COMMAND(cmd)
766     if ret != 0:
767         print('tests exited with exit status %d' % ret)
768         sys.exit(ret)
769
770
771 def test(ctx):
772     import Scripting
773     Scripting.commands.append('build')
774     Scripting.commands.append('testonly')
775
776
777 def autotest(ctx):
778     ld = 'LD_PRELOAD=%s/bin/shared/libsocket-wrapper.so' % os.getcwd()
779     cmd = '%s tests/run_tests.sh -e -S -C' % ld
780     ret = samba_utils.RUN_COMMAND(cmd)
781     if ret != 0:
782         print('autotest exited with exit status %d' % ret)
783         sys.exit(ret)
784
785
786 def show_version(ctx):
787     print VERSION
788
789
790 def dist():
791     samba_dist.DIST_FILES('VERSION:VERSION', extend=True)
792
793     t = 'include/ctdb_version.h'
794     cmd = 'packaging/mkversion.sh %s %s' % (t, VERSION)
795     ret = samba_utils.RUN_COMMAND(cmd)
796     if ret != 0:
797         print('Command "%s" failed with exit status %d' % (cmd, ret))
798         sys.exit(ret)
799     samba_dist.DIST_FILES('ctdb/%s:%s' % (t, t), extend=True)
800
801     t = 'ctdb.spec'
802     sed_expr1 = 's/@VERSION@/%s/g' % VERSION
803     sed_expr2 = 's/@RELEASE@/%s/g' % '1'
804     cmd = 'sed -e "%s" -e "%s" packaging/RPM/ctdb.spec.in > %s' % (
805         sed_expr1, sed_expr2, t)
806     ret = samba_utils.RUN_COMMAND(cmd)
807     if ret != 0:
808         print('Command "%s" failed with exit status %d' % (cmd, ret))
809         sys.exit(ret)
810     samba_dist.DIST_FILES('ctdb/%s:%s' % (t, t), extend=True)
811
812     cmd = 'make -C doc'
813     ret = samba_utils.RUN_COMMAND(cmd)
814     if ret != 0:
815         print('Command "%s" failed with exit status %d' % (cmd, ret))
816         sys.exit(ret)
817     for t in manpages:
818         samba_dist.DIST_FILES('ctdb/doc/%s:doc/%s' % (t, t), extend=True)
819         samba_dist.DIST_FILES('ctdb/doc/%s.html:doc/%s.html' % (t, t),
820                               extend=True)
821
822     samba_dist.dist()
823
824
825 def rpmonly(ctx):
826     opts = os.getenv('RPM_OPTIONS') or ''
827     cmd = 'rpmbuild -ta --clean --rmsource %s ctdb-%s.tar.gz' % (opts, VERSION)
828     ret = samba_utils.RUN_COMMAND(cmd)
829     if ret != 0:
830         print('rpmbuild exited with exit status %d' % ret)
831         sys.exit(ret)
832
833
834 def rpm(ctx):
835     import Scripting
836     Scripting.commands.append('dist')
837     Scripting.commands.append('rpmonly')
838
839
840 def ctags(ctx):
841     "build 'tags' file using ctags"
842     import Utils
843     source_root = os.path.dirname(Utils.g_module.root_path)
844     cmd = 'ctags $(find %s -name "*.[ch]")' % source_root
845     print("Running: %s" % cmd)
846     ret = samba_utils.RUN_COMMAND(cmd)
847     if ret != 0:
848         print('ctags failed with exit status %d' % ret)
849         sys.exit(ret)