shuttlerc, boobytraps, vwindow hang, lock cleanup
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / indexfile.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 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 #ifndef INDEXFILE_H
23 #define INDEXFILE_H
24
25 #include "cache.inc"
26 #include "edit.inc"
27 #include "file.inc"
28 #include "guicast.h"
29 #include "indexable.inc"
30 #include "indexfile.inc"
31 #include "indexstate.inc"
32 #include "indexthread.inc"
33 #include "mainprogress.inc"
34 #include "mwindow.inc"
35 #include "preferences.inc"
36 #include "renderengine.inc"
37 #include "resourcepixmap.inc"
38 #include "samples.inc"
39 #include "trackcanvas.inc"
40 #include "bctimer.inc"
41 #include "tracks.inc"
42
43
44
45 class IndexFile
46 {
47 public:
48         IndexFile(MWindow *mwindow);
49         IndexFile(MWindow *mwindow, Indexable *indexable);
50         ~IndexFile();
51
52         void reset();
53
54 // Get the index state object from the asset or the nested EDL
55         IndexState* get_state();
56         static const char* get_source_path(Indexable *indexable);
57
58         int open_index();
59         int create_index(MainProgressBar *progress);
60         int interrupt_index();
61         static void delete_index(Preferences *preferences,
62                 Indexable *indexable, const char *suffix=0);
63         static int get_index_filename(char *source_filename,
64                 char *index_directory,
65                 char *index_filename,
66                 const char *input_filename,
67                 const char *suffix=0);
68         void update_edl_asset();
69         int redraw_edits(int force);
70         int draw_index(TrackCanvas *canvas,
71                 ResourcePixmap *pixmap,
72                 Edit *edit,
73                 int x,
74                 int w);
75         int close_index();
76         int remove_index();
77         int read_info(Indexable *indexable = 0);
78         int write_info();
79
80         MWindow *mwindow;
81         char index_filename[BCTEXTLEN], source_filename[BCTEXTLEN];
82 // Object to create an index for
83         Indexable *indexable;
84         Timer *redraw_timer;
85
86         void update_mainasset();
87
88         int open_file();
89         int open_source();
90         void close_source();
91         int64_t get_required_scale();
92 // File descriptor for index file.
93         FILE *fd;
94 // File object for source if an asset
95         File *source;
96 // Render engine for source if the source is a nested EDL
97         RenderEngine *render_engine;
98 // Audio cache for render engine
99         CICache *cache;
100 // Number of samples in source.  Calculated in open_source.
101         int64_t source_length;
102 // Number of channels in source.  Calculated in open_source.
103         int source_channels;
104         int source_samplerate;
105         int64_t file_length;   // Length of index file in bytes
106         int interrupt_flag;    // Flag set when index building is interrupted
107 };
108
109 #endif