1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
|
/*
* iodir.c
*
* Copyright (C) Thomas Oestreich - May 2002
*
* This file is part of transcode, a video stream processing tool
*
* transcode is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* transcode is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Make; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include "libtc.h"
#include "iodir.h"
#include <stdlib.h>
#include <string.h>
#ifdef OS_BSD
typedef off_t off64_t;
#define lseek64 lseek
#endif
/* get the next valid directory entry */
static int tc_dirlist_next(TCDirList *tcdir)
{
struct dirent *dent = NULL;
int have_file = 0;
if (tcdir == NULL) {
return -1;
}
do {
dent = readdir(tcdir->dir);
if (dent == NULL) {
break; /* all entries in dirlist have been processed */
}
if ((strncmp(dent->d_name, ".", 1) != 0)
&& (strcmp(dent->d_name, "..") != 0)) {
/* discard special files */
have_file = 1;
}
} while (!have_file);
if (have_file) {
tc_snprintf(tcdir->filename, sizeof(tcdir->filename),
"%s%s%s", tcdir->dir_name, tcdir->path_sep,
dent->d_name);
return 0;
}
return 1;
}
/* qsort helper */
static int compare_name(const void *file1_ptr, const void *file2_ptr)
{
return strcoll(*(const char **)file1_ptr, *(const char **)file2_ptr);
}
static int tc_dirlist_sortbuf(TCDirList *tcdir)
{
int n = 0;
if (tcdir == NULL) {
return -1;
}
tcdir->entries = tc_malloc(tcdir->nfiles * sizeof(char *));
if (tcdir->entries == NULL) {
return -1;
}
while (tc_dirlist_next(tcdir) == 0) {
tcdir->entries[n] = tc_strdup(tcdir->filename);
if (tcdir->entries[n] == NULL) {
tc_log_warn(__FILE__, "can't memorize dirlist entry "
"for '%s'\n", tcdir->filename);
}
n++;
}
qsort(tcdir->entries, tcdir->nfiles, sizeof(char *), compare_name);
tcdir->buffered = 1;
tcdir->findex = 0;
return 0;
}
static int tc_dirlist_set_path_sep(TCDirList *tcdir)
{
size_t len = 0;
char end_of_dir;
len = strlen(tcdir->dir_name);
if (len == 0) {
return -1;
}
end_of_dir = tcdir->dir_name[len - 1];
if (end_of_dir == '/') {
tcdir->path_sep = "";
} else {
tcdir->path_sep = "/";
}
return 0;
}
int tc_dirlist_file_count(TCDirList *tcdir)
{
if (tcdir == NULL) {
return -1;
}
return tcdir->nfiles;
}
int tc_dirlist_open(TCDirList *tcdir, const char *dirname, int sort)
{
int ret;
if (tcdir == NULL) {
return -1;
}
tcdir->filename[0] = '\0';
tcdir->entries = NULL;
tcdir->nfiles = 0;
tcdir->findex = 0;
tcdir->buffered = 0;
tcdir->dir_name = dirname;
ret = tc_dirlist_set_path_sep(tcdir);
if (ret != 0) {
return ret;
}
tcdir->dir = opendir(dirname);
if (tcdir->dir == NULL) {
return -1;
}
rewinddir(tcdir->dir);
while (tc_dirlist_next(tcdir) == 0) {
tcdir->nfiles++;
}
rewinddir(tcdir->dir);
if (sort) {
tc_dirlist_sortbuf(tcdir);
}
return 0;
}
void tc_dirlist_close(TCDirList *tcdir)
{
if (tcdir != NULL) {
if (tcdir->buffered == 1) {
int i = 0;
for (i = 0; i < tcdir->nfiles; i++) {
if (tcdir->entries[i] != NULL) {
/* should be always true */
free(tcdir->entries[i]);
tcdir->nfiles--;
}
}
if (tcdir->entries != NULL) {
/* should be always true */
free(tcdir->entries);
}
if (tcdir->nfiles > 0) {
/* should never happen */
tc_log_warn(__FILE__, "left out %i directory entries",
tcdir->nfiles);
}
}
if (tcdir->dir != NULL) {
closedir(tcdir->dir);
tcdir->dir = NULL;
}
}
}
const char *tc_dirlist_scan(TCDirList *tcdir)
{
const char *ret = NULL;
if (tcdir == NULL) {
return NULL;
}
if (tcdir->buffered == 0) {
if (tc_dirlist_next(tcdir) == 0) {
ret = tcdir->filename;
}
} else {
/* buffered */
if (tcdir->findex < tcdir->nfiles) {
ret = tcdir->entries[tcdir->findex++];
}
}
return ret;
}
/*************************************************************************/
/*
* Local variables:
* c-file-style: "stroustrup"
* c-file-offsets: ((case-label . *) (statement-case-intro . *))
* indent-tabs-mode: nil
* End:
*
* vim: expandtab shiftwidth=4:
*/
|