]> git.wh0rd.org - fontconfig.git/blame - src/fcdir.c
Update for version 2.2.99
[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
KP
47 int id;
48 FcChar8 *name;
49 FcPattern *font;
50 FcBool ret = FcTrue;
51 FcBool isDir;
52 int count = 0;
53 FcGlobalCacheFile *cache_file;
54 FcGlobalCacheDir *cache_dir;
55 FcBool need_scan;
24330d27 56
d47c9d6e
KP
57 if (config && !FcConfigAcceptFilename (config, file))
58 return FcTrue;
59
327a7fd4
KP
60 if (force)
61 cache = 0;
24330d27
KP
62 id = 0;
63 do
64 {
327a7fd4
KP
65 need_scan = FcTrue;
66 font = 0;
67 /*
68 * Check the cache
69 */
70 if (cache)
24330d27 71 {
327a7fd4 72 if ((cache_file = FcGlobalCacheFileGet (cache, file, id, &count)))
179c3995 73 {
327a7fd4
KP
74 /*
75 * Found a cache entry for the file
76 */
a8386abc 77 if (FcGlobalCacheCheckTime (file, &cache_file->info))
327a7fd4
KP
78 {
79 name = cache_file->name;
80 need_scan = FcFalse;
81 FcGlobalCacheReferenced (cache, &cache_file->info);
82 /* "." means the file doesn't contain a font */
83 if (FcStrCmp (name, FC_FONT_FILE_INVALID) != 0)
84 {
85 font = FcNameParse (name);
86 if (font)
87 if (!FcPatternAddString (font, FC_FILE, file))
88 ret = FcFalse;
89 }
90 }
179c3995 91 }
327a7fd4
KP
92 else if ((cache_dir = FcGlobalCacheDirGet (cache, file,
93 strlen ((const char *) file),
94 FcFalse)))
24330d27 95 {
a8386abc
KP
96 if (FcGlobalCacheCheckTime (cache_dir->info.file,
97 &cache_dir->info))
327a7fd4
KP
98 {
99 font = 0;
100 need_scan = FcFalse;
101 FcGlobalCacheReferenced (cache, &cache_dir->info);
102 if (!FcStrSetAdd (dirs, file))
6f6563ed 103 ret = FcFalse;
327a7fd4 104 }
24330d27 105 }
24330d27 106 }
327a7fd4
KP
107 /*
108 * Nothing in the cache, scan the file
109 */
110 if (need_scan)
24330d27
KP
111 {
112 if (FcDebug () & FC_DBG_SCAN)
113 {
114 printf ("\tScanning file %s...", file);
115 fflush (stdout);
116 }
117 font = FcFreeTypeQuery (file, id, blanks, &count);
118 if (FcDebug () & FC_DBG_SCAN)
119 printf ("done\n");
179c3995
KP
120 isDir = FcFalse;
121 if (!font && FcFileIsDir (file))
122 {
123 isDir = FcTrue;
124 ret = FcStrSetAdd (dirs, file);
125 }
327a7fd4
KP
126 /*
127 * Update the cache
128 */
129 if (cache && font)
24330d27 130 {
327a7fd4 131 FcChar8 *unparse;
24330d27 132
327a7fd4
KP
133 unparse = FcNameUnparse (font);
134 if (unparse)
24330d27 135 {
327a7fd4 136 (void) FcGlobalCacheUpdate (cache, file, id, unparse);
9dac3c59 137 FcStrFree (unparse);
24330d27
KP
138 }
139 }
140 }
327a7fd4
KP
141 /*
142 * Add the font
143 */
4f27c1c0 144 if (font && (!config || FcConfigAcceptFont (config, font)))
24330d27
KP
145 {
146 if (!FcFontSetAdd (set, font))
147 {
148 FcPatternDestroy (font);
149 font = 0;
150 ret = FcFalse;
151 }
152 }
153 id++;
154 } while (font && ret && id < count);
155 return ret;
156}
157
d47c9d6e
KP
158FcBool
159FcFileScan (FcFontSet *set,
160 FcStrSet *dirs,
161 FcGlobalCache *cache,
162 FcBlanks *blanks,
163 const FcChar8 *file,
164 FcBool force)
165{
166 return FcFileScanConfig (set, dirs, cache, blanks, file, force, 0);
167}
168
c8d5753c
KP
169/*
170 * Scan 'dir', adding font files to 'set' and
171 * subdirectories to 'dirs'
172 */
173
24330d27 174FcBool
d47c9d6e
KP
175FcDirScanConfig (FcFontSet *set,
176 FcStrSet *dirs,
177 FcGlobalCache *cache,
178 FcBlanks *blanks,
179 const FcChar8 *dir,
180 FcBool force,
181 FcConfig *config)
24330d27 182{
327a7fd4
KP
183 DIR *d;
184 struct dirent *e;
185 FcChar8 *file;
186 FcChar8 *base;
187 FcBool ret = FcTrue;
24330d27 188
d47c9d6e
KP
189 if (config && !FcConfigAcceptFilename (config, dir))
190 return FcTrue;
191
327a7fd4
KP
192 if (!force)
193 {
194 /*
f21f40f3 195 * Check fonts.cache-<version> file
327a7fd4 196 */
d47c9d6e 197 if (FcDirCacheReadDir (set, dirs, dir, config))
c4ab52dc 198 {
46d003c3
KP
199 if (cache)
200 FcGlobalCacheReferenceSubdir (cache, dir);
327a7fd4 201 return FcTrue;
c4ab52dc 202 }
327a7fd4
KP
203
204 /*
f21f40f3 205 * Check ~/.fonts.cache-<version> file
327a7fd4 206 */
d47c9d6e 207 if (cache && FcGlobalCacheScanDir (set, dirs, cache, dir, config))
327a7fd4
KP
208 return FcTrue;
209 }
210
9dac3c59 211 /* freed below */
179c3995 212 file = (FcChar8 *) malloc (strlen ((char *) dir) + 1 + FC_MAX_FILE_LEN + 1);
24330d27
KP
213 if (!file)
214 return FcFalse;
215
ccb3e93b
KP
216 strcpy ((char *) file, (char *) dir);
217 strcat ((char *) file, "/");
218 base = file + strlen ((char *) file);
24330d27 219
a8386abc
KP
220 if (FcDebug () & FC_DBG_SCAN)
221 printf ("\tScanning dir %s\n", dir);
222
ccb3e93b 223 d = opendir ((char *) dir);
327a7fd4 224
24330d27
KP
225 if (!d)
226 {
227 free (file);
179c3995
KP
228 /* Don't complain about missing directories */
229 if (errno == ENOENT)
230 return FcTrue;
24330d27
KP
231 return FcFalse;
232 }
233 while (ret && (e = readdir (d)))
234 {
179c3995 235 if (e->d_name[0] != '.' && strlen (e->d_name) < FC_MAX_FILE_LEN)
24330d27 236 {
ccb3e93b 237 strcpy ((char *) base, (char *) e->d_name);
d47c9d6e 238 ret = FcFileScanConfig (set, dirs, cache, blanks, file, force, config);
24330d27
KP
239 }
240 }
241 free (file);
242 closedir (d);
c8d5753c
KP
243 /*
244 * Now that the directory has been scanned,
245 * add the cache entry
246 */
327a7fd4
KP
247 if (ret && cache)
248 FcGlobalCacheUpdate (cache, dir, 0, 0);
249
24330d27
KP
250 return ret;
251}
252
d47c9d6e
KP
253FcBool
254FcDirScan (FcFontSet *set,
255 FcStrSet *dirs,
256 FcGlobalCache *cache,
257 FcBlanks *blanks,
258 const FcChar8 *dir,
259 FcBool force)
260{
261 return FcDirScanConfig (set, dirs, cache, blanks, dir, force, 0);
262}
263
24330d27 264FcBool
179c3995 265FcDirSave (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir)
24330d27 266{
327a7fd4 267 return FcDirCacheWriteDir (set, dirs, dir);
24330d27 268}