2002-02-15 00:34:13 +01:00
|
|
|
/*
|
2008-08-12 22:34:24 +02:00
|
|
|
* fontconfig/src/fcdir.c
|
2002-02-15 00:34:13 +01:00
|
|
|
*
|
2004-12-07 02:14:46 +01:00
|
|
|
* Copyright © 2000 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 "fcint.h"
|
2002-05-21 19:06:22 +02:00
|
|
|
#include <dirent.h>
|
|
|
|
|
2004-12-05 06:03:52 +01:00
|
|
|
FcBool
|
2002-05-21 19:06:22 +02:00
|
|
|
FcFileIsDir (const FcChar8 *file)
|
|
|
|
{
|
|
|
|
struct stat statb;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
2002-05-21 19:06:22 +02:00
|
|
|
if (stat ((const char *) file, &statb) != 0)
|
|
|
|
return FcFalse;
|
|
|
|
return S_ISDIR(statb.st_mode);
|
|
|
|
}
|
2002-02-15 00:34:13 +01:00
|
|
|
|
2006-08-28 06:53:48 +02:00
|
|
|
static FcBool
|
|
|
|
FcFileScanFontConfig (FcFontSet *set,
|
|
|
|
FcBlanks *blanks,
|
|
|
|
const FcChar8 *file,
|
|
|
|
FcConfig *config)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2006-08-28 06:53:48 +02:00
|
|
|
FcPattern *font;
|
|
|
|
FcBool ret = FcTrue;
|
|
|
|
int id;
|
|
|
|
int count = 0;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
|
|
|
id = 0;
|
|
|
|
do
|
|
|
|
{
|
2002-07-28 12:50:59 +02:00
|
|
|
font = 0;
|
|
|
|
/*
|
2005-08-30 07:55:13 +02:00
|
|
|
* Nothing in the cache, scan the file
|
2002-07-28 12:50:59 +02:00
|
|
|
*/
|
2005-08-30 07:55:13 +02:00
|
|
|
if (FcDebug () & FC_DBG_SCAN)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2005-08-30 07:55:13 +02:00
|
|
|
printf ("\tScanning file %s...", file);
|
|
|
|
fflush (stdout);
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
2005-08-30 07:55:13 +02:00
|
|
|
font = FcFreeTypeQuery (file, id, blanks, &count);
|
|
|
|
if (FcDebug () & FC_DBG_SCAN)
|
|
|
|
printf ("done\n");
|
2006-09-03 02:52:12 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Edit pattern with user-defined rules
|
|
|
|
*/
|
2006-12-02 22:57:45 +01:00
|
|
|
if (font && config && !FcConfigSubstituteWithPat (config, font, NULL, FcMatchScan))
|
2006-09-03 02:52:12 +02:00
|
|
|
{
|
|
|
|
FcPatternDestroy (font);
|
|
|
|
font = NULL;
|
|
|
|
ret = FcFalse;
|
|
|
|
}
|
|
|
|
|
2002-07-28 12:50:59 +02:00
|
|
|
/*
|
|
|
|
* Add the font
|
|
|
|
*/
|
2004-12-04 20:41:10 +01:00
|
|
|
if (font && (!config || FcConfigAcceptFont (config, font)))
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2006-09-03 02:52:12 +02:00
|
|
|
if (FcDebug() & FC_DBG_SCANV)
|
|
|
|
{
|
|
|
|
printf ("Final font pattern:\n");
|
|
|
|
FcPatternPrint (font);
|
|
|
|
}
|
2002-02-15 00:34:13 +01:00
|
|
|
if (!FcFontSetAdd (set, font))
|
|
|
|
{
|
|
|
|
FcPatternDestroy (font);
|
2006-09-03 02:52:12 +02:00
|
|
|
font = NULL;
|
2002-02-15 00:34:13 +01:00
|
|
|
ret = FcFalse;
|
|
|
|
}
|
|
|
|
}
|
2005-02-11 00:00:51 +01:00
|
|
|
else if (font)
|
|
|
|
FcPatternDestroy (font);
|
2002-02-15 00:34:13 +01:00
|
|
|
id++;
|
|
|
|
} while (font && ret && id < count);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-08-28 06:53:48 +02:00
|
|
|
FcBool
|
|
|
|
FcFileScanConfig (FcFontSet *set,
|
|
|
|
FcStrSet *dirs,
|
|
|
|
FcBlanks *blanks,
|
|
|
|
const FcChar8 *file,
|
|
|
|
FcConfig *config)
|
|
|
|
{
|
|
|
|
if (FcFileIsDir (file))
|
|
|
|
return FcStrSetAdd (dirs, file);
|
|
|
|
else
|
|
|
|
return FcFileScanFontConfig (set, blanks, file, config);
|
|
|
|
}
|
|
|
|
|
2003-05-07 18:13:24 +02:00
|
|
|
FcBool
|
|
|
|
FcFileScan (FcFontSet *set,
|
|
|
|
FcStrSet *dirs,
|
2006-08-28 06:53:48 +02:00
|
|
|
FcFileCache *cache, /* XXX unused */
|
2003-05-07 18:13:24 +02:00
|
|
|
FcBlanks *blanks,
|
|
|
|
const FcChar8 *file,
|
|
|
|
FcBool force)
|
|
|
|
{
|
2006-09-01 10:15:14 +02:00
|
|
|
return FcFileScanConfig (set, dirs, blanks, file, NULL);
|
2003-05-07 18:13:24 +02:00
|
|
|
}
|
|
|
|
|
2006-03-08 20:10:57 +01:00
|
|
|
/*
|
|
|
|
* Strcmp helper that takes pointers to pointers, copied from qsort(3) manpage
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
cmpstringp(const void *p1, const void *p2)
|
|
|
|
{
|
|
|
|
return strcmp(* (char **) p1, * (char **) p2);
|
|
|
|
}
|
|
|
|
|
2003-02-12 19:19:33 +01:00
|
|
|
/*
|
2006-09-01 10:15:14 +02:00
|
|
|
* Scan the specified directory and construct a cache of its contents
|
2003-02-12 19:19:33 +01:00
|
|
|
*/
|
2006-09-01 10:15:14 +02:00
|
|
|
FcCache *
|
|
|
|
FcDirCacheScan (const FcChar8 *dir, FcConfig *config)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2002-07-28 12:50:59 +02:00
|
|
|
DIR *d;
|
|
|
|
struct dirent *e;
|
2006-09-01 10:15:14 +02:00
|
|
|
FcStrSet *files;
|
|
|
|
FcStrSet *dirs;
|
2002-07-28 12:50:59 +02:00
|
|
|
FcChar8 *file;
|
|
|
|
FcChar8 *base;
|
|
|
|
FcBool ret = FcTrue;
|
2006-09-01 10:15:14 +02:00
|
|
|
FcFontSet *set;
|
2005-08-30 07:55:13 +02:00
|
|
|
int i;
|
2006-09-01 10:15:14 +02:00
|
|
|
FcBlanks *blanks = FcConfigGetBlanks (config);
|
|
|
|
FcCache *cache = NULL;
|
2007-10-18 13:13:51 +02:00
|
|
|
struct stat dir_stat;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
2006-08-28 06:53:48 +02:00
|
|
|
if (FcDebug () & FC_DBG_FONTSET)
|
2006-09-01 10:15:14 +02:00
|
|
|
printf ("cache scan dir %s\n", dir);
|
2006-08-28 06:53:48 +02:00
|
|
|
|
2002-09-01 00:17:32 +02:00
|
|
|
/* freed below */
|
2006-09-01 10:15:14 +02:00
|
|
|
file = (FcChar8 *) malloc (strlen ((char *) dir) + 1 + FC_MAX_FILE_LEN + 1);
|
2006-08-28 08:40:51 +02:00
|
|
|
if (!file) {
|
|
|
|
ret = FcFalse;
|
|
|
|
goto bail;
|
|
|
|
}
|
2002-02-15 00:34:13 +01:00
|
|
|
|
2006-09-01 10:15:14 +02:00
|
|
|
strcpy ((char *) file, (char *) dir);
|
2002-02-15 07:01:28 +01:00
|
|
|
strcat ((char *) file, "/");
|
|
|
|
base = file + strlen ((char *) file);
|
2002-02-15 00:34:13 +01:00
|
|
|
|
2003-03-12 23:15:39 +01:00
|
|
|
if (FcDebug () & FC_DBG_SCAN)
|
2006-09-01 10:15:14 +02:00
|
|
|
printf ("\tScanning dir %s\n", dir);
|
2003-03-12 23:15:39 +01:00
|
|
|
|
2006-09-01 10:15:14 +02:00
|
|
|
d = opendir ((char *) dir);
|
2002-02-15 00:34:13 +01:00
|
|
|
if (!d)
|
|
|
|
{
|
2002-05-21 19:06:22 +02:00
|
|
|
/* Don't complain about missing directories */
|
|
|
|
if (errno == ENOENT)
|
2006-08-28 08:40:51 +02:00
|
|
|
ret = FcTrue;
|
|
|
|
else
|
|
|
|
ret = FcFalse;
|
|
|
|
goto bail_1;
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
2007-10-18 13:13:51 +02:00
|
|
|
if (stat ((char *) dir, &dir_stat) < 0)
|
|
|
|
{
|
|
|
|
ret = FcFalse;
|
|
|
|
goto bail_1;
|
|
|
|
}
|
2005-08-30 07:55:13 +02:00
|
|
|
|
2006-09-01 10:15:14 +02:00
|
|
|
set = FcFontSetCreate();
|
|
|
|
if (!set)
|
2006-04-10 18:06:42 +02:00
|
|
|
{
|
|
|
|
ret = FcFalse;
|
|
|
|
goto bail0;
|
2005-08-30 07:55:13 +02:00
|
|
|
}
|
|
|
|
|
2006-09-01 10:15:14 +02:00
|
|
|
files = FcStrSetCreate ();
|
|
|
|
if (!files)
|
2006-04-10 18:06:42 +02:00
|
|
|
{
|
|
|
|
ret = FcFalse;
|
|
|
|
goto bail1;
|
|
|
|
}
|
2006-03-08 20:10:57 +01:00
|
|
|
while ((e = readdir (d)))
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2002-05-21 19:06:22 +02:00
|
|
|
if (e->d_name[0] != '.' && strlen (e->d_name) < FC_MAX_FILE_LEN)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2006-08-28 06:53:48 +02:00
|
|
|
strcpy ((char *) base, (char *) e->d_name);
|
2006-09-01 10:15:14 +02:00
|
|
|
if (!FcStrSetAdd (files, file)) {
|
|
|
|
ret = FcFalse;
|
|
|
|
goto bail2;
|
2006-04-10 18:06:42 +02:00
|
|
|
}
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
|
|
|
}
|
2006-09-01 10:15:14 +02:00
|
|
|
|
2006-08-28 06:53:48 +02:00
|
|
|
/*
|
2006-09-01 10:15:14 +02:00
|
|
|
* Sort files to make things prettier
|
2006-08-28 06:53:48 +02:00
|
|
|
*/
|
2006-09-01 10:15:14 +02:00
|
|
|
qsort(files->strs, files->num, sizeof(FcChar8 *), cmpstringp);
|
2006-08-28 06:53:48 +02:00
|
|
|
|
2006-09-01 10:15:14 +02:00
|
|
|
dirs = FcStrSetCreate ();
|
|
|
|
if (!dirs)
|
|
|
|
goto bail2;
|
2006-08-28 06:53:48 +02:00
|
|
|
|
2006-08-28 07:24:39 +02:00
|
|
|
/*
|
2006-09-01 10:15:14 +02:00
|
|
|
* Scan file files to build font patterns
|
2006-08-28 07:24:39 +02:00
|
|
|
*/
|
2006-09-01 10:15:14 +02:00
|
|
|
for (i = 0; i < files->num; i++)
|
|
|
|
FcFileScanConfig (set, dirs, blanks, files->strs[i], config);
|
|
|
|
|
2006-08-28 06:53:48 +02:00
|
|
|
/*
|
2006-09-01 10:15:14 +02:00
|
|
|
* Build the cache object
|
2006-08-28 06:53:48 +02:00
|
|
|
*/
|
2007-10-18 13:13:51 +02:00
|
|
|
cache = FcDirCacheBuild (set, dir, &dir_stat, dirs);
|
2006-09-01 10:15:14 +02:00
|
|
|
if (!cache)
|
|
|
|
goto bail3;
|
|
|
|
|
2006-08-28 06:53:48 +02:00
|
|
|
/*
|
2006-09-01 10:15:14 +02:00
|
|
|
* Write out the cache file, ignoring any troubles
|
2006-08-28 06:53:48 +02:00
|
|
|
*/
|
2006-09-01 10:15:14 +02:00
|
|
|
FcDirCacheWrite (cache, config);
|
2006-08-28 06:53:48 +02:00
|
|
|
|
|
|
|
bail3:
|
2006-09-01 10:15:14 +02:00
|
|
|
FcStrSetDestroy (dirs);
|
2006-04-10 18:06:42 +02:00
|
|
|
bail2:
|
2006-09-01 10:15:14 +02:00
|
|
|
FcStrSetDestroy (files);
|
2006-04-10 18:06:42 +02:00
|
|
|
bail1:
|
2006-09-01 10:15:14 +02:00
|
|
|
FcFontSetDestroy (set);
|
2006-04-10 18:06:42 +02:00
|
|
|
|
|
|
|
bail0:
|
|
|
|
closedir (d);
|
|
|
|
|
2006-08-28 08:40:51 +02:00
|
|
|
bail_1:
|
2006-04-10 18:06:42 +02:00
|
|
|
free (file);
|
2006-08-28 08:40:51 +02:00
|
|
|
bail:
|
2006-09-01 10:15:14 +02:00
|
|
|
return cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read (or construct) the cache for a directory
|
|
|
|
*/
|
|
|
|
FcCache *
|
|
|
|
FcDirCacheRead (const FcChar8 *dir, FcBool force, FcConfig *config)
|
|
|
|
{
|
|
|
|
FcCache *cache = NULL;
|
|
|
|
|
2006-09-02 23:52:37 +02:00
|
|
|
if (config && !FcConfigAcceptFilename (config, dir))
|
|
|
|
return NULL;
|
2006-09-01 10:15:14 +02:00
|
|
|
|
|
|
|
/* Try to use existing cache file */
|
|
|
|
if (!force)
|
2006-09-02 23:52:37 +02:00
|
|
|
cache = FcDirCacheLoad (dir, config, NULL);
|
2006-09-01 10:15:14 +02:00
|
|
|
|
|
|
|
/* Not using existing cache file, construct new cache */
|
|
|
|
if (!cache)
|
2006-09-02 23:52:37 +02:00
|
|
|
cache = FcDirCacheScan (dir, config);
|
2006-09-01 10:15:14 +02:00
|
|
|
|
|
|
|
return cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
FcBool
|
|
|
|
FcDirScanConfig (FcFontSet *set,
|
|
|
|
FcStrSet *dirs,
|
|
|
|
FcBlanks *blanks,
|
|
|
|
const FcChar8 *dir,
|
|
|
|
FcBool force,
|
|
|
|
FcConfig *config)
|
|
|
|
{
|
2006-09-15 09:23:40 +02:00
|
|
|
return FcFalse; /* XXX deprecated */
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
|
|
|
|
2003-05-07 18:13:24 +02:00
|
|
|
FcBool
|
|
|
|
FcDirScan (FcFontSet *set,
|
|
|
|
FcStrSet *dirs,
|
2006-08-28 06:53:48 +02:00
|
|
|
FcFileCache *cache, /* XXX unused */
|
2003-05-07 18:13:24 +02:00
|
|
|
FcBlanks *blanks,
|
|
|
|
const FcChar8 *dir,
|
|
|
|
FcBool force)
|
|
|
|
{
|
2006-09-15 09:23:40 +02:00
|
|
|
return FcFalse; /* XXX deprecated */
|
2003-05-07 18:13:24 +02:00
|
|
|
}
|
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
FcBool
|
2005-09-01 08:14:46 +02:00
|
|
|
FcDirSave (FcFontSet *set, FcStrSet * dirs, const FcChar8 *dir)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2006-09-01 10:15:14 +02:00
|
|
|
return FcFalse; /* XXX deprecated */
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
2006-09-05 11:24:01 +02:00
|
|
|
#define __fcdir__
|
|
|
|
#include "fcaliastail.h"
|
|
|
|
#undef __fcdir__
|