Don't call FcStat when the alias has already been added

Similar changes to 3a3d6ea applies to fclist and fcmatch.
This commit is contained in:
Akira TAGOH 2017-11-15 23:24:24 +09:00
parent 665a5d3044
commit 2f486f6584
2 changed files with 42 additions and 50 deletions

View File

@ -450,17 +450,13 @@ FcListAppend (FcListHashTable *table,
{ {
if (FcRefIsConst (&font->ref) && !strcmp (os->objects[o], FC_FILE)) if (FcRefIsConst (&font->ref) && !strcmp (os->objects[o], FC_FILE))
{ {
struct stat statb; FcChar8 *dir, *alias;
FcConfig *config = FcConfigGetCurrent (); /* FIXME: this may need to be exported as API? */
for (v = FcPatternEltValues (e); v->value.type != FcTypeString; v = FcValueListNext (v)); for (v = FcPatternEltValues (e); v->value.type != FcTypeString; v = FcValueListNext (v));
if (!v) if (!v)
goto bail2; goto bail2;
if (FcStat (FcValueString (&v->value), &statb) < 0) dir = FcStrDirname (FcValueString (&v->value));
{
FcChar8 *dir = FcStrDirname (FcValueString (&v->value));
FcChar8 *alias;
FcConfig *config = FcConfigGetCurrent (); /* FIXME: this may need to be exported as API? */
if (FcHashTableFind (config->alias_table, dir, (void **) &alias)) if (FcHashTableFind (config->alias_table, dir, (void **) &alias))
{ {
FcChar8 *base = FcStrBasename (FcValueString (&v->value)); FcChar8 *base = FcStrBasename (FcValueString (&v->value));
@ -487,7 +483,6 @@ FcListAppend (FcListHashTable *table,
else else
FcStrFree (dir); FcStrFree (dir);
} }
}
for (v = FcPatternEltValues(e), idx = 0; v; for (v = FcPatternEltValues(e), idx = 0; v;
v = FcValueListNext(v), ++idx) v = FcValueListNext(v), ++idx)
{ {

View File

@ -646,15 +646,13 @@ FcFontRenderPrepare (FcConfig *config,
if (FcRefIsConst (&font->ref) && fe->object == FC_FILE_OBJECT) if (FcRefIsConst (&font->ref) && fe->object == FC_FILE_OBJECT)
{ {
FcValueListPtr l = FcPatternEltValues (fe); FcValueListPtr l = FcPatternEltValues (fe);
struct stat statb; FcChar8 *dir, *alias;
while (l->value.type != FcTypeString) while (l->value.type != FcTypeString)
l = FcValueListNext (l); l = FcValueListNext (l);
if (FcStat (FcValueString (&l->value), &statb) < 0) if (!l)
{ goto bail0;
FcChar8 *dir = FcStrDirname (FcValueString (&l->value)); dir = FcStrDirname (FcValueString (&l->value));
FcChar8 *alias;
if (FcHashTableFind (config->alias_table, dir, (void **) &alias)) if (FcHashTableFind (config->alias_table, dir, (void **) &alias))
{ {
FcChar8 *base = FcStrBasename (FcValueString (&l->value)); FcChar8 *base = FcStrBasename (FcValueString (&l->value));
@ -676,7 +674,6 @@ FcFontRenderPrepare (FcConfig *config,
else else
FcStrFree (dir); FcStrFree (dir);
} }
}
FcPatternObjectListAdd (new, fe->object, FcPatternObjectListAdd (new, fe->object,
FcValueListDuplicate (FcPatternEltValues (fe)), FcValueListDuplicate (FcPatternEltValues (fe)),
FcTrue); FcTrue);