2002-02-15 00:34:13 +01:00
|
|
|
/*
|
2008-08-12 22:34:24 +02:00
|
|
|
* fontconfig/fc-list/fc-list.c
|
2002-02-15 00:34:13 +01:00
|
|
|
*
|
2004-12-07 02:14:46 +01:00
|
|
|
* Copyright © 2002 Keith Packard
|
2002-02-15 00:34:13 +01:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
* the above copyright notice appear in all copies and that both that
|
|
|
|
* copyright notice and this permission notice appear in supporting
|
|
|
|
* documentation, and that the name of Keith Packard not be used in
|
|
|
|
* advertising or publicity pertaining to distribution of the software without
|
|
|
|
* specific, written prior permission. Keith Packard makes no
|
|
|
|
* representations about the suitability of this software for any purpose. It
|
|
|
|
* is provided "as is" without express or implied warranty.
|
|
|
|
*
|
|
|
|
* KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
* EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
|
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <fontconfig/fontconfig.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
2002-02-15 07:01:28 +01:00
|
|
|
#include <stdlib.h>
|
2008-12-30 02:00:26 +01:00
|
|
|
#include <string.h>
|
2002-02-15 00:34:13 +01:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#else
|
2002-02-26 06:10:30 +01:00
|
|
|
#ifdef linux
|
|
|
|
#define HAVE_GETOPT_LONG 1
|
|
|
|
#endif
|
2002-02-15 00:34:13 +01:00
|
|
|
#define HAVE_GETOPT 1
|
|
|
|
#endif
|
|
|
|
|
2002-02-26 06:10:30 +01:00
|
|
|
#ifndef HAVE_GETOPT
|
|
|
|
#define HAVE_GETOPT 0
|
|
|
|
#endif
|
|
|
|
#ifndef HAVE_GETOPT_LONG
|
|
|
|
#define HAVE_GETOPT_LONG 0
|
|
|
|
#endif
|
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
#if HAVE_GETOPT_LONG
|
2002-02-26 06:10:30 +01:00
|
|
|
#undef _GNU_SOURCE
|
2002-02-15 00:34:13 +01:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <getopt.h>
|
|
|
|
const struct option longopts[] = {
|
|
|
|
{"verbose", 0, 0, 'v'},
|
2008-12-30 02:00:26 +01:00
|
|
|
{"format", 1, 0, 'f'},
|
2008-12-28 10:58:14 +01:00
|
|
|
{"quiet", 0, 0, 'q'},
|
2008-12-30 02:00:26 +01:00
|
|
|
{"version", 0, 0, 'V'},
|
2008-08-22 22:51:33 +02:00
|
|
|
{"help", 0, 0, 'h'},
|
2002-02-15 00:34:13 +01:00
|
|
|
{NULL,0,0,0},
|
|
|
|
};
|
|
|
|
#else
|
|
|
|
#if HAVE_GETOPT
|
|
|
|
extern char *optarg;
|
|
|
|
extern int optind, opterr, optopt;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2008-08-22 22:51:33 +02:00
|
|
|
static void
|
|
|
|
usage (char *program, int error)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2008-08-22 22:51:33 +02:00
|
|
|
FILE *file = error ? stderr : stdout;
|
2003-05-31 16:58:41 +02:00
|
|
|
#if HAVE_GETOPT_LONG
|
2008-12-30 02:00:26 +01:00
|
|
|
fprintf (file, "usage: %s [-vqVh] [-f FORMAT] [--verbose] [--format=FORMAT] [--quiet] [--version] [--help] [pattern] {element ...} \n",
|
2002-02-15 00:34:13 +01:00
|
|
|
program);
|
2003-05-31 16:58:41 +02:00
|
|
|
#else
|
2008-12-30 02:00:26 +01:00
|
|
|
fprintf (file, "usage: %s [-vqVh] [-f FORMAT] [pattern] {element ...} \n",
|
2003-05-31 16:58:41 +02:00
|
|
|
program);
|
|
|
|
#endif
|
2008-08-22 22:51:33 +02:00
|
|
|
fprintf (file, "List fonts matching [pattern]\n");
|
|
|
|
fprintf (file, "\n");
|
2003-05-31 16:58:41 +02:00
|
|
|
#if HAVE_GETOPT_LONG
|
2009-01-16 01:12:37 +01:00
|
|
|
fprintf (file, " -v, --verbose display entire font pattern verbosely\n");
|
2008-12-30 02:00:26 +01:00
|
|
|
fprintf (file, " -f, --format=FORMAT use the given output format\n");
|
2008-12-28 10:58:14 +01:00
|
|
|
fprintf (file, " -q, --quiet suppress all normal output, exit 1 if no fonts matched\n");
|
2008-08-22 22:51:33 +02:00
|
|
|
fprintf (file, " -V, --version display font config version and exit\n");
|
|
|
|
fprintf (file, " -h, --help display this help and exit\n");
|
2003-05-31 16:58:41 +02:00
|
|
|
#else
|
2009-01-16 01:12:37 +01:00
|
|
|
fprintf (file, " -v (verbose) display entire font pattern verbosely\n");
|
2008-12-30 02:00:26 +01:00
|
|
|
fprintf (file, " -f FORMAT (format) use the given output format\n");
|
2008-12-28 10:58:14 +01:00
|
|
|
fprintf (file, " -q, (quiet) suppress all normal output, exit 1 if no fonts matched\n");
|
2008-08-22 22:51:33 +02:00
|
|
|
fprintf (file, " -V (version) display font config version and exit\n");
|
|
|
|
fprintf (file, " -h (help) display this help and exit\n");
|
2003-05-31 16:58:41 +02:00
|
|
|
#endif
|
2008-08-22 22:51:33 +02:00
|
|
|
exit (error);
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
2008-08-13 08:24:42 +02:00
|
|
|
int verbose = 0;
|
2008-12-28 10:58:14 +01:00
|
|
|
int quiet = 0;
|
2008-12-30 02:00:26 +01:00
|
|
|
FcChar8 *format = NULL;
|
2008-12-28 10:58:14 +01:00
|
|
|
int nfont = 0;
|
2002-02-15 00:34:13 +01:00
|
|
|
int i;
|
2002-07-01 01:45:40 +02:00
|
|
|
FcObjectSet *os = 0;
|
2002-02-15 00:34:13 +01:00
|
|
|
FcFontSet *fs;
|
|
|
|
FcPattern *pat;
|
|
|
|
#if HAVE_GETOPT_LONG || HAVE_GETOPT
|
|
|
|
int c;
|
|
|
|
|
|
|
|
#if HAVE_GETOPT_LONG
|
2008-12-30 02:00:26 +01:00
|
|
|
while ((c = getopt_long (argc, argv, "vf:qVh", longopts, NULL)) != -1)
|
2002-02-15 00:34:13 +01:00
|
|
|
#else
|
2008-12-30 02:00:26 +01:00
|
|
|
while ((c = getopt (argc, argv, "vf:qVh")) != -1)
|
2002-02-15 00:34:13 +01:00
|
|
|
#endif
|
|
|
|
{
|
|
|
|
switch (c) {
|
|
|
|
case 'v':
|
2008-08-13 08:24:42 +02:00
|
|
|
verbose = 1;
|
2002-02-15 00:34:13 +01:00
|
|
|
break;
|
2008-12-30 02:00:26 +01:00
|
|
|
case 'f':
|
|
|
|
format = (FcChar8 *) strdup (optarg);
|
|
|
|
break;
|
2008-12-28 10:58:14 +01:00
|
|
|
case 'q':
|
|
|
|
quiet = 1;
|
|
|
|
break;
|
2008-12-30 02:00:26 +01:00
|
|
|
case 'V':
|
|
|
|
fprintf (stderr, "fontconfig version %d.%d.%d\n",
|
|
|
|
FC_MAJOR, FC_MINOR, FC_REVISION);
|
|
|
|
exit (0);
|
2008-08-22 22:51:33 +02:00
|
|
|
case 'h':
|
|
|
|
usage (argv[0], 0);
|
2002-02-15 00:34:13 +01:00
|
|
|
default:
|
2008-08-22 22:51:33 +02:00
|
|
|
usage (argv[0], 1);
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
i = optind;
|
|
|
|
#else
|
|
|
|
i = 1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!FcInit ())
|
|
|
|
{
|
|
|
|
fprintf (stderr, "Can't init font config library\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (argv[i])
|
2002-07-01 01:45:40 +02:00
|
|
|
{
|
2002-02-28 17:51:48 +01:00
|
|
|
pat = FcNameParse ((FcChar8 *) argv[i]);
|
2009-01-16 01:12:37 +01:00
|
|
|
while (argv[++i])
|
|
|
|
{
|
|
|
|
if (!os)
|
|
|
|
os = FcObjectSetCreate ();
|
|
|
|
FcObjectSetAdd (os, argv[i]);
|
|
|
|
}
|
2002-07-01 01:45:40 +02:00
|
|
|
}
|
2002-02-15 00:34:13 +01:00
|
|
|
else
|
|
|
|
pat = FcPatternCreate ();
|
2008-12-28 10:58:14 +01:00
|
|
|
if (quiet && !os)
|
|
|
|
os = FcObjectSetCreate ();
|
2008-12-30 02:00:26 +01:00
|
|
|
if (!verbose && !format && !os)
|
2003-08-12 04:06:20 +02:00
|
|
|
os = FcObjectSetBuild (FC_FAMILY, FC_STYLE, (char *) 0);
|
2002-02-15 00:34:13 +01:00
|
|
|
fs = FcFontList (0, pat, os);
|
2008-08-13 08:24:42 +02:00
|
|
|
if (os)
|
|
|
|
FcObjectSetDestroy (os);
|
2002-02-15 00:34:13 +01:00
|
|
|
if (pat)
|
|
|
|
FcPatternDestroy (pat);
|
|
|
|
|
2008-12-28 10:58:14 +01:00
|
|
|
if (!quiet && fs)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
|
|
|
int j;
|
|
|
|
|
|
|
|
for (j = 0; j < fs->nfont; j++)
|
|
|
|
{
|
2008-08-13 08:24:42 +02:00
|
|
|
if (verbose)
|
2008-12-30 02:00:26 +01:00
|
|
|
{
|
2008-08-13 08:24:42 +02:00
|
|
|
FcPatternPrint (fs->fonts[j]);
|
2008-12-30 02:00:26 +01:00
|
|
|
}
|
|
|
|
else if (format)
|
|
|
|
{
|
|
|
|
FcChar8 *s;
|
|
|
|
|
|
|
|
s = FcPatternFormat (fs->fonts[j], format);
|
2009-02-10 05:08:08 +01:00
|
|
|
if (s)
|
|
|
|
{
|
|
|
|
printf ("%s", s);
|
|
|
|
free (s);
|
|
|
|
}
|
2008-12-30 02:00:26 +01:00
|
|
|
}
|
2008-08-13 08:24:42 +02:00
|
|
|
else
|
|
|
|
{
|
2009-01-16 01:12:37 +01:00
|
|
|
FcChar8 *str;
|
|
|
|
FcChar8 *file;
|
|
|
|
|
|
|
|
str = FcNameUnparse (fs->fonts[j]);
|
2008-08-13 08:24:42 +02:00
|
|
|
if (FcPatternGetString (fs->fonts[j], FC_FILE, 0, &file) == FcResultMatch)
|
|
|
|
printf ("%s: ", file);
|
2009-01-16 01:12:37 +01:00
|
|
|
printf ("%s\n", str);
|
|
|
|
free (str);
|
2008-08-13 08:24:42 +02:00
|
|
|
}
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
2008-12-28 10:58:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fs) {
|
|
|
|
nfont = fs->nfont;
|
2002-02-15 00:34:13 +01:00
|
|
|
FcFontSetDestroy (fs);
|
|
|
|
}
|
2003-08-15 21:45:20 +02:00
|
|
|
|
|
|
|
FcFini ();
|
|
|
|
|
2008-12-28 10:58:14 +01:00
|
|
|
return quiet ? (nfont == 0 ? 1 : 0) : 0;
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|