4 * Copyright (C) 1997-2014 Adam Williams <broadcast at earthling dot net>
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.
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.
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
24 #include "automation.h"
26 #include "bcsignals.h"
30 #include "condition.h"
33 #include "edlsession.h"
36 #include "filesystem.h"
38 #include "floatauto.h"
39 #include "floatautos.h"
40 #include "indexable.h"
41 #include "indexfile.h"
42 #include "indexstate.h"
43 #include "indexthread.h"
45 #include "localsession.h"
46 #include "mainprogress.h"
47 #include "mwindowgui.h"
49 #include "preferences.h"
50 #include "removefile.h"
51 #include "renderengine.h"
52 #include "resourcepixmap.h"
55 #include "timelinepane.h"
56 #include "trackcanvas.h"
58 #include "transportque.h"
71 #include <sys/types.h>
73 #include <linux/iso_fs.h>
75 // check for isofs volume_id for dvd/cdrom
77 static int udf_volume_id(const char *path, char *fname)
80 if( stat(path,&st) ) return 1;
81 // search mounted devices
82 FILE *fp = fopen("/proc/mounts","r");
86 while( result && !feof(fp) && !ferror(fp) ) {
87 char devpath[BCTEXTLEN], mpath[BCTEXTLEN];
88 char options[BCTEXTLEN], line[BCTEXTLEN];
89 char fstype[64], zero1[16], zero2[16];
90 if( !fgets(&line[0], sizeof(line)-1, fp) ) break;
91 int n = sscanf(&line[0], "%s %s %s %s %s %s\n",
92 devpath, mpath, fstype, options, zero1, zero2);
93 if( n != 6 ) continue;
94 // check udf filesystems
95 if( strcmp(fstype,"udf") != 0 ) continue;
97 if( stat(devpath,&dst) ) continue;
98 if( st.st_dev != dst.st_rdev ) continue;
99 int fd = open(devpath,O_RDONLY);
100 if( fd < 0 ) continue;
101 struct iso_primary_descriptor id;
102 if( lseek(fd,0x8000,SEEK_SET) == 0x8000 )
103 n = read(fd,&id,sizeof(id));
105 if( n != sizeof(id) ) continue;
106 // look for magic number
107 if( strncmp(ISO_STANDARD_ID,id.id,sizeof(id.id)) ) continue;
108 // look for volume_id
109 if( !isalnum(id.volume_id[0]) ) continue;
110 char *bp = (char*)&id.volume_id[0], *cp = fname;
111 for( int i=0; i<(int)sizeof(id.volume_id); ++i ) *cp++ = *bp++;
112 while( --cp>=fname && *cp==' ' ) *cp = 0;
113 if( !*fname ) continue;
114 // fname = volume_id _ creation_date
115 ++cp; *cp++ = '_'; bp = (char*)&id.creation_date[0];
116 for( int i=0; i<(int)sizeof(id.creation_date)-1; ++i ) {
117 if( !isdigit(*bp) ) break;
121 if( cp-fname > 4 ) result = 0;
128 // Use native sampling rates for files so the same index can be used in
129 // multiple projects.
131 IndexFile::IndexFile(MWindow *mwindow)
133 //printf("IndexFile::IndexFile 1\n");
135 this->mwindow = mwindow;
136 //printf("IndexFile::IndexFile 2\n");
137 redraw_timer = new Timer;
140 IndexFile::IndexFile(MWindow *mwindow,
141 Indexable *indexable)
143 //printf("IndexFile::IndexFile 2\n");
145 this->mwindow = mwindow;
146 this->indexable = indexable;
147 redraw_timer = new Timer;
150 indexable->add_user();
151 source_channels = indexable->get_audio_channels();
152 source_samplerate = indexable->get_sample_rate();
153 source_length = indexable->get_audio_samples();
157 IndexFile::~IndexFile()
159 //printf("IndexFile::~IndexFile 1\n");
161 if(indexable) indexable->remove_user();
165 void IndexFile::reset()
177 IndexState* IndexFile::get_state()
179 IndexState *index_state = 0;
180 if(indexable) index_state = indexable->index_state;
186 int IndexFile::open_index()
188 IndexState *index_state = 0;
191 // use buffer if being built
192 index_state = get_state();
194 if(index_state->index_status == INDEX_BUILDING)
200 if(!(result = open_file()))
202 // opened existing file
210 index_state->index_status = INDEX_READY;
221 void IndexFile::delete_index(Preferences *preferences,
222 Indexable *indexable, const char *suffix)
224 char index_filename[BCTEXTLEN];
225 char source_filename[BCTEXTLEN];
226 const char *path = indexable->path;
228 get_index_filename(source_filename,
229 preferences->index_directory,
230 index_filename, path, suffix);
231 //printf("IndexFile::delete_index %s %s\n", source_filename, index_filename);
232 remove_file(index_filename);
235 int IndexFile::open_file()
239 const char *path = indexable->path;
242 //printf("IndexFile::open_file %f\n", indexable->get_frame_rate());
244 get_index_filename(source_filename,
245 mwindow->preferences->index_directory,
249 if(debug) printf("IndexFile::open_file %d index_filename=%s\n",
252 fd = fopen(index_filename, "rb");
255 // Index file already exists.
256 // Get its last size without changing the real asset status.
257 Indexable *test_indexable = new Indexable(0);
259 test_indexable->copy_indexable(indexable);
260 read_info(test_indexable);
261 IndexState *index_state = test_indexable->index_state;
264 if(fs.get_date(index_filename) < fs.get_date(test_indexable->path))
266 if(debug) printf("IndexFile::open_file %d index_date=%jd source_date=%jd\n",
268 fs.get_date(index_filename),
269 fs.get_date(test_indexable->path));
271 // index older than source
277 if(fs.get_size(test_indexable->path) != index_state->index_bytes)
279 // source file is a different size than index source file
280 if(debug) printf("IndexFile::open_file %d index_size=%jd source_size=%jd\n",
282 index_state->index_bytes,
283 fs.get_size(test_indexable->path));
290 if(debug) printf("IndexFile::open_file %d\n",
292 fseek(fd, 0, SEEK_END);
293 file_length = ftell(fd);
294 fseek(fd, 0, SEEK_SET);
297 test_indexable->Garbage::remove_user();
302 if(debug) printf("IndexFile::open_file %d index_filename=%s doesn't exist\n",
311 int IndexFile::open_source()
313 //printf("IndexFile::open_source %p %s\n", asset, asset->path);
315 if(indexable && indexable->is_asset)
317 if(!source) source = new File;
319 Asset *asset = (Asset*)indexable;
320 if(source->open_file(mwindow->preferences,
323 //printf("IndexFile::open_source() Couldn't open %s.\n", asset->path);
329 asset->index_state->index_bytes = fs.get_size(asset->path);
330 source_length = source->get_audio_length();
335 TransportCommand command;
336 command.command = NORMAL_FWD;
337 command.get_edl()->copy_all((EDL*)indexable);
338 command.change_type = CHANGE_ALL;
339 command.realtime = 0;
340 cache = new CICache(mwindow->preferences);
341 render_engine = new RenderEngine(0,
342 mwindow->preferences, 0, 0);
343 render_engine->set_acache(cache);
344 render_engine->arm_command(&command);
346 indexable->index_state->index_bytes = fs.get_size(indexable->path);
352 void IndexFile::close_source()
357 delete render_engine;
364 int64_t IndexFile::get_required_scale()
369 // get scale of index file
370 // Total peaks which may be stored in buffer
371 int64_t peak_count = mwindow->preferences->index_size /
372 (2 * sizeof(float) * source_channels);
374 source_length / result > peak_count;
378 // Takes too long to draw from source on a CDROM. Make indexes for
384 int IndexFile::get_index_filename(char *source_filename,
385 char *index_directory,
386 char *index_filename,
387 const char *input_filename,
390 const char *input_fn = input_filename;
391 char volume_id[BCTEXTLEN];
392 // Replace mount/directory with volume_id if isofs
393 if( !udf_volume_id(input_filename, volume_id) )
395 char *cp = strrchr((char*)input_filename,'/');
396 if( cp ) input_fn = cp + 1;
397 for( cp=volume_id; *cp; ++cp );
398 *cp++ = '_'; strcpy(cp, input_fn);
399 input_fn = volume_id;
401 // Replace slashes and dots
403 int len = strlen(input_fn);
404 for(i = 0, j = 0; i < len; i++)
406 if(input_fn[i] != '/' &&
408 source_filename[j++] = input_fn[i];
412 source_filename[j++] = '_';
415 source_filename[j] = 0;
417 fs.join_names(index_filename, index_directory, source_filename);
418 strcat(index_filename, suffix ? suffix : ".idx");
422 int IndexFile::interrupt_index()
428 // Read data into buffers
430 int IndexFile::create_index(MainProgressBar *progress)
437 // open the source file
438 if(open_source()) return 1;
439 source_channels = indexable->get_audio_channels();
440 source_samplerate = indexable->get_sample_rate();
441 source_length = indexable->get_audio_samples();
445 get_index_filename(source_filename,
446 mwindow->preferences->index_directory,
452 // Some file formats have their own sample index.
453 // Test for index in stream table of contents
454 if(source && !source->get_index(this, progress))
456 IndexState *index_state = get_state();
457 index_state->index_status = INDEX_READY;
461 // Build index from scratch
465 // Indexes are now built for everything since it takes too long to draw
466 // from CDROM source.
468 // get amount to read at a time in floats
469 int64_t buffersize = 65536;
470 char string[BCTEXTLEN];
471 sprintf(string, _("Creating %s."), index_filename);
473 progress->update_title(string);
474 progress->update_length(source_length);
475 redraw_timer->update();
478 // thread out index thread
479 IndexThread *index_thread = new IndexThread(mwindow,
484 index_thread->start_build();
486 // current sample in source file
487 int64_t position = 0;
488 int64_t fragment_size = buffersize;
489 int current_buffer = 0;
492 // pass through file once
493 // printf("IndexFile::create_index %d source_length=%jd source=%p progress=%p\n",
499 while(position < source_length && !result)
502 if(source_length - position < fragment_size && fragment_size == buffersize) fragment_size = source_length - position;
504 index_thread->input_lock[current_buffer]->lock("IndexFile::create_index 1");
505 index_thread->input_len[current_buffer] = fragment_size;
508 int cancelled = progress->update(position);
509 //printf("IndexFile::create_index cancelled=%d\n", cancelled);
512 index_thread->interrupt_flag ||
520 if(source && !result)
524 !result && channel < source_channels;
527 // Read from source file
528 source->set_audio_position(position);
529 source->set_channel(channel);
531 if(source->read_samples(
532 index_thread->buffer_in[current_buffer][channel],
539 if(render_engine && !result)
542 if(render_engine->arender)
544 result = render_engine->arender->process_buffer(
545 index_thread->buffer_in[current_buffer],
551 for(int i = 0; i < source_channels; i++)
553 bzero(index_thread->buffer_in[current_buffer][i]->get_data(),
554 fragment_size * sizeof(double));
561 // Release buffer to thread
564 index_thread->output_lock[current_buffer]->unlock();
566 if(current_buffer >= TOTAL_INDEX_BUFFERS) current_buffer = 0;
567 position += fragment_size;
571 index_thread->input_lock[current_buffer]->unlock();
577 // end thread cleanly
578 index_thread->input_lock[current_buffer]->lock("IndexFile::create_index 2");
579 index_thread->last_buffer[current_buffer] = 1;
580 index_thread->output_lock[current_buffer]->unlock();
581 index_thread->stop_build();
598 mwindow->edl->set_index_file(indexable);
604 int IndexFile::redraw_edits(int force)
606 int64_t difference = redraw_timer->get_scaled_difference(1000);
608 if(difference > 250 || force)
610 redraw_timer->update();
611 mwindow->gui->lock_window("IndexFile::redraw_edits");
612 mwindow->edl->set_index_file(indexable);
613 mwindow->gui->draw_indexes(indexable);
614 mwindow->gui->unlock_window();
622 int IndexFile::draw_index(
624 ResourcePixmap *pixmap,
630 IndexState *index_state = get_state();
631 int pane_number = canvas->pane->number;
632 //index_state->dump();
635 if(debug) printf("IndexFile::draw_index %d\n", __LINE__);
636 if(index_state->index_zoom == 0)
638 printf(_("IndexFile::draw_index: index has 0 zoom\n"));
641 if(debug) printf("IndexFile::draw_index %d\n", __LINE__);
643 // test channel number
644 if(edit->channel > source_channels) return 1;
645 if(debug) printf("IndexFile::draw_index %d source_samplerate=%d "
646 "w=%d samplerate=%jd zoom_sample=%jd\n",
647 __LINE__, source_samplerate, w,
648 mwindow->edl->session->sample_rate,
649 mwindow->edl->local_session->zoom_sample);
651 // calculate a virtual x where the edit_x should be in floating point
652 double virtual_edit_x = 1.0 *
653 edit->track->from_units(edit->startproject) *
654 mwindow->edl->session->sample_rate /
655 mwindow->edl->local_session->zoom_sample -
656 mwindow->edl->local_session->view_start[pane_number];
658 // samples in segment to draw relative to asset
659 FloatAutos *speed_autos = !edit->track->has_speed() ? 0 :
660 (FloatAutos *)edit->track->automation->autos[AUTOMATION_SPEED];
661 double project_zoom = mwindow->edl->local_session->zoom_sample;
662 int64_t edit_position = (x + pixmap->pixmap_x - virtual_edit_x) * project_zoom;
663 int64_t start_position = edit->startsource;
664 start_position += !speed_autos ? edit_position :
665 speed_autos->automation_integral(edit->startproject, edit_position, PLAY_FORWARD);
666 int64_t end_position = edit->startsource;
667 edit_position = (x + w + pixmap->pixmap_x - virtual_edit_x) * project_zoom;
668 end_position += !speed_autos ? edit_position :
669 speed_autos->automation_integral(edit->startproject, edit_position, PLAY_FORWARD);
670 double session_sample_rate = mwindow->edl->session->sample_rate;
671 double asset_over_session = (double)indexable->get_sample_rate() / session_sample_rate;
672 int64_t start_source = start_position * asset_over_session;
673 if( start_source < 0 ) start_source = 0;
674 int64_t start_index = start_source / index_state->index_zoom;
675 int64_t end_source = end_position * asset_over_session;
676 if( end_source < 0 ) end_source = 0;
677 int64_t end_index = end_source / index_state->index_zoom;
678 // start/length of index to read in floats
679 start_index *= 2; end_index *= 2;
680 // length of index available in floats
681 int64_t size_index = index_state->index_status == INDEX_BUILDING ?
682 index_state->get_channel_used(edit->channel) * 2 :
683 index_state->get_index_size(edit->channel);
684 // Clamp length of index to read by available data
685 if( end_index >= size_index ) end_index = size_index;
686 int64_t length_index = end_index - start_index;
687 if( length_index <= 0 ) return 0;
689 // Start and length of fragment to read from file in bytes.
691 int buffer_shared = 0;
692 int center_pixel = mwindow->edl->local_session->zoom_track / 2;
693 if( edit->track->show_titles() )
694 center_pixel += mwindow->theme->get_image("title_bg_data")->get_h();
696 if( index_state->index_status == INDEX_BUILDING ) {
697 // index is in RAM, being built
698 buffer = index_state->get_channel_buffer(edit->channel);
699 if( !buffer ) return 0;
700 buffer += start_index;
704 buffer = new float[length_index + 1];
705 int64_t length_buffer = length_index * sizeof(float);
706 // add file/channel offset
707 int64_t index_offset = index_state->get_index_offset(edit->channel);
708 int64_t file_offset = (index_offset + start_index) * sizeof(float);
709 int64_t file_pos = index_state->index_start + file_offset;
710 int64_t read_length = file_length - file_pos;
711 if( read_length > length_buffer )
712 read_length = length_buffer;
713 int64_t length_read = 0;
714 if( read_length > 0 ) {
715 fseek(fd, file_pos, SEEK_SET);
716 length_read = fread(buffer, 1, read_length + sizeof(float), fd);
717 length_read &= ~(sizeof(float)-1);
719 if( (read_length-=length_read) > 0 )
720 memset((char*)buffer + length_read, 0, read_length);
724 canvas->set_color(mwindow->theme->audio_color);
726 int prev_y1 = center_pixel;
727 int prev_y2 = center_pixel;
729 int zoom_y = mwindow->edl->local_session->zoom_y, zoom_y2 = zoom_y / 2;
730 int max_y = center_pixel + zoom_y2 - 1;
731 edit_position = (x + pixmap->pixmap_x - virtual_edit_x) * project_zoom;
732 int64_t speed_position = edit->startsource;
733 speed_position += !speed_autos ? edit_position :
734 speed_autos->automation_integral(edit->startproject, edit_position, PLAY_FORWARD);
735 int64_t source_position = speed_position * asset_over_session;
736 int64_t index_position = source_position / index_state->index_zoom;
737 int64_t i = 2 * index_position - start_index;
738 CLAMP(i, 0, length_index);
741 for( int64_t x1=0; x1<w && i < length_index; ++x1 ) {
742 float highsample = buffer[i]; ++i;
743 float lowsample = buffer[i]; ++i;
745 edit_position = (x2 + pixmap->pixmap_x - virtual_edit_x) * project_zoom;
746 int64_t speed_position = edit->startsource;
747 speed_position += !speed_autos ? edit_position :
748 speed_autos->automation_integral(edit->startproject, edit_position, PLAY_FORWARD);
749 source_position = speed_position * asset_over_session;
750 index_position = source_position / index_state->index_zoom;
751 int64_t k = 2 * index_position - start_index;
752 CLAMP(k, 0, length_index);
754 highsample = MAX(highsample, buffer[i]); ++i;
755 lowsample = MIN(lowsample, buffer[i]); ++i;
758 int y1 = (int)(center_pixel - highsample * zoom_y2);
759 int y2 = (int)(center_pixel - lowsample * zoom_y2);
760 CLAMP(y1, 0, max_y); int next_y1 = y1;
761 CLAMP(y2, 0, max_y); int next_y2 = y2;
762 //printf("draw_line (%f,%f) = %d,%d, %d,%d\n", lowsample, highsample, x2, y1, x2, y2);
765 // A different algorithm has to be used if it's 1 sample per pixel and the
766 // index is used. Now the min and max values are equal so we join the max samples.
767 if(mwindow->edl->local_session->zoom_sample == 1) {
768 canvas->draw_line(x2 - 1, prev_y1, x2, y1, pixmap);
771 // Extend line height if it doesn't connect to previous line
773 if(y1 > prev_y2) y1 = prev_y2 + 1;
774 if(y2 < prev_y1) y2 = prev_y1 - 1;
779 canvas->draw_line(x2, y1, x2, y2, pixmap);
787 if(!buffer_shared) delete [] buffer;
789 if(debug) printf("IndexFile::draw_index %d\n", __LINE__);
793 int IndexFile::close_index()
803 int IndexFile::remove_index()
805 IndexState *index_state = get_state();
806 if(index_state->index_status == INDEX_READY ||
807 index_state->index_status == INDEX_NOTTESTED)
810 remove(index_filename);
815 int IndexFile::read_info(Indexable *test_indexable)
819 // Store format in actual asset.
820 // If it's a nested EDL, we never want the format, just the index info.
821 if(!test_indexable) test_indexable = indexable;
822 if(!test_indexable) return 1;
824 IndexState * index_state = test_indexable->index_state;
825 if(index_state->index_status == INDEX_NOTTESTED)
827 // read start of index data
828 int temp = fread((char*)&(index_state->index_start), sizeof(int64_t), 1, fd);
829 //printf("IndexFile::read_info %d %f\n", __LINE__, test_indexable->get_frame_rate());
832 // read test_indexable info from index
835 data = new char[index_state->index_start];
836 temp = fread(data, index_state->index_start - sizeof(int64_t), 1, fd);
839 data[index_state->index_start - sizeof(int64_t)] = 0;
841 xml.read_from_string(data);
846 // Read the file format & index state.
847 if(test_indexable->is_asset)
849 Asset *test_asset = (Asset *)test_indexable;
850 Asset *asset = new Asset;
853 //printf("IndexFile::read_info %d %f\n", __LINE__, asset->get_frame_rate());
855 if( asset->format == FILE_UNKNOWN ||
856 test_asset->format != asset->format ) {
857 if(debug) printf("IndexFile::read_info %d\n", __LINE__);
860 asset->remove_user();
861 if( ret ) return ret;
865 // Read only the index state for a nested EDL
867 if(debug) printf("IndexFile::read_info %d\n", __LINE__);
870 result = xml.read_tag();
873 if(xml.tag.title_is("INDEX"))
875 index_state->read_xml(&xml, source_channels);
876 if(debug) printf("IndexFile::read_info %d\n", __LINE__);
877 if(debug) index_state->dump();