2002-02-15 00:34:13 +01:00
|
|
|
/*
|
2008-08-12 22:34:24 +02:00
|
|
|
* fontconfig/src/fcinit.c
|
2002-02-15 00:34:13 +01:00
|
|
|
*
|
2004-12-07 02:14:46 +01:00
|
|
|
* Copyright © 2001 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.
|
|
|
|
*
|
2009-03-12 21:00:08 +01:00
|
|
|
* THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
2002-02-15 00:34:13 +01: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
|
2002-02-15 00:34:13 +01: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "fcint.h"
|
2006-04-25 07:57:41 +02:00
|
|
|
#include <stdlib.h>
|
2002-02-15 00:34:13 +01:00
|
|
|
|
2002-05-21 19:06:22 +02:00
|
|
|
static FcConfig *
|
2002-02-15 00:34:13 +01:00
|
|
|
FcInitFallbackConfig (void)
|
|
|
|
{
|
|
|
|
FcConfig *config;
|
|
|
|
|
|
|
|
config = FcConfigCreate ();
|
|
|
|
if (!config)
|
|
|
|
goto bail0;
|
2002-05-21 19:48:15 +02:00
|
|
|
if (!FcConfigAddDir (config, (FcChar8 *) FC_DEFAULT_FONTS))
|
2002-02-15 00:34:13 +01:00
|
|
|
goto bail1;
|
2006-08-04 18:13:00 +02:00
|
|
|
if (!FcConfigAddCacheDir (config, (FcChar8 *) FC_CACHEDIR))
|
|
|
|
goto bail1;
|
2002-05-21 19:06:22 +02:00
|
|
|
return config;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
|
|
|
bail1:
|
|
|
|
FcConfigDestroy (config);
|
|
|
|
bail0:
|
2002-05-21 19:06:22 +02:00
|
|
|
return 0;
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
|
|
|
|
2002-05-24 01:00:46 +02:00
|
|
|
int
|
|
|
|
FcGetVersion (void)
|
|
|
|
{
|
|
|
|
return FC_VERSION;
|
|
|
|
}
|
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
/*
|
2002-05-21 19:06:22 +02:00
|
|
|
* Load the configuration files
|
2002-02-15 00:34:13 +01:00
|
|
|
*/
|
2002-05-21 19:06:22 +02:00
|
|
|
FcConfig *
|
|
|
|
FcInitLoadConfig (void)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2002-05-21 19:06:22 +02:00
|
|
|
FcConfig *config;
|
2002-02-15 00:34:13 +01:00
|
|
|
|
2005-11-24 20:38:05 +01:00
|
|
|
FcInitDebug ();
|
2002-02-15 00:34:13 +01:00
|
|
|
config = FcConfigCreate ();
|
|
|
|
if (!config)
|
|
|
|
return FcFalse;
|
|
|
|
|
|
|
|
if (!FcConfigParseAndLoad (config, 0, FcTrue))
|
|
|
|
{
|
|
|
|
FcConfigDestroy (config);
|
|
|
|
return FcInitFallbackConfig ();
|
|
|
|
}
|
2006-12-02 21:14:49 +01:00
|
|
|
|
|
|
|
if (config->cacheDirs && config->cacheDirs->num == 0)
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Fontconfig warning: no <cachedir> elements found. Check configuration.\n");
|
|
|
|
fprintf (stderr,
|
|
|
|
"Fontconfig warning: adding <cachedir>%s</cachedir>\n",
|
|
|
|
FC_CACHEDIR);
|
|
|
|
fprintf (stderr,
|
|
|
|
"Fontconfig warning: adding <cachedir>~/.fontconfig</cachedir>\n");
|
|
|
|
if (!FcConfigAddCacheDir (config, (FcChar8 *) FC_CACHEDIR) ||
|
|
|
|
!FcConfigAddCacheDir (config, (FcChar8 *) "~/.fontconfig"))
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Fontconfig error: out of memory");
|
|
|
|
FcConfigDestroy (config);
|
|
|
|
return FcInitFallbackConfig ();
|
|
|
|
}
|
|
|
|
}
|
2002-05-21 19:06:22 +02:00
|
|
|
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Load the configuration files and scan for available fonts
|
|
|
|
*/
|
|
|
|
FcConfig *
|
|
|
|
FcInitLoadConfigAndFonts (void)
|
|
|
|
{
|
|
|
|
FcConfig *config = FcInitLoadConfig ();
|
|
|
|
|
2005-11-24 20:38:05 +01:00
|
|
|
FcInitDebug ();
|
2002-05-21 19:06:22 +02:00
|
|
|
if (!config)
|
|
|
|
return 0;
|
|
|
|
if (!FcConfigBuildFonts (config))
|
|
|
|
{
|
|
|
|
FcConfigDestroy (config);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize the default library configuration
|
|
|
|
*/
|
|
|
|
FcBool
|
|
|
|
FcInit (void)
|
|
|
|
{
|
|
|
|
FcConfig *config;
|
|
|
|
|
|
|
|
if (_fcConfig)
|
|
|
|
return FcTrue;
|
|
|
|
config = FcInitLoadConfigAndFonts ();
|
|
|
|
if (!config)
|
2007-10-25 09:41:28 +02:00
|
|
|
return FcFalse;
|
2002-05-21 19:06:22 +02:00
|
|
|
FcConfigSetCurrent (config);
|
2002-08-22 09:36:45 +02:00
|
|
|
if (FcDebug() & FC_DBG_MEMORY)
|
|
|
|
FcMemReport ();
|
2002-05-21 19:06:22 +02:00
|
|
|
return FcTrue;
|
|
|
|
}
|
|
|
|
|
2003-08-15 21:45:20 +02:00
|
|
|
/*
|
|
|
|
* Free all library-allocated data structures.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
FcFini (void)
|
|
|
|
{
|
|
|
|
if (_fcConfig)
|
|
|
|
FcConfigDestroy (_fcConfig);
|
|
|
|
|
2005-07-15 20:49:12 +02:00
|
|
|
FcPatternFini ();
|
2006-09-04 22:59:58 +02:00
|
|
|
FcCacheFini ();
|
2008-05-04 10:26:40 +02:00
|
|
|
if (FcDebug() & FC_DBG_MEMORY)
|
|
|
|
FcMemReport ();
|
2003-08-15 21:45:20 +02:00
|
|
|
}
|
|
|
|
|
2002-05-21 19:06:22 +02:00
|
|
|
/*
|
|
|
|
* Reread the configuration and available font lists
|
|
|
|
*/
|
|
|
|
FcBool
|
|
|
|
FcInitReinitialize (void)
|
|
|
|
{
|
|
|
|
FcConfig *config;
|
|
|
|
|
|
|
|
config = FcInitLoadConfigAndFonts ();
|
|
|
|
if (!config)
|
|
|
|
return FcFalse;
|
2002-02-15 00:34:13 +01:00
|
|
|
FcConfigSetCurrent (config);
|
|
|
|
return FcTrue;
|
|
|
|
}
|
|
|
|
|
|
|
|
FcBool
|
2002-05-21 19:06:22 +02:00
|
|
|
FcInitBringUptoDate (void)
|
2002-02-15 00:34:13 +01:00
|
|
|
{
|
2002-05-21 19:06:22 +02:00
|
|
|
FcConfig *config = FcConfigGetCurrent ();
|
|
|
|
time_t now;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* rescanInterval == 0 disables automatic up to date
|
|
|
|
*/
|
|
|
|
if (config->rescanInterval == 0)
|
|
|
|
return FcTrue;
|
|
|
|
/*
|
|
|
|
* Check no more often than rescanInterval seconds
|
|
|
|
*/
|
|
|
|
now = time (0);
|
|
|
|
if (config->rescanTime + config->rescanInterval - now > 0)
|
|
|
|
return FcTrue;
|
|
|
|
/*
|
|
|
|
* If up to date, don't reload configuration
|
|
|
|
*/
|
|
|
|
if (FcConfigUptoDate (0))
|
|
|
|
return FcTrue;
|
|
|
|
return FcInitReinitialize ();
|
2002-02-15 00:34:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct {
|
2005-09-23 01:45:53 +02:00
|
|
|
char name[16];
|
2002-02-15 00:34:13 +01:00
|
|
|
int alloc_count;
|
|
|
|
int alloc_mem;
|
|
|
|
int free_count;
|
|
|
|
int free_mem;
|
|
|
|
} FcInUse[FC_MEM_NUM] = {
|
2002-09-01 00:17:32 +02:00
|
|
|
{ "charset" },
|
|
|
|
{ "charleaf" },
|
|
|
|
{ "fontset" },
|
|
|
|
{ "fontptr" },
|
|
|
|
{ "objectset" },
|
|
|
|
{ "objectptr" },
|
|
|
|
{ "matrix" },
|
|
|
|
{ "pattern" },
|
|
|
|
{ "patelt" },
|
|
|
|
{ "vallist" },
|
|
|
|
{ "substate" },
|
|
|
|
{ "string" },
|
|
|
|
{ "listbuck" },
|
|
|
|
{ "strset" },
|
|
|
|
{ "strlist" },
|
|
|
|
{ "config" },
|
|
|
|
{ "langset" },
|
|
|
|
{ "atomic" },
|
|
|
|
{ "blanks" },
|
|
|
|
{ "cache" },
|
|
|
|
{ "strbuf" },
|
|
|
|
{ "subst" },
|
|
|
|
{ "objecttype" },
|
|
|
|
{ "constant" },
|
|
|
|
{ "test" },
|
|
|
|
{ "expr" },
|
|
|
|
{ "vstack" },
|
|
|
|
{ "attr" },
|
|
|
|
{ "pstack" },
|
2004-12-07 02:36:26 +01:00
|
|
|
{ "staticstr" },
|
2002-02-15 00:34:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static int FcAllocCount, FcAllocMem;
|
|
|
|
static int FcFreeCount, FcFreeMem;
|
|
|
|
|
|
|
|
static int FcMemNotice = 1*1024*1024;
|
|
|
|
|
|
|
|
static int FcAllocNotify, FcFreeNotify;
|
|
|
|
|
|
|
|
void
|
|
|
|
FcMemReport (void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
printf ("Fc Memory Usage:\n");
|
|
|
|
printf ("\t Which Alloc Free Active\n");
|
|
|
|
printf ("\t count bytes count bytes count bytes\n");
|
|
|
|
for (i = 0; i < FC_MEM_NUM; i++)
|
2004-12-07 02:36:26 +01:00
|
|
|
printf ("%16.16s%8d%8d%8d%8d%8d%8d\n",
|
2002-02-15 00:34:13 +01:00
|
|
|
FcInUse[i].name,
|
|
|
|
FcInUse[i].alloc_count, FcInUse[i].alloc_mem,
|
|
|
|
FcInUse[i].free_count, FcInUse[i].free_mem,
|
|
|
|
FcInUse[i].alloc_count - FcInUse[i].free_count,
|
|
|
|
FcInUse[i].alloc_mem - FcInUse[i].free_mem);
|
2004-12-07 02:36:26 +01:00
|
|
|
printf ("%16.16s%8d%8d%8d%8d%8d%8d\n",
|
2002-02-15 00:34:13 +01:00
|
|
|
"Total",
|
|
|
|
FcAllocCount, FcAllocMem,
|
|
|
|
FcFreeCount, FcFreeMem,
|
|
|
|
FcAllocCount - FcFreeCount,
|
|
|
|
FcAllocMem - FcFreeMem);
|
|
|
|
FcAllocNotify = 0;
|
|
|
|
FcFreeNotify = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
FcMemAlloc (int kind, int size)
|
|
|
|
{
|
|
|
|
if (FcDebug() & FC_DBG_MEMORY)
|
|
|
|
{
|
|
|
|
FcInUse[kind].alloc_count++;
|
|
|
|
FcInUse[kind].alloc_mem += size;
|
|
|
|
FcAllocCount++;
|
|
|
|
FcAllocMem += size;
|
|
|
|
FcAllocNotify += size;
|
|
|
|
if (FcAllocNotify > FcMemNotice)
|
|
|
|
FcMemReport ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
FcMemFree (int kind, int size)
|
|
|
|
{
|
|
|
|
if (FcDebug() & FC_DBG_MEMORY)
|
|
|
|
{
|
|
|
|
FcInUse[kind].free_count++;
|
|
|
|
FcInUse[kind].free_mem += size;
|
|
|
|
FcFreeCount++;
|
|
|
|
FcFreeMem += size;
|
|
|
|
FcFreeNotify += size;
|
|
|
|
if (FcFreeNotify > FcMemNotice)
|
|
|
|
FcMemReport ();
|
|
|
|
}
|
|
|
|
}
|
2006-09-05 11:24:01 +02:00
|
|
|
#define __fcinit__
|
|
|
|
#include "fcaliastail.h"
|
|
|
|
#undef __fcinit__
|