]> git.wh0rd.org - fontconfig.git/blame - src/fcdir.c
Add test for validity of directory caches that somehow got lost (reported
[fontconfig.git] / src / fcdir.c
CommitLineData
24330d27 1/*
4bd4418a 2 * $RCSId: xc/lib/fontconfig/src/fcdir.c,v 1.9 2002/08/31 22:17:32 keithp Exp $
24330d27 3 *
46b51147 4 * Copyright © 2000 Keith Packard
24330d27
KP
5 *
6 * Permission to use, copy, modify, distribute, and sell this software and its
7 * documentation for any purpose is hereby granted without fee, provided that
8 * the above copyright notice appear in all copies and that both that
9 * copyright notice and this permission notice appear in supporting
10 * documentation, and that the name of Keith Packard not be used in
11 * advertising or publicity pertaining to distribution of the software without
12 * specific, written prior permission. Keith Packard makes no
13 * representations about the suitability of this software for any purpose. It
14 * is provided "as is" without express or implied warranty.
15 *
16 * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18 * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22 * PERFORMANCE OF THIS SOFTWARE.
23 */
24
24330d27 25#include "fcint.h"
179c3995
KP
26#include <dirent.h>
27
2d9c79c0 28FcBool
179c3995
KP
29FcFileIsDir (const FcChar8 *file)
30{
31 struct stat statb;
24330d27 32
179c3995
KP
33 if (stat ((const char *) file, &statb) != 0)
34 return FcFalse;
35 return S_ISDIR(statb.st_mode);
36}
24330d27
KP
37
38FcBool
d47c9d6e
KP
39FcFileScanConfig (FcFontSet *set,
40 FcStrSet *dirs,
41 FcGlobalCache *cache,
42 FcBlanks *blanks,
43 const FcChar8 *file,
44 FcBool force,
45 FcConfig *config)
24330d27 46{
327a7fd4 47 int id;
327a7fd4
KP
48 FcPattern *font;
49 FcBool ret = FcTrue;
50 FcBool isDir;
51 int count = 0;
24330d27 52
d47c9d6e
KP
53 if (config && !FcConfigAcceptFilename (config, file))
54 return FcTrue;
55
327a7fd4
KP
56 if (force)
57 cache = 0;
24330d27
KP
58 id = 0;
59 do
60 {
327a7fd4
KP
61 font = 0;
62 /*
eb0cf671 63 * Nothing in the cache, scan the file
327a7fd4 64 */
eb0cf671 65 if (FcDebug () & FC_DBG_SCAN)
24330d27 66 {
eb0cf671
PL
67 printf ("\tScanning file %s...", file);
68 fflush (stdout);
24330d27 69 }
eb0cf671
PL
70 font = FcFreeTypeQuery (file, id, blanks, &count);
71 if (FcDebug () & FC_DBG_SCAN)
72 printf ("done\n");
73 isDir = FcFalse;
74 if (!font && FcFileIsDir (file))
24330d27 75 {
eb0cf671
PL
76 isDir = FcTrue;
77 ret = FcStrSetAdd (dirs, file);
24330d27 78 }
327a7fd4
KP
79 /*
80 * Add the font
81 */
4f27c1c0 82 if (font && (!config || FcConfigAcceptFont (config, font)))
24330d27
KP
83 {
84 if (!FcFontSetAdd (set, font))
85 {
86 FcPatternDestroy (font);
87 font = 0;
88 ret = FcFalse;
89 }
90 }
47b49bf1
KP
91 else if (font)
92 FcPatternDestroy (font);
24330d27
KP
93 id++;
94 } while (font && ret && id < count);
95 return ret;
96}
97
d47c9d6e
KP
98FcBool
99FcFileScan (FcFontSet *set,
100 FcStrSet *dirs,
101 FcGlobalCache *cache,
102 FcBlanks *blanks,
103 const FcChar8 *file,
104 FcBool force)
105{
106 return FcFileScanConfig (set, dirs, cache, blanks, file, force, 0);
107}
108
c8d5753c
KP
109/*
110 * Scan 'dir', adding font files to 'set' and
111 * subdirectories to 'dirs'
112 */
113
24330d27 114FcBool
d47c9d6e
KP
115FcDirScanConfig (FcFontSet *set,
116 FcStrSet *dirs,
117 FcGlobalCache *cache,
118 FcBlanks *blanks,
119 const FcChar8 *dir,
120 FcBool force,
121 FcConfig *config)
24330d27 122{
327a7fd4
KP
123 DIR *d;
124 struct dirent *e;
125 FcChar8 *file;
126 FcChar8 *base;
127 FcBool ret = FcTrue;
eb0cf671
PL
128 FcFontSet *tmpSet;
129 int i;
24330d27 130
d47c9d6e
KP
131 if (config && !FcConfigAcceptFilename (config, dir))
132 return FcTrue;
133
327a7fd4
KP
134 if (!force)
135 {
327a7fd4 136 /*
f21f40f3 137 * Check ~/.fonts.cache-<version> file
327a7fd4 138 */
8245771d 139 if (cache && FcGlobalCacheReadDir (set, dirs, cache, (char *)dir, config))
327a7fd4 140 return FcTrue;
2eb84374 141
50544b13 142 if (FcDirCacheValid (dir) && FcDirCacheRead (set, dirs, dir))
2eb84374 143 return FcTrue;
327a7fd4
KP
144 }
145
9dac3c59 146 /* freed below */
179c3995 147 file = (FcChar8 *) malloc (strlen ((char *) dir) + 1 + FC_MAX_FILE_LEN + 1);
24330d27
KP
148 if (!file)
149 return FcFalse;
150
ccb3e93b
KP
151 strcpy ((char *) file, (char *) dir);
152 strcat ((char *) file, "/");
153 base = file + strlen ((char *) file);
24330d27 154
a8386abc
KP
155 if (FcDebug () & FC_DBG_SCAN)
156 printf ("\tScanning dir %s\n", dir);
157
ccb3e93b 158 d = opendir ((char *) dir);
24330d27
KP
159 if (!d)
160 {
161 free (file);
179c3995
KP
162 /* Don't complain about missing directories */
163 if (errno == ENOENT)
164 return FcTrue;
24330d27
KP
165 return FcFalse;
166 }
eb0cf671
PL
167
168 tmpSet = FcFontSetCreate();
169 if (!tmpSet)
170 {
171 free (file);
172 return FcFalse;
173 }
174
24330d27
KP
175 while (ret && (e = readdir (d)))
176 {
179c3995 177 if (e->d_name[0] != '.' && strlen (e->d_name) < FC_MAX_FILE_LEN)
24330d27 178 {
ccb3e93b 179 strcpy ((char *) base, (char *) e->d_name);
eb0cf671 180 ret = FcFileScanConfig (tmpSet, dirs, cache, blanks, file, force, config);
24330d27
KP
181 }
182 }
183 free (file);
184 closedir (d);
c8d5753c
KP
185 /*
186 * Now that the directory has been scanned,
187 * add the cache entry
188 */
327a7fd4 189 if (ret && cache)
8245771d 190 FcGlobalCacheUpdate (cache, (char *)dir, tmpSet);
eb0cf671
PL
191
192 for (i = 0; i < tmpSet->nfont; i++)
193 FcFontSetAdd (set, tmpSet->fonts[i]);
194
195 if (tmpSet->fonts)
196 {
197 FcMemFree (FC_MEM_FONTPTR, tmpSet->sfont * sizeof (FcPattern *));
198 free (tmpSet->fonts);
199 }
200 FcMemFree (FC_MEM_FONTSET, sizeof (FcFontSet));
201 free (tmpSet);
327a7fd4 202
24330d27
KP
203 return ret;
204}
205
d47c9d6e
KP
206FcBool
207FcDirScan (FcFontSet *set,
208 FcStrSet *dirs,
209 FcGlobalCache *cache,
210 FcBlanks *blanks,
211 const FcChar8 *dir,
212 FcBool force)
213{
214 return FcDirScanConfig (set, dirs, cache, blanks, dir, force, 0);
215}
216
24330d27 217FcBool
2304e38f 218FcDirSave (FcFontSet *set, FcStrSet * dirs, const FcChar8 *dir)
24330d27 219{
2304e38f 220 return FcDirCacheWrite (set, dirs, dir);
24330d27 221}