2 * $XFree86: xc/lib/fontconfig/src/fcinit.c,v 1.5 2002/05/21 17:48:15 keithp Exp $
4 * Copyright © 2001 Keith Packard, member of The XFree86 Project, Inc.
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 FcInitFallbackConfig (void)
33 config = FcConfigCreate ();
36 if (!FcConfigAddDir (config, (FcChar8 *) FC_DEFAULT_FONTS))
41 FcConfigDestroy (config);
53 * Load the configuration files
56 FcInitLoadConfig (void)
60 config = FcConfigCreate ();
64 if (!FcConfigParseAndLoad (config, 0, FcTrue))
66 FcConfigDestroy (config);
67 return FcInitFallbackConfig ();
74 * Load the configuration files and scan for available fonts
77 FcInitLoadConfigAndFonts (void)
79 FcConfig *config = FcInitLoadConfig ();
83 if (!FcConfigBuildFonts (config))
85 FcConfigDestroy (config);
92 * Initialize the default library configuration
101 config = FcInitLoadConfigAndFonts ();
104 FcConfigSetCurrent (config);
109 * Reread the configuration and available font lists
112 FcInitReinitialize (void)
116 config = FcInitLoadConfigAndFonts ();
119 FcConfigSetCurrent (config);
124 FcInitBringUptoDate (void)
126 FcConfig *config = FcConfigGetCurrent ();
130 * rescanInterval == 0 disables automatic up to date
132 if (config->rescanInterval == 0)
135 * Check no more often than rescanInterval seconds
138 if (config->rescanTime + config->rescanInterval - now > 0)
141 * If up to date, don't reload configuration
143 if (FcConfigUptoDate (0))
145 return FcInitReinitialize ();
154 } FcInUse[FC_MEM_NUM] = {
156 { "charnode", 0 ,0 },
159 { "objectset", 0, 0 },
160 { "objectptr", 0, 0 },
165 { "substate", 0, 0 },
167 { "listbuck", 0, 0 },
170 static int FcAllocCount, FcAllocMem;
171 static int FcFreeCount, FcFreeMem;
173 static int FcMemNotice = 1*1024*1024;
175 static int FcAllocNotify, FcFreeNotify;
181 printf ("Fc Memory Usage:\n");
182 printf ("\t Which Alloc Free Active\n");
183 printf ("\t count bytes count bytes count bytes\n");
184 for (i = 0; i < FC_MEM_NUM; i++)
185 printf ("\t%8.8s%8d%8d%8d%8d%8d%8d\n",
187 FcInUse[i].alloc_count, FcInUse[i].alloc_mem,
188 FcInUse[i].free_count, FcInUse[i].free_mem,
189 FcInUse[i].alloc_count - FcInUse[i].free_count,
190 FcInUse[i].alloc_mem - FcInUse[i].free_mem);
191 printf ("\t%8.8s%8d%8d%8d%8d%8d%8d\n",
193 FcAllocCount, FcAllocMem,
194 FcFreeCount, FcFreeMem,
195 FcAllocCount - FcFreeCount,
196 FcAllocMem - FcFreeMem);
202 FcMemAlloc (int kind, int size)
204 if (FcDebug() & FC_DBG_MEMORY)
206 FcInUse[kind].alloc_count++;
207 FcInUse[kind].alloc_mem += size;
210 FcAllocNotify += size;
211 if (FcAllocNotify > FcMemNotice)
217 FcMemFree (int kind, int size)
219 if (FcDebug() & FC_DBG_MEMORY)
221 FcInUse[kind].free_count++;
222 FcInUse[kind].free_mem += size;
225 FcFreeNotify += size;
226 if (FcFreeNotify > FcMemNotice)