updates to add link to Workflow.pdf +
[goodguy/cin-manual-latex.git] / parts / Developer.tex
1 \chapter{Developer's Section}%
2 \label{cha:developer's_section}
3
4 \section{How Builds Really Work and Even More Options}
5 \label{sec:builds_really_work_more_options}
6 \index{build!more options}
7
8 This section describes how builds really work if you want to know more about making changes or understanding the process; probably only for a developer or system administrator.
9
10 Builds occur in 4 basic steps:
11
12 \begin{enumerate}[nosep]
13         \item unpack/patch source code
14         \item configure build
15         \item make build targets
16         \item installation
17 \end{enumerate}
18
19 So, an example of what happens in 4 steps for a single-user build would be as follows:
20
21 \begin{enumerate}[nosep]
22         \item unpack/patch source code: \\
23         \texttt{git clone -{}-depth 1 ``git:/{\dots}/target'' cinelerra5} \\
24         \texttt{./autogen.sh}
25         \item configure build:\\
26         \texttt{./configure --with-single-user}
27         \item make build targets:\\
28         \texttt{make 2 > \&1 | tee log}
29         \item installation:\\
30         \texttt{make install}
31 \end{enumerate}
32
33 A lot of things can be tweaked to change the results. Mostly these changes are parameters to the configure step, which can change important build related items, like the application name, or where and what the target system directories should be. This makes it possible to have several versions at the same time on the same computer if needed. To see what it is that the makefiles use to build \CGG{}, look at the resulting top-level global\_config file which is created by the ./configure step.
34
35 Building \CGG{} requires many thirdparty libraries, and it is recommended that you use the static build version included in the git repo. Some of them are patched, and fix significant bugs. It is important to note that because system installation historically has been with as many shared objects as possible, the defaults are that any system library detected during configuration setup will be used, when the package is built \textit{-{}-without-single-user}, which is the default build. To build with static thirdparty libraries for system install to the system /usr area, use:
36
37 \hspace{2em}\texttt{.configure -{}-enable-static-build --prefix=/usr}
38
39 Sometimes, additional package parameters and variables are needed during thirdparty builds. These optional values occur before and after the \textit{configure} and \textit{make} commands during a build. A presentation of the format of the package qualified variable names and how they appear in the build procedure are:
40
41 \hspace{2em}
42 \begin{tabular}{@{}ll}
43         pkg.cfg\_vars & prepended to configure\\
44         pkg.cfg\_params & appended to configure\\
45         pkg.mak\_vars & prepended to make\\
46         pkg.mak\_params & appended to make\\
47     pkg.cflags & added as CFLAGS+=\$(cflags) to pkg.vars\\
48         pkg.cppflags & added as CPPFLAGS+=\$(cppflags) to pkg.vars\\
49 \end{tabular}
50
51 These steps are done for EACH of the packages in the thirdparty build:
52
53 \hspace{2em}\texttt{<pkg.cfg\_vars> ./configure <pkg.cfg\_params>}
54
55 \hspace{2em}\texttt{<pkg.mak\_vars> make <pkg.mak\_params>}
56
57 The thirdparty Makefile has a set of default vars and params used to build each of the needed thirdparty packages, but you can specify new or overriding values for these Makefile substitutions. These thirdparty build config changes are specified in the top-level file: \textit{cin\_config}. By using this file, you can save the configuration changes made for the current build to use the next time you do a new build. For example, to add an include file path to the giflib build, add this line to \textit{cin\_config}:
58
59 \hspace{2em}\texttt{giflib.cflags := -I/usr/local/include/giflib5}
60
61 To have a param/var change apply to all thirdparty builds, use:
62
63 \hspace{2em}\texttt{CFG\_VARS, CFG\_PARAMS, MAK\_VARS, MAK\_PARAMS}
64
65 CFLAGS, CXXFLAGS and LDFLAGS are forwarded to the thirdparty build environment via:
66
67 \hspace{2em}\texttt{CFLAGS=-ggdb ./configure -{}-with-single-user}
68
69 However, there is no guarantee that the thirdparty build will honor the environmental flags.
70
71 Finally, there are build controls, which enable/disable and set build features.
72
73 A few of the more useful ./configure -{}-parameters are:
74
75 \begin{tabular}{ll}
76         -{}-with-jobs=n & where n=number of build jobs; defaults to 1.5*cpus+2\\
77         -{}-enable-static-build & build all 3rd party libs; defaults to yes if single-user, else no\\
78         -{}-with-single-user& build installs to <build\_path>/bin; no system installation\\
79 \end{tabular}
80
81
82 The ./configure command builds \textit{global\_config}. The global\_config is read by the thirdparty/Makefile to create the recipes and definitions used by the thirdparty build.
83
84 There are a lot of different options.  Thirdparty library build control is available in the configure step of the build.  Thirdparty libraries are built on a demand basis.  So if you use:
85
86 \begin{tabular}{l p{11cm}}
87   -{}-enable-libname=auto & the static-build enable, or the lack of a system library causes a build\\
88   -{}-enable-libname=yes  &  this forces the thirdparty build\\
89   -{}-enable-libname=no   &  this forces no thirdparty build\\
90 \end{tabular}
91
92 FFmpeg is a \textit{strongly connected} component in the build linkage and widely influences the \CGG{} library demands.  It is possible to make small additions to the ffmpeg configuration step using the environment variable \texttt{FFMPEG\_EXTRA\_CFG}.  For example, to eliminate the use of libvdpau (an nvidia support library) in the ffmpeg configuration step after you have determined that it is causing an error, use:
93
94 \begin{itemize}[label={},nosep]
95         \item \texttt{make clean}
96         \item \texttt{autogen.sh}
97         \item \texttt{export FFMPEG\_EXTRA\_CFG=" -{}-disable-vdpau"} 
98         \item \texttt{./configure} {\dots}
99 \end{itemize}
100
101 \section{Experimental Builds}
102 \label{sec:experimental_builds}
103 \index{build!experimental}
104
105 The main compilation we have seen leads to building \CGG{} with its own internal ffmpeg, which includes its stability and feature patches. Normally ffmpeg is updated to version x.1 of each release. The reasons why it is best to use thirdparty with their static versions of the libraries and ffmpeg are explained in detail in \nameref{sec:latest_libraries} and in \nameref{sub:unbundled_builds}.
106
107 You can still compile \CGG{} with ffmpeg-git to enjoy the latest version. This build may lead to feature variation and less stability, but in most cases will work perfectly fine.
108 You have to supply the actual URL location of the ffmpeg git as you can see in this example \texttt{bld.sh} script:
109
110 \begin{lstlisting}[numbers=none]
111         #!/bin/bash
112         ./autogen.sh
113         ./configure --with-single-user --with-booby --with-git-ffmpeg=https://git.ffmpeg.org/ffmpeg.git
114         make && make install ) 2>1 | tee log
115         mv Makefile Makefile.cfg
116         cp Makefile.devel Makefile
117 \end{lstlisting}
118
119 Since the procedure for obtaining the latest ffmpeg version is not always kept up-to-date and the line numbers will always change, you may have to create some patch first. Generally those line numbers are only updated by a developer when a new stable version with worthwhile features is actually included in the \CGG{} build. FFmpeg is constantly changing and many times the git version is not as stable as desired.
120
121 Finally, it is possible to compile \CGG{} so that it uses ffmpeg which is already installed on the system. This build takes less time to compile and may increase performance in both rendering and timeline manipulation. Again, there may be variations in functionality and less stability.
122 Getting a build to work in a system environment is not easy. If you have already installed libraries which are normally in the thirdparty build, getting them to be recognized means you have to install the devel version
123 so the header files which match the library interfaces exist. If you want to build using only the thirdparty libraries installed in your system, just include \texttt{-–without-thirdparty} to your configure script. For example:
124
125 \begin{lstlisting}[numbers=none]
126 ./confgure --with-single-user --disable-static-build --without-thirdparty --without-libdpx
127 \end{lstlisting}
128
129 The library, libdpx, is just such an example of lost functionality: this build of \CGG{} will not be able to use the DPX format.
130
131 \section{Configuration Features}
132 \label{sec:configuration_features}
133 \index{build!configuration}
134
135 A listing of the current configuration features as of January 11, 2020:
136
137 \begingroup
138     \fontsize{10pt}{12pt}\selectfont
139 \begin{verbatim}
140
141 `configure' configures \CGG{} to adapt to many kinds of systems.
142
143 Usage: ./configure [OPTION]... [VAR=VALUE]...
144
145 To assign environment variables (e.g., CC, CFLAGS...), specify them as
146 VAR=VALUE.  See below for descriptions of some of the useful variables.
147
148 Defaults for the options are specified in brackets.
149
150 Configuration:
151   -h, --help              display this help and exit
152       --help=short        display options specific to this package
153       --help=recursive    display the short help of all the included packages
154   -V, --version           display version information and exit
155   -q, --quiet, --silent   do not print `checking ...' messages
156       --cache-file=FILE   cache test results in FILE [disabled]
157   -C, --config-cache      alias for `--cache-file=config.cache'
158   -n, --no-create         do not create output files
159       --srcdir=DIR        find the sources in DIR [configure dir or `..']
160
161 Installation directories:
162   --prefix=PREFIX         install architecture-independent files in PREFIX
163                           [/usr/local]
164   --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
165                           [PREFIX]
166
167 By default, `make install' will install all the files in
168 `/usr/local/bin', `/usr/local/lib' etc.  You can specify
169 an installation prefix other than `/usr/local' using `--prefix',
170 for instance `--prefix=$HOME'.
171
172 For better control, use the options below.
173
174 Fine tuning of the installation directories:
175   --bindir=DIR            user executables [EPREFIX/bin]
176   --sbindir=DIR           system admin executables [EPREFIX/sbin]
177   --libexecdir=DIR        program executables [EPREFIX/libexec]
178   --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
179   --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
180   --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
181   --libdir=DIR            object code libraries [EPREFIX/lib]
182   --includedir=DIR        C header files [PREFIX/include]
183   --oldincludedir=DIR     C header files for non-gcc [/usr/include]
184   --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
185   --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
186   --infodir=DIR           info documentation [DATAROOTDIR/info]
187   --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
188   --mandir=DIR            man documentation [DATAROOTDIR/man]
189   --docdir=DIR            documentation root [DATAROOTDIR/doc/cinelerra]
190   --htmldir=DIR           html documentation [DOCDIR]
191   --dvidir=DIR            dvi documentation [DOCDIR]
192   --pdfdir=DIR            pdf documentation [DOCDIR]
193   --psdir=DIR             ps documentation [DOCDIR]
194
195 Program names:
196   --program-prefix=PREFIX            prepend PREFIX to installed program names
197   --program-suffix=SUFFIX            append SUFFIX to installed program names
198   --program-transform-name=PROGRAM   run sed PROGRAM on installed program names
199
200 Optional Features:
201   --disable-option-checking  ignore unrecognized --enable/--with options
202   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
203   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
204   --enable-silent-rules   less verbose build output (undo: "make V=1")
205   --disable-silent-rules  verbose build output (undo: "make V=0")
206   --enable-dependency-tracking
207                           do not reject slow dependency extractors
208   --disable-dependency-tracking
209                           speeds up one-time build
210   --enable-a52dec         build a52dec (yes)
211   --enable-djbfft         build djbfft (yes)
212   --enable-audiofile      build audiofile (no)
213   --enable-encore         build encore (no)
214   --enable-esound         build esound (no)
215   --enable-ffmpeg         build ffmpeg (yes)
216   --enable-fftw           build fftw (auto)
217   --enable-flac           build flac (auto)
218   --enable-giflib         build giflib (yes)
219   --enable-ilmbase        build ilmbase (auto)
220   --enable-lame           build lame (auto)
221   --enable-libavc1394     build libavc1394 (auto)
222   --enable-libraw1394     build libraw1394 (auto)
223   --enable-libiec61883    build libiec61883 (auto)
224   --enable-libdv          build libdv (auto)
225   --enable-libjpeg        build libjpeg (auto)
226   --enable-opus           build opus (auto)
227   --enable-openjpeg       build openjpeg (auto)
228   --enable-libogg         build libogg (auto)
229   --enable-libsndfile     build libsndfile (auto)
230   --enable-libtheora      build libtheora (auto)
231   --enable-libuuid        build libuuid (yes)
232   --enable-libvorbis      build libvorbis (auto)
233   --enable-mjpegtools     build mjpegtools (yes)
234   --enable-openexr        build openexr (auto)
235   --enable-tiff           build tiff (auto)
236   --enable-twolame        build twolame (auto)
237   --enable-x264           build x264 (auto)
238   --enable-x265           build x265 (auto)
239   --enable-libvpx         build libvpx (auto)
240   --enable-lv2            build lv2 (auto)
241   --enable-sratom         build sratom (auto)
242   --enable-serd           build serd (auto)
243   --enable-sord           build sord (auto)
244   --enable-lilv           build lilv (auto)
245   --enable-suil           build suil (auto)
246   --enable-libaom         build libaom (auto)
247   --enable-dav1d          build dav1d (auto)
248   --enable-libwebp        build libwebp (auto)
249   --enable-ffnvcodec      build ffnvcodec (auto)
250   --enable-static-build   build static ([auto])
251   --enable-x264_hidepth   build x264 10bit ([no])
252   --enable-x265_hidepth   build x265 10bit ([no])
253
254 Optional Packages:
255   --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
256   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
257   --with-jobs             parallel build jobs (auto)
258   --with-exec-name        binary executable name (cin)
259   --with-single-user      to install cin in bin (no)
260   --with-ladspa-build     build ladspa library (yes)
261   --with-lv2              lv2 library support (yes)
262   --with-cinlib           cinelerra library path (auto)
263   --with-cindat           cinelerra share path (auto)
264   --with-plugin-dir       plugin install dir (auto)
265   --with-ladspa-dir       ladspa install dir (auto)
266   --with-config-dir       .bcast config dir ($$HOME/.bcast5)
267   --with-nested-dir       nested proxy dir ($$HOME/Videos)
268   --with-browser          cin_browser path (firefox)
269   --with-git-ffmpeg       git ffmpeg using url (no)
270   --with-noelision        use noelision/libpthread (auto)
271   --with-booby            window lock trace booby trap (no)
272   --with-libzmpeg         build libzmpeg (yes)
273   --with-commercial       enable commercial capture (yes)
274   --with-thirdparty       use thirdparty build (yes)
275   --with-shuttle          shuttle device (yes)
276   --with-wintv            usb 2040:826d wintv device (yes)
277   --with-x10tv            usb 0bc7:0004 X10 remote device (yes)
278   --with-vaapi            video acceleration api (yes)
279   --with-vdpau            video decode+presentation api for unix (yes)
280   --with-nv               nvenc/nvdec ffnvcodec api (yes)
281   --with-cuda             nv cuda plugins (auto)
282   --with-clang            use clang instead of gcc/g++ (no)
283   --with-gl               use opengl (auto)
284   --with-oss              use OSS audio (auto)
285   --with-xft              use libXft (auto)
286   --with-alsa             use libasound/alsa (auto)
287   --with-firewire         use firewire (auto)
288   --with-dv               use dv (auto)
289   --with-dvb              use dvb (auto)
290   --with-video4linux2     use v4l2 (auto)
291   --with-xxf86vm          use xf86vmode (auto)
292   --with-esound           use esd (auto)
293   --with-shuttle          shuttle dev support (auto)
294   --with-shuttle_usb      use libusb-1.0 (auto)
295   --with-lv2              use lv2 (auto)
296   --with-cuda             build cuda plugins (auto)
297   --with-dl               system has libdl (auto)
298   --with-opencv           opencv=sys/sta/dyn,git/tar=url (auto)
299   --with-numa             system has libnuma (auto)
300   --with-openexr          use openexr (auto)
301
302 Some influential environment variables:
303   CC          C compiler command
304   CFLAGS      C compiler flags
305   LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
306               nonstandard directory <lib dir>
307   LIBS        libraries to pass to the linker, e.g. -l<library>
308   CPPFLAGS    (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
309               you have headers in a nonstandard directory <include dir>
310   CCAS        assembler compiler command (defaults to CC)
311   CCASFLAGS   assembler compiler flags (defaults to CFLAGS)
312   CXX         C++ compiler command
313   CXXFLAGS    C++ compiler flags
314
315 Use these variables to override the choices made by `configure' or to help
316 it to find libraries and programs with nonstandard names/locations.
317
318 Report bugs to <mail@lists.cinelerra-gg.org>.
319
320 \end{verbatim}
321 \endgroup
322
323 \section{Thirdparty Parallel Build}
324 \label{sec:thirdparty_parallel_build}
325 \index{build!thirdparty}
326
327 The Makefile in the thirdparty build directory employs a set of macros used to create a build rule set of thirdparty library build dependencies.  The standard build sequence of [source, config, build] is used to prepare thirdparty products as static libraries.  Build package dependency can be specified in the Makefile std-build macro call.  These Makefile macro calls define the rules used for each thirdparty build.  The expanded rule definitions may be viewed by using:
328
329 \hspace{2em}\texttt{make -C thirdparty rules}
330
331 Individual package libraries can be rebuilt, via:
332
333 \hspace{2em}\texttt{make -C thirdparty <pkg>-clean;  make -C thirdparty <pkg>}
334
335 The rule targets create the set of thirdparty packages which are built from local source archive copies of thirdparty source code and patches, if needed.  The build rule set of dependencies allows for compiling multiple thirdparty programs simultaneously using maximum computer resources.  This parallel build speeds up the process considerably.  For example, these are full static build timings on the production build machine (full build includes building all thirdparty programs as well as all of \CGG{}):
336
337 \hspace{2em}
338 \begin{tabular}{@{}rcr}
339         1 cpu & = & 61 mins\\
340         12 cpus & = & 7.5 mins\\
341         24 cpus & = & 2 mins\\
342 \end{tabular}
343
344 \section{Using the very latest Libraries}
345 \label{sec:latest_libraries}
346 \index{build!use latest library}
347
348 Using the most current libraries can be a challenge for some of the Operating System distros that use
349 stable compilers, assemblers, and their own libraries.  Because they are stable, they frequently do
350 not keep up with the very latest of thirdparty libraries.  Consequently, some program constructs may
351 not yet be implemented.  \CGG{} tries to maintain stability since it is better to have less features
352 and no crashes.  The goal is to make \CGG{} widely available on many platforms rather than
353 dependent on advanced tools that are not supported on some distros.
354
355 \CGG{} attempts to upgrade to the latest releases of many thirdparty libraries about every 3-4
356 months. But it is often difficult to keep some of these thirdparty libraries up to date as their
357 developers switch from tried and true standard tools to newer, less standard tools. As a result 
358 in order to build \CGG{} on 2-3 versions of any distro rather than only the most current version,
359 some thirdparty libraries can not be kept up to date and may even be to the point of no further
360 updates.  In a lot of cases, the updated releases provide little new capabilities but rather
361 are bug fixes that may not even be relevant to \CGG{}'s use.
362
363 So as a computer savvy user or a developer, if you would like to build \CGG{} with the latest
364 thirdparty releases for some of the packages here are a few suggestions based on other 
365 developer's feedback and experimentation.
366
367 \textbf{dav1d} 
368 \begin{description}[noitemsep]
369      \item Status - currently \CGG{} is staying at 0.5.  This is disappointing because there
370 may be speed gains in version 0.6 that would be beneficial. However, it is usable for decoding
371 whereas libaom is a lot slower.  Unfortunately, it has no effective encoder.
372      \item Problem - 0.6 dav1d requires NASM 2.14 and uses instructions like vgf2p8affineqb,
373 not exactly an "add" instruction. It also uses meson which is not widely available on all
374 distros.  The only distros that are built for \CGG{} that are at 2.14 are the latest version
375 of Arch, Debian(10), Gentoo, Tumbleweed, and Fedora(31). The rest are at 2.12 and 2.13 including
376 the most widely used Ubuntu. The NASM requirement apparently provides for using AVX-512 
377 instructions (like vgf2p8affineqb, which is more like a whole routine than a simple instruction).
378      \item Workaround already in use by \CGG{} - a Makefile was generated to replace Meson usage
379 but has to be continuously updated for new releases. Dav1d 0.5 requires NASM 2.13 so at this level
380 the newer distros mostly work.  The availability of meson and nasm are a significant problem on
381 many systems which are still in wide use.
382      \item Your workaround - Because a request to dav1d developers to consider changes to
383 ensure their library is more widely usable does not appear to be in their future, since it works
384 for them, you can upgrade NASM to 2.14 to stay up to date.  Of course, install meson also.
385 \end{description}
386
387 \textbf{OpenExr} 
388 \begin{description}[noitemsep]
389      \item Status - currently at latest version 
390      \item Problem - the OpenExr tarball is not a single package but is 2 packages instead
391      \item Workaround already in use by \CGG{} - reworked the packages so that it looks like
392 one package with 2 stubs
393      \item Your workaround - perhaps use the same workaround
394 \end{description}
395
396 \textbf{OpenCV}
397 \begin{description}[noitemsep]
398      \item Status - 2 different versions specific for O/S but none for Ubuntu 14, 32 or 64 bit
399      \item Problem - There are really 2 problems here.  The first is OpenCV is not really
400 "Open" in that Surf is patented/non-free and there is no actual source available for certain
401 capabilities. The second is that cmake 3.5.1 is required for OpenCV 4.2.
402      \item Workaround already in use by \CGG{} - using 3.4.1 for older distros and 4.2 for newer
403      \item Your workaround - upgrade cmake to 3.5.1 for upgrade to 4.2; add non-free to the
404 compile; and use binaries that you do not know what they contain since no source code to compile.
405 Look into opencv4/opencv2/core/types.hpp:711;27
406 \end{description}
407
408 \textbf{libaom}
409 \begin{description}[noitemsep]
410      \item Status - currently at version 3.0.0 for older O/S and 3.1.1 for newer O/S
411      \item Problem - requires cmake 3.5 at 3.0.0 and 3.6 for 3.1.1
412      \item Workaround already in use by \CGG{} - leaving out of Ubuntu14, Ubuntu, Centos7
413      \item Your workaround - upgrade on those systems to cmake 3.6
414 \end{description}
415
416 \textbf{x10tv}
417 \begin{description}[noitemsep]
418      \item Status - this is the x10 TV remote control
419      \item Problem - INPUT\_PROP\_POINTING\_STICK not defined error on older distros
420      \item Workaround already in use by \CGG{} - leaving out of Ubuntu14, Ubuntu, Centos7
421      \item Your workaround - look into /usr/include/linux/input-event-codes.h
422 \end{description}
423
424 \textbf{libvpx}
425 \begin{description}[noitemsep]
426      \item Status - currently at version 1.8.1
427      \item Problem - when decoding a test file, it failed to correctly load to the timeline
428      \item Workaround already in use by \CGG{} - not upgrading to 1.8.2
429      \item Your workaround - no analysis for a solution has been performed yet
430 \end{description}
431
432 \section{Find Lock Problems with Booby Trap}
433 \label{sec:find_lock_problems_booby_trap}
434 \index{build!booby trap}
435
436 A Booby Trap is used in \CGG{} for setting a trap to catch lock problems that might have been missed. It will trap boobies only if compile by adding \textit{-{}-with-booby} on the configuration command line. This is the default if you compile using \texttt{./bld.sh} from the GIT repository. It should not interfere with normal execution.
437
438 If you have the time and inclination, enable \textit{-{}-with-booby} and send any trap output that you find. Maybe you will catch some boobies and if you do, send a snapshot of any boobies you find.
439
440 There are 2 potential traps:
441
442 \begin{itemize}[nosep]
443         \item If you try to unlock a lock when it is not locked
444         \item If you execute a drawing operation without holding the window lock
445 \end{itemize}
446
447 The trap prints the following in the controlling terminal window:
448
449 \hspace{2em} \textit{BOOBY! \qquad <backtrace>}
450
451 An example backtrace is below along with a hint below on how to analyze:
452
453 \begin{lstlisting}[numbers=none]
454 /home/cin5/bin/./cin(_Z5boobyv+0x3f) [0x557069fa9b2f] /home/cin5/bin/./cin(_ZN13BC_WindowBase9draw_lineEiiiiP9BC_Pixmap+0x3b)0x557069fb9a9b]
455 /home/cin5/bin/./cin(\_ZN10BC_ListBox11draw_borderEi+0x73)[0x557069f7dc73]
456 /home/cin5/bin/./cin(+0x9707fb) [0x557069f7e7fb]
457 /home/cin5/bin/./cin(\ZN10BC\ListBox16center\selectionEv+0x4e)[0x557069f7f2ae]
458 /home/cin5/bin/plugins/video/sketcher.plugin(_ZN17SketcherCurveList6updateEi+0x1a0)[0x7f1b8002a4c0]
459 /home/cin5/bin/plugins/video/sketcher.plugin(_ZN18SketcherCurveColor17handle_done_eventEi+0x76)[0x7f1b8002a5f6]
460 /home/cin5/bin/./cin(_ZN15BC_DialogThread3runEv+0xd8)[0x557069f6fb78]
461 /home/cin5/bin/./cin(_ZN6Thread10entrypointEPv+0x45)[0x557069fc5995]
462 /usr/lib/libpthread.so.0(+0x7a9d) [0x7f1b91b4ea9d]
463 /usr/lib/libc.so.6(clone+0x43) [0x7f1b90accb23]
464 \end{lstlisting}
465
466 To see which routine is reporting the booby key in:
467
468 \hspace{2em} \texttt{c++filt}
469
470 And then the $2^{nd}$ line in the backtrace above:
471
472 \hspace{2em}\texttt{\_ZN13BC\_WindowBase9draw\_lineEiiiiP9BC\_Pixmap}
473
474 It comes back with the routine as:
475
476 \hspace{2em}\texttt{BC\_WindowBase::draw\_line(int, int, int, int, BC\_Pixmap*)}
477
478 \section{Valgrind Support Level}
479 \label{sec:valgrind_support_level}
480 \index{build!valgrind}
481
482 Valgrind is a memory mis-management detector.  It shows you memory leaks, deallocation errors, mismanaged threads, rogue reads/writes, etc.  \CGG{} memory management is designed to work with Valgrind detection methods.  This assists in developing reliable code.  Use of Valgrind points out problems so that they can be fixed.  For example, when this version of \CGG{} shuts down, it deallocates memory instead of just stopping, thus making memory leak detection possible.  An alternative to Valgrind is
483 \textit{heaptrack} which has good documentation and for large programs can run
484 faster.  You can find the source and information about it at {\small\url{https://github.com/KDE/heaptrack}}.
485 \index{valgrind!heaptrack}
486
487 The best way to compile and run valgrind is to run the developer static build. This takes 2 steps and you must already have gdb and valgrind installed:
488
489 \begin{enumerate}[nosep]
490         \item The standard static build:\\
491                 \texttt{cd /path/cinelerra-5.1}\\
492                 \texttt{make clean}\\
493                 \texttt{./bld.sh}
494         \item run the incremental rebuild for debug objs:\\
495                 \texttt{CFLAGS=-ggdb make -j8 rebuild\_all}
496 \end{enumerate}
497
498 If you frequently make mods and changes in \CGG{} or the thirdparty libraries, do not depend on those
499 compiled versions to have the headers updated; so be sure to fully rebuild as shown in the previous 2
500 steps before running valgrind or you will get false errors.
501
502 Now your \CGG{} obj has all of the debug stuff. Next run valgrind as root for the most useful results:
503
504 \hspace{2em}\texttt{cd /path/cinelerra-5.1/cinelerra}
505
506 \hspace{2em}\texttt{valgrind -{}-log-file=/tmp/log -{}-leak-check=full\\
507         -{}-num-callers=32 ./ci}
508
509 This runs \CGG{} under the control of valgrind, and produces a log file in /tmp which will list information about any leaks, usually clearly identifiable. Be sure to Quit out of \CGG{} normally instead of Ctrl-C or a SEGV otherwise the program does not have a chance to cleanup and there will be some false alarms. But it runs very slowly, and is basically single threaded, which means that race conditions may be impossible to catch$\dots$ like one thread deletes memory that another thread is currently using. But overall it is a big help and if you test any new features, please email the log output. A lot of effort when writing the code was put into trying to be sure that all of the object constructors have matching destructors so that the leaks can be identified. There are already several libraries that create predictable memory leaks and valgrind does a good job for most of these.
510
511 It is impossible to test everything with valgrind because some things are just too big and slow for a practical test. Occasionally you can find a leak or an illegal memory access. There are several false alarms that are difficult to avoid \textit{Conditional jump} messages, and \textit{unhandled DW\_OP\_}, but anything with the word \textit{illegal} in the message is important. Memory leaks that originate in \CGG{} are good to find and fix, but are usually not
512 deadly. The listing of the memory leaks can be quite voluminous so locating the \textit{LEAK SUMMARY} section
513 towards the end of the report is most useful.
514
515 Another very useful valgrind run to locate unitialized variables while executing is:
516
517 \hspace{2em}\texttt{valgrind -{}-log-file=/tmp/log -{}-tool=memcheck\\
518         -{}-num-callers=32 ./ci}
519
520 \section{CFLAGS has -Wall}
521 \label{sec:cflags_has_-wall}
522 When compiling \CGG{} Infinity a CFLAGS option used is \textit{Wall} where the "W" represents warnings and "all" means all.  This causes the compile to check for simple mistakes that can be detected automatically and issue warnings when the code is questionable.  It can also detect situations where the compiler will generate incorrect code, like type-punned pointer.  By turning on this flag, when new code is vetted for predictable mistakes, the code can be corrected before becoming manifested in the application.
523
524 \section{Prof2 -- A Profiler}
525 \label{sec:prof2_profiler}
526 \index{build!prof2}
527
528 Frequently there is a problem with a program running slow and you do not know why. You need a thumbnail analysis of where the program is spending most of its time without all of the overwhelming details. This is when a Profiler comes in handy.
529
530 There are many different profilers available -- this particular one does not do anything special and is fairly ordinary in that it just characterizes frequency of execution of various regions in the program. However, it has some pretty good strengths as listed next.
531
532 \begin{enumerate}[nosep]
533         \item It takes very little or no preconditioning, i.e. setup
534         \item The effect it has on the running program is minimal
535         \item It runs almost at full speed, which is really nice
536         \item It is not particularly thread aware
537         \item Reports where it is executing at intervals of 100 times a second
538 \end{enumerate}
539
540 \subsection{Setup}
541 \label{sub:setup}
542
543 This profiler works on x86\_64 systems and you must be root to compile and run it. Also, you must install your operating system's \textit{iberty} -- for example, which would be binutils-devel for Fedora or libiberty-dev for Ubuntu 18.
544
545 Go to the top level \CGG{} directory.
546
547 Key in: \qquad \texttt{prof2}
548
549 Key in: \qquad \texttt{make clean all install}
550
551 Because \textit{smap} may have to be found in the system if \textit{How to use} below does not work, you will have to do the following:
552 \newline
553 \newline
554 Key in: \qquad \texttt{cp -a smap /usr/local/bin}
555
556
557 Later, if you want to remove this from the system,
558
559 Key in: \qquad \texttt{make uninstall}
560
561 \subsection{How to use}
562 \label{sub:how_to_use}
563
564 The program you are profiling should be compiled debuggable with stack frame and symbols enabled.
565
566 To see help, key in: \qquad \texttt{prof -h}
567
568 usage: -h [-o path] [-d] [-e] [-p libpath] [-012] [-u \#] cmd args...
569
570 \hspace{2em}
571 \begin{tabular}{@{}ll}
572         -o & profile output pathname, -=stdout, -{}-=stderr\\
573         -d & debug otitleutput enabled\\
574         -e & child debug output enabled\\
575         -p & specify path for libprofile.so\\
576         -0 & usr+sys cpu timer intervals (sigprof)\\
577         -1 & usr only cpu timer intervals (sigvtalrm)\\
578         -2 & real time timer intervals (sigalrm)\\
579         -u & profile timer interval in usecs\\
580 \end{tabular}
581
582 To execute the profiler, key in:
583
584 \hspace{2em}\texttt{prof -o /tmp/prof\_list.txt ./cin}
585
586 where \texttt{/tmp/prof\_list.txt} is the output file and in this case \texttt{cin} is the \CGG{} binary file. The pid of this command will be displayed on the startup window. This comes in handy in the use case where there is a lot of initial load and possible configuration setup inside of \CGG{} and you want to profile plugins and not necessarily all of the setup steps. Then you can use the following command in another window to continue running \CGG{} and obtain the more useful information:
587
588 \hspace{2em}\texttt{kill -USR1 pid}
589
590 Running this command refreshes the memory maps used for profiling. When you are profiling a plugin, you want to run this AFTER the plugin loads.
591
592 \subsection{Results}
593 \label{sub:results}
594
595 There are 3 sections in the resulting output file of this stochastic quick analysis.
596
597 \begin{enumerate}[nosep]
598         \item The first section is a histogram of the timer intervals of that sample set. Each function occupies a region of addresses. One hundred times a second, the profiler samples the program address in the region of execution.
599         \item In the second section, there is another histogram of the cumulative frequency of all things in the call stack and this should point out who is the culprit. For example, a codec calls a bunch of subroutines, the cost of the subroutines is accumulated to the codec parent caller. This makes the actual cpu user much more apparent.
600         \item The last section is for the library spaces. Each library occupies a region and the profiler adds up the time spent in each of the libraries by frequency.
601 \end{enumerate}
602
603 On the very bottom is a 1 line summary which shows you if there is a bad guy and who it is.
604
605 \subsection{Sample output}
606 \label{sub:sample_output}
607
608 \textit{--- profile start ---}
609
610 \textbf{1020 ticks 43 modules 81412 syms}\\
611 \begin{tabular}{@{}rrp{\linewidth-6em}}
612  0.010s & 0.1\% & Autos::copy(long, long, FileXML*, int, int) /mnt0/build5/cinelerra-5.1/bin/cin\\
613  0.010s & 0.1\% & BinFolders::copy\_from(BinFolders*) /mnt0/build5/cinelerra-5.1/bin/cin\\
614  0.010s & 0.1\% & cstrdup(char const*)     /mnt0/build5/cinelerra-5.1/bin/cin\\
615  0.010s & 0.1\% & XMLBuffer::encode\_data(char*, char const*, int) /mnt0/build5/cinelerra-5.1/bin/cin\\
616  0.010s & 0.1\% & XMLBuffer::encoded\_length(char const*, int) /mnt0/build5/cinelerra-5.1/bin/cin\\
617  0.010s & 0.1\% & PluginClient::send\_configure\_change() /mnt0/build5/cinelerra-5.1/bin/cin\\
618  0.010s & 0.1\% & UndoVersion::scan\_lines(UndoHashTable*, char*, char*) /mnt0/.../cin\\
619  0.010s & 0.1\% & UndoStackItem::set\_data(char*) /mnt0/build5/cinelerra-5.1/bin/cin\\
620  0.010s & 0.1\% & UndoStack::load(\_IO\_FILE*) /mnt0/build5/cinelerra-5.1/bin/cin\\
621  0.010s & 0.1\% & BC\_Bitmap::cur\_bfr()     /mnt0/build5/cinelerra-5.1/bin/cin\\
622  0.010s & 0.1\% & YUV::init\_tables(int, int*, int*, int*, int*, int*, int*, int*, int*, int*, int*, int*, int*, int*, int*) /mnt0/build5/cinelerra-5.1/bin/cin\\
623 \end{tabular}\\
624 $\dots$\\
625 $\dots$\\
626 \textit{--- profile calls ---}
627
628 \begin{tabular}{@{}rrl}
629  0.010s & 0.1\% & AutoConf::save\_xml(FileXML*)   1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
630  0.010s & 0.1\% & Automation::copy(long, long, FileXML*, int, int)   1.0 /mnt0/.../cin\\
631  0.010s & 0.1\% & AWindow::run()             1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
632  0.010s & 0.1\% & Canvas::stop\_single()      1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
633  0.010s & 0.1\% & ColorPicker::new\_gui()     1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
634  0.010s & 0.1\% & ColorWindow::create\_objects()   1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
635  0.010s & 0.1\% & PaletteWheel::draw(float, float)   1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
636  0.010s & 0.1\% & PaletteHex::update()       1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
637  0.010s & 0.1\% & CWindowGUI::draw\_status(int)   1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
638  0.010s & \textbf{0.1\%} & CWindowCanvas::status\_event()   1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
639 \end{tabular}\\
640 $\dots$\\
641 $\dots$\\
642 \begin{tabular}{@{}rrl}
643  0.990s & \textbf{9.7\%} & BC\_Xfer::xfer\_slices(int)   1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
644  1.880s & \textbf{18.4\%} & DirectUnit::process\_package(LoadPackage*)   1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
645  1.880s & \textbf{18.4\%} & DirectUnit::rgba8888()     1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
646  3.910s & \textbf{38.3\%} & \_\_init\_array\_end           1.1 /mnt0/build5/cinelerra-5.1/bin/cin\\
647  5.450s & \textbf{53.4\%} & LoadClient::run()          1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
648  7.890s & \textbf{77.4\%} & Thread::entrypoint(void*)   1.0 /mnt0/build5/cinelerra-5.1/bin/cin\\
649  7.890s & \textbf{77.4\%} & start\_thread               1.0 /lib64/libpthread-2.28.so\\
650 \end{tabular}\\
651 ---\\
652 ---\\
653 \begin{tabular}{@{}rrl}
654  0.010s & 0.1\%/  0.0\% & /lib64/libm-2.28.so\\
655  0.010s & 0.1\%/  0.0\% & /lib64/libexpat.so.1.6.8\\
656  0.020s & 0.2\%/  0.1\% & /lib64/libXext.so.6.4.0\\
657  0.020s & 0.2\%/  0.1\% & /lib64/libXft.so.2.3.2\\
658  0.020s & 0.2\%/  0.1\% & /lib64/libxcb.so.1.1.0\\
659  0.040s & 0.4\%/  0.2\% & /lib64/ld-2.28.so\\
660  0.050s & 0.5\%/  0.2\% & /lib64/libpng16.so.16.34.0\\
661  0.130s & 1.3\%/  0.6\% & /lib64/libX11.so.6.3.0\\
662  0.180s & 1.8\%/  0.8\% & /lib64/libz.so.1.2.11\\
663  0.200s & 2.0\%/  0.9\% & /lib64/libfontconfig.so.1.12.0\\
664  0.380s & 3.7\%/  1.8\% & /lib64/libpthread-2.28.so\\
665  1.660s & 16.3\%/ 7.7\% & /lib64/libc-2.28.so\\
666  7.480s & 73.3\%/34.7\% & /mnt0/build5/cinelerra-5.1/bin/cin\\
667 \end{tabular}
668
669 \textbf{10.200t 0.001u+0.000s 21.566r  47.3\%}\\
670 \textit{--- profile end ---}
671
672 The summary line above in Bold represents the User time, System time, Real time and the percentage is how much Timer time elapsed over Real time so in this case the measurement covers 47.3\% of time.
673
674 So why use a Profiler? Because it is the ``ls'' for executable functions!!
675
676 \section{Working on AppImage}
677 \label{sec:working_on_appimage}
678
679 You can work on the appimage file to make changes and fix errors, or you can create a new appimage from scratch containing customizations. For example, you can add new rendering presets, update the Context-Help, change libraries that are no longer supported by the current distro, or make other modifications.
680
681 \subsection{Managing AppImage}
682 \label{sub:managing_appimage}
683 \index{appimage!management}
684
685 A limitation of using AppImage instead of installing the binary or compiling from git, is that there is only a single file without the ability to browse the directory structure or to look for files to edit or check. So if using \CGG{} leads to some errors, it is not possible to investigate and fix the problem. Which means if you want to add the most up-to-date Context-Help or want to introduce some custom presets, that can not be done.
686
687 Because the appimage file is nothing more than a compressed file containing the same structure as the installed program plus other libraries that allow the program to run independently from the system, the content can be extracted so that you can work on it as you would have on the normally installed program.  To do this you will need the appimage management program.
688 Many Linux distros come with this managment program by default, but others may not. For instance in the case of Arch Linux the \texttt{appimagetool-bin} package from AUR needs to be installed. 
689
690 To work on the appimage, first unpack it using the command\protect\footnote{Example provided by Glitterball3} (note that you do not have to be root to do any of the following):
691
692 \begin{lstlisting}[numbers=none]
693         /{path to appimage}/CinGG-yyyymmdd.AppImage --appimage-extract
694 \end{lstlisting}
695
696 You will now have a \texttt{squashfs-root} folder in your current directory containing \texttt{/usr/bin/} as well as other files and directories such as \texttt{/usr/lib} and \texttt{/usr/share}. \texttt{Bin} is the folder similar to the one installed with \CGG{} and contains the files that you can work on. Now it is possible to make changes like adding a custom preset in \texttt{/ffmpeg/video} or replacing a library that no longer works with a more recent version by working in \texttt{/squashfs-root/usr/lib}.
697
698 To start the unpacked program from the bin folder use the command:
699
700 \begin{lstlisting}[numbers=none]
701         /{path to appimage}/squashfs-root/usr/bin/./cin
702 \end{lstlisting}
703
704 After making your changes, to get back to having an appimage file instead of having to run the program from the bin folder, you can take the extra step of recompressing the squashfs-root folder.
705 To do so use linuxdeploy's appimage, a program that can also be useful for creating appimages from scratch (\url{https://github.com/linuxdeploy/linuxdeploy/releases/continuous}).
706
707 The steps to recreate the appimage are:
708
709 \begin{enumerate}
710         \item Copy the linuxdeploy appimage to \texttt{/\{path to appimage\}} and make sure it is executable.
711         \item Then use the command:
712         \begin{lstlisting}[numbers=none]
713                 ./linuxdeploy-x86_64.AppImage --appdir squashfs-root --output appimage
714         \end{lstlisting}
715 \end{enumerate}
716
717 A new appimage will be created like the original but containing the changes.
718
719 Alternatively, download the \texttt{appimagetool} version from \url{https://github.com/AppImage/AppImageKit/releases} if available for your distro and use the command:
720
721 \begin{lstlisting}[numbers=none]
722         ./appimagetool --comp /{path to appimage}/squashfs-root /tmpCinGG-yyyymmdd.AppImage
723 \end{lstlisting}
724
725 Now there will be an appimage called \textit{CinGG-yyyymmdd.AppImage} with the changes that were made.
726
727 NOTE: for the \textbf{bdwrite} program which is used to create the udfs image to burn Blu-ray
728 media (or any other standalone program), you will find it in the squashfs-root/usr/bin
729 subdirectory. You only need to do the initial unpacking extract step and then just copy
730 bdwrite and the entire squashfs-root/usr/lib directory to a convenient permanent place for
731 usage.  Then when running bdwrite, you will have to first export the libary path by typing
732 this command in the window first:
733 \begin{lstlisting}[numbers=none]
734 export LD_LIBRARY_PATH=/{put your copied usr/lib path here}:$LD_LIBRARY_PATH
735 \end{lstlisting}
736
737 \subsection{Build the CinGG.AppImage from scratch}
738 \label{sub:built_appimage_scratch}
739 \index{appimage!creating}
740
741 If a developer wants to create an appimage from git, follow these next few steps. An existing automated script is available, \texttt{bld\_appimage.sh}, in the directory \texttt{/\{path to cinelerra-5.1\}}.
742
743 This follows four steps:
744
745 \begin{itemize}
746         \item Build static version of \CGG{}.
747         \item If desired and needed, build the HTML manual for context-sensitive help.
748         \item Organize code and if present, the manual, in a AppImage specific format \textit{AppDir}. Do this with tool makeappimage, which is built if needed.
749         \item Call an external tool to make the AppDir into an AppImage
750 \end{itemize}
751
752 Start by downloading the \CGG{} source from Cinelerra's git. The last parameter is a directory name of your choice, the directory must not exist. As example, the name \textit{cinelerra5} is used.
753
754 \begin{lstlisting}[numbers=none]
755         git clone --depth 1 "git://git.cinelerra-gg.org/goodguy/cinelerra.git" cinelerra5
756 \end{lstlisting}
757
758 The source will be in a subdirectory \texttt{cinelerra-5.1} of the directory created by the \textit{git clone} operation.
759
760 If context-sensitive help is needed, download the manual sources too, with a different destination directory.
761
762 \begin{lstlisting}[numbers=none]
763         git clone --depth 1 "git://git.cinelerra-gg.org/goodguy/cin-manual-latex.git" cin-manual-latex
764 \end{lstlisting}
765
766 Then move to the \texttt{/\{path to cinelerra-5.1}/\} directory.
767
768
769 There are two preliminaries to do before running the script:
770
771 1- If context sensitive help in the appimage version is required, the source of the manual and the tools (packages) to build it must be on the system. In the bld\_appimage.sh script, set the variable \texttt{MANUAL\_DIRECTORY=\$(pwd)/../../ cin-manual-latex} to the path of the source of the manual. If the variable is empty, or the specified directory does not exist, \CGG{} will be built without built-in help. The path to the manual source can be an absolute or relative one.
772
773 2- The script bld\_appimage.sh uses a platform specific version of appimagetool so that it can create appimages for \textit{x86\_64}, \textit{i686}, \textit{aarch64}, or \textit{armv7l} architecture. We need to add appimagetool-(platform).AppImage to the \texttt{/\{path to cinelerra- 5.1\}/tools} directory, or somewhere in your path. You can download the tool for your system (e.g. appimagetool-x86\_64.AppImage) from git: {\small\url{https://github.com/AppImage/AppImageKit/releases}}
774
775 Always remember to make it executable. The four supported platforms are:
776
777 \begin{itemize}
778         \item appimagetool-aarch64.AppImage
779         \item appimagetool-armhf.AppImage
780         \item appimagetool-i686.AppImage
781         \item appimagetool-x86\_64.AppImage
782 \end{itemize}
783
784 With the preparations done, let's go back to the bld\_appimage.sh script.
785
786 Make the script executable if it isn't already:
787
788 \begin{lstlisting}[numbers=none]
789 chmod x+u bld_appimage.sh
790 \end{lstlisting}
791
792 Start the script with:
793
794 \begin{lstlisting}[numbers=none]
795 ./bld_appimage.sh
796 \end{lstlisting}
797
798 The first part of the script customizes \texttt{configure}, depending on the architecture of our system. The next step compiles and installs \CGG{} in the \texttt{bin} subdirectory. The third part creates the manual in HTML; It will be the basis for the context help (see \nameref{sec:help_context_help}). The fourth part creates the directory \texttt{/AppDir/usr}, which is the basic structure of an appimage, and then populates it with the contents of \texttt{/\{path to cinelerra-5.1\}/bin}. Finally, the fifth step starts a script, called \texttt{makeappimage}, which points to \textit{bld.sh} contained in \texttt{/tools/makeappimagetool/}.
799
800 The script specifies all executables that are part of \CGG{}, so makeappimage can pick up dependencies. Any executable code in other places is not picked up. makeappimage will populate the AppDir directory, and then call the platform dependent appimagetool found in \texttt{/\{path to cinelerra-5.1\}/tools}.
801
802 At the end of the compilation there will be an appimage in the \texttt{cinelerra-5.1} directory, which we can move and use.
803
804 \section{How to Create a new Theme}
805 \label{sec:how_create_theme}
806 \index{theme!create new theme}
807
808 A \textit{Theme} is a base class object that is created and customized as \textit{ThemeName}.
809 It is constructed during program initialization in a theme plugin
810 \texttt{PluginTClient},
811 defined in \texttt{plugins/theme\_name} source directory.
812
813 \texttt{theme\_name.C} and \texttt{theme\_name.h} are derived \textit{Theme} class object constructors.
814
815 A \textit{Theme} is constructed during initialization in \texttt{init\_theme} (\texttt{mwindow.C}). The theme plugin is accessed using the \textit{name} from preferences and then the theme plugin is loaded which contains the code to construct the theme.  A \textit{Theme} object has functions and data that \CGG{} uses to do a variety of customizations, such as \texttt{default\_window\_positions}, and it can modify GUI defaults like \\
816 \texttt{default\_text\_color} when it is initialized.
817
818 The theme plugin contains a \textit{new\_theme} function that allocates and constructs a
819 \textit{ThemeName} object with base classes of \textit{BC\_Theme} (gui setup), \textit{Theme} (\CGG{} defaults), and \textit{ThemeName}, with definitions and overrides that create the custom theme. To create a new theme, a new plugin is needed:
820
821 \begin{lstlisting}[numbers=none]
822         #include "header files.h"
823         PluginClient* new_plugin(PluginServer *server)
824         {
825                 return new NameMain(server);
826         }
827         
828         NameMain::NameMain(PluginServer *server)
829         : PluginTClient(server)
830         {
831         }
832         
833         NameMain::~NameMain()
834         {
835         }
836         const char* NameMain::plugin_title() { return N_("Name"); }
837         
838         Theme* NameMain::new_theme()
839         {
840                 theme = new ThemeName;
841                 extern unsigned char _binary_theme_name_data_start[];
842                 theme->set_data(_binary_theme_name_data_start);
843                 return theme;
844         }
845         
846         Name::Name()
847         : Theme()
848         {
849         }
850         
851         Name::~Name()
852         {
853                 delete stuff;
854         }
855 \end{lstlisting}
856
857 When a theme is constructed by \texttt{NameMain::new\_theme()}, it sets a pointer to a
858 block of data created in the plugin build that contains all of the png data
859 files in the \texttt{plugins/theme\_name/data} directory.  These images may define or override the appearance of gui images, such as \textit{ok.png} (the ok button).  There are usually a large number of images that need to be defined.  The theme plugin adds them to the theme image data in the \texttt{theme $\rightarrow$ initialize()} function.  The best list of theme image setup is probably in SUV (\texttt{plugins/theme\_suv/suv}).
860
861 The easy way to create a new theme is to copy an existing theme and change
862 its name to \textit{ThemeName}, change \texttt{plugin\_title()} to the new name, and then tweak the definitions until you are happy with the results.   The file
863 names and Makefile also need to be updated to the new theme name.  The source
864 can by manually rebuilt by invoking \textit{make} in the \texttt{plugins/theme\_name}
865 directory.
866
867 Once the new theme is built into the plugin library, it will automatically be discovered by the plugin probe
868 and it will become an available theme in \textit{Preferences}.
869
870 If you are ready to add it to the main build, then \textit{theme\_name} should be
871 included in the DIRS targets of the \texttt{plugins/Makefile}, and \texttt{plugin\_defs} needs \textit{theme\_name} in the themes list.
872
873 Themes usually require considerable time to create from scratch.  For
874 example, the SUV theme has over 800 lines in the initialize function, and has over
875 500 png images in the data directory.  Most of these images and data values are
876 required to be initialized by the custom theme constructor; very tedious and
877 time consuming work.  Creating a new theme is usually a lot of work.
878
879 \section{How Context Help works in the Program Code}
880 \label{sec:context_help_coding}
881 \index{context help}
882
883 All class methods related to context help start with the common pattern \texttt{context \_help} in their names. It is easy to get all occurences in the code with the following command (example):
884
885 \begin{lstlisting}[style=sh]
886         grep -F context_help `find . -name '*.[Ch]' -print`
887 \end{lstlisting}
888
889 The base functionality is defined in several \textit{BC\_WindowBase} class methods in \\ \texttt{guicast/bcwindowbase.C} (search on \texttt{context\_help}). All BC\_Window's and BC\_SubWindow's inherit these methods.
890
891 For the simplest case of context help definition, it is sufficient to add the call to \texttt{context\_help\_set\_keyword()} in the most inclusive widget constructor. If \texttt{Alt/h} is pressed with the mouse over this widget's window, its \texttt{keypress\_event()} method (inherited from BC\_WindowBase) will catch this hotkey, fetch the keyphrase defined by \texttt{context\_help\_set\_keyword()} and call the \texttt{doc/ContextManual.pl} script with this keyphrase. Then ContextManual.pl script does the whole processing of the keyphrase given and calls web browser to display the found HTML manual page. The browser is called in the background to prevent from blocking the calling \CGG{} thread.
892
893 An example from \textit{cinelerra/zoombar.C}:
894
895 \begin{lstlisting}[style=sh]
896         ZoomBar::ZoomBar(MWindow *mwindow, MWindowGUI *gui)
897         : BC_SubWindow(...)
898         {
899                 this->gui = gui;
900                 this->mwindow = mwindow;
901                 context_help_set_keyword("Zoom Panel");
902         }                                                        
903 \end{lstlisting}
904
905 If \texttt{Alt/h} is pressed with the mouse over some subwindow (arbitrary depth) of the \texttt{context\_help\_set\_keyword()} caller, the \texttt{keypress\_event()} method of that subwindow catches the hotkey. Its own context help keyword, probably, will be empty. In this case the whole widget hierarchy is traced up to \textit{top\_level} widget, their context help keywords are checked, and the first nonempty keyword is used for context help.
906
907 This approach allows us to define the help keyword common to the whole dialog window with a bunch of diverse buttons with a single call to \texttt{context\_help\_set \_keyword()}, without placing such a call into each button constructor. And at the same time, this approach allows to assign different help keywords to GUI elements belonging to the same window but documented in different manual pages.
908
909 \subsubsection{An example with several different help keywords from cinelerra/mwindowgui.C:}%
910 \label{ssub:exemple_different_help_keywords}
911
912 \begin{lstlisting}[style=sh]
913         MWindowGUI::MWindowGUI(MWindow *mwindow)
914         : BC_Window(_(PROGRAM_NAME ": Program"), ...)
915         {
916                 this->mwindow = mwindow;
917                 ...
918                 context_help_set_keyword("Program Window");
919         }
920         ...
921         FFMpegToggle::FFMpegToggle(MWindow *mwindow, MButtons *mbuttons, int x, int y)
922         : BC_Toggle(...)
923         {
924                 this->mwindow = mwindow;
925                 this->mbuttons = mbuttons;
926                 set_tooltip(get_value() ? FFMPEG_EARLY_TIP : FFMPEG_LATE_TIP);
927                 context_help_set_keyword("FFmpeg Early Probe Explanation");
928         }
929         ...
930         StackButton::StackButton(MWindow *mwindow, int x, int y)
931         : BC_GenericButton(x, y, mwindow->theme->stack_button_w, "0")
932         {
933                 this->mwindow = mwindow;
934                 set_tooltip(_("Close EDL"));
935                 context_help_set_keyword("OpenEDL");
936         }
937         ...
938         ProxyToggle::ProxyToggle(MWindow *mwindow, MButtons *mbuttons, int x, int y)
939         : BC_Toggle(...)
940         {
941                 this->mwindow = mwindow;
942                 this->mbuttons = mbuttons;
943                 ...
944                 context_help_set_keyword("Proxy");
945         }
946         \end{lstlisting}
947 If the widget we wish to add context help to, overloads keypress\_event() of the base class with its own method, then it is necessary to introduce a small addition to its keypress\_event() handler: the call to \texttt{context\_help\_check\_and\_show()} has to be added in a suitable place in the handler.
948
949 An example with \texttt{context\_help\_check\_and\_show()} from \textit{cinelerra/mbuttons.C}:
950 \begin{lstlisting}[style=sh]
951         int MButtons::keypress_event()
952         {
953             int result = 0;
954             if(!result) {
955                 result = transport->keypress_event();
956             }
957             if(!result) {
958                 result = context_help_check_and_show();
959             }
960             return result;
961         }
962 \end{lstlisting}
963
964 All the keypress handlers are not equal, therefore we provide different variants of the methods context\_help\_check\_and\_show() and context\_help\_show() (the latter for explicit checking on hotkey).
965
966 An example with context\_help\_show() from cinelerra/editpanel.C:
967 \begin{lstlisting}[style=sh]
968         int EditPanelTcInt::keypress_event()
969         {
970                 if( get_keypress() == 'h' && alt_down() ) {
971                         context_help_show("Align Timecodes");
972                         return 1;
973                 }
974                 ...further processing...
975                 return 1;
976         }
977 \end{lstlisting}
978
979 A single example of much more sophisticated keypress\_event() handler can be found in \texttt{cinelerra/trackcanvas.C} (search on context\_help). The problem here was to track the particular object drawn on the canvas to figure out whose context help is to be requested. Another rare example of difficulty may appear when context help is desired for some GUI object which is not subclassed from BC\_WindowBase.
980
981 \textit{ContextManual.pl} looks for occurence of keyphrases in the following order:
982
983 \begin{enumerate}
984         \item In \textit{Contents.html}
985         \item In \textit{Index.html}
986         \item In all the \textit{CinelerraGG\_Manual/*.html} files via grep
987 \end{enumerate}
988
989 Keyphrase matching is tried first exact and case sensitive, then partially and case insensitive. The special keyword \texttt{TOC} shows Contents, \texttt{IDX} shows Index. If the keyword starts with \texttt{FILE:}, the filename after \textit{FILE:} is extracted and that file is shown. You can look in the ContextManual.pl script text.
990
991 For debugging purposes the script can be called from command line. For this to work, the environment variable \texttt{\$CIN\_DAT} has to be set to the parent directory of doc.
992
993
994 \subsubsection{Providing context help for plugins}%
995 \label{ssub:providing_context_help_plugins}
996
997 In the simplest case, nothing has to be done at all. The plugin context help functionality introduced in \texttt{cinelerra/pluginclient.C} automatically assigns context help keyword from the plugin's title for all plugins subclassed from \textit{PluginClient}. For this to work, the manual page documenting the plugin must be entitled identically to the programmatic title of the plugin. A special treatment can be necessary in the following cases:
998
999 \begin{enumerate}
1000         \item \textit{Rendered effects} are not subclasses of PluginClient and require an explicit context help definition via \texttt{context\_help\_set\_keyword().}
1001         \item Only the main plugin dialog inherits context help functionality from the parent class. If a plugin opens additional dialog windows, they probably require explicit context help definitions.
1002         \item If the plugin title differs from its subsection title in the documentation, either its help keyword or the corresponding title in the manual should be renamed. Another possibility can be an addition to the \textit{\%rewrite table} in \texttt{doc/ContextManual.pl}.
1003         \item If the plugin title contains some characters special for HTML and/or Perl regular expression syntax, the special characters have to be escaped. For example, the keyphrase corresponding to the title \textit{Crop \& Position (X/Y)} should be converted to:
1004
1005         \begin{lstlisting}[style=sh]
1006                 Crop & Position \\(X\\/Y\\)
1007         \end{lstlisting}
1008
1009         Such a rewriting can be done either in the C++ code or in ContextManual.pl.
1010 \end{enumerate}
1011
1012 One additional explanation about previous user information when plugin tooltips are off. Help for the \textit {selected plugin} is shown because in this case it would be difficult to figure out, without a visual feedback, which particular item is currently under the mouse.
1013
1014 \subsection{Manual Maintenance is now Tightly Coupled with the Program Code}
1015 \label{sub:manmaintain}
1016
1017 If some section of the \CGG{} manual gets renamed and is used for Context Help, the corresponding help keywords should be adjusted too. All the keywords used can be listed via the following example command:
1018
1019 \begin{lstlisting}[style=sh]
1020         grep -F context_help `find . -name '*.C' -print` | grep -F '"'
1021 \end{lstlisting}
1022 ----------------
1023
1024 Note that the keyword does not have to exactly match the section title; it can also be a case insensitive substring of the section title.
1025
1026 If some new \CGG{} window or dialog is created and documented, the inclusion of context\_help\_set\_keyword() calls and/or adaptation of keypress\_event() handler (if any) should be included in the program code.
1027
1028 If some new \CGG{} plugin is created, it is best to document it in the section entitled exactly equal to that plugin's title. Then probably its context help will work out of the box. Otherwise, some adaptation to its keypress\_event() (if any) or to the %rewrite table in ContextManual.pl may be necessary.
1029
1030 Why the local copy of \CGG{} manual should be used?
1031
1032 \begin{enumerate}
1033         \item For context help keyphrases matching, the local copy of \textit{Contents.html} and \textit{Index.html} is necessary anyway.
1034         \item Grepping \textit{CinelerraGG\_Manual/*.html} files of the remote manual from the website cannot work per definition.
1035         \item The local copy usage ensures exact matching of the version of the manual to the version of \CGG{}. Otherwise, if one uses for some reason an older version of \CGG{} with the help fetched from the newer version of the website manual, various incompatibilities can be expected.
1036         \item Packing the manual into AppImage, the current method of \CGG{} packaging, should be much easier than merging two different git branches when building from source packages, as was done earlier.
1037 \end{enumerate}
1038
1039 What about Localization?
1040
1041 For now, \CGG{} context help is not localized at all. There is no complete \CGG{} manual in any language except English. But even should the manual be translated to other languages, the context help keywords must remain unlocalized literal string constants. First, because the set of languages known to \CGG{} itself is not the same as the set of languages the manual will be translated to. If some "translated keyword" is fed to the help system, while the manual in this language does not exist, keyword matching cannot succeed. Second, such a help localization with the translation of all keywords can be done and then maintained much easier and much more reliably inside the ContextManual.pl script rather than in the \CGG{} binary.
1042
1043 More about ContextManual.pl file?
1044
1045 The bin/doc/ContextManual.pl script can be configured further. Look in the script text. You can define your preferable web browser, or redefine it to 'echo' for debug purposes. There are also some predefined HTML pages for Contents and Index, and several explicitly rewritten keyphrases. 
1046
1047 After the first invocation of context help the system-wide script, bin/doc/ContextManual.pl, copies itself into
1048 the user's config directory, \$HOME/.bcast5. If the user needs to modify ContextManual.pl, it should be done
1049 on that copy from .bcast5 rather than the system-wide one. On all subsequent context help requests this
1050 (possibly modified) .bcast5 version of the script will be called.  If later the \CGG{} package gets
1051 upgraded containing a newer, not 100\% compatible version of ContextManual.pl script, and/or not compatible
1052 structure of the HTML manual itself, the new system-wide version of the script will be copied into .bcast5
1053 again to ensure context help functionality. The older version of the script will be backed up (with the .bak
1054 suffix) as a reference of the modifications done by the user.