Updated WIN32 code specific sections. Changed header.
[idzebra-moved-to-github.git] / index / dir.c
1 /*
2  * Copyright (C) 1994-1999, Index Data
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: dir.c,v $
7  * Revision 1.20  1999-02-02 14:50:50  adam
8  * Updated WIN32 code specific sections. Changed header.
9  *
10  * Revision 1.19  1998/11/03 10:16:11  adam
11  * Uses stat and not lstat so that file traversal follows symbolic links.
12  *
13  * Revision 1.18  1997/09/25 14:55:33  adam
14  * Windows port uses stat and not lstat.
15  *
16  * Revision 1.17  1997/09/09 13:38:06  adam
17  * Partial port to WIN95/NT.
18  *
19  * Revision 1.16  1996/10/29 14:06:45  adam
20  * Include zebrautl.h instead of alexutil.h.
21  *
22  * Revision 1.15  1996/06/04 10:18:58  adam
23  * Minor changes - removed include of ctype.h.
24  *
25  * Revision 1.14  1996/04/09  06:49:18  adam
26  * Traversal of directories doesn't follow symbolic links.
27  *
28  * Revision 1.13  1996/03/21 14:50:08  adam
29  * File update uses modify-time instead of change-time.
30  *
31  * Revision 1.12  1996/02/05  12:29:55  adam
32  * Logging reduced a bit.
33  * The remaining running time is estimated during register merge.
34  *
35  * Revision 1.11  1995/11/20  16:59:44  adam
36  * New update method: the 'old' keys are saved for each records.
37  *
38  * Revision 1.10  1995/11/20  11:56:22  adam
39  * Work on new traversal.
40  *
41  * Revision 1.9  1995/10/30  13:42:12  adam
42  * Added errno.h
43  *
44  * Revision 1.8  1995/10/10  13:59:23  adam
45  * Function rset_open changed its wflag parameter to general flags.
46  *
47  * Revision 1.7  1995/09/28  09:19:40  adam
48  * xfree/xmalloc used everywhere.
49  * Extract/retrieve method seems to work for text records.
50  *
51  * Revision 1.6  1995/09/08  14:52:26  adam
52  * Minor changes. Dictionary is lower case now.
53  *
54  * Revision 1.5  1995/09/06  16:11:16  adam
55  * Option: only one word key per file.
56  *
57  * Revision 1.4  1995/09/04  12:33:41  adam
58  * Various cleanup. YAZ util used instead.
59  *
60  * Revision 1.3  1995/09/01  14:06:35  adam
61  * Split of work into more files.
62  *
63  * Revision 1.2  1995/09/01  10:57:07  adam
64  * Minor changes.
65  *
66  * Revision 1.1  1995/09/01  10:34:51  adam
67  * Added dir.c
68  *
69  */
70 #include <stdio.h>
71 #include <string.h>
72 #include <assert.h>
73 #ifndef WIN32
74 #include <unistd.h>
75 #endif
76 #include <direntz.h>
77 #include <sys/stat.h>
78 #include <sys/types.h>
79 #include <errno.h>
80 #include <fcntl.h>
81
82 #include "index.h"
83
84 struct dir_entry *dir_open (const char *rep)
85 {
86     DIR *dir;
87     char path[256];
88     size_t pathpos;
89     struct dirent *dent;
90     size_t entry_max = 500;
91     size_t idx = 0;
92     struct dir_entry *entry;
93
94     logf (LOG_DEBUG, "dir_open %s", rep);
95     if (!(dir = opendir(rep)))
96     {
97         logf (LOG_WARN|LOG_ERRNO, "opendir %s", rep);
98         if (errno != ENOENT && errno != EACCES)
99             exit (1);
100         return NULL;
101     }
102     entry = xmalloc (sizeof(*entry) * entry_max);
103     strcpy (path, rep);
104     pathpos = strlen(path);
105     if (!pathpos || path[pathpos-1] != '/')
106         path[pathpos++] = '/';
107     while ((dent = readdir (dir)))
108     {
109         struct stat finfo;
110         if (strcmp (dent->d_name, ".") == 0 ||
111             strcmp (dent->d_name, "..") == 0)
112             continue;
113         if (idx == entry_max-1)
114         {
115             struct dir_entry *entry_n;
116
117             entry_n = xmalloc (sizeof(*entry) * (entry_max += 1000));
118             memcpy (entry_n, entry, idx * sizeof(*entry));
119             xfree (entry);
120             entry = entry_n;
121         }
122         strcpy (path + pathpos, dent->d_name);
123         stat (path, &finfo);
124         switch (finfo.st_mode & S_IFMT)
125         {
126         case S_IFREG:
127             entry[idx].kind = dirs_file;
128             entry[idx].mtime = finfo.st_mtime;
129             entry[idx].name = xmalloc (strlen(dent->d_name)+1);
130             strcpy (entry[idx].name, dent->d_name);
131             idx++;
132             break;
133         case S_IFDIR:
134             entry[idx].kind = dirs_dir;
135             entry[idx].mtime = finfo.st_mtime;
136             entry[idx].name = xmalloc (strlen(dent->d_name)+2);
137             strcpy (entry[idx].name, dent->d_name);
138             strcat (entry[idx].name, "/");
139             idx++;
140             break;
141         }
142     }
143     entry[idx].name = NULL;
144     closedir (dir);
145     logf (LOG_DEBUG, "dir_close");
146     return entry;
147 }
148
149 static int dir_cmp (const void *p1, const void *p2)
150 {
151     return strcmp (((struct dir_entry *) p1)->name,
152                    ((struct dir_entry *) p2)->name);
153 }
154
155 void dir_sort (struct dir_entry *e)
156 {
157     size_t nmemb = 0;
158     while (e[nmemb].name)
159         nmemb++;
160     qsort (e, nmemb, sizeof(*e), dir_cmp); 
161 }
162
163 void dir_free (struct dir_entry **e_p)
164 {
165     size_t i = 0;
166     struct dir_entry *e = *e_p;
167
168     assert (e);
169     while (e[i].name)
170         xfree (e[i++].name);
171     xfree (e);
172     *e_p = NULL;
173 }