no longer need ffmpeg patch0 which was for Termux
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / main.C
1 /*
2  * CINELERRA
3  * Copyright (C) 2010 Adam Williams <broadcast at earthling dot net>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  *
19  */
20
21 #include "aboutprefs.h"
22 #include "arraylist.h"
23 #include "batchrender.h"
24 #include "bcsignals.h"
25 #include "edl.h"
26 #include "file.h"
27 #include "filexml.h"
28 #include "filesystem.h"
29 #include "language.h"
30 #include "langinfo.h"
31 #include "loadfile.inc"
32 #include "mainmenu.h"
33 #include "mutex.h"
34 #include "mwindow.h"
35 #include "mwindowgui.h"
36 #include "pluginserver.h"
37 #include "preferences.h"
38 #include "renderfarmclient.h"
39 #include "units.h"
40 #include "versioninfo.h"
41
42 #include <locale.h>
43 #include <stdlib.h>
44 #include <string.h>
45 #include <sys/time.h>
46 #include <sys/resource.h>
47
48 #ifdef LEAKER
49 #if 0  // track allocators
50 #include <execinfo.h>
51 #define BT_BUF_SIZE 100
52 static void leaker()
53 {
54         void *buffer[BT_BUF_SIZE];
55         int nptrs = backtrace(buffer, BT_BUF_SIZE);
56         char **trace = backtrace_symbols(buffer, nptrs);
57         if( !trace ) return;
58         for( int i=0; i<nptrs; ) printf("%s ", trace[i++]);
59         printf("\n");
60         free(trace);
61 }
62 #define STRB ;leaker()
63 #else
64 #define STRB
65 #endif
66 #define STRC(v) printf("==new %p from %p sz %jd\n", v, __builtin_return_address(0), n)STRB
67 #define STRD(v) printf("==del %p from %p\n", v, __builtin_return_address(0))
68 void *operator new(size_t n) { void *vp = malloc(n); STRC(vp); bzero(vp,n); return vp; }
69 void operator delete(void *t) { STRD(t); free(t); }
70 void operator delete(void *t,size_t n) { STRD(t); free(t); }
71 void *operator new[](size_t n) { void *vp = malloc(n); STRC(vp); bzero(vp,n); return vp; }
72 void operator delete[](void *t) { STRD(t); free(t); }
73 void operator delete[](void *t,size_t n) { STRD(t); free(t); }
74 #endif
75
76 enum
77 {
78         DO_GUI,
79         DO_DEAMON,
80         DO_DEAMON_FG,
81         DO_BRENDER,
82         DO_USAGE,
83         DO_BATCHRENDER
84 };
85
86 #include "thread.h"
87
88
89 class CommandLineThread : public Thread
90 {
91 public:
92         CommandLineThread(ArrayList<char*> *filenames,
93                 MWindow *mwindow)
94         {
95                 this->filenames = filenames;
96                 this->mwindow = mwindow;
97         }
98
99
100         ~CommandLineThread()
101         {
102         }
103
104         void run()
105         {
106 //PRINT_TRACE
107                 mwindow->gui->lock_window("main");
108 //PRINT_TRACE
109                 mwindow->load_filenames(filenames,
110                         LOADMODE_REPLACE, LOADMODE_EDL_CLIP);
111 //PRINT_TRACE
112                 if( filenames->size() == 1 )
113                         mwindow->gui->mainmenu->add_load(filenames->get(0));
114 //PRINT_TRACE
115                 mwindow->gui->unlock_window();
116 //PRINT_TRACE
117         }
118
119         MWindow *mwindow;
120         ArrayList<char*> *filenames;
121 };
122
123 long cin_timezone;
124
125 static float get_layout_scale()
126 {
127         char config_path[BCTEXTLEN];
128         sprintf(config_path,"%s/%s", File::get_config_path(), CONFIG_FILE);
129         FILE *fp = fopen(config_path,"r");
130         if( !fp ) return 0;
131         float scale = 0;
132         char line[BCTEXTLEN];
133         line[BCTEXTLEN-1] = 0;
134         while( fgets(line, BCTEXTLEN-1, fp) ) {
135                 if( !strncmp(line, "LAYOUT_SCALE ",12+1) ) {
136                         scale = atof(line+12);
137                         break;
138                 }
139         }
140         fclose(fp);
141         return scale;
142 }
143
144 int main(int argc, char *argv[])
145 {
146 // handle command line arguments first
147         srand(time(0));
148         ArrayList<char*> filenames;
149         filenames.set_array_delete();
150         FileSystem fs;
151
152         time_t st; time(&st);
153         struct tm ltm, gtm;
154         localtime_r(&st, &ltm);
155         gmtime_r(&st, &gtm);
156         int tzofs = ltm.tm_hour - gtm.tm_hour;
157         cin_timezone = tzofs * 60*60;
158
159         int operation = DO_GUI;
160         int deamon_port = DEAMON_PORT;
161         char deamon_path[BCTEXTLEN];
162         char config_path[BCTEXTLEN];
163         char batch_path[BCTEXTLEN];
164         int nice_value = 20;
165         int load_perpetual = 1;
166         config_path[0] = 0;
167         batch_path[0] = 0;
168         deamon_path[0] = 0;
169         Units::init();
170
171         File::init_cin_path();
172         const char *locale_path = File::get_locale_path();
173         const char *cin = File::get_cin();
174
175         bindtextdomain(cin, locale_path);
176         textdomain(cin);
177         setlocale(LC_MESSAGES, "");
178
179 #ifdef X_HAVE_UTF8_STRING
180         char *loc = setlocale(LC_CTYPE, "");
181         if( loc ) {
182                 strcpy(BC_Resources::encoding, nl_langinfo(CODESET));
183                 BC_Resources::locale_utf8 = !strcmp(BC_Resources::encoding, "UTF-8");
184
185                 // Extract from locale language & region
186                 char locbuf[32], *p;
187                 locbuf[0] = 0;
188                 if( (p = strchr(loc, '.')) != 0 && (p - loc) < (int)sizeof(locbuf)-1 ) {
189                         strncpy(locbuf, loc, p - loc);
190                         locbuf[p - loc] = 0;
191                 }
192                 else if( strlen(loc) < sizeof(locbuf)-1 )
193                         strcpy(locbuf, loc);
194
195                 // Locale 'C' does not give useful language info - assume en
196                 if( !locbuf[0] || locbuf[0] == 'C' )
197                         strcpy(locbuf, "en");
198
199                 if( (p = strchr(locbuf, '_')) && p - locbuf < LEN_LANG ) {
200                         *p++ = 0;
201                         strcpy(BC_Resources::language, locbuf);
202                         if( strlen(p) < LEN_LANG )
203                                 strcpy(BC_Resources::region, p);
204                 }
205                 else if( strlen(locbuf) < LEN_LANG )
206                         strcpy(BC_Resources::language, locbuf);
207         }
208         else
209                 printf(_(PROGRAM_NAME ": Could not set locale.\n"));
210 #else
211         setlocale(LC_CTYPE, "");
212 #endif
213         tzset();
214
215         int load_backup = 0;
216         int start_remote_control = 0;
217
218         for( int i = 1; i < argc; i++ ) {
219                 if( !strcmp(argv[i], "-h") ) {
220                         operation = DO_USAGE;
221                 }
222                 else if( !strcmp(argv[i], "-z") ) {
223                         start_remote_control = 1;
224                 }
225                 else if( !strcmp(argv[i], "-r") ) {
226                         operation = DO_BATCHRENDER;
227                         if( argc > i + 1 ) {
228                                 if( argv[i + 1][0] != '-' ) {
229                                         strcpy(batch_path, argv[i + 1]);
230                                         i++;
231                                 }
232                         }
233                 }
234                 else if( !strcmp(argv[i], "-c") ) {
235                         if( argc > i + 1 ) {
236                                 strcpy(config_path, argv[i + 1]);
237                                 i++;
238                         }
239                         else {
240                                 fprintf(stderr, _("%s: -c needs a filename.\n"), argv[0]);
241                         }
242                 }
243                 else if( !strcmp(argv[i], "-d") || !strcmp(argv[i], "-f") ) {
244                         operation = !strcmp(argv[i], "-d") ? DO_DEAMON : DO_DEAMON_FG;
245                         if( argc > i + 1 ) {
246                                 if( atol(argv[i + 1]) > 0 ) {
247                                         deamon_port = atol(argv[i + 1]);
248                                         i++;
249                                 }
250                         }
251                 }
252                 else if( !strcmp(argv[i], "-b") ) {
253                         operation = DO_BRENDER;
254                         if( i > argc - 2 ) {
255                                 fprintf(stderr, _("-b may not be used by the user.\n"));
256                                 exit(1);
257                         }
258                         else
259                                 strcpy(deamon_path, argv[i + 1]);
260                 }
261                 else if( !strcmp(argv[i], "-n") ) {
262                         if( argc > i + 1 ) {
263                                 nice_value = atol(argv[i + 1]);
264                                 i++;
265                         }
266                 }
267                 else if( !strcmp(argv[i], "-x") ) {
268                         load_backup = 1;
269                 }
270                 else if( !strcmp(argv[i], "-S") ) {
271                         load_perpetual = 0;
272                 }
273                 else {
274                         char *new_filename;
275                         new_filename = new char[BCTEXTLEN];
276                         strcpy(new_filename, argv[i]);
277                         fs.complete_path(new_filename);
278                         filenames.append(new_filename);
279                 }
280         }
281
282         float scale = operation == DO_GUI ?
283                 get_layout_scale() : 1;
284         // runs XInitThreads
285         BC_WindowBase::init_resources(scale);
286
287         if( operation == DO_GUI ||
288             operation == DO_DEAMON || operation == DO_DEAMON_FG ||
289             operation == DO_USAGE  || operation == DO_BATCHRENDER) {
290
291 #ifndef REPOMAINTXT
292 #define REPOMAINTXT ""
293 #endif
294 #ifndef COPYRIGHTTEXT1
295 #define COPYRIGHTTEXT1 ""
296 #endif
297 #ifndef COPYRIGHTTEXT2
298 #define COPYRIGHTTEXT2 ""
299 #endif
300                 fprintf(stderr, "%s %s - %s\n%s",
301                         PROGRAM_NAME,CINELERRA_VERSION, AboutPrefs::build_timestamp,
302                         REPOMAINTXT COPYRIGHTTEXT1 COPYRIGHTTEXT2);
303                 fprintf(stderr, "%s is free software, covered by the GNU General Public License,\n"
304                         "and you are welcome to change it and/or distribute copies of it under\n"
305                         "certain conditions. There is absolutely no warranty for %s.\n\n",
306                         PROGRAM_NAME, PROGRAM_NAME);
307         }
308
309         switch( operation ) {
310                 case DO_USAGE:
311                         printf(_("\nUsage:\n"));
312                         printf(_("%s [-f] [-c configuration] [-d port] [-n nice] [-r batch file] [filenames]\n\n"), argv[0]);
313                         printf(_("-d = Run in the background as renderfarm client.  The port (400) is optional.\n"));
314                         printf(_("-f = Run in the foreground as renderfarm client.  Substitute for -d.\n"));
315                         printf(_("-n = Nice value if running as renderfarm client. (19)\n"));
316                         printf(_("-c = Configuration file to use instead of %s/%s.\n"),
317                                 File::get_config_path(), CONFIG_FILE);
318                         printf(_("-r = batch render the contents of the batch file (%s/%s) with no GUI.  batch file is optional.\n"),
319                                 File::get_config_path(), BATCH_PATH);
320                         printf(_("-S = do not reload perpetual session\n"));
321                         printf(_("-x = reload from backup\n"));
322                         printf(_("filenames = files to load\n\n\n"));
323                         exit(0);
324                         break;
325
326                 case DO_DEAMON:
327                 case DO_DEAMON_FG: {
328                         if( operation == DO_DEAMON ) {
329                                 int pid = fork();
330
331                                 if( pid ) {
332 // Redhat 9 requires _exit instead of exit here.
333                                         _exit(0);
334                                 }
335                         }
336
337                         RenderFarmClient client(deamon_port,
338                                 0,
339                                 nice_value,
340                                 config_path);
341                         client.main_loop();
342                         break; }
343
344 // Same thing without detachment
345                 case DO_BRENDER: {
346                         RenderFarmClient client(0,
347                                 deamon_path,
348                                 20,
349                                 config_path);
350                         client.main_loop();
351                         break; }
352
353                 case DO_BATCHRENDER: {
354                         BatchRenderThread *thread = new BatchRenderThread(0);
355                         thread->start_rendering(config_path,
356                                 batch_path);
357                         break; }
358
359                 case DO_GUI: {
360                         int restart = 0, done = 0;
361                         while( !done ) {
362                                 BC_WindowBase::get_resources()->vframe_shm = 0;
363                                 MWindow mwindow;
364                                 mwindow.create_objects(1, !filenames.total, config_path);
365                                 CommandLineThread *thread  = 0;
366                                 if( load_perpetual )
367                                         mwindow.load_undo_data();
368 //SET_TRACE
369 // load the initial files on seperate tracks
370 // use a new thread so it doesn't block the GUI
371                                 if( filenames.total ) {
372                                         thread  = new CommandLineThread(&filenames, &mwindow);
373                                         thread->start();
374 //PRINT_TRACE
375                                 }
376                                 if( load_backup ) {
377                                         load_backup = 0;
378                                         mwindow.gui->lock_window("main");
379                                         mwindow.load_backup();
380                                         mwindow.gui->unlock_window();
381                                 }
382                                 if( start_remote_control ) {
383                                         start_remote_control = 0;
384                                         mwindow.gui->remote_control->activate();
385                                 }
386 // run the program
387 //PRINT_TRACE
388                                 mwindow.start();
389                                 mwindow.run();
390 //PRINT_TRACE
391                                 restart = mwindow.restart();
392                                 if( restart ) {
393                                         mwindow.save_backup();
394                                         load_backup = 1;
395                                         start_remote_control =
396                                                 mwindow.gui->remote_control->is_active();
397                                 }
398                                 if( restart <= 0 )
399                                         done = 1;
400
401                                 mwindow.save_defaults();
402                                 mwindow.save_undo_data();
403 //PRINT_TRACE
404                                 filenames.remove_all_objects();
405                                 delete thread;
406                         }
407
408                         if( restart < 0 ) {
409                                 char exe_path[BCTEXTLEN];
410                                 int len = readlink("/proc/self/exe", exe_path, sizeof(exe_path)-1);
411                                 if( len < 0 ) break;
412                                 exe_path[len] = 0;
413                                 char *av[4] = { 0, };  int ac = 0;
414                                 av[ac++] = exe_path;
415                                 if( load_backup ) av[ac++] = (char*) "-x";
416                                 if( start_remote_control ) av[ac++] = (char*) "-z";
417                                 av[ac++] = 0;
418                                 execv(exe_path, av);
419                         }
420 //SET_TRACE
421 DISABLE_BUFFER
422                 break; }
423         }
424
425         filenames.remove_all_objects();
426         Units::finit();
427         BC_WindowBase::finit_resources();
428
429         time_t et; time(&et);
430         long dt = et - st;
431         printf("Session time: %ld:%02ld:%02ld\n", dt/3600, dt%3600/60, dt%60);
432         struct rusage ru;
433         getrusage(RUSAGE_SELF, &ru);
434         long usr_ms = ru.ru_utime.tv_sec*1000 + ru.ru_utime.tv_usec/1000;
435         long us = usr_ms/1000;  int ums = usr_ms%1000;
436         long sys_ms = ru.ru_stime.tv_sec*1000 + ru.ru_stime.tv_usec/1000;
437         long ss = sys_ms/1000;  int sms = sys_ms%1000;
438         printf("Cpu time: user: %ld:%02ld:%02ld.%03d sys: %ld:%02ld:%02ld.%03d\n",
439                 us/3600, us%3600/60, us%60, ums, ss/3600, ss%3600/60, ss%60, sms);
440         return 0;
441 }
442