File: filelist.c

package info (click to toggle)
nyquist 3.12%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 58,036 kB
  • sloc: ansic: 74,355; lisp: 20,485; java: 9,390; cpp: 6,695; sh: 207; xml: 58; makefile: 40
file content (222 lines) | stat: -rw-r--r-- 6,485 bytes parent folder | download | duplicates (12)
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
/* filelist.c -- program to convert a DOS DIR listing into an input
 * file for the packer program
 *
 * To use the program, first run DIR *.* /s > ..\xxx
 * Then run filelist.exe ..\xxx files
 * to create "files"
 * Then you can run packer.exe files myproject.pac
 * to create the pac file.
 */

/* usage: filelist <dir filename> <packer filename> */

#include "stdio.h"
#include "stdlib.h"
#include "string.h"
#include "cext.h"
#include "cmdline.h"

#define EOS '\0'

FILE *inf;
FILE *out;

#ifdef MAYBE_THIS_IS_FOR_WIN95_DIRECTORY_LISTINGS
/* findfilename -- look for pattern "*-*-*:* " in string */
/**/
int findfilename(char *line, char *rslt)
{
    char *ptr;
    if (ptr = strchr(line, '-')) {
        if (ptr = strchr(ptr, '-')) {
            if (ptr = strchr(ptr, ':')) {
                if (ptr = strchr(ptr, ' ')) {
                    strcpy(rslt, ptr + 1);
                    if (strcmp(rslt, ".") == 0 ||
                        strcmp(rslt, "..") == 0 ||
                        strstr(line, "<DIR>")) return 0;
                    return 1;
                }
            }
        }
    }
    return 0;
}
#endif

/* findfilename -- look for pattern "*<slash>*<slash>*:* " in string */
/*
 * NOTE: the <slash> is "/", part of the file date; ":" is in the file time
 *   lines without these characters are not lines that contain filenames
 */
int findfilename(char *line, char *rslt)
{
    char *ptr;
    if (ptr = strchr(line, '/')) {
        if (ptr = strchr(ptr + 1, '/')) {
            if (ptr = strchr(ptr + 1, ':')) {
                if (ptr = strrchr(line, ' ')) {
                    // now ptr points to space before filename
                    strcpy(rslt, ptr + 1);
                    // make sure this is not directory
                    if (strstr(line, "<DIR>")) return 0;
                    return 1;
                }
            }
        }
    }
    return 0;
}


int directory_filter(char *directory)
{
    int skip = false;;
    if (strstr(directory, "WinDebug") != NULL) skip = true;
    if (strstr(directory, "trash") != NULL) skip = true;
    return skip;
}

/* fixup -- convert \ to / */
/**/
void fixup(char *s)
{
    while (*s) {
        if (*s == '\\') *s = '/';
        s++;
    }
}


/* giveup -- quit the program */
/**/
void giveup()
{
    printf("Type return.");
    exit(1);
}


/* 
/* main -- */
/**/
int main(int argc, char **argv)
{
#define stringmax 128
    char in_file[stringmax];
    char out_file[stringmax];
    char inline[stringmax];
    char basedir[stringmax];
    char filename[stringmax];
    char directory[stringmax];
    char wholename[stringmax];
    char *s;
    int skip_directory = false;

    basedir[0] = 0;	/* empty string */

    cl_init(NULL, 0, NULL, 0, argv, argc);
    if ((s = cl_arg(1)) != NULL) {
        strcpy(in_file, s);
        inf = fopen(in_file, "r");
        if (inf == NULL) {
            fprintf(stdout, "Error: couldn't open %s\n", in_file);
            exit(1);
        }
    } 
    if ((s = cl_arg(2)) != NULL) {
        strcpy(out_file, s);
        out = fopen(out_file, "w");
        if (out == NULL) {
            fprintf(stdout, "Error: couldn't open %s\n", out_file);
            exit(1);
        }
    } else {
        fprintf(stdout, "Error: no output file specified\n");
        exit(1);
    }

    printf("writing %s ...\n", out_file);
    
    /* read a line at a time.
     *   if the line has "Directory of", then
     *        if you don't have base directory, grab it
     *        otherwise search for base directory and grab remainder
     *   if the line matches "*-*-*:* "	then 
     *        grab remainder as filename
     *        prepend directory and type ("a") and output
     */
    while (fgets(inline, stringmax, inf)) {
        inline[strlen(inline) - 1] = EOS;   /* remove newline at end */
        if (inline[0] == EOS) continue;     /* skip blank lines */
        /* search for Directory */
        s = strstr(inline, "Directory of ");
        if (s) {
            s += strlen("Directory of ");
            if (!basedir[0]) {
                strcpy(basedir, s);
                strcat(basedir, "\\");	/* append a slash to complete directory name */
                strcpy(directory, "");
            } else {
                s = strstr(s, basedir);
                if (!s) {
                    printf("Expected %s at beginning of directory.\n");
                    printf("Input line: %s\n");
                    giveup();
                } else {
                    strcpy(directory, s + strlen(basedir));
                    fixup(directory);
                    strcat(directory, "/");
                }
            skip_directory = directory_filter(directory);
            }
        } else if (!skip_directory && findfilename(inline, filename)) {
            char type_of_file = 'a';
            sprintf(wholename, "%s%s", directory, filename);
            /* strlwr(wholename); */
            s = strchr(wholename, '.');
            if (s) s++;
            else s = "";
            if (strcmp(s, "nh") == 0 ||
                strcmp(s, "rsrc") == 0 ||
                strcmp(s, "dsp") == 0 ||
                strcmp(s, "dsw") == 0 ||
                strcmp(s, "cod") == 0 ||
                strcmp(s, "tab") == 0 ||
                strcmp(s, "pcm") == 0 ||
                strcmp(s, "mp3") == 0 ||
                strcmp(s, "mid") == 0 ||
                strcmp(s, "aiff") == 0 ||
                false)
                type_of_file = 'b';
            if (strcmp(s, "pac") == 0 ||
                strcmp(s, "ncb") == 0 ||
                strcmp(s, "opt") == 0 ||
                strcmp(s, "plg") == 0 ||
                strcmp(s, "tar") == 0 ||
                strcmp(s, "obj") == 0 ||
                strcmp(s, "vcp") == 0 ||
                strcmp(s, "exe") == 0 ||
                strcmp(s, "vcp") == 0 ||
                strcmp(s, "pdb") == 0 ||
                strcmp(s, "sbr") == 0 ||
                strcmp(s, "ilk") == 0 ||
                strcmp(s, "bsc") == 0 ||
                /* this last one says "only .lsp files in runtime directory 
                (strcmp(directory, "runtime/") == 0 && strcmp(s, "lsp") != 0) || */
                strstr(directory, "CVS/") ||
                false
               ) {
                /* do nothing */
            } else {
                fprintf(out, "%c %s\n", type_of_file, wholename);
            }
        }
    }
    
    fclose(inf);
    fclose(out);
    return 0;
}