4c5f1d4bac8b1375afda0e996fe89eb3a88f3cfa
[goodguy/history.git] / cinelerra-5.1 / cinelerra / batchrender.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2011 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #include "asset.h"
23 #include "batchrender.h"
24 #include "bcdisplayinfo.h"
25 #include "bcsignals.h"
26 #include "confirmsave.h"
27 #include "cstrdup.h"
28 #include "bchash.h"
29 #include "edits.h"
30 #include "edit.h"
31 #include "edl.h"
32 #include "edlsession.h"
33 #include "errorbox.h"
34 #include "file.h"
35 #include "filesystem.h"
36 #include "filexml.h"
37 #include "keyframe.h"
38 #include "keys.h"
39 #include "labels.h"
40 #include "language.h"
41 #include "mainerror.h"
42 #include "mainundo.h"
43 #include "mainsession.h"
44 #include "mutex.h"
45 #include "mwindow.h"
46 #include "mwindowgui.h"
47 #include "packagedispatcher.h"
48 #include "packagerenderer.h"
49 #include "plugin.h"
50 #include "pluginset.h"
51 #include "preferences.h"
52 #include "render.h"
53 #include "theme.h"
54 #include "tracks.h"
55 #include "transportque.h"
56 #include "vframe.h"
57
58 // Farmed is not present if not preferences->use_renderfarm
59 int BatchRenderThread::column_widths[] = { 42, 42, 42, 222, 222, 150 };
60 const char *BatchRenderThread::column_titles[] = {
61         _("Enabled"), _("Labeled"), _("Farmed"), _("Output"), _("EDL"), _("Elapsed")
62 };
63
64 BatchRenderMenuItem::BatchRenderMenuItem(MWindow *mwindow)
65  : BC_MenuItem(_("Batch Render..."), _("Shift-B"), 'B')
66 {
67         set_shift(1);
68         this->mwindow = mwindow;
69 }
70
71 int BatchRenderMenuItem::handle_event()
72 {
73         mwindow->batch_render->start();
74         return 1;
75 }
76
77
78 BatchRenderJob::BatchRenderJob(Preferences *preferences, int labeled, int farmed)
79 {
80         this->preferences = preferences;
81         this->labeled = labeled;
82         this->farmed = farmed >= 0 ? farmed : preferences->use_renderfarm;
83         asset = new Asset;
84         edl_path[0] = 0;
85         enabled = 1;
86         elapsed = 0;
87 }
88
89 BatchRenderJob::~BatchRenderJob()
90 {
91         asset->Garbage::remove_user();
92 }
93
94 void BatchRenderJob::copy_from(BatchRenderJob *src)
95 {
96         enabled = src->enabled;
97         farmed = src->farmed;
98         labeled = src->labeled;
99         asset->copy_from(src->asset, 0);
100         strcpy(edl_path, src->edl_path);
101         elapsed = 0;
102 }
103
104 void BatchRenderJob::load(FileXML *file)
105 {
106         int result = 0;
107
108         enabled = file->tag.get_property("ENABLED", enabled);
109         farmed = file->tag.get_property("FARMED", farmed);
110         labeled = file->tag.get_property("STRATEGY", labeled);
111         edl_path[0] = 0;
112         file->tag.get_property("EDL_PATH", edl_path);
113         elapsed = file->tag.get_property("ELAPSED", elapsed);
114
115         result = file->read_tag();
116         if( !result ) {
117                 if( file->tag.title_is("ASSET") ) {
118                         file->tag.get_property("SRC", asset->path);
119                         asset->read(file, 0);
120 // The compression parameters are stored in the defaults to reduce
121 // coding maintenance.  The defaults must now be stuffed into the XML for
122 // unique storage.
123                         BC_Hash defaults;
124                         defaults.load_string(file->read_text());
125                         asset->load_defaults(&defaults,
126                                 "", 0, 1, 0, 0, 0);
127                 }
128         }
129 }
130
131 void BatchRenderJob::save(FileXML *file)
132 {
133         file->tag.set_property("ENABLED", enabled);
134         file->tag.set_property("FARMED", farmed);
135         file->tag.set_property("LABELED", labeled);
136         file->tag.set_property("EDL_PATH", edl_path);
137         file->tag.set_property("ELAPSED", elapsed);
138         file->append_tag();
139         file->append_newline();
140         asset->write(file, 0, "");
141
142 // The compression parameters are stored in the defaults to reduce
143 // coding maintenance.  The defaults must now be stuffed into the XML for
144 // unique storage.
145         BC_Hash defaults;
146         asset->save_defaults(&defaults, "", 0, 1, 0, 0, 0);
147         char *string;
148         defaults.save_string(string);
149         file->append_text(string);
150         free(string);
151         file->tag.set_title("/JOB");
152         file->append_tag();
153         file->append_newline();
154 }
155
156 int BatchRenderJob::get_strategy()
157 {
158 // if set, overrides farmed, labeled
159         int use_renderfarm = farmed && preferences->use_renderfarm ? 1 : 0;
160         return Render::get_strategy(use_renderfarm, labeled);
161 }
162
163
164 BatchRenderThread::BatchRenderThread(MWindow *mwindow)
165  : BC_DialogThread()
166 {
167         this->mwindow = mwindow;
168         current_job = 0;
169         rendering_job = -1;
170         is_rendering = 0;
171         default_job = 0;
172         boot_defaults = 0;
173         preferences = 0;
174         warn = 1;
175         render = 0;
176         batch_path[0] = 0;
177 }
178
179 BatchRenderThread::BatchRenderThread()
180  : BC_DialogThread()
181 {
182         mwindow = 0;
183         current_job = 0;
184         rendering_job = -1;
185         is_rendering = 0;
186         default_job = 0;
187         boot_defaults = 0;
188         preferences = 0;
189         warn = 1;
190         render = 0;
191         batch_path[0] = 0;
192 }
193
194 BatchRenderThread::~BatchRenderThread()
195 {
196         close_window();
197         delete boot_defaults;
198         delete preferences;
199         delete render;
200 }
201
202 void BatchRenderThread::reset(const char *path)
203 {
204         if( path ) {
205                 strcpy(batch_path, path);
206                 warn = 1;
207         }
208         current_job = 0;
209         rendering_job = -1;
210         delete default_job;  default_job = 0;
211         jobs.remove_all_objects();
212 }
213
214 void BatchRenderThread::handle_close_event(int result)
215 {
216 // Save settings
217         save_jobs(batch_path);
218         save_defaults(mwindow->defaults);
219         reset();
220 }
221
222 BC_Window* BatchRenderThread::new_gui()
223 {
224         current_start = 0.0;
225         current_end = 0.0;
226         default_job = new BatchRenderJob(mwindow->preferences);
227         load_jobs(batch_path, mwindow->preferences);
228         load_defaults(mwindow->defaults);
229         this->gui = new BatchRenderGUI(mwindow, this,
230                 mwindow->session->batchrender_x, mwindow->session->batchrender_y,
231                 mwindow->session->batchrender_w, mwindow->session->batchrender_h);
232         this->gui->create_objects();
233         return this->gui;
234 }
235
236
237 void BatchRenderThread::load_jobs(char *path, Preferences *preferences)
238 {
239         FileXML file;
240         int result = 0;
241
242         jobs.remove_all_objects();
243         if( !path ) path = batch_path;
244         if( !path[0] ) create_path(path);
245         file.read_from_file(path);
246
247         while( !result ) {
248                 if( !(result = file.read_tag()) ) {
249                         if( file.tag.title_is("JOBS") ) {
250                                 warn = file.tag.get_property("WARN", 1);
251                         }
252                         else if( file.tag.title_is("JOB") ) {
253                                 BatchRenderJob *job =  new BatchRenderJob(preferences);
254                                 jobs.append(job);
255                                 job->load(&file);
256                         }
257                 }
258         }
259 }
260
261 void BatchRenderThread::save_jobs(char *path)
262 {
263         FileXML file;
264         file.tag.set_title("JOBS");
265         file.tag.set_property("WARN", warn);
266         file.append_tag();
267         file.append_newline();
268
269         for( int i = 0; i < jobs.total; i++ ) {
270                 file.tag.set_title("JOB");
271                 jobs.values[i]->save(&file);
272         }
273         file.tag.set_title("/JOBS");
274         file.append_tag();
275         file.append_newline();
276
277         if( !path ) path = batch_path;
278         if( !path[0] ) create_path(path);
279         file.write_to_file(path);
280 }
281
282 void BatchRenderThread::load_defaults(BC_Hash *defaults)
283 {
284         if( default_job ) {
285                 default_job->asset->load_defaults(defaults,
286                         "BATCHRENDER_", 1, 1, 1, 1, 1);
287         }
288
289         for( int i = 0; i < BATCHRENDER_COLUMNS; i++ ) {
290                 char string[BCTEXTLEN];
291                 sprintf(string, "BATCHRENDER_COLUMN%d", i);
292                 list_width[i] = defaults->get(string, column_widths[i]);
293         }
294 }
295
296 void BatchRenderThread::save_defaults(BC_Hash *defaults)
297 {
298         if( default_job ) {
299                 default_job->asset->save_defaults(defaults,
300                         "BATCHRENDER_", 1, 1, 1, 1, 1);
301         }
302         for( int i=0; i<BATCHRENDER_COLUMNS; ++i ) {
303                 char string[BCTEXTLEN];
304                 sprintf(string, "BATCHRENDER_COLUMN%d", i);
305                 defaults->update(string, list_width[i]);
306         }
307 //      defaults->update("BATCHRENDER_JOB", current_job);
308         if( mwindow )
309                 mwindow->save_defaults();
310         else
311                 defaults->save();
312 }
313
314 char* BatchRenderThread::create_path(char *string)
315 {
316         FileSystem fs;
317         sprintf(string, "%s/", File::get_config_path());
318         fs.complete_path(string);
319         strcat(string, BATCH_PATH);
320         return string;
321 }
322
323 void BatchRenderThread::new_job()
324 {
325         BatchRenderJob *result = new BatchRenderJob(mwindow->preferences);
326         result->copy_from(get_current_job());
327         jobs.append(result);
328         current_job = jobs.total - 1;
329         gui->create_list(1);
330         gui->change_job();
331 }
332
333 void BatchRenderThread::delete_job()
334 {
335         if( current_job < jobs.total && current_job >= 0 ) {
336                 jobs.remove_object_number(current_job);
337                 if( current_job > 0 ) current_job--;
338                 gui->create_list(1);
339                 gui->change_job();
340         }
341 }
342
343 void BatchRenderThread::use_current_edl()
344 {
345 // printf("BatchRenderThread::use_current_edl %d %p %s\n",
346 // __LINE__,
347 // mwindow->edl->path,
348 // mwindow->edl->path);
349
350         strcpy(get_current_edl(), mwindow->edl->path);
351         gui->create_list(1);
352         gui->edl_path_text->update(get_current_edl());
353 }
354
355 void BatchRenderThread::update_selected_edl()
356 {
357         FileXML xml_file;
358         char *path = get_current_edl();
359         EDL *edl = mwindow->edl;
360         edl->save_xml(&xml_file, path);
361         xml_file.terminate_string();
362         if( xml_file.write_to_file(path) ) {
363                 char msg[BCTEXTLEN];
364                 sprintf(msg, _("Unable to save: %s"), path);
365                 MainError::show_error(msg);
366         }
367 }
368
369 BatchRenderJob* BatchRenderThread::get_current_job()
370 {
371         return current_job >= 0 && current_job < jobs.total ?
372                 jobs.values[current_job] : default_job;
373 }
374
375
376 Asset* BatchRenderThread::get_current_asset()
377 {
378         return get_current_job()->asset;
379 }
380
381 char* BatchRenderThread::get_current_edl()
382 {
383         return get_current_job()->edl_path;
384 }
385
386
387 // Test EDL files for existence
388 int BatchRenderThread::test_edl_files()
389 {
390         int not_equiv = 0, ret = 0;
391         const char *path = 0;
392
393         for( int i=0; !ret && i<jobs.size(); ++i ) {
394                 if( !jobs.values[i]->enabled ) continue;
395                 const char *path = jobs.values[i]->edl_path;
396                 int is_script = *path == '@' ? 1 : 0;
397                 if( is_script ) ++path;
398                 FILE *fp = fopen(path, "r");
399                 if( fp ) {
400                         if( warn && mwindow && !is_script ) {
401                                 fseek(fp, 0, SEEK_END);
402                                 int64_t sz = ftell(fp);
403                                 fseek(fp, 0, SEEK_SET);
404                                 char *bfr = new char[sz+1];
405                                 int64_t len = fread(bfr, 1, sz+1, fp);
406                                 if( len == sz ) {
407                                         FileXML file;  file.set_shared_input(bfr, len);
408                                         EDL *edl = new EDL; edl->create_objects();
409                                         edl->load_xml(&file, LOAD_ALL);
410                                         double pos = edl->equivalent_output(mwindow->edl);
411                                         if( pos >= 0 ) ++not_equiv;
412                                         edl->remove_user();
413                                 }
414                                 else
415                                         ret = 1;
416                                 delete [] bfr;
417                         }
418                         fclose(fp);
419                 }
420                 else
421                         ret = 1;
422         }
423
424         if( ret ) {
425                 char string[BCTEXTLEN];
426                 sprintf(string, _("EDL %s not found.\n"), path);
427                 if( mwindow ) {
428                         ErrorBox error_box(_(PROGRAM_NAME ": Error"),
429                                 mwindow->gui->get_abs_cursor_x(1),
430                                 mwindow->gui->get_abs_cursor_y(1));
431                         error_box.create_objects(string);
432                         error_box.run_window();
433                         gui->button_enable();
434                 }
435                 else {
436                         fprintf(stderr, "%s", string);
437                 }
438                 is_rendering = 0;
439         }
440         else if( warn && mwindow && not_equiv > 0 ) {
441                 fprintf(stderr, _("%d job EDLs do not match session edl\n"), not_equiv);
442                 char string[BCTEXTLEN], *sp = string;
443                 sp += sprintf(sp, _("%d job EDLs do not match session edl\n"),not_equiv);
444                 sp += sprintf(sp, _("press cancel to abandon batch render"));
445                 mwindow->show_warning(&warn, string);
446                 if( mwindow->wait_warning() ) {
447                         gui->button_enable();
448                         is_rendering = 0;
449                         ret = 1;
450                 }
451                 gui->warning->update(warn);
452         }
453
454         return ret;
455 }
456
457 void BatchRenderThread::calculate_dest_paths(ArrayList<char*> *paths,
458         Preferences *preferences)
459 {
460         for( int i = 0; i < jobs.total; i++ ) {
461                 BatchRenderJob *job = jobs.values[i];
462                 if( job->enabled && *job->edl_path != '@' ) {
463                         PackageDispatcher *packages = new PackageDispatcher;
464
465 // Load EDL
466                         TransportCommand *command = new TransportCommand;
467                         FileXML *file = new FileXML;
468                         file->read_from_file(job->edl_path);
469
470 // Use command to calculate range.
471                         command->command = NORMAL_FWD;
472                         command->get_edl()->load_xml(file,
473                                 LOAD_ALL);
474                         command->change_type = CHANGE_ALL;
475                         command->set_playback_range();
476                         command->playback_range_adjust_inout();
477
478 // Create test packages
479                         packages->create_packages(mwindow,
480                                 command->get_edl(),
481                                 preferences,
482                                 job->get_strategy(),
483                                 job->asset,
484                                 command->start_position,
485                                 command->end_position,
486                                 0);
487
488 // Append output paths allocated to total
489                         packages->get_package_paths(paths);
490
491 // Delete package harness
492                         delete packages;
493                         delete command;
494                         delete file;
495                 }
496         }
497 }
498
499
500 void BatchRenderThread::start_rendering(char *config_path,
501         char *batch_path)
502 {
503         BC_Hash *boot_defaults;
504         Preferences *preferences;
505         Render *render;
506         BC_Signals *signals = new BC_Signals;
507         // XXX the above stuff is leaked,
508 //PRINT_TRACE
509 // Initialize stuff which MWindow does.
510         signals->initialize("/tmp/cinelerra_batch%d.dmp");
511         MWindow::init_defaults(boot_defaults, config_path);
512         load_defaults(boot_defaults);
513         preferences = new Preferences;
514         preferences->load_defaults(boot_defaults);
515         BC_Signals::set_trap_hook(trap_hook, this);
516         BC_Signals::set_catch_segv(preferences->trap_sigsegv);
517         BC_Signals::set_catch_intr(0);
518         if( preferences->trap_sigsegv ) {
519                 BC_Trace::enable_locks();
520         }
521         else {
522                 BC_Trace::disable_locks();
523         }
524
525         MWindow::init_plugins(0, preferences);
526         char font_path[BCTEXTLEN];
527         strcpy(font_path, preferences->plugin_dir);
528         strcat(font_path, "/" FONT_SEARCHPATH);
529         BC_Resources::init_fontconfig(font_path);
530         BC_WindowBase::get_resources()->vframe_shm = 1;
531
532 //PRINT_TRACE
533         strcpy(this->batch_path, batch_path);
534         load_jobs(batch_path, preferences);
535         save_jobs(batch_path);
536         save_defaults(boot_defaults);
537
538 //PRINT_TRACE
539 // Test EDL files for existence
540         if( test_edl_files() ) return;
541
542 //PRINT_TRACE
543
544 // Predict all destination paths
545         ArrayList<char*> paths;
546         paths.set_array_delete();
547         calculate_dest_paths(&paths, preferences);
548
549 //PRINT_TRACE
550         int result = ConfirmSave::test_files(0, &paths);
551         paths.remove_all_objects();
552 // Abort on any existing file because it's so hard to set this up.
553         if( result ) return;
554
555 //PRINT_TRACE
556         render = new Render(0);
557 //PRINT_TRACE
558         render->start_batches(&jobs, boot_defaults, preferences);
559 //PRINT_TRACE
560 }
561
562 void BatchRenderThread::start_rendering()
563 {
564         if( is_rendering ) return;
565         is_rendering = 1;
566
567         save_jobs(batch_path);
568         save_defaults(mwindow->defaults);
569         gui->button_disable();
570
571 // Test EDL files for existence
572         if( test_edl_files() ) return;
573
574 // Predict all destination paths
575         ArrayList<char*> paths;
576         calculate_dest_paths(&paths,
577                 mwindow->preferences);
578
579 // Test destination files for overwrite
580         int result = ConfirmSave::test_files(mwindow, &paths);
581         paths.remove_all_objects();
582
583 // User cancelled
584         if( result ) {
585                 is_rendering = 0;
586                 gui->button_enable();
587                 return;
588         }
589
590         mwindow->render->start_batches(&jobs);
591 }
592
593 void BatchRenderThread::stop_rendering()
594 {
595         if( !is_rendering ) return;
596         mwindow->render->stop_operation();
597         is_rendering = 0;
598 }
599
600 void BatchRenderThread::update_active(int number)
601 {
602         gui->lock_window("BatchRenderThread::update_active");
603         if( number >= 0 ) {
604                 current_job = number;
605                 rendering_job = number;
606         }
607         else {
608                 rendering_job = -1;
609                 is_rendering = 0;
610         }
611         gui->create_list(1);
612         gui->unlock_window();
613 }
614
615 void BatchRenderThread::update_done(int number,
616         int create_list,
617         double elapsed_time)
618 {
619         gui->lock_window("BatchRenderThread::update_done");
620         if( number < 0 ) {
621                 gui->button_enable();
622         }
623         else {
624                 jobs.values[number]->enabled = 0;
625                 jobs.values[number]->elapsed = elapsed_time;
626                 if( create_list ) gui->create_list(1);
627         }
628         gui->unlock_window();
629 }
630
631 void BatchRenderThread::move_batch(int src, int dst)
632 {
633         BatchRenderJob *src_job = jobs.values[src];
634         if( dst < 0 ) dst = jobs.total - 1;
635
636         if( dst != src ) {
637                 for( int i = src; i < jobs.total - 1; i++ )
638                         jobs.values[i] = jobs.values[i + 1];
639 //              if( dst > src ) dst--;
640                 for( int i = jobs.total - 1; i > dst; i-- )
641                         jobs.values[i] = jobs.values[i - 1];
642                 jobs.values[dst] = src_job;
643                 gui->create_list(1);
644         }
645 }
646
647 void BatchRenderThread::trap_hook(FILE *fp, void *vp)
648 {
649         MWindow *mwindow = ((BatchRenderThread *)vp)->mwindow;
650         fprintf(fp, "\nEDL:\n");
651         mwindow->dump_edl(fp);
652         fprintf(fp, "\nUNDO:\n");
653         mwindow->dump_undo(fp);
654         fprintf(fp, "\nEXE:\n");
655         mwindow->dump_exe(fp);
656 }
657
658
659
660
661
662 BatchRenderGUI::BatchRenderGUI(MWindow *mwindow,
663         BatchRenderThread *thread, int x, int y, int w, int h)
664  : BC_Window(_(PROGRAM_NAME ": Batch Render"),
665         x, y, w, h, 730, 400, 1, 0, 1)
666 {
667         this->mwindow = mwindow;
668         this->thread = thread;
669         use_renderfarm = 0;
670 }
671
672 BatchRenderGUI::~BatchRenderGUI()
673 {
674         lock_window("BatchRenderGUI::~BatchRenderGUI");
675         loadlist_batch->stop();
676         savelist_batch->stop();
677         delete format_tools;
678         unlock_window();
679 }
680
681
682 void BatchRenderGUI::create_objects()
683 {
684         lock_window("BatchRenderGUI::create_objects");
685         mwindow->theme->get_batchrender_sizes(this, get_w(), get_h());
686         create_list(0);
687
688         int x = mwindow->theme->batchrender_x1;
689         int y = 5;
690         int x1 = x, x2 = get_w()/2 + 10; // mwindow->theme->batchrender_x2;
691         int y1 = 5, y2 = 5;
692
693 // output file
694         add_subwindow(output_path_title = new BC_Title(x1, y1, _("Output path:")));
695         y1 += output_path_title->get_h() + mwindow->theme->widget_border;
696
697         format_tools = new BatchFormat(mwindow, this, thread->get_current_asset());
698         format_tools->set_w(get_w() / 2);
699         BatchRenderJob *current_job = thread->get_current_job();
700         format_tools->create_objects(x1, y1, 1, 1, 1, 1, 0, 1, 0, 0,
701                         &current_job->labeled, 0);
702         if( mwindow->preferences->use_renderfarm ) {
703                 use_renderfarm = new BatchRenderUseFarm(thread, x1, y1,
704                         &current_job->farmed);
705                 add_subwindow(use_renderfarm);
706                 y1 += use_renderfarm->get_h() + 10;
707         }
708 // input EDL
709         add_subwindow(edl_path_title = new BC_Title(x2, y2, _("EDL Path:")));
710         y2 += edl_path_title->get_h() + mwindow->theme->widget_border;
711
712         x = x2;  y = y2;
713         add_subwindow(edl_path_text = new BatchRenderEDLPath( thread,
714                 x, y, get_w()-x - 40, thread->get_current_edl()));
715         x =  x2 + edl_path_text->get_w();
716         add_subwindow(edl_path_browse = new BrowseButton(
717                 mwindow->theme, this, edl_path_text, x, y, thread->get_current_edl(),
718                 _("Input EDL"), _("Select an EDL to load:"), 0));
719         y2 = y + edl_path_browse->get_h() + mwindow->theme->widget_border;
720
721         x = x2;  y = y2;
722         add_subwindow(update_selected_edl = new BatchRenderUpdateEDL(thread, x, y));
723         y += update_selected_edl->get_h() + mwindow->theme->widget_border;
724         add_subwindow(use_current_edl = new BatchRenderCurrentEDL(thread, x, y));
725         y += use_current_edl->get_h() + mwindow->theme->widget_border;
726         if( !mwindow->edl || !mwindow->edl->path[0] ) use_current_edl->disable();
727         add_subwindow(new_batch = new BatchRenderNew(thread, x, y));
728         x += new_batch->get_w() + mwindow->theme->widget_border;
729         add_subwindow(delete_batch = new BatchRenderDelete(thread, x, y));
730         x = x2;  y += delete_batch->get_h() + mwindow->theme->widget_border;
731         add_subwindow(savelist_batch = new BatchRenderSaveList(thread, x, y));
732         x += savelist_batch->get_w() + mwindow->theme->widget_border;
733         add_subwindow(loadlist_batch = new BatchRenderLoadList(thread, x, y));
734         y += loadlist_batch->get_h() + mwindow->theme->widget_border;
735         add_subwindow(warning = new BatchRenderWarning(thread, x2, y));
736         y2 = y + warning->get_h() + mwindow->theme->widget_border;
737         if( y2 > y1 ) y1 = y2;
738         x = mwindow->theme->batchrender_x1, y = y1;
739
740         add_subwindow(list_title = new BC_Title(x, y, _("Batches to render:")));
741         x1 = x + list_title->get_w() + mwindow->theme->widget_border;;
742         add_subwindow(batch_path = new BC_Title(x1, y, thread->batch_path, MEDIUMFONT));
743         y += list_title->get_h() + mwindow->theme->widget_border;
744         y1 = get_h();
745         y1 -= 15 + BC_GenericButton::calculate_h() + mwindow->theme->widget_border;
746         add_subwindow(batch_list = new BatchRenderList(thread, x, y,
747                 get_w() - x - 10, y1 - y));
748         y += batch_list->get_h() + mwindow->theme->widget_border;
749
750         add_subwindow(start_button = new BatchRenderStart(thread, x, y));
751         x = get_w() / 2 - BC_GenericButton::calculate_w(this, _("Stop")) / 2;
752         add_subwindow(stop_button = new BatchRenderStop(thread, x, y));
753         x = get_w() - BC_GenericButton::calculate_w(this, _("Close")) - 10;
754         add_subwindow(cancel_button = new BatchRenderCancel(thread, x, y));
755
756         show_window(1);
757         unlock_window();
758 }
759
760 void BatchRenderGUI::button_disable()
761 {
762         new_batch->disable();
763         delete_batch->disable();
764         use_current_edl->disable();
765         update_selected_edl->disable();
766 }
767
768 void BatchRenderGUI::button_enable()
769 {
770         new_batch->enable();
771         delete_batch->enable();
772         if( mwindow->edl && mwindow->edl->path[0] )
773                 use_current_edl->enable();
774         update_selected_edl->enable();
775 }
776
777 int BatchRenderGUI::resize_event(int w, int h)
778 {
779         mwindow->session->batchrender_w = w;
780         mwindow->session->batchrender_h = h;
781         mwindow->theme->get_batchrender_sizes(this, w, h);
782
783         int x = mwindow->theme->batchrender_x1;
784         int y = 5;
785         int x1 = x, x2 = get_w()/2 + 10; // mwindow->theme->batchrender_x2;
786         int y1 = 5, y2 = 5;
787
788 // output file
789         output_path_title->reposition_window(x1, y1);
790         y1 += output_path_title->get_h() + mwindow->theme->widget_border;
791         format_tools->reposition_window(x1, y1);
792         if( use_renderfarm )
793                 use_renderfarm->reposition_window(x1, y1);
794 // input EDL
795         x = x2, y = y2;
796         edl_path_title->reposition_window(x, y);
797         y += edl_path_title->get_h() + mwindow->theme->widget_border;
798         edl_path_text->reposition_window(x, y, w - x - 40);
799         x += edl_path_text->get_w();
800         edl_path_browse->reposition_window(x, y);
801         y2 = y + edl_path_browse->get_h() + mwindow->theme->widget_border;
802
803         x = x2;  y = y2;
804         update_selected_edl->reposition_window(x, y);
805         y += update_selected_edl->get_h() + mwindow->theme->widget_border;
806         use_current_edl->reposition_window(x, y);
807         y += use_current_edl->get_h() + mwindow->theme->widget_border;
808         new_batch->reposition_window(x, y);
809         x += new_batch->get_w() + mwindow->theme->widget_border;
810         delete_batch->reposition_window(x, y);
811
812         x = x2;  y += delete_batch->get_h() + mwindow->theme->widget_border;
813         savelist_batch->reposition_window(x, y);
814         x += savelist_batch->get_w() + mwindow->theme->widget_border;
815         loadlist_batch->reposition_window(x, y);
816         y += loadlist_batch->get_h() + mwindow->theme->widget_border;
817         warning->reposition_window(x2, y);
818
819         y1 = 15 + BC_GenericButton::calculate_h() + mwindow->theme->widget_border;
820         y2 = get_h() - y1 - batch_list->get_h();
821         y2 -= list_title->get_h() + mwindow->theme->widget_border;
822
823         x = mwindow->theme->batchrender_x1;  y = y2;
824         list_title->reposition_window(x, y);
825         y += list_title->get_h() + mwindow->theme->widget_border;
826         batch_list->reposition_window(x, y, w - x - 10, h - y - y1);
827         y += batch_list->get_h() + mwindow->theme->widget_border;
828
829         start_button->reposition_window(x, y);
830         x = w / 2 - stop_button->get_w() / 2;
831         stop_button->reposition_window(x, y);
832         x = w - cancel_button->get_w() - 10;
833         cancel_button->reposition_window(x, y);
834         return 1;
835 }
836
837 int BatchRenderGUI::translation_event()
838 {
839         mwindow->session->batchrender_x = get_x();
840         mwindow->session->batchrender_y = get_y();
841         return 1;
842 }
843
844 int BatchRenderGUI::close_event()
845 {
846 // Stop batch rendering
847         unlock_window();
848         thread->stop_rendering();
849         lock_window("BatchRenderGUI::close_event");
850         set_done(1);
851         return 1;
852 }
853
854 void BatchRenderGUI::create_list(int update_widget)
855 {
856         for( int i = 0; i < BATCHRENDER_COLUMNS; i++ ) {
857                 list_items[i].remove_all_objects();
858         }
859
860         const char **column_titles = BatchRenderThread::column_titles;
861         list_columns = 0;
862         list_titles[list_columns] = column_titles[ENABLED_COL];
863         list_width[list_columns++] = thread->list_width[ENABLED_COL];
864         list_titles[list_columns] = column_titles[LABELED_COL];
865         list_width[list_columns++] = thread->list_width[LABELED_COL];
866         if( mwindow->preferences->use_renderfarm ) {
867                 list_titles[list_columns] = column_titles[FARMED_COL];
868                 list_width[list_columns++] = thread->list_width[FARMED_COL];
869         }
870         list_titles[list_columns] = column_titles[OUTPUT_COL];
871         list_width[list_columns++] = thread->list_width[OUTPUT_COL];
872         list_titles[list_columns] = column_titles[EDL_COL];
873         list_width[list_columns++] = thread->list_width[EDL_COL];
874         list_titles[list_columns] = column_titles[ELAPSED_COL];
875         list_width[list_columns++] = thread->list_width[ELAPSED_COL];
876
877         for( int i = 0; i < thread->jobs.total; i++ ) {
878                 BatchRenderJob *job = thread->jobs.values[i];
879                 char string[BCTEXTLEN];
880                 BC_ListBoxItem *enabled = new BC_ListBoxItem(job->enabled ? "X" : " ");
881                 BC_ListBoxItem *labeled = new BC_ListBoxItem(job->labeled ? "X" : " ");
882                 BC_ListBoxItem *farmed  = !mwindow->preferences->use_renderfarm ? 0 :
883                         new BC_ListBoxItem(job->farmed  ? "X" : " ");
884                 BC_ListBoxItem *out_path = new BC_ListBoxItem(job->asset->path);
885                 BC_ListBoxItem *edl_path = new BC_ListBoxItem(job->edl_path);
886                 BC_ListBoxItem *elapsed = new BC_ListBoxItem(!job->elapsed ? _("Unknown") :
887                         Units::totext(string, job->elapsed, TIME_HMS2));
888                 int col = 0;
889                 list_items[col++].append(enabled);
890                 list_items[col++].append(labeled);
891                 if( farmed ) list_items[col++].append(farmed);
892                 list_items[col++].append(out_path);
893                 list_items[col++].append(edl_path);
894                 list_items[col].append(elapsed);
895                 if( i == thread->current_job ) {
896                         enabled->set_selected(1);
897                         labeled->set_selected(1);
898                         if( farmed ) farmed->set_selected(1);
899                         out_path->set_selected(1);
900                         edl_path->set_selected(1);
901                         elapsed->set_selected(1);
902                 }
903                 if( i == thread->rendering_job ) {
904                         enabled->set_color(RED);
905                         labeled->set_color(RED);
906                         if( farmed ) farmed->set_color(RED);
907                         out_path->set_color(RED);
908                         edl_path->set_color(RED);
909                         elapsed->set_color(RED);
910                 }
911         }
912
913         if( update_widget ) {
914                 batch_list->update(list_items, list_titles, list_width, list_columns,
915                         batch_list->get_xposition(), batch_list->get_yposition(),
916                         batch_list->get_highlighted_item(), 1, 1);
917         }
918 }
919
920 void BatchRenderGUI::change_job()
921 {
922         BatchRenderJob *job = thread->get_current_job();
923         format_tools->update(job->asset, &job->labeled);
924         if( use_renderfarm ) use_renderfarm->update(&job->farmed);
925         edl_path_text->update(job->edl_path);
926 }
927
928
929 BatchFormat::BatchFormat(MWindow *mwindow, BatchRenderGUI *gui, Asset *asset)
930  : FormatTools(mwindow, gui, asset)
931 {
932         this->gui = gui;
933         this->mwindow = mwindow;
934 }
935
936 BatchFormat::~BatchFormat()
937 {
938 }
939
940
941 int BatchFormat::handle_event()
942 {
943         gui->create_list(1);
944         return 1;
945 }
946
947 BatchRenderEDLPath::BatchRenderEDLPath(BatchRenderThread *thread,
948         int x, int y, int w, char *text)
949  : BC_TextBox(x, y, w, 1, text)
950 {
951         this->thread = thread;
952 }
953
954
955 int BatchRenderEDLPath::handle_event()
956 {
957         calculate_suggestions();
958         strcpy(thread->get_current_edl(), get_text());
959         thread->gui->create_list(1);
960         return 1;
961 }
962
963 BatchRenderNew::BatchRenderNew(BatchRenderThread *thread,
964         int x,
965         int y)
966  : BC_GenericButton(x, y, _("New"))
967 {
968         this->thread = thread;
969 }
970
971 int BatchRenderNew::handle_event()
972 {
973         thread->new_job();
974         return 1;
975 }
976
977 BatchRenderDelete::BatchRenderDelete(BatchRenderThread *thread, int x, int y)
978  : BC_GenericButton(x, y, _("Delete"))
979 {
980         this->thread = thread;
981 }
982
983 int BatchRenderDelete::handle_event()
984 {
985         thread->delete_job();
986         return 1;
987 }
988
989
990
991 BatchRenderSaveList::BatchRenderSaveList(BatchRenderThread *thread, int x, int y)
992  : BC_GenericButton(x, y, _("Save Jobs"))
993 {
994         this->thread = thread;
995         set_tooltip(_("Save a Batch Render List"));
996         gui = 0;
997         startup_lock = new Mutex("BatchRenderSaveList::startup_lock");
998 }
999
1000 BatchRenderSaveList::~BatchRenderSaveList()
1001 {
1002         stop();
1003         delete startup_lock;
1004 }
1005
1006 void BatchRenderSaveList::stop()
1007 {
1008         startup_lock->lock("BatchRenderSaveList::~BrowseButton");
1009         if( gui ) gui->set_done(1);
1010         startup_lock->unlock();
1011         Thread::join();
1012 }
1013
1014 int BatchRenderSaveList::handle_event()
1015 {
1016         if( Thread::running() ) {
1017                 if( gui ) {
1018                         gui->lock_window();
1019                         gui->raise_window();
1020                         gui->unlock_window();
1021                 }
1022                 return 1;
1023         }
1024         startup_lock->lock("BatchRenderSaveList::handle_event 1");
1025         Thread::start();
1026         startup_lock->lock("BatchRenderSaveList::handle_event 2");
1027         startup_lock->unlock();
1028         return 1;
1029 }
1030
1031 void BatchRenderSaveList::run()
1032 {
1033         char default_path[BCTEXTLEN];
1034         sprintf(default_path, "~");
1035         thread->mwindow->defaults->get("DEFAULT_BATCHLOADPATH", default_path);
1036         BC_FileBox filewindow(100, 100, default_path, _("Save Batch Render List"),
1037                         _("Enter a Batch Render filename to save as:"),
1038                         0, 0, 0, 0);
1039         gui = &filewindow;
1040
1041         startup_lock->unlock();
1042         filewindow.create_objects();
1043
1044         int result2 = filewindow.run_window();
1045         if( !result2 ) {
1046                 strcpy(thread->batch_path, filewindow.get_submitted_path());
1047                 thread->gui->batch_path->update(thread->batch_path);
1048                 thread->mwindow->defaults->update("DEFAULT_BATCHLOADPATH", thread->batch_path);
1049                 thread->save_jobs(thread->batch_path);
1050         }
1051
1052         startup_lock->lock("BatchRenderLoadList::run");
1053         gui = 0;
1054         startup_lock->unlock();
1055 }
1056
1057 int BatchRenderSaveList::keypress_event() {
1058         if( get_keypress() == 's' ||
1059             get_keypress() == 'S' ) return handle_event();
1060         return 0;
1061 }
1062
1063
1064 BatchRenderLoadList::BatchRenderLoadList(BatchRenderThread *thread,
1065         int x,
1066         int y)
1067   : BC_GenericButton(x, y, _("Load Jobs")),
1068     Thread()
1069 {
1070         this->thread = thread;
1071         set_tooltip(_("Load a previously saved Batch Render List"));
1072         gui = 0;
1073         startup_lock = new Mutex("BatchRenderLoadList::startup_lock");
1074 }
1075
1076 BatchRenderLoadList::~BatchRenderLoadList()
1077 {
1078         stop();
1079         delete startup_lock;
1080 }
1081
1082 void BatchRenderLoadList::stop()
1083 {
1084         startup_lock->lock("BatchRenderLoadList::~BrowseButton");
1085         if( gui ) gui->set_done(1);
1086         startup_lock->unlock();
1087         Thread::join();
1088 }
1089
1090 int BatchRenderLoadList::handle_event()
1091 {
1092         if( Thread::running() ) {
1093                 if( gui ) {
1094                         gui->lock_window();
1095                         gui->raise_window();
1096                         gui->unlock_window();
1097                 }
1098                 return 1;
1099         }
1100         startup_lock->lock("BatchRenderLoadList::handle_event 1");
1101         Thread::start();
1102         startup_lock->lock("BatchRenderLoadList::handle_event 2");
1103         startup_lock->unlock();
1104         return 1;
1105 }
1106
1107 void BatchRenderLoadList::run()
1108 {
1109         char default_path[BCTEXTLEN];
1110         sprintf(default_path, "~");
1111         thread->mwindow->defaults->get("DEFAULT_BATCHLOADPATH", default_path);
1112         BC_FileBox filewindow(100, 100, default_path, _("Load Batch Render List"),
1113                         _("Enter a Batch Render filename to load from:"),
1114                         0, 0, 0, 0);
1115         gui = &filewindow;
1116
1117         startup_lock->unlock();
1118         filewindow.create_objects();
1119
1120         int result2 = filewindow.run_window();
1121         if( !result2 ) {
1122                 strcpy(thread->batch_path, filewindow.get_submitted_path());
1123                 thread->gui->batch_path->update(thread->batch_path);
1124                 thread->mwindow->defaults->update("DEFAULT_BATCHLOADPATH", thread->batch_path);
1125                 thread->load_jobs(thread->batch_path, thread->mwindow->preferences);
1126                 thread->gui->create_list(1);
1127                 thread->current_job = 0;
1128                 thread->gui->change_job();
1129         }
1130
1131         startup_lock->lock("BatchRenderLoadList::run");
1132         gui = 0;
1133         startup_lock->unlock();
1134 }
1135
1136 int BatchRenderLoadList::keypress_event() {
1137         if( get_keypress() == 'o' ||
1138             get_keypress() == 'O' ) return handle_event();
1139         return 0;
1140 }
1141
1142 BatchRenderCurrentEDL::BatchRenderCurrentEDL(BatchRenderThread *thread,
1143         int x,
1144         int y)
1145  : BC_GenericButton(x, y, _("Use Current EDL"))
1146 {
1147         this->thread = thread;
1148 }
1149
1150 int BatchRenderCurrentEDL::handle_event()
1151 {
1152         thread->use_current_edl();
1153         return 1;
1154 }
1155
1156 BatchRenderUpdateEDL::BatchRenderUpdateEDL(BatchRenderThread *thread,
1157         int x,
1158         int y)
1159  : BC_GenericButton(x, y, _("Save to EDL Path"))
1160 {
1161         this->thread = thread;
1162 }
1163
1164 int BatchRenderUpdateEDL::handle_event()
1165 {
1166         thread->update_selected_edl();
1167         return 1;
1168 }
1169
1170
1171 BatchRenderList::BatchRenderList(BatchRenderThread *thread,
1172         int x, int y, int w, int h)
1173  : BC_ListBox(x, y, w, h, LISTBOX_TEXT, thread->gui->list_items,
1174         thread->gui->list_titles, thread->gui->list_width, thread->gui->list_columns,
1175         0, 0, LISTBOX_SINGLE, ICON_LEFT, 1)
1176 {
1177         this->thread = thread;
1178         dragging_item = 0;
1179         set_process_drag(0);
1180 }
1181
1182 int BatchRenderList::handle_event()
1183 {
1184         return 1;
1185 }
1186
1187 int BatchRenderList::selection_changed()
1188 {
1189         thread->current_job = get_selection_number(0, 0);
1190         thread->gui->change_job();
1191         int cursor_x = get_cursor_x();
1192         BatchRenderJob *job = thread->get_current_job();
1193         int col_x = 0, changed = 1;
1194         if( cursor_x < (col_x += thread->list_width[ENABLED_COL]) )
1195                 job->enabled = !job->enabled;
1196         else if( cursor_x < (col_x += thread->list_width[LABELED_COL]) )
1197                 job->labeled = job->edl_path[0] != '@' ? !job->labeled : 0;
1198         else if( thread->gui->use_renderfarm &&
1199                  cursor_x < (col_x += thread->list_width[FARMED_COL]) )
1200                 job->farmed = job->edl_path[0] != '@' ? !job->farmed : 0;
1201         else
1202                 changed = 0;
1203         if( changed ) {
1204                 thread->gui->create_list(1);
1205                 thread->gui->change_job();
1206         }
1207         return 1;
1208 }
1209
1210 int BatchRenderList::column_resize_event()
1211 {
1212         for( int i = 0; i < BATCHRENDER_COLUMNS; i++ ) {
1213                 thread->list_width[i] = get_column_width(i);
1214         }
1215         return 1;
1216 }
1217
1218 int BatchRenderList::drag_start_event()
1219 {
1220         if( BC_ListBox::drag_start_event() ) {
1221                 dragging_item = 1;
1222                 return 1;
1223         }
1224
1225         return 0;
1226 }
1227
1228 int BatchRenderList::drag_motion_event()
1229 {
1230         if( BC_ListBox::drag_motion_event() ) {
1231                 return 1;
1232         }
1233         return 0;
1234 }
1235
1236 int BatchRenderList::drag_stop_event()
1237 {
1238         if( dragging_item ) {
1239                 int src = get_selection_number(0, 0);
1240                 int dst = get_highlighted_item();
1241                 if( src != dst ) {
1242                         thread->move_batch(src, dst);
1243                 }
1244                 BC_ListBox::drag_stop_event();
1245         }
1246         return 0;
1247 }
1248
1249
1250
1251 BatchRenderStart::BatchRenderStart(BatchRenderThread *thread, int x, int y)
1252  : BC_GenericButton(x, y, _("Start"))
1253 {
1254         this->thread = thread;
1255 }
1256
1257 int BatchRenderStart::handle_event()
1258 {
1259         thread->start_rendering();
1260         return 1;
1261 }
1262
1263 BatchRenderStop::BatchRenderStop(BatchRenderThread *thread, int x, int y)
1264  : BC_GenericButton(x, y, _("Stop"))
1265 {
1266         this->thread = thread;
1267 }
1268
1269 int BatchRenderStop::handle_event()
1270 {
1271         unlock_window();
1272         thread->stop_rendering();
1273         lock_window("BatchRenderStop::handle_event");
1274         return 1;
1275 }
1276
1277
1278 BatchRenderWarning::BatchRenderWarning(BatchRenderThread *thread, int x, int y)
1279  : BC_CheckBox(x, y, thread->warn, _("warn if jobs/session mismatched"))
1280 {
1281         this->thread = thread;
1282 }
1283
1284 int BatchRenderWarning::handle_event()
1285 {
1286         thread->warn = get_value();
1287         return 1;
1288 }
1289
1290 BatchRenderCancel::BatchRenderCancel(BatchRenderThread *thread, int x, int y)
1291  : BC_GenericButton(x, y, _("Close"))
1292 {
1293         this->thread = thread;
1294 }
1295
1296 int BatchRenderCancel::handle_event()
1297 {
1298         unlock_window();
1299         thread->stop_rendering();
1300         lock_window("BatchRenderCancel::handle_event");
1301         thread->gui->set_done(1);
1302         return 1;
1303 }
1304
1305 int BatchRenderCancel::keypress_event()
1306 {
1307         if( get_keypress() == ESC ) {
1308                 unlock_window();
1309                 thread->stop_rendering();
1310                 lock_window("BatchRenderCancel::keypress_event");
1311                 thread->gui->set_done(1);
1312                 return 1;
1313         }
1314         return 0;
1315 }
1316
1317 BatchRenderUseFarm::BatchRenderUseFarm(BatchRenderThread *thread, int x, int y, int *output)
1318  : BC_CheckBox(x, y, *output, _("Use render farm"))
1319 {
1320         this->thread = thread;
1321         this->output = output;
1322 }
1323
1324 int BatchRenderUseFarm::handle_event()
1325 {
1326         *output = get_value();
1327         thread->gui->create_list(1);
1328         return 1;
1329 }
1330
1331 void BatchRenderUseFarm::update(int *output)
1332 {
1333         this->output = output;
1334         BC_CheckBox::update(*output);
1335 }
1336