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.

213 lines
8.2KB

  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.env.append_unique('CXXFLAGS', '-O3 -Wall')
  68. conf.env.append_unique('CCFLAGS', '-O3 -Wall')
  69. conf.sub_config('common')
  70. if conf.env['IS_LINUX']:
  71. conf.sub_config('linux')
  72. if Options.options.dbus:
  73. conf.sub_config('dbus')
  74. conf.sub_config('example-clients')
  75. conf.env['LIB_PTHREAD'] = ['pthread']
  76. conf.env['LIB_DL'] = ['dl']
  77. conf.env['LIB_RT'] = ['rt']
  78. conf.env['JACK_API_VERSION'] = JACK_API_VERSION
  79. conf.env['JACK_VERSION'] = VERSION
  80. conf.env['BUILD_DOXYGEN_DOCS'] = Options.options.doxygen
  81. conf.env['BUILD_WITH_MONITOR'] = Options.options.monitor
  82. conf.define('CLIENT_NUM', Options.options.clients)
  83. conf.define('PORT_NUM', Options.options. ports)
  84. conf.define('ADDON_DIR', os.path.normpath(conf.env['PREFIX'] + '/lib/jack'))
  85. conf.define('JACK_LOCATION', os.path.normpath(conf.env['PREFIX'] + '/bin'))
  86. conf.define('USE_POSIX_SHM', 1)
  87. conf.define('JACKMP', 1)
  88. if conf.env['BUILD_JACKDBUS'] == True:
  89. conf.define('JACK_DBUS', 1)
  90. if conf.env['BUILD_WITH_MONITOR'] == True:
  91. conf.define('JACK_MONITOR', 1)
  92. conf.write_config_header('config.h')
  93. svnrev = None
  94. if os.access('svnversion.h', os.R_OK):
  95. data = file('svnversion.h').read()
  96. m = re.match(r'^#define SVN_VERSION "([^"]*)"$', data)
  97. if m != None:
  98. svnrev = m.group(1)
  99. print
  100. display_msg("==================")
  101. version_msg = "JACK " + VERSION
  102. if svnrev:
  103. version_msg += " exported from r" + svnrev
  104. else:
  105. version_msg += " svn revision will checked and eventually updated during build"
  106. print version_msg
  107. print "Build with a maximum of %d JACK clients" % conf.env['CLIENT_NUM']
  108. print "Build with a maximum of %d ports" % conf.env['PORT_NUM']
  109. display_msg("Install prefix", conf.env['PREFIX'], 'CYAN')
  110. display_msg("Drivers directory", conf.env['ADDON_DIR'], 'CYAN')
  111. display_feature('Build doxygen documentation', conf.env['BUILD_DOXYGEN_DOCS'])
  112. display_feature('Build with monitoring records', conf.env['BUILD_WITH_MONITOR'])
  113. if conf.env['IS_LINUX']:
  114. display_feature('Build with ALSA support', conf.env['BUILD_DRIVER_ALSA'] == True)
  115. display_feature('Build with FireWire (FreeBob) support', conf.env['BUILD_DRIVER_FREEBOB'] == True)
  116. display_feature('Build with FireWire (FFADO) support', conf.env['BUILD_DRIVER_FFADO'] == True)
  117. display_feature('Build D-Bus JACK (jackdbus)', conf.env['BUILD_JACKDBUS'] == True)
  118. if conf.env['BUILD_JACKDBUS'] == True:
  119. display_msg('D-Bus service install directory', conf.env['DBUS_SERVICES_DIR'], 'CYAN')
  120. #display_msg('Settings persistence', xxx)
  121. if conf.env['DBUS_SERVICES_DIR'] != conf.env['DBUS_SERVICES_DIR_REAL']:
  122. print
  123. print Logs.colors.RED + "WARNING: D-Bus session services directory as reported by pkg-config is"
  124. print Logs.colors.RED + "WARNING:",
  125. print Logs.colors.CYAN + conf.env['DBUS_SERVICES_DIR_REAL']
  126. print Logs.colors.RED + 'WARNING: but service file will be installed in'
  127. print Logs.colors.RED + "WARNING:",
  128. print Logs.colors.CYAN + conf.env['DBUS_SERVICES_DIR']
  129. print Logs.colors.RED + 'WARNING: You may need to adjust your D-Bus configuration after installing jackdbus'
  130. print 'WARNING: You can override dbus service install directory'
  131. print 'WARNING: with --enable-pkg-config-dbus-service-dir option to this script'
  132. print Logs.colors.NORMAL,
  133. print
  134. def build(bld):
  135. if not os.access('svnversion.h', os.R_OK):
  136. create_svnversion_task(bld)
  137. # process subfolders from here
  138. bld.add_subdirs('common')
  139. if bld.env['IS_LINUX']:
  140. bld.add_subdirs('linux')
  141. if bld.env['BUILD_JACKDBUS'] == True:
  142. bld.add_subdirs('dbus')
  143. bld.add_subdirs('example-clients')
  144. bld.add_subdirs('tests')
  145. if bld.env['IS_MACOSX']:
  146. bld.add_subdirs('macosx')
  147. bld.add_subdirs('example-clients')
  148. bld.add_subdirs('tests')
  149. if bld.env['BUILD_JACKDBUS'] == True:
  150. bld.add_subdirs('dbus')
  151. if bld.env['BUILD_DOXYGEN_DOCS'] == True:
  152. share_dir = bld.env.get_destdir() + bld.env['PREFIX'] + '/share/jack-audio-connection-kit'
  153. html_docs_source_dir = "build/default/html"
  154. html_docs_install_dir = share_dir + '/reference/html/'
  155. if Options.commands['install']:
  156. if os.path.isdir(html_docs_install_dir):
  157. Utils.pprint('CYAN', "Removing old doxygen documentation installation...")
  158. shutil.rmtree(html_docs_install_dir)
  159. Utils.pprint('CYAN', "Removing old doxygen documentation installation done.")
  160. Utils.pprint('CYAN', "Installing doxygen documentation...")
  161. shutil.copytree(html_docs_source_dir, html_docs_install_dir)
  162. Utils.pprint('CYAN', "Installing doxygen documentation done.")
  163. elif Options.commands['uninstall']:
  164. Utils.pprint('CYAN', "Uninstalling doxygen documentation...")
  165. if os.path.isdir(share_dir):
  166. shutil.rmtree(share_dir)
  167. Utils.pprint('CYAN', "Uninstalling doxygen documentation done.")
  168. elif Options.commands['clean']:
  169. if os.access(html_docs_source_dir, os.R_OK):
  170. Utils.pprint('CYAN', "Removing doxygen generated documentation...")
  171. shutil.rmtree(html_docs_source_dir)
  172. Utils.pprint('CYAN', "Removing doxygen generated documentation done.")
  173. elif Options.commands['build']:
  174. if not os.access(html_docs_source_dir, os.R_OK):
  175. os.popen("doxygen").read()
  176. else:
  177. Utils.pprint('CYAN', "doxygen documentation already built.")
  178. def dist_hook():
  179. os.remove('svnversion_regenerate.sh')
  180. os.system('../svnversion_regenerate.sh svnversion.h')