Split of work into more files.
[idzebra-moved-to-github.git] / index / dir.c
1 /*
2  * Copyright (C) 1995, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: dir.c,v $
7  * Revision 1.3  1995-09-01 14:06:35  adam
8  * Split of work into more files.
9  *
10  * Revision 1.2  1995/09/01  10:57:07  adam
11  * Minor changes.
12  *
13  * Revision 1.1  1995/09/01  10:34:51  adam
14  * Added dir.c
15  *
16  */
17 #include <stdio.h>
18 #include <assert.h>
19 #include <unistd.h>
20 #include <dirent.h>
21 #include <sys/stat.h>
22 #include <sys/types.h>
23 #include <fcntl.h>
24 #include <ctype.h>
25
26 #include <util.h>
27 #include "index.h"
28
29 struct dir_entry *dir_open (const char *rep)
30 {
31     DIR *dir;
32     struct dirent *dent;
33     size_t entry_max = 20;
34     size_t idx = 0;
35     struct dir_entry *entry;
36
37     log (LOG_DEBUG, "dir_open %s", rep);
38     if (!(dir = opendir(rep)))
39     {
40         log (LOG_WARN|LOG_ERRNO, "opendir %s", rep);
41         if (errno != ENOENT)
42             exit (1);
43         return NULL;
44     }
45     if (!(entry = malloc (sizeof(*entry) * entry_max)))
46     {
47         log (LOG_FATAL|LOG_ERRNO, "malloc");
48         exit (1);
49     }    
50     while ((dent = readdir (dir)))
51     {
52         if (strcmp (dent->d_name, ".") == 0 ||
53             strcmp (dent->d_name, "..") == 0)
54             continue;
55         if (idx == entry_max-1)
56         {
57             struct dir_entry *entry_n;
58
59             if (!(entry_n = malloc (sizeof(*entry) * (entry_max + 100))))
60             {
61                 log (LOG_FATAL|LOG_ERRNO, "malloc");
62                 exit (1);
63             }
64             memcpy (entry_n, entry, idx * sizeof(*entry));
65             free (entry);
66             entry = entry_n;
67             entry_max += 100;
68         }
69         if (!(entry[idx].name = malloc (strlen(dent->d_name)+1)))
70         {
71             log (LOG_FATAL|LOG_ERRNO, "malloc");
72             exit (1);
73         }
74         strcpy (entry[idx].name, dent->d_name);
75         idx++;
76     }
77     entry[idx].name = NULL;
78     closedir (dir);
79     return entry;
80 }
81
82 static int dir_cmp (const void *p1, const void *p2)
83 {
84     return strcmp (((struct dir_entry *) p1)->name,
85                    ((struct dir_entry *) p2)->name);
86 }
87
88 void dir_sort (struct dir_entry *e)
89 {
90     size_t nmemb = 0;
91     while (e[nmemb].name)
92         nmemb++;
93     qsort (e, nmemb, sizeof(*e), dir_cmp); 
94 }
95
96 void dir_free (struct dir_entry **e_p)
97 {
98     size_t i = 0;
99     struct dir_entry *e = *e_p;
100
101     assert (e);
102     while (e[i].name)
103         free (e[i++].name);
104     free (e);
105     *e_p = NULL;
106 }