2 * fontconfig/fc-match/fc-match.c
4 * Copyright © 2003 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.
29 #define HAVE_GETOPT_LONG 1
34 #include <fontconfig/fontconfig.h>
43 #ifndef HAVE_GETOPT_LONG
44 #define HAVE_GETOPT_LONG 0
51 static const struct option longopts[] = {
54 {"version", 0, 0, 'V'},
55 {"verbose", 0, 0, 'v'},
62 extern int optind, opterr, optopt;
67 usage (char *program, int error)
69 FILE *file = error ? stderr : stdout;
71 fprintf (file, "usage: %s [-savVh] [--sort] [--all] [--verbose] [--version] [--help] [pattern]\n",
74 fprintf (file, "usage: %s [-savVh] [pattern]\n",
77 fprintf (file, "List fonts matching [pattern]\n");
80 fprintf (file, " -s, --sort display sorted list of matches\n");
81 fprintf (file, " -a, --all display unpruned sorted list of matches\n");
82 fprintf (file, " -v, --verbose display entire font pattern\n");
83 fprintf (file, " -V, --version display font config version and exit\n");
84 fprintf (file, " -h, --help display this help and exit\n");
86 fprintf (file, " -s, (sort) display sorted list of matches\n");
87 fprintf (file, " -a (all) display unpruned sorted list of matches\n");
88 fprintf (file, " -v (verbose) display entire font pattern\n");
89 fprintf (file, " -V (version) display font config version and exit\n");
90 fprintf (file, " -h (help) display this help and exit\n");
96 main (int argc, char **argv)
99 int sort = 0, all = 0;
104 #if HAVE_GETOPT_LONG || HAVE_GETOPT
108 while ((c = getopt_long (argc, argv, "asVvh", longopts, NULL)) != -1)
110 while ((c = getopt (argc, argv, "asVvh")) != -1)
121 fprintf (stderr, "fontconfig version %d.%d.%d\n",
122 FC_MAJOR, FC_MINOR, FC_REVISION);
140 fprintf (stderr, "Can't init font config library\n");
144 pat = FcNameParse ((FcChar8 *) argv[i]);
146 pat = FcPatternCreate ();
151 FcConfigSubstitute (0, pat, FcMatchPattern);
152 FcDefaultSubstitute (pat);
154 fs = FcFontSetCreate ();
158 FcFontSet *font_patterns;
160 font_patterns = FcFontSort (0, pat, all ? FcFalse : FcTrue, 0, &result);
162 for (j = 0; j < font_patterns->nfont; j++)
164 FcPattern *font_pattern;
166 font_pattern = FcFontRenderPrepare (NULL, pat, font_patterns->fonts[j]);
168 FcFontSetAdd (fs, font_pattern);
171 FcFontSetSortDestroy (font_patterns);
176 match = FcFontMatch (0, pat, &result);
178 FcFontSetAdd (fs, match);
180 FcPatternDestroy (pat);
186 for (j = 0; j < fs->nfont; j++)
190 FcPatternPrint (fs->fonts[j]);
198 if (FcPatternGetString (fs->fonts[j], FC_FILE, 0, &file) != FcResultMatch)
199 file = (FcChar8 *) "<unknown filename>";
202 FcChar8 *slash = (FcChar8 *) strrchr ((char *) file, '/');
206 if (FcPatternGetString (fs->fonts[j], FC_FAMILY, 0, &family) != FcResultMatch)
207 family = (FcChar8 *) "<unknown family>";
208 if (FcPatternGetString (fs->fonts[j], FC_STYLE, 0, &style) != FcResultMatch)
209 style = (FcChar8 *) "<unknown style>";
211 printf ("%s: \"%s\" \"%s\"\n", file, family, style);
214 FcFontSetDestroy (fs);