nested clips, big rework and cleanup, sams new icons, leaks and tweaks
[goodguy/history.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
46 #ifdef LEAKER
47 #define STRC(v) printf("==new %p from %p sz %jd\n", v, __builtin_return_address(0), n)
48 #define STRD(v) printf("==del %p from %p\n", v, __builtin_return_address(0))
49 void *operator new(size_t n) { void *vp = malloc(n); STRC(vp); bzero(vp,n); return vp; }
50 void operator delete(void *t) { STRD(t); free(t); }
51 void operator delete(void *t,size_t n) { STRD(t); free(t); }
52 void *operator new[](size_t n) { void *vp = malloc(n); STRC(vp); bzero(vp,n); return vp; }
53 void operator delete[](void *t) { STRD(t); free(t); }
54 void operator delete[](void *t,size_t n) { STRD(t); free(t); }
55 #endif
56
57 enum
58 {
59         DO_GUI,
60         DO_DEAMON,
61         DO_DEAMON_FG,
62         DO_BRENDER,
63         DO_USAGE,
64         DO_BATCHRENDER
65 };
66
67 #include "thread.h"
68
69
70 class CommandLineThread : public Thread
71 {
72 public:
73         CommandLineThread(ArrayList<char*> *filenames,
74                 MWindow *mwindow)
75         {
76                 this->filenames = filenames;
77                 this->mwindow = mwindow;
78         }
79
80
81         ~CommandLineThread()
82         {
83         }
84
85         void run()
86         {
87 //PRINT_TRACE
88                 mwindow->gui->lock_window("main");
89 //PRINT_TRACE
90                 mwindow->load_filenames(filenames, LOADMODE_REPLACE);
91 //PRINT_TRACE
92                 if(filenames->size() == 1)
93                         mwindow->gui->mainmenu->add_load(filenames->get(0));
94 //PRINT_TRACE
95                 mwindow->gui->unlock_window();
96 //PRINT_TRACE
97         }
98
99         MWindow *mwindow;
100         ArrayList<char*> *filenames;
101 };
102
103
104 int main(int argc, char *argv[])
105 {
106 // handle command line arguments first
107         srand(time(0));
108         ArrayList<char*> filenames;
109         FileSystem fs;
110
111
112         int operation = DO_GUI;
113         int deamon_port = DEAMON_PORT;
114         char deamon_path[BCTEXTLEN];
115         char config_path[BCTEXTLEN];
116         char batch_path[BCTEXTLEN];
117         int nice_value = 20;
118         config_path[0] = 0;
119         batch_path[0] = 0;
120         deamon_path[0] = 0;
121         Units::init();
122
123         File::init_cin_path();
124         const char *locale_path = File::get_locale_path();
125         const char *cin = File::get_cin();
126
127         bindtextdomain(cin, locale_path);
128         textdomain(cin);
129         setlocale(LC_MESSAGES, "");
130
131 #ifdef X_HAVE_UTF8_STRING
132         char *loc = setlocale(LC_CTYPE, "");
133         if( loc ) {
134                 strcpy(BC_Resources::encoding, nl_langinfo(CODESET));
135                 BC_Resources::locale_utf8 = !strcmp(BC_Resources::encoding, "UTF-8");
136
137                 // Extract from locale language & region
138                 char locbuf[32], *p;
139                 locbuf[0] = 0;
140                 if((p = strchr(loc, '.')) != 0 && (p - loc) < (int)sizeof(locbuf)-1) {
141                         strncpy(locbuf, loc, p - loc);
142                         locbuf[p - loc] = 0;
143                 }
144                 else if(strlen(loc) < sizeof(locbuf)-1)
145                         strcpy(locbuf, loc);
146
147                 // Locale 'C' does not give useful language info - assume en
148                 if(!locbuf[0] || locbuf[0] == 'C')
149                         strcpy(locbuf, "en");
150
151                 if((p = strchr(locbuf, '_')) && p - locbuf < LEN_LANG) {
152                         *p++ = 0;
153                         strcpy(BC_Resources::language, locbuf);
154                         if(strlen(p) < LEN_LANG)
155                                 strcpy(BC_Resources::region, p);
156                 }
157                 else if(strlen(locbuf) < LEN_LANG)
158                         strcpy(BC_Resources::language, locbuf);
159         }
160         else
161                 printf(_(PROGRAM_NAME ": Could not set locale.\n"));
162 #else
163         setlocale(LC_CTYPE, "");
164 #endif
165         tzset();
166
167         int load_backup = 0;
168         int start_remote_control = 0;
169
170         for(int i = 1; i < argc; i++)
171         {
172                 if(!strcmp(argv[i], "-h"))
173                 {
174                         operation = DO_USAGE;
175                 }
176                 else
177                 if(!strcmp(argv[i], "-z"))
178                 {
179                         start_remote_control = 1;
180                 }
181                 else
182                 if(!strcmp(argv[i], "-r"))
183                 {
184                         operation = DO_BATCHRENDER;
185                         if(argc > i + 1)
186                         {
187                                 if(argv[i + 1][0] != '-')
188                                 {
189                                         strcpy(batch_path, argv[i + 1]);
190                                         i++;
191                                 }
192                         }
193                 }
194                 else
195                 if(!strcmp(argv[i], "-c"))
196                 {
197                         if(argc > i + 1)
198                         {
199                                 strcpy(config_path, argv[i + 1]);
200                                 i++;
201                         }
202                         else
203                         {
204                                 fprintf(stderr, _("%s: -c needs a filename.\n"), argv[0]);
205                         }
206                 }
207                 else
208                 if(!strcmp(argv[i], "-d") || !strcmp(argv[i], "-f"))
209                 {
210                         if(!strcmp(argv[i], "-d"))
211                                 operation = DO_DEAMON;
212                         else
213                                 operation = DO_DEAMON_FG;
214
215                         if(argc > i + 1)
216                         {
217                                 if(atol(argv[i + 1]) > 0)
218                                 {
219                                         deamon_port = atol(argv[i + 1]);
220                                         i++;
221                                 }
222                         }
223                 }
224                 else
225                 if(!strcmp(argv[i], "-b"))
226                 {
227                         operation = DO_BRENDER;
228                         if(i > argc - 2)
229                         {
230                                 fprintf(stderr, _("-b may not be used by the user.\n"));
231                                 exit(1);
232                         }
233                         else
234                                 strcpy(deamon_path, argv[i + 1]);
235                 }
236                 else
237                 if(!strcmp(argv[i], "-n"))
238                 {
239                         if(argc > i + 1)
240                         {
241                                 nice_value = atol(argv[i + 1]);
242                                 i++;
243                         }
244                 }
245                 else
246                 if(!strcmp(argv[i], "-x"))
247                 {
248                         load_backup = 1;
249                 }
250                 else
251                 {
252                         char *new_filename;
253                         new_filename = new char[BCTEXTLEN];
254                         strcpy(new_filename, argv[i]);
255                         fs.complete_path(new_filename);
256                         filenames.append(new_filename);
257                 }
258         }
259
260
261
262         if(operation == DO_GUI ||
263                 operation == DO_DEAMON ||
264                 operation == DO_DEAMON_FG ||
265                 operation == DO_USAGE ||
266                 operation == DO_BATCHRENDER) {
267
268 #ifndef REPOMAINTXT
269 #define REPOMAINTXT ""
270 #endif
271 #ifndef COPYRIGHTTEXT1
272 #define COPYRIGHTTEXT1 ""
273 #endif
274 #ifndef COPYRIGHTTEXT2
275 #define COPYRIGHTTEXT2 ""
276 #endif
277                 fprintf(stderr, "%s %s - %s\n%s",
278                         PROGRAM_NAME,CINELERRA_VERSION, AboutPrefs::build_timestamp,
279                         REPOMAINTXT COPYRIGHTTEXT1 COPYRIGHTTEXT2);
280                 fprintf(stderr, "%s is free software, covered by the GNU General Public License,\n"
281                         "and you are welcome to change it and/or distribute copies of it under\n"
282                         "certain conditions. There is absolutely no warranty for %s.\n\n",
283                         PROGRAM_NAME, PROGRAM_NAME);
284         }
285
286         switch(operation)
287         {
288                 case DO_USAGE:
289                         printf(_("\nUsage:\n"));
290                         printf(_("%s [-f] [-c configuration] [-d port] [-n nice] [-r batch file] [filenames]\n\n"), argv[0]);
291                         printf(_("-d = Run in the background as renderfarm client.  The port (400) is optional.\n"));
292                         printf(_("-f = Run in the foreground as renderfarm client.  Substitute for -d.\n"));
293                         printf(_("-n = Nice value if running as renderfarm client. (20)\n"));
294                         printf(_("-c = Configuration file to use instead of %s/%s.\n"),
295                                 File::get_config_path(), CONFIG_FILE);
296                         printf(_("-r = batch render the contents of the batch file (%s/%s) with no GUI.  batch file is optional.\n"),
297                                 File::get_config_path(), BATCH_PATH);
298                         printf(_("filenames = files to load\n\n\n"));
299                         exit(0);
300                         break;
301
302                 case DO_DEAMON:
303                 case DO_DEAMON_FG:
304                 {
305                         if(operation == DO_DEAMON)
306                         {
307                                 int pid = fork();
308
309                                 if(pid)
310                                 {
311 // Redhat 9 requires _exit instead of exit here.
312                                         _exit(0);
313                                 }
314                         }
315
316                         RenderFarmClient client(deamon_port,
317                                 0,
318                                 nice_value,
319                                 config_path);
320                         client.main_loop();
321                         break;
322                 }
323
324 // Same thing without detachment
325                 case DO_BRENDER:
326                 {
327                         RenderFarmClient client(0,
328                                 deamon_path,
329                                 20,
330                                 config_path);
331                         client.main_loop();
332                         break;
333                 }
334
335                 case DO_BATCHRENDER:
336                 {
337                         BatchRenderThread *thread = new BatchRenderThread;
338                         thread->start_rendering(config_path,
339                                 batch_path);
340                         break;
341                 }
342
343                 case DO_GUI:
344                 {
345                         int restart = 0, done = 0;
346                         while( !done ) {
347                                 BC_WindowBase::get_resources()->vframe_shm = 0;
348                                 MWindow mwindow;
349                                 mwindow.create_objects(1, !filenames.total, config_path);
350                                 CommandLineThread *thread  = 0;
351 //SET_TRACE
352 // load the initial files on seperate tracks
353 // use a new thread so it doesn't block the GUI
354                                 if( filenames.total ) {
355                                         thread  = new CommandLineThread(&filenames, &mwindow);
356                                         thread->start();
357 //PRINT_TRACE
358                                 }
359                                 if( load_backup ) {
360                                         load_backup = 0;
361                                         mwindow.gui->lock_window("main");
362                                         mwindow.load_backup();
363                                         mwindow.gui->unlock_window();
364                                 }
365                                 if( start_remote_control ) {
366                                         start_remote_control = 0;
367                                         mwindow.gui->remote_control->activate();
368                                 }
369 // run the program
370 //PRINT_TRACE
371                                 mwindow.start();
372                                 mwindow.run();
373 //PRINT_TRACE
374                                 restart = mwindow.restart();
375                                 if( restart ) {
376                                         mwindow.save_backup();
377                                         load_backup = 1;
378                                         start_remote_control =
379                                                 mwindow.gui->remote_control->is_active();
380                                 }
381                                 if( restart <= 0 )
382                                         done = 1;
383
384                                 mwindow.save_defaults();
385 //PRINT_TRACE
386                                 filenames.remove_all_objects();
387                                 delete thread;
388                         }
389
390                         if( restart < 0 ) {
391                                 char exe_path[BCTEXTLEN];
392                                 int len = readlink("/proc/self/exe", exe_path, sizeof(exe_path)-1);
393                                 if( len < 0 ) break;
394                                 exe_path[len] = 0;
395                                 char *av[4] = { 0, };  int ac = 0;
396                                 av[ac++] = exe_path;
397                                 if( load_backup ) av[ac++] = (char*) "-x";
398                                 if( start_remote_control ) av[ac++] = (char*) "-z";
399                                 av[ac++] = 0;
400                                 execv(exe_path, av);
401                         }
402                 }
403 //SET_TRACE
404 DISABLE_BUFFER
405                 break;
406         }
407
408         filenames.remove_all_objects();
409         Units::finit();
410
411         return 0;
412 }
413