jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

210 lines
8.1KB

  1. #! /usr/bin/env python
  2. # encoding: utf-8
  3. import os
  4. import Utils
  5. import Options
  6. import commands
  7. g_maxlen = 40
  8. import shutil
  9. import Task
  10. import re
  11. import Logs
  12. VERSION='1.9.1'
  13. APPNAME='jack'
  14. JACK_API_VERSION = '0.1.0'
  15. # these variables are mandatory ('/' are converted automatically)
  16. srcdir = '.'
  17. blddir = 'build'
  18. def display_msg(msg, status = None, color = None):
  19. sr = msg
  20. global g_maxlen
  21. g_maxlen = max(g_maxlen, len(msg))
  22. if status:
  23. print "%s :" % msg.ljust(g_maxlen),
  24. Utils.pprint(color, status)
  25. else:
  26. print "%s" % msg.ljust(g_maxlen)
  27. def display_feature(msg, build):
  28. if build:
  29. display_msg(msg, "yes", 'GREEN')
  30. else:
  31. display_msg(msg, "no", 'YELLOW')
  32. def create_svnversion_task(bld, header='svnversion.h', define=None):
  33. import Constants, Build
  34. cmd = '../svnversion_regenerate.sh ${TGT}'
  35. if define:
  36. cmd += " " + define
  37. cls = Task.simple_task_type('svnversion', cmd, color='BLUE', before='cc')
  38. cls.runnable_status = lambda self: Constants.RUN_ME
  39. def post_run(self):
  40. sg = Utils.h_file(self.outputs[0].abspath(self.env))
  41. #print sg.encode('hex')
  42. Build.bld.node_sigs[self.env.variant()][self.outputs[0].id] = sg
  43. cls.post_run = post_run
  44. tsk = cls(bld.env.copy())
  45. tsk.inputs = []
  46. tsk.outputs = [bld.path.find_or_declare(header)]
  47. def set_options(opt):
  48. # options provided by the modules
  49. opt.tool_options('compiler_cxx')
  50. opt.tool_options('compiler_cc')
  51. opt.add_option('--dbus', action='store_true', default=False, help='Enable D-Bus JACK (jackdbus)')
  52. opt.add_option('--doxygen', action='store_true', default=False, help='Enable build of doxygen documentation')
  53. opt.add_option('--monitor', action='store_true', default=False, help='Build with monitoring records')
  54. opt.add_option('--clients', default=64, type="int", dest="clients", help='Maximum number of JACK clients')
  55. opt.add_option('--ports', default=512, type="int", dest="ports", help='Maximum number of ports')
  56. opt.sub_options('dbus')
  57. def configure(conf):
  58. platform = Utils.detect_platform()
  59. conf.env['IS_MACOSX'] = platform == 'darwin'
  60. conf.env['IS_LINUX'] = platform == 'linux'
  61. if conf.env['IS_LINUX']:
  62. Utils.pprint('CYAN', "Linux detected")
  63. if conf.env['IS_MACOSX']:
  64. Utils.pprint('CYAN', "MacOS X detected")
  65. conf.check_tool('compiler_cxx')
  66. conf.check_tool('compiler_cc')
  67. conf.sub_config('common')
  68. if conf.env['IS_LINUX']:
  69. conf.sub_config('linux')
  70. if Options.options.dbus:
  71. conf.sub_config('dbus')
  72. conf.sub_config('example-clients')
  73. conf.env['LIB_PTHREAD'] = ['pthread']
  74. conf.env['LIB_DL'] = ['dl']
  75. conf.env['LIB_RT'] = ['rt']
  76. conf.env['JACK_API_VERSION'] = JACK_API_VERSION
  77. conf.env['JACK_VERSION'] = VERSION
  78. conf.env['BUILD_DOXYGEN_DOCS'] = Options.options.doxygen
  79. conf.env['BUILD_WITH_MONITOR'] = Options.options.monitor
  80. conf.define('CLIENT_NUM', Options.options.clients)
  81. conf.define('PORT_NUM', Options.options. ports)
  82. conf.define('ADDON_DIR', os.path.normpath(conf.env['PREFIX'] + '/lib/jack'))
  83. conf.define('JACK_LOCATION', os.path.normpath(conf.env['PREFIX'] + '/bin'))
  84. conf.define('USE_POSIX_SHM', 1)
  85. conf.define('JACKMP', 1)
  86. if conf.env['BUILD_JACKDBUS'] == True:
  87. conf.define('JACK_DBUS', 1)
  88. if conf.env['BUILD_WITH_MONITOR'] == True:
  89. conf.define('JACK_MONITOR', 1)
  90. conf.write_config_header('config.h')
  91. svnrev = None
  92. if os.access('svnversion.h', os.R_OK):
  93. data = file('svnversion.h').read()
  94. m = re.match(r'^#define SVN_VERSION "([^"]*)"$', data)
  95. if m != None:
  96. svnrev = m.group(1)
  97. print
  98. display_msg("==================")
  99. version_msg = "JACK " + VERSION
  100. if svnrev:
  101. version_msg += " exported from r" + svnrev
  102. else:
  103. version_msg += " svn revision will checked and eventually updated during build"
  104. print version_msg
  105. print "Build with a maximum of %d JACK clients" % conf.env['CLIENT_NUM']
  106. print "Build with a maximum of %d ports" % conf.env['PORT_NUM']
  107. display_msg("Install prefix", conf.env['PREFIX'], 'CYAN')
  108. display_msg("Drivers directory", conf.env['ADDON_DIR'], 'CYAN')
  109. display_feature('Build doxygen documentation', conf.env['BUILD_DOXYGEN_DOCS'])
  110. display_feature('Build with monitoring records', conf.env['BUILD_WITH_MONITOR'])
  111. if conf.env['IS_LINUX']:
  112. display_feature('Build with ALSA support', conf.env['BUILD_DRIVER_ALSA'] == True)
  113. display_feature('Build with FireWire (FreeBob) support', conf.env['BUILD_DRIVER_FREEBOB'] == True)
  114. display_feature('Build with FireWire (FFADO) support', conf.env['BUILD_DRIVER_FFADO'] == True)
  115. display_feature('Build D-Bus JACK (jackdbus)', conf.env['BUILD_JACKDBUS'] == True)
  116. if conf.env['BUILD_JACKDBUS'] == True:
  117. display_msg('D-Bus service install directory', conf.env['DBUS_SERVICES_DIR'], 'CYAN')
  118. #display_msg('Settings persistence', xxx)
  119. if conf.env['DBUS_SERVICES_DIR'] != conf.env['DBUS_SERVICES_DIR_REAL']:
  120. print
  121. print Logs.colors.RED + "WARNING: D-Bus session services directory as reported by pkg-config is"
  122. print Logs.colors.RED + "WARNING:",
  123. print Logs.colors.CYAN + conf.env['DBUS_SERVICES_DIR_REAL']
  124. print Logs.colors.RED + 'WARNING: but service file will be installed in'
  125. print Logs.colors.RED + "WARNING:",
  126. print Logs.colors.CYAN + conf.env['DBUS_SERVICES_DIR']
  127. print Logs.colors.RED + 'WARNING: You may need to adjust your D-Bus configuration after installing jackdbus'
  128. print 'WARNING: You can override dbus service install directory'
  129. print 'WARNING: with --enable-pkg-config-dbus-service-dir option to this script'
  130. print Logs.colors.NORMAL,
  131. print
  132. def build(bld):
  133. if not os.access('svnversion.h', os.R_OK):
  134. create_svnversion_task(bld)
  135. # process subfolders from here
  136. bld.add_subdirs('common')
  137. if bld.env['IS_LINUX']:
  138. bld.add_subdirs('linux')
  139. if bld.env['BUILD_JACKDBUS'] == True:
  140. bld.add_subdirs('dbus')
  141. bld.add_subdirs('example-clients')
  142. bld.add_subdirs('tests')
  143. if bld.env['IS_MACOSX']:
  144. bld.add_subdirs('macosx')
  145. bld.add_subdirs('example-clients')
  146. bld.add_subdirs('tests')
  147. if bld.env['BUILD_JACKDBUS'] == True:
  148. bld.add_subdirs('dbus')
  149. if bld.env['BUILD_DOXYGEN_DOCS'] == True:
  150. share_dir = bld.env.get_destdir() + Build.bld.env()['PREFIX'] + '/share/jack-audio-connection-kit'
  151. html_docs_source_dir = "build/default/html"
  152. html_docs_install_dir = share_dir + '/reference/html/'
  153. if Options.commands['install']:
  154. if os.path.isdir(html_docs_install_dir):
  155. Utils.pprint('CYAN', "Removing old doxygen documentation installation...")
  156. shutil.rmtree(html_docs_install_dir)
  157. Utils.pprint('CYAN', "Removing old doxygen documentation installation done.")
  158. Utils.pprint('CYAN', "Installing doxygen documentation...")
  159. shutil.copytree(html_docs_source_dir, html_docs_install_dir)
  160. Utils.pprint('CYAN', "Installing doxygen documentation done.")
  161. elif Options.commands['uninstall']:
  162. Utils.pprint('CYAN', "Uninstalling doxygen documentation...")
  163. if os.path.isdir(share_dir):
  164. shutil.rmtree(share_dir)
  165. Utils.pprint('CYAN', "Uninstalling doxygen documentation done.")
  166. elif Options.commands['clean']:
  167. if os.access(html_docs_source_dir, os.R_OK):
  168. Utils.pprint('CYAN', "Removing doxygen generated documentation...")
  169. shutil.rmtree(html_docs_source_dir)
  170. Utils.pprint('CYAN', "Removing doxygen generated documentation done.")
  171. elif Options.commands['build']:
  172. if not os.access(html_docs_source_dir, os.R_OK):
  173. os.popen("doxygen").read()
  174. else:
  175. Utils.pprint('CYAN', "doxygen documentation already built.")
  176. def dist_hook():
  177. os.remove('svnversion_regenerate.sh')
  178. os.system('../svnversion_regenerate.sh svnversion.h')