2 * Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc.
4 * This file is part of Jam - see jam.c for Copyright information.
7 * filent.c - scan directories and archives on NT
11 * file_dirscan() - scan a directory for files
12 * file_time() - get timestamp of file, if not done by file_dirscan()
13 * file_archscan() - scan an archive for files
15 * File_dirscan() and file_archscan() call back a caller provided function
16 * for each file found. A flag to this callback function lets file_dirscan()
17 * and file_archscan() indicate that a timestamp is being provided with the
18 * file. If file_dirscan() or file_archscan() do not provide the file's
19 * timestamp, interested parties may later call file_time().
21 * 07/10/95 (taylor) Findfirst() returns the first file on NT.
22 * 05/03/96 (seiwald) split apart into pathnt.c
23 * 01/20/00 (seiwald) - Upgraded from K&R to ANSI C
24 * 10/03/00 (anton) - Porting for Borland C++ 5.5
25 * 01/08/01 (seiwald) - closure param for file_dirscan/file_archscan
26 * 11/04/02 (seiwald) - const-ing for string literals
27 * 01/23/03 (seiwald) - long long handles for NT IA64
40 * file_dirscan() - scan a directory for files
43 # define FINDTYPE long long
45 # define FINDTYPE long
49 // <0: error; 0: regular; 1: directory
50 int getFileType (const char *diskname
) {
52 struct _finddata_t finfo
[1];
55 handle
= _findfirst(diskname
, finfo
);
56 if (handle
== (FINDTYPE
)(-1)) return -1;
57 res
= (finfo
->attrib
&(_A_SUBDIR
)) ? 1 : 0;
63 void file_dirscan (const char *dir
, scanback func
, void *closure
) {
65 char filespec
[MAXJPATH
];
66 char filename
[MAXJPATH
];
69 struct _finddata_t finfo
[1];
71 /* first enter directory itself */
72 memset((char *)&f
, '\0', sizeof(f
));
74 f
.f_dir
.len
= strlen(dir
);
75 dir
= *dir
? dir
: ".";
76 /* special case \ or d:\ : enter it */
77 if (f
.f_dir
.len
== 1 && f
.f_dir
.ptr
[0] == '\\') (*func
)(closure
, dir
, 0 /* not stat()'ed */, (time_t)0);
78 else if (f
.f_dir
.len
== 3 && f
.f_dir
.ptr
[1] == ':') (*func
)(closure
, dir
, 0 /* not stat()'ed */, (time_t)0);
79 /* now enter contents of directory */
80 sprintf(filespec
, "%s/*", dir
);
81 if (DEBUG_BINDSCAN
) printf("scan directory %s\n", dir
);
82 handle
= _findfirst(filespec
, finfo
);
83 if ((ret
= (handle
== (FINDTYPE
)(-1)))) return;
85 f
.f_base
.ptr
= finfo
->name
;
86 f
.f_base
.len
= strlen(finfo
->name
);
87 path_build(&f
, filename
, 0);
88 (*func
)(closure
, filename
, 1 /* stat()'ed */, finfo
->time_write
);
89 ret
= _findnext(handle
, finfo
);
96 * file_time() - get timestamp of file, if not done by file_dirscan()
98 int file_time (const char *filename
, time_t *time
) {
99 /* on NT this is called only for C:/ */
102 if (stat(filename
, &statbuf
) < 0) return -1;
103 *time
= statbuf
.st_mtime
;
109 * file_archscan() - scan an archive for files
111 /* straight from SunOS */
112 #define ARMAG "!<arch>\n"
127 #define SARHDR sizeof(struct ar_hdr)
129 void file_archscan (const char *archive
, scanback func
, void *closure
) {
130 struct ar_hdr ar_hdr
;
131 char *string_table
= 0;
132 long string_table_len
= 0;
137 if ((fd
= open(archive
, O_RDONLY
| O_BINARY
, 0)) < 0) return;
138 if (read(fd
, buf
, SARMAG
) != SARMAG
|| strncmp(ARMAG
, buf
, SARMAG
)) {
143 if (DEBUG_BINDSCAN
) printf("scan archive %s\n", archive
);
145 while (read(fd
, &ar_hdr
, SARHDR
) == SARHDR
&& !memcmp(ar_hdr
.ar_fmag
, ARFMAG
, SARFMAG
)) {
151 sscanf(ar_hdr
.ar_date
, "%ld", &lar_date
);
152 sscanf(ar_hdr
.ar_size
, "%ld", &lar_size
);
153 lar_size
= (lar_size
+1) & ~1;
154 if (ar_hdr
.ar_name
[0] == '/' && ar_hdr
.ar_name
[1] == '/') {
155 /* this is the "string table" entry of the symbol table,
156 * which holds strings of filenames that are longer than
157 * 15 characters (ie. don't fit into a ar_name */
158 string_table
= malloc(lar_size
);
159 if (read(fd
, string_table
, lar_size
) != lar_size
) printf("error reading string table\n");
160 string_table_len
= lar_size
;
162 } else if (ar_hdr
.ar_name
[0] == '/' && ar_hdr
.ar_name
[1] != ' ') {
163 /* Long filenames are recognized by "/nnnn" where nnnn is
164 * the offset of the string in the string table represented
167 * however, the name end with 0 or '/', depending on
168 * the librarian used to generate them (0 for Mingw, '/' for Visual C++) */
169 long off
= atoi(ar_hdr
.ar_name
+1);
170 if (off
< 0 || off
> string_table_len
) goto next
;
171 name
= string_table
+off
;
172 for (; off
< string_table_len
; ++off
) {
173 int c
= string_table
[off
];
174 if (c
== 0 || c
== '/') break;
176 endname
= string_table
+off
;
181 name
= ar_hdr
.ar_name
;
182 for (off
= 0; off
< sizeof(ar_hdr
.ar_name
); ++off
) {
183 if (name
[off
] == '/' || name
[off
] == 0) break; /* not strictly required, but safe */
187 /* strip trailing space, slashes, and backslashes */
188 while (endname
> name
) {
190 if (c
!= ' ' && c
!= '\\' && c
!= '/') break;
193 /* strip leading directory names, since they're present in
194 * files generated by the Microsoft Librarian */
197 for (; p
< endname
; ++p
) if (*p
== '\\') name
= p
+1;
199 /* don't count empty entries */
200 if (name
>= endname
) goto next
;
202 sprintf(buf
, "%s(%.*s)", archive
, endname
-name
, name
);
203 (*func
)(closure
, buf
, 1 /* time valid */, (time_t)lar_date
);
205 offset
+= SARHDR
+lar_size
;
206 lseek(fd
, offset
, 0);