Some tidying up. Do encode progress in the writer to improve progress bar movement...
[dcpomatic.git] / wscript
1 import subprocess
2 import os
3 import sys
4
5 APPNAME = 'dcpomatic'
6 VERSION = '1.00pre'
7
8 def options(opt):
9     opt.load('compiler_cxx')
10     opt.load('winres')
11
12     opt.add_option('--enable-debug', action='store_true', default = False, help = 'build with debugging information and without optimisation')
13     opt.add_option('--disable-gui', action='store_true', default = False, help = 'disable building of GUI tools')
14     opt.add_option('--target-windows', action='store_true', default = False, help = 'set up to do a cross-compile to Windows')
15     opt.add_option('--static', action='store_true', default = False, help = 'build statically, and link statically to libdcp and FFmpeg')
16     opt.add_option('--magickpp-config', action='store', default='Magick++-config', help = 'path to Magick++-config')
17     opt.add_option('--wx-config', action='store', default='wx-config', help = 'path to wx-config')
18
19 def configure(conf):
20     conf.load('compiler_cxx')
21     if conf.options.target_windows:
22         conf.load('winres')
23
24     conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS', '-msse', '-mfpmath=sse', '-ffast-math', '-fno-strict-aliasing',
25                                        '-Wall', '-Wno-attributes', '-Wextra'])
26
27     if conf.options.target_windows:
28         conf.env.append_value('CXXFLAGS', ['-DDCPOMATIC_WINDOWS', '-DWIN32_LEAN_AND_MEAN', '-DBOOST_USE_WINDOWS_H', '-DUNICODE'])
29         wxrc = os.popen('wx-config --rescomp').read().split()[1:]
30         conf.env.append_value('WINRCFLAGS', wxrc)
31         if conf.options.enable_debug:
32             conf.env.append_value('CXXFLAGS', ['-mconsole'])
33             conf.env.append_value('LINKFLAGS', ['-mconsole'])
34         conf.check(lib = 'ws2_32', uselib_store = 'WINSOCK2', msg = "Checking for library winsock2")
35         boost_lib_suffix = '-mt'
36         boost_thread = 'boost_thread_win32-mt'
37     else:
38         conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_POSIX')
39         conf.env.append_value('CXXFLAGS', '-DPOSIX_LOCALE_PREFIX="%s/share/locale"' % conf.env['PREFIX'])
40         conf.env.append_value('CXXFLAGS', '-DPOSIX_ICON_PREFIX="%s/share/dcpomatic"' % conf.env['PREFIX'])
41         boost_lib_suffix = ''
42         boost_thread = 'boost_thread'
43         conf.env.append_value('LINKFLAGS', '-pthread')
44         # libxml2 seems to be linked against this on Ubuntu, but it doesn't mention it in its .pc file
45         conf.env.append_value('LIB', 'lzma')
46
47     conf.env.TARGET_WINDOWS = conf.options.target_windows
48     conf.env.DISABLE_GUI = conf.options.disable_gui
49     conf.env.STATIC = conf.options.static
50     conf.env.VERSION = VERSION
51
52     if conf.options.enable_debug:
53         conf.env.append_value('CXXFLAGS', ['-g', '-DDCPOMATIC_DEBUG'])
54     else:
55         conf.env.append_value('CXXFLAGS', '-O2')
56
57     if not conf.options.static:
58         conf.check_cfg(package = 'libdcp', atleast_version = '0.45', args = '--cflags --libs', uselib_store = 'DCP', mandatory = True)
59         conf.check_cfg(package = 'libcxml', atleast_version = '0.01', args = '--cflags --libs', uselib_store = 'CXML', mandatory = True)
60         conf.check_cfg(package = 'libavformat', args = '--cflags --libs', uselib_store = 'AVFORMAT', mandatory = True)
61         conf.check_cfg(package = 'libavfilter', args = '--cflags --libs', uselib_store = 'AVFILTER', mandatory = True)
62         conf.check_cfg(package = 'libavcodec', args = '--cflags --libs', uselib_store = 'AVCODEC', mandatory = True)
63         conf.check_cfg(package = 'libavutil', args = '--cflags --libs', uselib_store = 'AVUTIL', mandatory = True)
64         conf.check_cfg(package = 'libswscale', args = '--cflags --libs', uselib_store = 'SWSCALE', mandatory = True)
65         conf.check_cfg(package = 'libswresample', args = '--cflags --libs', uselib_store = 'SWRESAMPLE', mandatory = False)
66         conf.check_cfg(package = 'libpostproc', args = '--cflags --libs', uselib_store = 'POSTPROC', mandatory = True)
67     else:
68         # This is hackio grotesquio for static builds (ie for .deb packages).  We need to link some things
69         # statically and some dynamically, or things get horribly confused and the dynamic linker (I think)
70         # crashes horribly.  These calls do what the check_cfg calls would have done, but specify the
71         # different bits as static or dynamic as required.  It'll break if you look at it funny, but
72         # I think anyone else who builds would do so dynamically.
73         conf.env.HAVE_DCP = 1
74         conf.env.STLIB_DCP = ['dcp', 'asdcp-libdcp', 'kumu-libdcp']
75         conf.env.LIB_DCP = ['glibmm-2.4', 'xml++-2.6', 'ssl', 'crypto', 'bz2']
76         conf.env.HAVE_CXML = 1
77         conf.env.STLIB_CXML = ['cxml']
78         conf.check_cfg(package = 'libxml++-2.6', args = '--cflags --libs', uselib_store = 'XML++', mandatory = True)
79         conf.env.HAVE_AVFORMAT = 1
80         conf.env.STLIB_AVFORMAT = ['avformat']
81         conf.env.HAVE_AVFILTER = 1
82         conf.env.STLIB_AVFILTER = ['avfilter', 'swresample']
83         conf.env.HAVE_AVCODEC = 1
84         conf.env.STLIB_AVCODEC = ['avcodec']
85         conf.env.LIB_AVCODEC = ['z']
86         conf.env.HAVE_AVUTIL = 1
87         conf.env.STLIB_AVUTIL = ['avutil']
88         conf.env.HAVE_SWSCALE = 1
89         conf.env.STLIB_SWSCALE = ['swscale']
90         conf.env.HAVE_SWRESAMPLE = 1
91         conf.env.STLIB_SWRESAMPLE = ['swresample']
92         conf.env.HAVE_POSTPROC = 1
93         conf.env.STLIB_POSTPROC = ['postproc']
94
95         # This doesn't seem to be set up, and we need it otherwise resampling support
96         # won't be included.  Hack upon a hack, obviously
97         conf.env.append_value('CXXFLAGS', ['-DHAVE_SWRESAMPLE=1'])
98
99     conf.check_cfg(package = 'sndfile', args = '--cflags --libs', uselib_store = 'SNDFILE', mandatory = True)
100     conf.check_cfg(package = 'glib-2.0', args = '--cflags --libs', uselib_store = 'GLIB', mandatory = True)
101     if conf.options.target_windows is False:
102         conf.check_cfg(package = 'liblzma', args = '--cflags --libs', uselib_store = 'LZMA', mandatory = True)
103     conf.check_cfg(package = '', path = conf.options.magickpp_config, args = '--cppflags --cxxflags --libs', uselib_store = 'MAGICK', mandatory = True)
104
105     if conf.options.static:
106         conf.check_cc(fragment = """
107                         #include <stdio.h>\n
108                         #include <openjpeg.h>\n
109                         int main () {\n
110                         void* p = (void *) opj_image_create;\n
111                         return 0;\n
112                         }
113                         """, msg = 'Checking for library openjpeg', stlib = 'openjpeg', uselib_store = 'OPENJPEG')
114     else:
115         # Only 1.5.0 and 1.5.1 have been tested.
116         conf.check_cfg(package = 'libopenjpeg', args = '--cflags --libs', atleast_version = '1.5.0', uselib_store = 'OPENJPEG', mandatory = True)
117         conf.check_cfg(package = 'libopenjpeg', args = '--cflags --libs', max_version = '1.5.1', mandatory = True)
118
119     conf.check_cxx(fragment = """
120                               #include <boost/version.hpp>\n
121                               #if BOOST_VERSION < 104500\n
122                               #error boost too old\n
123                               #endif\n
124                               int main(void) { return 0; }\n
125                               """,
126                    mandatory = True,
127                    msg = 'Checking for boost library >= 1.45',
128                    okmsg = 'yes',
129                    errmsg = 'too old\nPlease install boost version 1.45 or higher.')
130
131     conf.check_cc(fragment  = """
132                               #include <libssh/libssh.h>\n
133                               int main () {\n
134                               ssh_session s = ssh_new ();\n
135                               return 0;\n
136                               }
137                               """, msg = 'Checking for library libssh', mandatory = True, lib = 'ssh', uselib_store = 'SSH')
138
139     conf.check_cxx(fragment = """
140                               #include <boost/thread.hpp>\n
141                               int main() { boost::thread t (); }\n
142                               """, msg = 'Checking for boost threading library',
143                               libpath = '/usr/local/lib',
144                               lib = [boost_thread, 'boost_system%s' % boost_lib_suffix],
145                               uselib_store = 'BOOST_THREAD')
146
147     conf.check_cxx(fragment = """
148                               #include <boost/filesystem.hpp>\n
149                               int main() { boost::filesystem::copy_file ("a", "b"); }\n
150                               """, msg = 'Checking for boost filesystem library',
151                               libpath = '/usr/local/lib',
152                               lib = ['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
153                               uselib_store = 'BOOST_FILESYSTEM')
154
155     conf.check_cxx(fragment = """
156                               #include <boost/date_time.hpp>\n
157                               int main() { boost::gregorian::day_clock::local_day(); }\n
158                               """, msg = 'Checking for boost datetime library',
159                               libpath = '/usr/local/lib',
160                               lib = ['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
161                               uselib_store = 'BOOST_DATETIME')
162
163     conf.check_cxx(fragment = """
164                               #include <boost/signals2.hpp>\n
165                               int main() { boost::signals2::signal<void (int)> x; }\n
166                               """,
167                               msg = 'Checking for boost signals2 library',
168                               uselib_store = 'BOOST_SIGNALS2')
169
170     conf.check_cc(fragment = """
171                              #include <glib.h>
172                              int main() { g_format_size (1); }
173                              """, msg = 'Checking for g_format_size ()',
174                              uselib = 'GLIB',
175                              define_name = 'HAVE_G_FORMAT_SIZE',
176                              mandatory = False)
177
178     conf.check_cc(fragment = """
179                              extern "C" {
180                                #include <libavutil/avutil.h>
181                              }
182                              int main() { AVPixelFormat f; }
183                              """, msg = 'Checking for AVPixelFormat',
184                              uselib = 'AVUTIL',
185                              define_name = 'HAVE_AV_PIXEL_FORMAT',
186                              mandatory = False)
187
188     conf.check_cc(fragment = """
189                              extern "C" {
190                                #include <libavcodec/avcodec.h>
191                              }
192                              int main() { AVFrame* f; av_frame_get_best_effort_timestamp(f); }
193                              """, msg = 'Checking for av_frame_get_best_effort_timestamp',
194                              uselib = 'AVCODEC',
195                              define_name = 'HAVE_AV_FRAME_GET_BEST_EFFORT_TIMESTAMP',
196                              mandatory = False)
197
198     conf.check_cc(fragment = """
199                              extern "C" {
200                                #include <libavfilter/buffersrc.h>
201                              }
202                              int main() { } 
203                              """, msg = 'Checking for buffersrc.h',
204                              uselib = 'AVCODEC',
205                              define_name = 'HAVE_BUFFERSRC_H',
206                              mandatory = False)
207
208     conf.find_program('msgfmt', var='MSGFMT')
209     
210     datadir = conf.env.DATADIR
211     if not datadir:
212         datadir = os.path.join(conf.env.PREFIX, 'share')
213     
214     conf.define('LOCALEDIR', os.path.join(datadir, 'locale'))
215     conf.define('DATADIR', datadir)
216
217     conf.recurse('src')
218     conf.recurse('test')
219
220 def build(bld):
221     create_version_cc(VERSION)
222
223     bld.recurse('src')
224     bld.recurse('test')
225     if bld.env.TARGET_WINDOWS:
226         bld.recurse('windows')
227
228     d = { 'PREFIX' : '${PREFIX' }
229
230     obj = bld(features = 'subst')
231     obj.source = 'dcpomatic.desktop.in'
232     obj.target = 'dcpomatic.desktop'
233     obj.dict = d
234
235     bld.install_files('${PREFIX}/share/applications', 'dcpomatic.desktop')
236     for r in ['22x22', '32x32', '48x48', '64x64', '128x128']:
237         bld.install_files('${PREFIX}/share/icons/hicolor/%s/apps' % r, 'icons/%s/dcpomatic.png' % r)
238
239     if not bld.env.TARGET_WINDOWS:
240         bld.install_files('${PREFIX}/share/dcpomatic', 'icons/taskbar_icon.png')
241
242     bld.add_post_fun(post)
243
244 def dist(ctx):
245     ctx.excl = """
246                TODO core *~ src/wx/*~ src/lib/*~ builds/*~ doc/manual/*~ src/tools/*~ *.pyc .waf* build .git
247                deps alignment hacks sync *.tar.bz2 *.exe .lock* *build-windows doc/manual/pdf doc/manual/html
248                GRSYMS GRTAGS GSYMS GTAGS
249                """
250
251 def create_version_cc(version):
252     if os.path.exists('.git'):
253         cmd = "LANG= git log --abbrev HEAD^..HEAD ."
254         output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
255         o = output[0].decode('utf-8')
256         commit = o.replace ("commit ", "")[0:10]
257     else:
258         commit = 'release'
259
260     try:
261         text =  '#include "version.h"\n'
262         text += 'char const * dcpomatic_git_commit = \"%s\";\n' % commit
263         text += 'char const * dcpomatic_version = \"%s\";\n' % version
264         print('Writing version information to src/lib/version.cc')
265         o = open('src/lib/version.cc', 'w')
266         o.write(text)
267         o.close()
268     except IOError:
269         print('Could not open src/lib/version.cc for writing\n')
270         sys.exit(-1)
271     
272 def post(ctx):
273     if ctx.cmd == 'install':
274         ctx.exec_command('/sbin/ldconfig')
275
276 def pot(bld):
277     bld.recurse('src')
278
279 def pot_merge(bld):
280     bld.recurse('src')