hard edges rework, add hard edge in gwdw, config.ac nv/cuda tweaks, message log warn...
[goodguy/cinelerra.git] / cinelerra-5.1 / guicast / filesystem.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 FILESYSTEM_H
23 #define FILESYSTEM_H
24
25 #include "arraylist.h"
26 #include "bcwindowbase.inc"
27 #include "sizes.h"
28
29 class FileItem
30 {
31 public:
32         FileItem();
33         FileItem(const char *path, const char *name, int is_dir,
34                 int64_t size, time_t mtime, int item_no=-1);
35         ~FileItem();
36
37         int set_path(char *path);
38         int set_name(char *name);
39         int reset();
40
41         const char *get_path() { return path; }
42         const char *get_name() { return name; }
43         int get_is_dir() { return is_dir; }
44
45         char *path;
46         char *name;
47         int is_dir;
48         int64_t size;
49         time_t mtime;
50         int item_no;
51 };
52
53 class FileSystem
54 {
55 public:
56 // sets the working directory to the user
57         FileSystem();
58         virtual ~FileSystem();
59
60 // Load the new directory and change current_dir to it.
61 // This does not complete the dir path.
62 // If any of the files failed to stat, it returns nonzero.
63         int scan_directory(const char*);
64         int update(const char *new_dir = 0);
65         int update_sort();
66
67 // Complete the path in the string and change to the directory in the string.
68 // Does not change new_dir
69 // update - causes the directory to be loaded
70         int change_dir(const char *new_dir, int update = 1);
71 // Set the current_dir to something without completing the path.
72         int set_current_dir(const char *new_dir);
73
74         int move_up();
75 // Syntax of filter is
76 // single filter without [].
77 // multiple filters enclosed in [].
78         int set_filter(const char *new_filter);
79         int set_show_all();     // show hidden files
80         int set_want_directory();
81         int set_sort_order(int value);
82         int set_sort_field(int field);
83         int create_dir(const char *new_dir_);    // create a new directory
84         int complete_path(char *filename);   // use the filename and the current_dir to create a complete filename
85 // return 1 if the text is a directory
86         int is_dir(const char *new_dir_);
87         int extract_dir(char *out, const char *in);    // extract the directory from the path
88         int extract_name(char *out, const char *in, int test_dir = 1);  // extract the name from the path
89         int join_names(char *out, const char *dir_in, const char *name_in);    // combine a directory and filename
90         static int64_t get_date(const char *path);        // get the date of the filename modification
91         static void set_date(const char *path, int64_t value); // set the date of the file
92         static int64_t get_size(char *filename);        // Get the number of bytes in the file.
93         int add_end_slash(char *new_dir);
94
95         int parse_tildas(char *new_dir);     // expand tildas
96         int parse_directories(char *new_dir);  // add directories
97         int parse_dots(char *new_dir);         // move up directory tree after expanding tildas
98         static char *basepath(const char *path); // collapse ".", "..", "//" elements
99         static int test_filter(const char *url, const char *filter); // returns 0 if url matches filter
100
101 // Array of files and directories in the directory pointed to by current_dir.
102 // Directories are first.
103         ArrayList<FileItem*> dir_list;
104         char *get_current_dir() { return current_dir; }
105         FileItem* get_entry(int entry) { return dir_list.values[entry]; }
106         int total_files() { return dir_list.total; }
107         void alphabetize() { sort_table(&dir_list); }
108
109 // Sorting order and sorting field.  These are identical in BC_ListBox.
110         enum
111         {
112                 SORT_ASCENDING,
113                 SORT_DESCENDING
114         };
115
116 // Match column definitions in BC_FileBox.
117         enum
118         {
119                 SORT_PATH,
120                 SORT_SIZE,
121                 SORT_DATE,
122                 SORT_EXTENSION
123         };
124
125 private:
126         int sort_table(ArrayList<FileItem*> *dir_list);
127         static int path_ascending(const void *ptr1, const void *ptr2);
128         static int path_descending(const void *ptr1, const void *ptr2);
129         static int size_ascending(const void *ptr1, const void *ptr2);
130         static int size_descending(const void *ptr1, const void *ptr2);
131         static int date_ascending(const void *ptr1, const void *ptr2);
132         static int date_descending(const void *ptr1, const void *ptr2);
133         static int ext_ascending(const void *ptr1, const void *ptr2);
134         static int ext_descending(const void *ptr1, const void *ptr2);
135         static int dot_reverse_filename(char *out, const char *in);
136
137 // Combine the directories and files into the master list, directories first.
138         int combine(ArrayList<FileItem*> *dir_list, ArrayList<FileItem*> *file_list);
139 // Whether or not the file passes the current filter.
140         int test_filter(FileItem *file);
141         int reset_parameters();
142         int delete_directory();
143
144         char filter[BCTEXTLEN];     // what filenames have to end in to get displayed
145         int want_directory;
146         int show_all_files;       // shows . files
147         char current_dir[BCTEXTLEN];
148         int sort_order;
149         int sort_field;
150 };
151
152 #endif