2 * Copyright 2014 Google Inc.
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
8 #include "SkDataTable.h"
9 #include "SkFontDescriptor.h"
10 #include "SkFontHost_FreeType_common.h"
11 #include "SkFontMgr.h"
12 #include "SkFontStyle.h"
16 #include "SkTDArray.h"
18 #include "SkTypefaceCache.h"
21 #include <fontconfig/fontconfig.h>
23 // FC_POSTSCRIPT_NAME was added with b561ff20 which ended up in 2.10.92
24 // Ubuntu 12.04 is on 2.8.0, 13.10 is on 2.10.93
25 // Debian 7 is on 2.9.0, 8 is on 2.11
26 // OpenSUSE 12.2 is on 2.9.0, 12.3 is on 2.10.2, 13.1 2.11.0
27 // Fedora 19 is on 2.10.93
28 #ifndef FC_POSTSCRIPT_NAME
29 # define FC_POSTSCRIPT_NAME "postscriptname"
36 /** Since FontConfig is poorly documented, this gives a high level overview:
38 * FcConfig is a handle to a FontConfig configuration instance. Each 'configuration' is independent
39 * from any others which may exist. There exists a default global configuration which is created
40 * and destroyed by FcInit and FcFini, but this default should not normally be used.
41 * Instead, one should use FcConfigCreate and FcInit* to have a named local state.
43 * FcPatterns are {objectName -> [element]} (maps from object names to a list of elements).
44 * Each element is some internal data plus an FcValue which is a variant (a union with a type tag).
45 * Lists of elements are not typed, except by convention. Any collection of FcValues must be
46 * assumed to be heterogeneous by the code, but the code need not do anything particularly
47 * interesting if the values go against convention.
49 * Somewhat like DirectWrite, FontConfig supports synthetics through FC_EMBOLDEN and FC_MATRIX.
50 * Like all synthetic information, such information must be passed with the font data.
55 // Fontconfig is not threadsafe before 2.10.91. Before that, we lock with a global mutex.
56 // See http://skbug.com/1497 for background.
57 SK_DECLARE_STATIC_MUTEX(gFCMutex);
60 void *CreateThreadFcLocked() { return SkNEW_ARGS(bool, (false)); }
61 void DeleteThreadFcLocked(void* v) { SkDELETE(static_cast<bool*>(v)); }
62 # define THREAD_FC_LOCKED \
63 static_cast<bool*>(SkTLS::Get(CreateThreadFcLocked, DeleteThreadFcLocked))
67 // Assume FcGetVersion() has always been thread safe.
70 if (FcGetVersion() < 21091) {
73 SkDEBUGCODE(bool* threadLocked = THREAD_FC_LOCKED);
74 SkASSERT(false == *threadLocked);
75 SkDEBUGCODE(*threadLocked = true);
81 if (FcGetVersion() < 21091) {
84 SkDEBUGCODE(*THREAD_FC_LOCKED = false);
88 static void AssertHeld() { SkDEBUGCODE(
89 if (FcGetVersion() < 21091) {
90 gFCMutex.assertHeld();
92 SkASSERT(true == *THREAD_FC_LOCKED);
99 template<typename T, void (*D)(T*)> void FcTDestroy(T* t) {
100 FCLocker::AssertHeld();
103 template <typename T, T* (*C)(), void (*D)(T*)> class SkAutoFc
104 : public SkAutoTCallVProc<T, FcTDestroy<T, D> > {
106 SkAutoFc() : SkAutoTCallVProc<T, FcTDestroy<T, D> >(C()) {
107 T* obj = this->operator T*();
108 SK_ALWAYSBREAK(NULL != obj);
110 explicit SkAutoFc(T* obj) : SkAutoTCallVProc<T, FcTDestroy<T, D> >(obj) {}
113 typedef SkAutoFc<FcCharSet, FcCharSetCreate, FcCharSetDestroy> SkAutoFcCharSet;
114 typedef SkAutoFc<FcConfig, FcConfigCreate, FcConfigDestroy> SkAutoFcConfig;
115 typedef SkAutoFc<FcFontSet, FcFontSetCreate, FcFontSetDestroy> SkAutoFcFontSet;
116 typedef SkAutoFc<FcLangSet, FcLangSetCreate, FcLangSetDestroy> SkAutoFcLangSet;
117 typedef SkAutoFc<FcObjectSet, FcObjectSetCreate, FcObjectSetDestroy> SkAutoFcObjectSet;
118 typedef SkAutoFc<FcPattern, FcPatternCreate, FcPatternDestroy> SkAutoFcPattern;
120 static int get_int(FcPattern* pattern, const char object[], int missing) {
122 if (FcPatternGetInteger(pattern, object, 0, &value) != FcResultMatch) {
128 static const char* get_string(FcPattern* pattern, const char object[], const char* missing = "") {
130 if (FcPatternGetString(pattern, object, 0, &value) != FcResultMatch) {
133 return (const char*)value;
138 kIsStrong_WeakReturn,
141 /** Ideally there would exist a call like
142 * FcResult FcPatternIsWeak(pattern, object, id, FcBool* isWeak);
144 * However, there is no such call and as of Fc 2.11.0 even FcPatternEquals ignores the weak bit.
145 * Currently, the only reliable way of finding the weak bit is by its effect on matching.
146 * The weak bit only affects the matching of FC_FAMILY and FC_POSTSCRIPT_NAME object values.
147 * A element with the weak bit is scored after FC_LANG, without the weak bit is scored before.
148 * Note that the weak bit is stored on the element, not on the value it holds.
150 static SkWeakReturn is_weak(FcPattern* pattern, const char object[], int id) {
151 FCLocker::AssertHeld();
155 // Create a copy of the pattern with only the value 'pattern'['object'['id']] in it.
156 // Internally, FontConfig pattern objects are linked lists, so faster to remove from head.
157 SkAutoFcObjectSet requestedObjectOnly(FcObjectSetBuild(object, NULL));
158 SkAutoFcPattern minimal(FcPatternFilter(pattern, requestedObjectOnly));
160 for (int i = 0; hasId && i < id; ++i) {
161 hasId = FcPatternRemove(minimal, object, 0);
164 return kNoId_WeakReturn;
167 result = FcPatternGet(minimal, object, 0, &value);
168 if (result != FcResultMatch) {
169 return kNoId_WeakReturn;
172 hasId = FcPatternRemove(minimal, object, 1);
175 // Create a font set with two patterns.
176 // 1. the same 'object' as minimal and a lang object with only 'nomatchlang'.
177 // 2. a different 'object' from minimal and a lang object with only 'matchlang'.
178 SkAutoFcFontSet fontSet;
180 SkAutoFcLangSet strongLangSet;
181 FcLangSetAdd(strongLangSet, (const FcChar8*)"nomatchlang");
182 SkAutoFcPattern strong(FcPatternDuplicate(minimal));
183 FcPatternAddLangSet(strong, FC_LANG, strongLangSet);
185 SkAutoFcLangSet weakLangSet;
186 FcLangSetAdd(weakLangSet, (const FcChar8*)"matchlang");
187 SkAutoFcPattern weak;
188 FcPatternAddString(weak, object, (const FcChar8*)"nomatchstring");
189 FcPatternAddLangSet(weak, FC_LANG, weakLangSet);
191 FcFontSetAdd(fontSet, strong.detach());
192 FcFontSetAdd(fontSet, weak.detach());
194 // Add 'matchlang' to the copy of the pattern.
195 FcPatternAddLangSet(minimal, FC_LANG, weakLangSet);
197 // Run a match against the copy of the pattern.
198 // If the 'id' was weak, then we should match the pattern with 'matchlang'.
199 // If the 'id' was strong, then we should match the pattern with 'nomatchlang'.
201 // Note that this config is only used for FcFontRenderPrepare, which we don't even want.
202 // However, there appears to be no way to match/sort without it.
203 SkAutoFcConfig config;
204 FcFontSet* fontSets[1] = { fontSet };
205 SkAutoFcPattern match(FcFontSetMatch(config, fontSets, SK_ARRAY_COUNT(fontSets),
208 FcLangSet* matchLangSet;
209 FcPatternGetLangSet(match, FC_LANG, 0, &matchLangSet);
210 return FcLangEqual == FcLangSetHasLang(matchLangSet, (const FcChar8*)"matchlang")
211 ? kIsWeak_WeakReturn : kIsStrong_WeakReturn;
214 /** Removes weak elements from either FC_FAMILY or FC_POSTSCRIPT_NAME objects in the property.
215 * This can be quite expensive, and should not be used more than once per font lookup.
216 * This removes all of the weak elements after the last strong element.
218 static void remove_weak(FcPattern* pattern, const char object[]) {
219 FCLocker::AssertHeld();
221 SkAutoFcObjectSet requestedObjectOnly(FcObjectSetBuild(object, NULL));
222 SkAutoFcPattern minimal(FcPatternFilter(pattern, requestedObjectOnly));
224 int lastStrongId = -1;
227 for (int id = 0; ; ++id) {
228 result = is_weak(minimal, object, 0);
229 if (kNoId_WeakReturn == result) {
233 if (kIsStrong_WeakReturn == result) {
236 SkAssertResult(FcPatternRemove(minimal, object, 0));
239 // If they were all weak, then leave the pattern alone.
240 if (lastStrongId < 0) {
244 // Remove everything after the last strong.
245 for (int id = lastStrongId + 1; id < numIds; ++id) {
246 SkAssertResult(FcPatternRemove(pattern, object, lastStrongId + 1));
250 static int map_range(SkFixed value,
251 SkFixed old_min, SkFixed old_max,
252 SkFixed new_min, SkFixed new_max)
254 SkASSERT(old_min < old_max);
255 SkASSERT(new_min <= new_max);
256 return new_min + SkMulDiv(value - old_min, new_max - new_min, old_max - old_min);
259 static int ave(SkFixed a, SkFixed b) {
260 return SkFixedAve(a, b);
268 static SkFixed map_ranges_fixed(SkFixed val, MapRanges const ranges[], int rangesCount) {
270 if (val < ranges[0].old_val) {
271 return ranges[0].new_val;
274 // Linear from [i] to ave([i], [i+1]), then from ave([i], [i+1]) to [i+1]
275 for (int i = 0; i < rangesCount - 1; ++i) {
276 if (val < ave(ranges[i].old_val, ranges[i+1].old_val)) {
277 return map_range(val, ranges[i].old_val, ave(ranges[i].old_val, ranges[i+1].old_val),
278 ranges[i].new_val, ave(ranges[i].new_val, ranges[i+1].new_val));
280 if (val < ranges[i+1].old_val) {
281 return map_range(val, ave(ranges[i].old_val, ranges[i+1].old_val), ranges[i+1].old_val,
282 ave(ranges[i].new_val, ranges[i+1].new_val), ranges[i+1].new_val);
287 // if (fcweight < Inf)
288 return ranges[rangesCount-1].new_val;
291 static int map_ranges(int val, MapRanges const ranges[], int rangesCount) {
292 return SkFixedRoundToInt(map_ranges_fixed(SkIntToFixed(val), ranges, rangesCount));
295 template<int n> struct SkTFixed {
296 SK_COMPILE_ASSERT(-32768 <= n && n <= 32767, SkTFixed_n_not_in_range);
297 static const SkFixed value = static_cast<SkFixed>(n << 16);
300 static SkFontStyle skfontstyle_from_fcpattern(FcPattern* pattern) {
301 typedef SkFontStyle SkFS;
303 static const MapRanges weightRanges[] = {
304 { SkTFixed<FC_WEIGHT_THIN>::value, SkTFixed<SkFS::kThin_Weight>::value },
305 { SkTFixed<FC_WEIGHT_EXTRALIGHT>::value, SkTFixed<SkFS::kExtraLight_Weight>::value },
306 { SkTFixed<FC_WEIGHT_LIGHT>::value, SkTFixed<SkFS::kLight_Weight>::value },
307 { SkTFixed<FC_WEIGHT_REGULAR>::value, SkTFixed<SkFS::kNormal_Weight>::value },
308 { SkTFixed<FC_WEIGHT_MEDIUM>::value, SkTFixed<SkFS::kMedium_Weight>::value },
309 { SkTFixed<FC_WEIGHT_DEMIBOLD>::value, SkTFixed<SkFS::kSemiBold_Weight>::value },
310 { SkTFixed<FC_WEIGHT_BOLD>::value, SkTFixed<SkFS::kBold_Weight>::value },
311 { SkTFixed<FC_WEIGHT_EXTRABOLD>::value, SkTFixed<SkFS::kExtraBold_Weight>::value },
312 { SkTFixed<FC_WEIGHT_BLACK>::value, SkTFixed<SkFS::kBlack_Weight>::value },
313 { SkTFixed<FC_WEIGHT_EXTRABLACK>::value, SkTFixed<1000>::value },
315 int weight = map_ranges(get_int(pattern, FC_WEIGHT, FC_WEIGHT_REGULAR),
316 weightRanges, SK_ARRAY_COUNT(weightRanges));
318 static const MapRanges widthRanges[] = {
319 { SkTFixed<FC_WIDTH_ULTRACONDENSED>::value, SkTFixed<SkFS::kUltraCondensed_Width>::value },
320 { SkTFixed<FC_WIDTH_EXTRACONDENSED>::value, SkTFixed<SkFS::kExtraCondensed_Width>::value },
321 { SkTFixed<FC_WIDTH_CONDENSED>::value, SkTFixed<SkFS::kCondensed_Width>::value },
322 { SkTFixed<FC_WIDTH_SEMICONDENSED>::value, SkTFixed<SkFS::kSemiCondensed_Width>::value },
323 { SkTFixed<FC_WIDTH_NORMAL>::value, SkTFixed<SkFS::kNormal_Width>::value },
324 { SkTFixed<FC_WIDTH_SEMIEXPANDED>::value, SkTFixed<SkFS::kSemiExpanded_Width>::value },
325 { SkTFixed<FC_WIDTH_EXPANDED>::value, SkTFixed<SkFS::kExpanded_Width>::value },
326 { SkTFixed<FC_WIDTH_EXTRAEXPANDED>::value, SkTFixed<SkFS::kExtraExpanded_Width>::value },
327 { SkTFixed<FC_WIDTH_ULTRAEXPANDED>::value, SkTFixed<SkFS::kUltaExpanded_Width>::value },
329 int width = map_ranges(get_int(pattern, FC_WIDTH, FC_WIDTH_NORMAL),
330 widthRanges, SK_ARRAY_COUNT(widthRanges));
332 SkFS::Slant slant = get_int(pattern, FC_SLANT, FC_SLANT_ROMAN) > 0
333 ? SkFS::kItalic_Slant
334 : SkFS::kUpright_Slant;
336 return SkFontStyle(weight, width, slant);
339 static void fcpattern_from_skfontstyle(SkFontStyle style, FcPattern* pattern) {
340 FCLocker::AssertHeld();
342 typedef SkFontStyle SkFS;
344 static const MapRanges weightRanges[] = {
345 { SkTFixed<SkFS::kThin_Weight>::value, SkTFixed<FC_WEIGHT_THIN>::value },
346 { SkTFixed<SkFS::kExtraLight_Weight>::value, SkTFixed<FC_WEIGHT_EXTRALIGHT>::value },
347 { SkTFixed<SkFS::kLight_Weight>::value, SkTFixed<FC_WEIGHT_LIGHT>::value },
348 { SkTFixed<SkFS::kNormal_Weight>::value, SkTFixed<FC_WEIGHT_REGULAR>::value },
349 { SkTFixed<SkFS::kMedium_Weight>::value, SkTFixed<FC_WEIGHT_MEDIUM>::value },
350 { SkTFixed<SkFS::kSemiBold_Weight>::value, SkTFixed<FC_WEIGHT_DEMIBOLD>::value },
351 { SkTFixed<SkFS::kBold_Weight>::value, SkTFixed<FC_WEIGHT_BOLD>::value },
352 { SkTFixed<SkFS::kExtraBold_Weight>::value, SkTFixed<FC_WEIGHT_EXTRABOLD>::value },
353 { SkTFixed<SkFS::kBlack_Weight>::value, SkTFixed<FC_WEIGHT_BLACK>::value },
354 { SkTFixed<1000>::value, SkTFixed<FC_WEIGHT_EXTRABLACK>::value },
356 int weight = map_ranges(style.weight(), weightRanges, SK_ARRAY_COUNT(weightRanges));
358 static const MapRanges widthRanges[] = {
359 { SkTFixed<SkFS::kUltraCondensed_Width>::value, SkTFixed<FC_WIDTH_ULTRACONDENSED>::value },
360 { SkTFixed<SkFS::kExtraCondensed_Width>::value, SkTFixed<FC_WIDTH_EXTRACONDENSED>::value },
361 { SkTFixed<SkFS::kCondensed_Width>::value, SkTFixed<FC_WIDTH_CONDENSED>::value },
362 { SkTFixed<SkFS::kSemiCondensed_Width>::value, SkTFixed<FC_WIDTH_SEMICONDENSED>::value },
363 { SkTFixed<SkFS::kNormal_Width>::value, SkTFixed<FC_WIDTH_NORMAL>::value },
364 { SkTFixed<SkFS::kSemiExpanded_Width>::value, SkTFixed<FC_WIDTH_SEMIEXPANDED>::value },
365 { SkTFixed<SkFS::kExpanded_Width>::value, SkTFixed<FC_WIDTH_EXPANDED>::value },
366 { SkTFixed<SkFS::kExtraExpanded_Width>::value, SkTFixed<FC_WIDTH_EXTRAEXPANDED>::value },
367 { SkTFixed<SkFS::kUltaExpanded_Width>::value, SkTFixed<FC_WIDTH_ULTRAEXPANDED>::value },
369 int width = map_ranges(style.width(), widthRanges, SK_ARRAY_COUNT(widthRanges));
371 FcPatternAddInteger(pattern, FC_WEIGHT, weight);
372 FcPatternAddInteger(pattern, FC_WIDTH, width);
373 FcPatternAddInteger(pattern, FC_SLANT, style.isItalic() ? FC_SLANT_ITALIC : FC_SLANT_ROMAN);
376 class SkTypeface_stream : public SkTypeface_FreeType {
378 /** @param stream does not take ownership of the reference, does take ownership of the stream.*/
379 SkTypeface_stream(const SkFontStyle& style, bool fixedWidth, int index, SkStreamAsset* stream)
380 : INHERITED(style, SkTypefaceCache::NewFontID(), fixedWidth)
385 void onGetFamilyName(SkString* familyName) const override {
389 void onGetFontDescriptor(SkFontDescriptor* desc, bool* serialize) const override {
390 desc->setFontIndex(fIndex);
394 SkStreamAsset* onOpenStream(int* ttcIndex) const override {
396 return fStream->duplicate();
400 SkAutoTDelete<SkStreamAsset> fStream;
403 typedef SkTypeface_FreeType INHERITED;
406 class SkTypeface_fontconfig : public SkTypeface_FreeType {
408 /** @param pattern takes ownership of the reference. */
409 static SkTypeface_fontconfig* Create(FcPattern* pattern) {
410 return SkNEW_ARGS(SkTypeface_fontconfig, (pattern));
412 mutable SkAutoFcPattern fPattern;
414 void onGetFamilyName(SkString* familyName) const override {
415 *familyName = get_string(fPattern, FC_FAMILY);
418 void onGetFontDescriptor(SkFontDescriptor* desc, bool* serialize) const override {
420 desc->setFamilyName(get_string(fPattern, FC_FAMILY));
421 desc->setFullName(get_string(fPattern, FC_FULLNAME));
422 desc->setPostscriptName(get_string(fPattern, FC_POSTSCRIPT_NAME));
423 desc->setFontFileName(get_string(fPattern, FC_FILE));
424 desc->setFontIndex(get_int(fPattern, FC_INDEX, 0));
428 SkStreamAsset* onOpenStream(int* ttcIndex) const override {
430 *ttcIndex = get_int(fPattern, FC_INDEX, 0);
431 return SkStream::NewFromFile(get_string(fPattern, FC_FILE));
434 virtual ~SkTypeface_fontconfig() {
435 // Hold the lock while unrefing the pattern.
441 /** @param pattern takes ownership of the reference. */
442 SkTypeface_fontconfig(FcPattern* pattern)
443 : INHERITED(skfontstyle_from_fcpattern(pattern),
444 SkTypefaceCache::NewFontID(),
445 FC_PROPORTIONAL != get_int(pattern, FC_SPACING, FC_PROPORTIONAL))
449 typedef SkTypeface_FreeType INHERITED;
452 class SkFontMgr_fontconfig : public SkFontMgr {
453 mutable SkAutoFcConfig fFC;
454 SkAutoTUnref<SkDataTable> fFamilyNames;
455 SkTypeface_FreeType::Scanner fScanner;
457 class StyleSet : public SkFontStyleSet {
459 /** @param parent does not take ownership of the reference.
460 * @param fontSet takes ownership of the reference.
462 StyleSet(const SkFontMgr_fontconfig* parent, FcFontSet* fontSet)
463 : fFontMgr(SkRef(parent)), fFontSet(fontSet)
466 virtual ~StyleSet() {
467 // Hold the lock while unrefing the font set.
472 int count() override { return fFontSet->nfont; }
474 void getStyle(int index, SkFontStyle* style, SkString* styleName) override {
475 if (index < 0 || fFontSet->nfont <= index) {
481 *style = skfontstyle_from_fcpattern(fFontSet->fonts[index]);
484 *styleName = get_string(fFontSet->fonts[index], FC_STYLE);
488 SkTypeface* createTypeface(int index) override {
491 FcPattern* match = fFontSet->fonts[index];
492 return fFontMgr->createTypefaceFromFcPattern(match);
495 SkTypeface* matchStyle(const SkFontStyle& style) override {
498 SkAutoFcPattern pattern;
499 fcpattern_from_skfontstyle(style, pattern);
500 FcConfigSubstitute(fFontMgr->fFC, pattern, FcMatchPattern);
501 FcDefaultSubstitute(pattern);
504 FcFontSet* fontSets[1] = { fFontSet };
505 SkAutoFcPattern match(FcFontSetMatch(fFontMgr->fFC,
506 fontSets, SK_ARRAY_COUNT(fontSets),
512 return fFontMgr->createTypefaceFromFcPattern(match);
516 SkAutoTUnref<const SkFontMgr_fontconfig> fFontMgr;
517 SkAutoFcFontSet fFontSet;
520 static bool FindName(const SkTDArray<const char*>& list, const char* str) {
521 int count = list.count();
522 for (int i = 0; i < count; ++i) {
523 if (!strcmp(list[i], str)) {
530 static SkDataTable* GetFamilyNames(FcConfig* fcconfig) {
533 SkTDArray<const char*> names;
534 SkTDArray<size_t> sizes;
536 static const FcSetName fcNameSet[] = { FcSetSystem, FcSetApplication };
537 for (int setIndex = 0; setIndex < (int)SK_ARRAY_COUNT(fcNameSet); ++setIndex) {
538 // Return value of FcConfigGetFonts must not be destroyed.
539 FcFontSet* allFonts(FcConfigGetFonts(fcconfig, fcNameSet[setIndex]));
540 if (NULL == allFonts) {
544 for (int fontIndex = 0; fontIndex < allFonts->nfont; ++fontIndex) {
545 FcPattern* current = allFonts->fonts[fontIndex];
546 for (int id = 0; ; ++id) {
547 FcChar8* fcFamilyName;
548 FcResult result = FcPatternGetString(current, FC_FAMILY, id, &fcFamilyName);
549 if (FcResultNoId == result) {
552 if (FcResultMatch != result) {
555 const char* familyName = reinterpret_cast<const char*>(fcFamilyName);
556 if (familyName && !FindName(names, familyName)) {
557 *names.append() = familyName;
558 *sizes.append() = strlen(familyName) + 1;
564 return SkDataTable::NewCopyArrays((void const *const *)names.begin(),
565 sizes.begin(), names.count());
568 static bool FindByFcPattern(SkTypeface* cached, const SkFontStyle&, void* ctx) {
569 SkTypeface_fontconfig* cshFace = static_cast<SkTypeface_fontconfig*>(cached);
570 FcPattern* ctxPattern = static_cast<FcPattern*>(ctx);
571 return FcTrue == FcPatternEqual(cshFace->fPattern, ctxPattern);
574 mutable SkMutex fTFCacheMutex;
575 mutable SkTypefaceCache fTFCache;
576 /** Creates a typeface using a typeface cache.
577 * @param pattern a complete pattern from FcFontRenderPrepare.
579 SkTypeface* createTypefaceFromFcPattern(FcPattern* pattern) const {
580 FCLocker::AssertHeld();
581 SkAutoMutexAcquire ama(fTFCacheMutex);
582 SkTypeface* face = fTFCache.findByProcAndRef(FindByFcPattern, pattern);
584 FcPatternReference(pattern);
585 face = SkTypeface_fontconfig::Create(pattern);
587 fTFCache.add(face, SkFontStyle());
594 SkFontMgr_fontconfig()
595 : fFC(FcInitLoadConfigAndFonts())
596 , fFamilyNames(GetFamilyNames(fFC)) { }
598 /** Takes control of the reference to 'config'. */
599 explicit SkFontMgr_fontconfig(FcConfig* config)
601 , fFamilyNames(GetFamilyNames(fFC)) { }
603 virtual ~SkFontMgr_fontconfig() {
604 // Hold the lock while unrefing the config.
610 int onCountFamilies() const override {
611 return fFamilyNames->count();
614 void onGetFamilyName(int index, SkString* familyName) const override {
615 familyName->set(fFamilyNames->atStr(index));
618 SkFontStyleSet* onCreateStyleSet(int index) const override {
619 return this->onMatchFamily(fFamilyNames->atStr(index));
622 /** True if any string object value in the font is the same
623 * as a string object value in the pattern.
625 static bool AnyMatching(FcPattern* font, FcPattern* pattern, const char* object) {
627 FcChar8* patternString;
629 // Set an arbitrary limit on the number of pattern object values to consider.
630 // TODO: re-write this to avoid N*M
631 static const int maxId = 16;
632 for (int patternId = 0; patternId < maxId; ++patternId) {
633 result = FcPatternGetString(pattern, object, patternId, &patternString);
634 if (FcResultNoId == result) {
637 if (FcResultMatch != result) {
640 for (int fontId = 0; fontId < maxId; ++fontId) {
641 result = FcPatternGetString(font, object, fontId, &fontString);
642 if (FcResultNoId == result) {
645 if (FcResultMatch != result) {
648 if (0 == FcStrCmpIgnoreCase(patternString, fontString)) {
656 static bool FontAccessible(FcPattern* font) {
657 // FontConfig can return fonts which are unreadable.
658 const char* filename = get_string(font, FC_FILE, NULL);
659 if (NULL == filename) {
662 return sk_exists(filename, kRead_SkFILE_Flag);
665 static bool FontFamilyNameMatches(FcPattern* font, FcPattern* pattern) {
666 return AnyMatching(font, pattern, FC_FAMILY);
669 static bool FontContainsCharacter(FcPattern* font, uint32_t character) {
671 FcCharSet* matchCharSet;
672 for (int charSetId = 0; ; ++charSetId) {
673 result = FcPatternGetCharSet(font, FC_CHARSET, charSetId, &matchCharSet);
674 if (FcResultNoId == result) {
677 if (FcResultMatch != result) {
680 if (FcCharSetHasChar(matchCharSet, character)) {
687 SkFontStyleSet* onMatchFamily(const char familyName[]) const override {
690 SkAutoFcPattern pattern;
691 FcPatternAddString(pattern, FC_FAMILY, (FcChar8*)familyName);
692 FcConfigSubstitute(fFC, pattern, FcMatchPattern);
693 FcDefaultSubstitute(pattern);
695 FcPattern* matchPattern;
696 SkAutoFcPattern strongPattern(NULL);
698 strongPattern.reset(FcPatternDuplicate(pattern));
699 remove_weak(strongPattern, FC_FAMILY);
700 matchPattern = strongPattern;
702 matchPattern = pattern;
705 SkAutoFcFontSet matches;
706 // TODO: Some families have 'duplicates' due to symbolic links.
707 // The patterns are exactly the same except for the FC_FILE.
708 // It should be possible to collapse these patterns by normalizing.
709 static const FcSetName fcNameSet[] = { FcSetSystem, FcSetApplication };
710 for (int setIndex = 0; setIndex < (int)SK_ARRAY_COUNT(fcNameSet); ++setIndex) {
711 // Return value of FcConfigGetFonts must not be destroyed.
712 FcFontSet* allFonts(FcConfigGetFonts(fFC, fcNameSet[setIndex]));
713 if (NULL == allFonts) {
717 for (int fontIndex = 0; fontIndex < allFonts->nfont; ++fontIndex) {
718 FcPattern* font = allFonts->fonts[fontIndex];
719 if (FontAccessible(font) && FontFamilyNameMatches(font, matchPattern)) {
720 FcFontSetAdd(matches, FcFontRenderPrepare(fFC, pattern, font));
725 return SkNEW_ARGS(StyleSet, (this, matches.detach()));
728 virtual SkTypeface* onMatchFamilyStyle(const char familyName[],
729 const SkFontStyle& style) const override
733 SkAutoFcPattern pattern;
734 FcPatternAddString(pattern, FC_FAMILY, (FcChar8*)familyName);
735 fcpattern_from_skfontstyle(style, pattern);
736 FcConfigSubstitute(fFC, pattern, FcMatchPattern);
737 FcDefaultSubstitute(pattern);
739 // We really want to match strong (prefered) and same (acceptable) only here.
740 // If a family name was specified, assume that any weak matches after the last strong match
741 // are weak (default) and ignore them.
742 // The reason for is that after substitution the pattern for 'sans-serif' looks like
743 // "wwwwwwwwwwwwwwswww" where there are many weak but preferred names, followed by defaults.
744 // So it is possible to have weakly matching but preferred names.
745 // In aliases, bindings are weak by default, so this is easy and common.
746 // If no family name was specified, we'll probably only get weak matches, but that's ok.
747 FcPattern* matchPattern;
748 SkAutoFcPattern strongPattern(NULL);
750 strongPattern.reset(FcPatternDuplicate(pattern));
751 remove_weak(strongPattern, FC_FAMILY);
752 matchPattern = strongPattern;
754 matchPattern = pattern;
758 SkAutoFcPattern font(FcFontMatch(fFC, pattern, &result));
759 if (NULL == font || !FontAccessible(font) || !FontFamilyNameMatches(font, matchPattern)) {
763 return createTypefaceFromFcPattern(font);
766 virtual SkTypeface* onMatchFamilyStyleCharacter(const char familyName[],
767 const SkFontStyle& style,
770 SkUnichar character) const override
774 SkAutoFcPattern pattern;
775 FcPatternAddString(pattern, FC_FAMILY, (FcChar8*)familyName);
776 fcpattern_from_skfontstyle(style, pattern);
778 SkAutoFcCharSet charSet;
779 FcCharSetAddChar(charSet, character);
780 FcPatternAddCharSet(pattern, FC_CHARSET, charSet);
782 if (bcp47Count > 0) {
784 SkAutoFcLangSet langSet;
785 for (int i = bcp47Count; i --> 0;) {
786 FcLangSetAdd(langSet, (const FcChar8*)bcp47[i]);
788 FcPatternAddLangSet(pattern, FC_LANG, langSet);
791 FcConfigSubstitute(fFC, pattern, FcMatchPattern);
792 FcDefaultSubstitute(pattern);
795 SkAutoFcPattern font(FcFontMatch(fFC, pattern, &result));
796 if (NULL == font || !FontAccessible(font) || !FontContainsCharacter(font, character)) {
800 return createTypefaceFromFcPattern(font);
803 virtual SkTypeface* onMatchFaceStyle(const SkTypeface* typeface,
804 const SkFontStyle& style) const override
806 //TODO: should the SkTypeface_fontconfig know its family?
807 const SkTypeface_fontconfig* fcTypeface =
808 static_cast<const SkTypeface_fontconfig*>(typeface);
809 return this->matchFamilyStyle(get_string(fcTypeface->fPattern, FC_FAMILY), style);
812 SkTypeface* onCreateFromStream(SkStreamAsset* bareStream, int ttcIndex) const override {
813 SkAutoTDelete<SkStreamAsset> stream(bareStream);
814 const size_t length = stream->getLength();
815 if (length <= 0 || (1u << 30) < length) {
820 bool isFixedWidth = false;
821 if (!fScanner.scanFont(stream, ttcIndex, NULL, &style, &isFixedWidth)) {
825 return SkNEW_ARGS(SkTypeface_stream, (style, isFixedWidth, ttcIndex,
826 static_cast<SkStreamAsset*>(stream.detach())));
829 SkTypeface* onCreateFromData(SkData* data, int ttcIndex) const override {
830 return this->createFromStream(SkNEW_ARGS(SkMemoryStream, (data)), ttcIndex);
833 SkTypeface* onCreateFromFile(const char path[], int ttcIndex) const override {
834 return this->createFromStream(SkStream::NewFromFile(path), ttcIndex);
837 virtual SkTypeface* onLegacyCreateTypeface(const char familyName[],
838 unsigned styleBits) const override {
839 bool bold = styleBits & SkTypeface::kBold;
840 bool italic = styleBits & SkTypeface::kItalic;
841 SkFontStyle style = SkFontStyle(bold ? SkFontStyle::kBold_Weight
842 : SkFontStyle::kNormal_Weight,
843 SkFontStyle::kNormal_Width,
844 italic ? SkFontStyle::kItalic_Slant
845 : SkFontStyle::kUpright_Slant);
846 SkAutoTUnref<SkTypeface> typeface(this->matchFamilyStyle(familyName, style));
847 if (typeface.get()) {
848 return typeface.detach();
851 return this->matchFamilyStyle(NULL, style);
855 SkFontMgr* SkFontMgr::Factory() {
856 return SkNEW(SkFontMgr_fontconfig);