2008-08-13 07:31:18 +02:00
|
|
|
/*
|
|
|
|
* fontconfig/fc-query/fc-query.c
|
|
|
|
*
|
|
|
|
* Copyright © 2003 Keith Packard
|
|
|
|
* Copyright © 2008 Red Hat, Inc.
|
|
|
|
* Red Hat Author(s): Behdad Esfahbod
|
|
|
|
*
|
|
|
|
* 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
|
2010-11-10 22:45:42 +01:00
|
|
|
* documentation, and that the name of the author(s) not be used in
|
2008-08-13 07:31:18 +02:00
|
|
|
* advertising or publicity pertaining to distribution of the software without
|
2010-11-10 22:45:42 +01:00
|
|
|
* specific, written prior permission. The authors make no
|
2008-08-13 07:31:18 +02:00
|
|
|
* representations about the suitability of this software for any purpose. It
|
|
|
|
* is provided "as is" without express or implied warranty.
|
|
|
|
*
|
2009-03-12 21:00:08 +01:00
|
|
|
* THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
2008-08-13 07:31:18 +02:00
|
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
2009-03-12 21:00:08 +01:00
|
|
|
* EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
2008-08-13 07:31:18 +02:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#else
|
|
|
|
#ifdef linux
|
|
|
|
#define HAVE_GETOPT_LONG 1
|
|
|
|
#endif
|
|
|
|
#define HAVE_GETOPT 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <fontconfig/fontconfig.h>
|
|
|
|
#include <fontconfig/fcfreetype.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#ifndef HAVE_GETOPT
|
|
|
|
#define HAVE_GETOPT 0
|
|
|
|
#endif
|
|
|
|
#ifndef HAVE_GETOPT_LONG
|
|
|
|
#define HAVE_GETOPT_LONG 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAVE_GETOPT_LONG
|
|
|
|
#undef _GNU_SOURCE
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <getopt.h>
|
|
|
|
static const struct option longopts[] = {
|
|
|
|
{"index", 1, 0, 'i'},
|
2017-09-15 07:11:34 +02:00
|
|
|
{"brief", 0, 0, 'b'},
|
2008-12-30 02:00:26 +01:00
|
|
|
{"format", 1, 0, 'f'},
|
2008-08-13 07:31:18 +02:00
|
|
|
{"version", 0, 0, 'V'},
|
2008-08-22 22:51:33 +02:00
|
|
|
{"help", 0, 0, 'h'},
|
2008-08-13 07:31:18 +02: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)
|
2008-08-13 07:31:18 +02:00
|
|
|
{
|
2008-08-22 22:51:33 +02:00
|
|
|
FILE *file = error ? stderr : stdout;
|
2008-08-13 07:31:18 +02:00
|
|
|
#if HAVE_GETOPT_LONG
|
2017-09-15 07:11:34 +02:00
|
|
|
fprintf (file, "usage: %s [-bVh] [-i index] [-f FORMAT] [--index index] [--brief] [--format FORMAT] [--version] [--help] font-file...\n",
|
2008-08-13 07:31:18 +02:00
|
|
|
program);
|
|
|
|
#else
|
2017-09-15 07:11:34 +02:00
|
|
|
fprintf (file, "usage: %s [-bVh] [-i index] [-f FORMAT] font-file...\n",
|
2008-08-13 07:31:18 +02:00
|
|
|
program);
|
|
|
|
#endif
|
2008-08-22 22:51:33 +02:00
|
|
|
fprintf (file, "Query font files and print resulting pattern(s)\n");
|
|
|
|
fprintf (file, "\n");
|
2008-08-13 07:31:18 +02:00
|
|
|
#if HAVE_GETOPT_LONG
|
2008-08-22 22:51:33 +02:00
|
|
|
fprintf (file, " -i, --index INDEX display the INDEX face of each font file only\n");
|
2017-09-15 07:11:34 +02:00
|
|
|
fprintf (file, " -b, --brief display font pattern briefly\n");
|
2008-12-30 02:00:26 +01:00
|
|
|
fprintf (file, " -f, --format=FORMAT use the given output format\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");
|
2008-08-13 07:31:18 +02:00
|
|
|
#else
|
2015-05-12 07:28:45 +02:00
|
|
|
fprintf (file, " -i INDEX (index) display the INDEX face of each font file only\n");
|
2017-09-15 07:11:34 +02:00
|
|
|
fprintf (file, " -b (brief) display font pattern briefly\n");
|
2015-05-12 07:28:45 +02:00
|
|
|
fprintf (file, " -f FORMAT (format) use the given output format\n");
|
|
|
|
fprintf (file, " -V (version) display font config version and exit\n");
|
|
|
|
fprintf (file, " -h (help) display this help and exit\n");
|
2008-08-13 07:31:18 +02:00
|
|
|
#endif
|
2008-08-22 22:51:33 +02:00
|
|
|
exit (error);
|
2008-08-13 07:31:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
2017-09-13 09:27:03 +02:00
|
|
|
unsigned int id = (unsigned int) -1;
|
2017-09-15 07:11:34 +02:00
|
|
|
int brief = 0;
|
2017-09-12 22:43:33 +02:00
|
|
|
FcFontSet *fs;
|
2008-12-30 02:00:26 +01:00
|
|
|
FcChar8 *format = NULL;
|
2008-08-13 07:31:18 +02:00
|
|
|
int err = 0;
|
|
|
|
int i;
|
|
|
|
#if HAVE_GETOPT_LONG || HAVE_GETOPT
|
|
|
|
int c;
|
|
|
|
|
|
|
|
#if HAVE_GETOPT_LONG
|
2017-09-15 07:11:34 +02:00
|
|
|
while ((c = getopt_long (argc, argv, "i:bf:Vh", longopts, NULL)) != -1)
|
2008-08-13 07:31:18 +02:00
|
|
|
#else
|
2017-09-15 07:11:34 +02:00
|
|
|
while ((c = getopt (argc, argv, "i:bf:Vh")) != -1)
|
2008-08-13 07:31:18 +02:00
|
|
|
#endif
|
|
|
|
{
|
|
|
|
switch (c) {
|
|
|
|
case 'i':
|
2017-09-13 09:27:03 +02:00
|
|
|
id = (unsigned int) strtol (optarg, NULL, 0); /* strtol() To handle -1. */
|
2008-08-13 07:31:18 +02:00
|
|
|
break;
|
2017-09-15 07:11:34 +02:00
|
|
|
case 'b':
|
|
|
|
brief = 1;
|
|
|
|
break;
|
2008-12-30 02:00:26 +01:00
|
|
|
case 'f':
|
|
|
|
format = (FcChar8 *) strdup (optarg);
|
|
|
|
break;
|
2008-08-13 07:31:18 +02: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);
|
2008-08-13 07:31:18 +02:00
|
|
|
default:
|
2008-08-22 22:51:33 +02:00
|
|
|
usage (argv[0], 1);
|
2008-08-13 07:31:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
i = optind;
|
|
|
|
#else
|
|
|
|
i = 1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (i == argc)
|
2008-08-22 22:51:33 +02:00
|
|
|
usage (argv[0], 1);
|
2008-08-13 07:31:18 +02:00
|
|
|
|
2017-09-12 22:43:33 +02:00
|
|
|
fs = FcFontSetCreate ();
|
|
|
|
|
2008-08-13 07:31:18 +02:00
|
|
|
for (; i < argc; i++)
|
|
|
|
{
|
2017-09-15 07:20:56 +02:00
|
|
|
if (!FcFreeTypeQueryAll ((FcChar8*) argv[i], id, NULL, NULL, fs))
|
2017-08-01 15:41:02 +02:00
|
|
|
{
|
2017-09-13 09:27:03 +02:00
|
|
|
fprintf (stderr, "Can't query face %u of font file %s\n", id, argv[i]);
|
2017-09-12 22:43:33 +02:00
|
|
|
err = 1;
|
2017-08-01 15:41:02 +02:00
|
|
|
}
|
2017-09-12 22:43:33 +02:00
|
|
|
}
|
2008-08-13 07:31:18 +02:00
|
|
|
|
2017-09-12 22:43:33 +02:00
|
|
|
for (i = 0; i < fs->nfont; i++)
|
|
|
|
{
|
|
|
|
FcPattern *pat = fs->fonts[i];
|
2008-12-30 02:00:26 +01:00
|
|
|
|
2017-09-15 07:11:34 +02:00
|
|
|
if (brief)
|
|
|
|
{
|
|
|
|
FcPatternDel (pat, FC_CHARSET);
|
|
|
|
FcPatternDel (pat, FC_LANG);
|
|
|
|
}
|
|
|
|
|
2017-09-12 22:43:33 +02:00
|
|
|
if (format)
|
|
|
|
{
|
|
|
|
FcChar8 *s;
|
2008-08-13 07:31:18 +02:00
|
|
|
|
2017-09-12 22:43:33 +02:00
|
|
|
s = FcPatternFormat (pat, format);
|
|
|
|
if (s)
|
2017-08-01 15:41:02 +02:00
|
|
|
{
|
2017-09-12 22:43:33 +02:00
|
|
|
printf ("%s", s);
|
|
|
|
FcStrFree (s);
|
2017-08-01 15:41:02 +02:00
|
|
|
}
|
2017-09-12 22:43:33 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FcPatternPrint (pat);
|
|
|
|
}
|
2008-08-13 07:31:18 +02:00
|
|
|
}
|
|
|
|
|
2017-09-12 22:43:33 +02:00
|
|
|
FcFontSetDestroy (fs);
|
|
|
|
|
2008-08-13 07:31:18 +02:00
|
|
|
FcFini ();
|
|
|
|
return err;
|
|
|
|
}
|