2 * $RCSId: xc/lib/fontconfig/fc-cache/fc-cache.c,v 1.8tsi Exp $
4 * Copyright © 2002 Keith Packard
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.
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.
25 #include <fontconfig/fontconfig.h>
29 #include <sys/types.h>
36 #define HAVE_GETOPT_LONG 1
44 #ifndef HAVE_GETOPT_LONG
45 #define HAVE_GETOPT_LONG 0
52 const struct option longopts[] = {
54 {"system-only", 0, 0, 's'},
55 {"version", 0, 0, 'V'},
56 {"verbose", 0, 0, 'v'},
63 extern int optind, opterr, optopt;
71 fprintf (stderr, "usage: %s [-fsvV?] [--force] [--system-only] [--verbose] [--version] [--help] [dirs]\n",
74 fprintf (stderr, "usage: %s [-fsvV?] [dirs]\n",
77 fprintf (stderr, "Build font information caches in [dirs]\n"
78 "(all directories in font configuration by default).\n");
79 fprintf (stderr, "\n");
81 fprintf (stderr, " -f, --force scan directories with apparently valid caches\n");
82 fprintf (stderr, " -s, --system-only scan system-wide directories only\n");
83 fprintf (stderr, " -v, --verbose display status information while busy\n");
84 fprintf (stderr, " -V, --version display font config version and exit\n");
85 fprintf (stderr, " -?, --help display this help and exit\n");
87 fprintf (stderr, " -f (force) scan directories with apparently valid caches\n");
88 fprintf (stderr, " -s (system) scan system-wide directories only\n");
89 fprintf (stderr, " -v (verbose) display status information while busy\n");
90 fprintf (stderr, " -V (version) display font config version and exit\n");
91 fprintf (stderr, " -? (help) display this help and exit\n");
98 nsubdirs (FcStrSet *set)
103 list = FcStrListCreate (set);
106 while (FcStrListNext (list))
108 FcStrListDone (list);
113 scanDirs (FcStrList *list, FcConfig *config, char *program, FcBool force, FcBool verbose)
123 * Now scan all of the directories into separate databases
124 * and write out the results
126 while ((dir = FcStrListNext (list)))
130 printf ("%s: \"%s\": ", program, dir);
133 set = FcFontSetCreate ();
136 fprintf (stderr, "Can't create font set\n");
140 subdirs = FcStrSetCreate ();
143 fprintf (stderr, "Can't create directory set\n");
145 FcFontSetDestroy (set);
149 if (access ((char *) dir, W_OK) < 0)
155 printf ("skipping, no such directory\n");
160 printf ("skipping, no write access\n");
163 fprintf (stderr, "\"%s\": ", dir);
167 FcFontSetDestroy (set);
168 FcStrSetDestroy (subdirs);
171 if (stat ((char *) dir, &statb) == -1)
173 fprintf (stderr, "\"%s\": ", dir);
175 FcFontSetDestroy (set);
176 FcStrSetDestroy (subdirs);
180 if (!S_ISDIR (statb.st_mode))
182 fprintf (stderr, "\"%s\": not a directory, skipping\n", dir);
183 FcFontSetDestroy (set);
184 FcStrSetDestroy (subdirs);
187 if (!FcDirScan (set, subdirs, 0, FcConfigGetBlanks (config), dir, force))
189 fprintf (stderr, "\"%s\": error scanning\n", dir);
190 FcFontSetDestroy (set);
191 FcStrSetDestroy (subdirs);
195 if (!force && FcDirCacheValid (dir))
198 printf ("skipping, %d fonts, %d dirs\n",
199 set->nfont, nsubdirs(subdirs));
204 printf ("caching, %d fonts, %d dirs\n",
205 set->nfont, nsubdirs (subdirs));
206 if (!FcDirSave (set, subdirs, dir))
208 fprintf (stderr, "Can't save cache in \"%s\"\n", dir);
212 FcFontSetDestroy (set);
213 sublist = FcStrListCreate (subdirs);
214 FcStrSetDestroy (subdirs);
217 fprintf (stderr, "Can't create subdir list in \"%s\"\n", dir);
221 ret += scanDirs (sublist, config, program, force, verbose);
223 FcStrListDone (list);
229 main (int argc, char **argv)
233 FcBool verbose = FcFalse;
234 FcBool force = FcFalse;
235 FcBool systemOnly = FcFalse;
239 #if HAVE_GETOPT_LONG || HAVE_GETOPT
243 while ((c = getopt_long (argc, argv, "fsVv?", longopts, NULL)) != -1)
245 while ((c = getopt (argc, argv, "fsVv?")) != -1)
256 fprintf (stderr, "fontconfig version %d.%d.%d\n",
257 FC_MAJOR, FC_MINOR, FC_REVISION);
272 FcConfigEnableHome (FcFalse);
273 FcCacheForce (FcTrue);
274 /* need to use FcInitLoadConfig when we use dirs */
276 config = FcConfigGetCurrent ();
279 fprintf (stderr, "%s: Can't init font config library\n", argv[0]);
283 /* We don't yet have per-directory caches. */
284 ret = (FcCacheWrite (config) == FcFalse);
289 dirs = FcStrSetCreate ();
292 fprintf (stderr, "%s: Can't create list of directories\n",
298 if (!FcStrSetAdd (dirs, (FcChar8 *) argv[i]))
300 fprintf (stderr, "%s: Can't add directory\n", argv[0]);
305 list = FcStrListCreate (dirs);
306 FcStrSetDestroy (dirs);
309 list = FcConfigGetConfigDirs (config);
310 ret = scanDirs (list, config, argv[0], force, verbose);
313 * Now we need to sleep a second (or two, to be extra sure), to make
314 * sure that timestamps for changes after this run of fc-cache are later
315 * then any timestamps we wrote. We don't use gettimeofday() because
316 * sleep(3) can't be interrupted by a signal here -- this isn't in the
317 * library, and there aren't any signals flying around here.
319 FcConfigDestroy (config);
322 printf ("%s: %s\n", argv[0], ret ? "failed" : "succeeded");