]> git.wh0rd.org - fontconfig.git/blob - fc-cache/fc-cache.c
Add warning flags to fc-cache build. Clean up warnings in fc-cache.
[fontconfig.git] / fc-cache / fc-cache.c
1 /*
2 * $RCSId: xc/lib/fontconfig/fc-cache/fc-cache.c,v 1.8tsi Exp $
3 *
4 * Copyright © 2002 Keith Packard
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
25 #ifdef HAVE_CONFIG_H
26 #include <config.h>
27 #else
28 #ifdef linux
29 #define HAVE_GETOPT_LONG 1
30 #endif
31 #define HAVE_GETOPT 1
32 #endif
33
34 #include <fontconfig/fontconfig.h>
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <unistd.h>
38 #include <sys/types.h>
39 #include <sys/stat.h>
40 #include <errno.h>
41 #include <fcntl.h>
42 #include <dirent.h>
43
44 #if defined (_WIN32)
45 #define STRICT
46 #include <windows.h>
47 #define sleep(x) Sleep((x) * 1000)
48 #undef STRICT
49 #endif
50
51 #ifndef O_BINARY
52 #define O_BINARY 0
53 #endif
54
55 #ifndef HAVE_GETOPT
56 #define HAVE_GETOPT 0
57 #endif
58 #ifndef HAVE_GETOPT_LONG
59 #define HAVE_GETOPT_LONG 0
60 #endif
61
62 #if HAVE_GETOPT_LONG
63 #undef _GNU_SOURCE
64 #define _GNU_SOURCE
65 #include <getopt.h>
66 const struct option longopts[] = {
67 {"force", 0, 0, 'f'},
68 {"really-force", 0, 0, 'r'},
69 {"system-only", 0, 0, 's'},
70 {"version", 0, 0, 'V'},
71 {"verbose", 0, 0, 'v'},
72 {"help", 0, 0, '?'},
73 {NULL,0,0,0},
74 };
75 #else
76 #if HAVE_GETOPT
77 extern char *optarg;
78 extern int optind, opterr, optopt;
79 #endif
80 #endif
81
82 static void
83 usage (char *program)
84 {
85 #if HAVE_GETOPT_LONG
86 fprintf (stderr, "usage: %s [-frsvV?] [--force|--really-force] [--system-only] [--verbose] [--version] [--help] [dirs]\n",
87 program);
88 #else
89 fprintf (stderr, "usage: %s [-frsvV?] [dirs]\n",
90 program);
91 #endif
92 fprintf (stderr, "Build font information caches in [dirs]\n"
93 "(all directories in font configuration by default).\n");
94 fprintf (stderr, "\n");
95 #if HAVE_GETOPT_LONG
96 fprintf (stderr, " -f, --force scan directories with apparently valid caches\n");
97 fprintf (stderr, " -r, --really-force erase all existing caches, then rescan\n");
98 fprintf (stderr, " -s, --system-only scan system-wide directories only\n");
99 fprintf (stderr, " -v, --verbose display status information while busy\n");
100 fprintf (stderr, " -V, --version display font config version and exit\n");
101 fprintf (stderr, " -?, --help display this help and exit\n");
102 #else
103 fprintf (stderr, " -f (force) scan directories with apparently valid caches\n");
104 fprintf (stderr, " -r, (really force) erase all existing caches, then rescan\n");
105 fprintf (stderr, " -s (system) scan system-wide directories only\n");
106 fprintf (stderr, " -v (verbose) display status information while busy\n");
107 fprintf (stderr, " -V (version) display font config version and exit\n");
108 fprintf (stderr, " -? (help) display this help and exit\n");
109 #endif
110 exit (1);
111 }
112
113 static FcStrSet *processed_dirs;
114
115 static int
116 scanDirs (FcStrList *list, FcConfig *config, FcBool force, FcBool really_force, FcBool verbose)
117 {
118 int ret = 0;
119 const FcChar8 *dir;
120 FcStrSet *subdirs;
121 FcStrList *sublist;
122 FcCache *cache;
123 struct stat statb;
124 FcBool was_valid;
125 int i;
126
127 /*
128 * Now scan all of the directories into separate databases
129 * and write out the results
130 */
131 while ((dir = FcStrListNext (list)))
132 {
133 if (verbose)
134 {
135 printf ("%s: ", dir);
136 fflush (stdout);
137 }
138
139 if (!dir)
140 {
141 if (verbose)
142 printf ("skipping, no such directory\n");
143 continue;
144 }
145
146 if (FcStrSetMember (processed_dirs, dir))
147 {
148 if (verbose)
149 printf ("skipping, looped directory detected\n");
150 continue;
151 }
152
153 if (access ((char *) dir, W_OK) < 0)
154 {
155 switch (errno) {
156 case ENOENT:
157 case ENOTDIR:
158 if (verbose)
159 printf ("skipping, no such directory\n");
160 continue;
161 case EACCES:
162 case EROFS:
163 /* That's ok, caches go to /var anyway. */
164 /* Ideally we'd do an access on the hashed_name. */
165 /* But we hid that behind an abstraction barrier. */
166 break;
167 default:
168 fprintf (stderr, "\"%s\": ", dir);
169 perror ("");
170 ret++;
171
172 continue;
173 }
174 }
175 if (stat ((char *) dir, &statb) == -1)
176 {
177 fprintf (stderr, "\"%s\": ", dir);
178 perror ("");
179 ret++;
180 continue;
181 }
182 if (!S_ISDIR (statb.st_mode))
183 {
184 fprintf (stderr, "\"%s\": not a directory, skipping\n", dir);
185 continue;
186 }
187
188 if (really_force)
189 FcDirCacheUnlink (dir, config);
190
191 cache = NULL;
192 was_valid = FcFalse;
193 if (!force) {
194 cache = FcDirCacheLoad (dir, config, NULL);
195 if (cache)
196 was_valid = FcTrue;
197 }
198
199 if (!cache)
200 {
201 cache = FcDirCacheRead (dir, FcTrue, config);
202 if (!cache)
203 {
204 fprintf (stderr, "%s: error scanning\n", dir);
205 ret++;
206 continue;
207 }
208 }
209
210 if (was_valid)
211 {
212 if (verbose)
213 printf ("skipping, %d fonts, %d dirs\n",
214 FcCacheNumFont (cache), FcCacheNumSubdir (cache));
215 }
216 else
217 {
218 if (verbose)
219 printf ("caching, %d fonts, %d dirs\n",
220 FcCacheNumFont (cache), FcCacheNumSubdir (cache));
221
222 if (!FcDirCacheValid (dir))
223 {
224 fprintf (stderr, "%s: failed to write cache\n", dir);
225 (void) FcDirCacheUnlink (dir, config);
226 ret++;
227 }
228 }
229
230 subdirs = FcStrSetCreate ();
231 if (!subdirs)
232 {
233 fprintf (stderr, "%s: Can't create subdir set\n", dir);
234 ret++;
235 FcDirCacheUnload (cache);
236 continue;
237 }
238 for (i = 0; i < FcCacheNumSubdir (cache); i++)
239 FcStrSetAdd (subdirs, FcCacheSubdir (cache, i));
240
241 FcDirCacheUnload (cache);
242
243 sublist = FcStrListCreate (subdirs);
244 FcStrSetDestroy (subdirs);
245 if (!sublist)
246 {
247 fprintf (stderr, "%s: Can't create subdir list\n", dir);
248 ret++;
249 continue;
250 }
251 FcStrSetAdd (processed_dirs, dir);
252 ret += scanDirs (sublist, config, force, really_force, verbose);
253 }
254 FcStrListDone (list);
255 return ret;
256 }
257
258 static FcBool
259 cleanCacheDirectory (FcConfig *config, FcChar8 *dir, FcBool verbose)
260 {
261 DIR *d;
262 struct dirent *ent;
263 FcChar8 *dir_base;
264 FcBool ret = FcTrue;
265 FcBool remove;
266 FcCache *cache;
267 struct stat file_stat;
268 struct stat target_stat;
269
270 dir_base = FcStrPlus (dir, (FcChar8 *) "/");
271 if (!dir_base)
272 {
273 fprintf (stderr, "%s: out of memory\n", dir);
274 return FcFalse;
275 }
276 if (access ((char *) dir, W_OK|X_OK) != 0)
277 {
278 if (verbose)
279 printf ("%s: not cleaning unwritable cache directory\n", dir);
280 FcStrFree (dir_base);
281 return FcTrue;
282 }
283 if (verbose)
284 printf ("%s: cleaning cache directory\n", dir);
285 d = opendir ((char *) dir);
286 if (!d)
287 {
288 perror ((char *) dir);
289 FcStrFree (dir_base);
290 return FcFalse;
291 }
292 while ((ent = readdir (d)))
293 {
294 FcChar8 *file_name;
295 const FcChar8 *target_dir;
296
297 if (ent->d_name[0] == '.')
298 continue;
299 file_name = FcStrPlus (dir_base, (FcChar8 *) ent->d_name);
300 if (!file_name)
301 {
302 fprintf (stderr, "%s: allocation failure\n", dir);
303 ret = FcFalse;
304 break;
305 }
306 cache = FcDirCacheLoadFile (file_name, &file_stat);
307 if (!cache)
308 {
309 fprintf (stderr, "%s: invalid cache file: %s\n", dir, ent->d_name);
310 FcStrFree (file_name);
311 ret = FcFalse;
312 continue;
313 }
314 target_dir = FcCacheDir (cache);
315 remove = FcFalse;
316 if (stat ((char *) target_dir, &target_stat) < 0)
317 {
318 if (verbose)
319 printf ("%s: %s: missing directory: %s \n",
320 dir, ent->d_name, target_dir);
321 remove = FcTrue;
322 }
323 else if (target_stat.st_mtime > file_stat.st_mtime)
324 {
325 if (verbose)
326 printf ("%s: %s: cache outdated: %s\n",
327 dir, ent->d_name, target_dir);
328 remove = FcTrue;
329 }
330 if (remove)
331 {
332 if (unlink ((char *) file_name) < 0)
333 {
334 perror ((char *) file_name);
335 ret = FcFalse;
336 }
337 }
338 FcDirCacheUnload (cache);
339 FcStrFree (file_name);
340 }
341
342 closedir (d);
343 FcStrFree (dir_base);
344 return ret;
345 }
346
347 static FcBool
348 cleanCacheDirectories (FcConfig *config, FcBool verbose)
349 {
350 FcStrList *cache_dirs = FcConfigGetCacheDirs (config);
351 FcChar8 *cache_dir;
352 FcBool ret = FcTrue;
353
354 if (!cache_dirs)
355 return FcFalse;
356 while ((cache_dir = FcStrListNext (cache_dirs)))
357 {
358 if (!cleanCacheDirectory (config, cache_dir, verbose))
359 {
360 ret = FcFalse;
361 break;
362 }
363 }
364 FcStrListDone (cache_dirs);
365 return ret;
366 }
367
368 int
369 main (int argc, char **argv)
370 {
371 FcStrSet *dirs;
372 FcStrList *list;
373 FcBool verbose = FcFalse;
374 FcBool force = FcFalse;
375 FcBool really_force = FcFalse;
376 FcBool systemOnly = FcFalse;
377 FcConfig *config;
378 int i;
379 int ret;
380 #if HAVE_GETOPT_LONG || HAVE_GETOPT
381 int c;
382
383 #if HAVE_GETOPT_LONG
384 while ((c = getopt_long (argc, argv, "frsVv?", longopts, NULL)) != -1)
385 #else
386 while ((c = getopt (argc, argv, "frsVv?")) != -1)
387 #endif
388 {
389 switch (c) {
390 case 'r':
391 really_force = FcTrue;
392 /* fall through */
393 case 'f':
394 force = FcTrue;
395 break;
396 case 's':
397 systemOnly = FcTrue;
398 break;
399 case 'V':
400 fprintf (stderr, "fontconfig version %d.%d.%d\n",
401 FC_MAJOR, FC_MINOR, FC_REVISION);
402 exit (0);
403 case 'v':
404 verbose = FcTrue;
405 break;
406 default:
407 usage (argv[0]);
408 }
409 }
410 i = optind;
411 #else
412 i = 1;
413 #endif
414
415 if (systemOnly)
416 FcConfigEnableHome (FcFalse);
417 config = FcInitLoadConfig ();
418 if (!config)
419 {
420 fprintf (stderr, "%s: Can't init font config library\n", argv[0]);
421 return 1;
422 }
423 FcConfigSetCurrent (config);
424
425 if (argv[i])
426 {
427 dirs = FcStrSetCreate ();
428 if (!dirs)
429 {
430 fprintf (stderr, "%s: Can't create list of directories\n",
431 argv[0]);
432 return 1;
433 }
434 while (argv[i])
435 {
436 if (!FcStrSetAddFilename (dirs, (FcChar8 *) argv[i]))
437 {
438 fprintf (stderr, "%s: Can't add directory\n", argv[0]);
439 return 1;
440 }
441 i++;
442 }
443 list = FcStrListCreate (dirs);
444 FcStrSetDestroy (dirs);
445 }
446 else
447 list = FcConfigGetConfigDirs (config);
448
449 if ((processed_dirs = FcStrSetCreate()) == NULL) {
450 fprintf(stderr, "Cannot malloc\n");
451 return 1;
452 }
453
454 ret = scanDirs (list, config, force, really_force, verbose);
455
456 FcStrSetDestroy (processed_dirs);
457
458 cleanCacheDirectories (config, verbose);
459
460 /*
461 * Now we need to sleep a second (or two, to be extra sure), to make
462 * sure that timestamps for changes after this run of fc-cache are later
463 * then any timestamps we wrote. We don't use gettimeofday() because
464 * sleep(3) can't be interrupted by a signal here -- this isn't in the
465 * library, and there aren't any signals flying around here.
466 */
467 FcConfigDestroy (config);
468 sleep (2);
469 if (verbose)
470 printf ("%s: %s\n", argv[0], ret ? "failed" : "succeeded");
471 return ret;
472 }