/* * Copyright 2006 The Android Open Source Project * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "SkFontHost.h" #include "SkFontDescriptor.h" #include "SkGlyphCache.h" #include "SkGraphics.h" #include "SkDescriptor.h" #include "SkMMapStream.h" #include "SkPaint.h" #include "SkString.h" #include "SkStream.h" #include "SkThread.h" #include "SkTSearch.h" #include "FontHostConfiguration_android.h" #include <stdio.h> #include <string.h> #include "SkGlyphCache.h" #include "SkLanguage.h" #include "SkTypeface_android.h" #include "SkTArray.h" #include "SkTDict.h" #include "SkTSearch.h" //#define SkDEBUGF(args ) SkDebugf args #ifndef SK_FONT_FILE_PREFIX #define SK_FONT_FILE_PREFIX "/fonts/" #endif // Defined in SkFontHost_FreeType.cpp bool find_name_and_attributes(SkStream* stream, SkString* name, SkTypeface::Style* style, bool* isFixedWidth); static void getFullPathForSysFonts(SkString* full, const char name[]) { full->set(getenv("ANDROID_ROOT")); full->append(SK_FONT_FILE_PREFIX); full->append(name); } static bool getNameAndStyle(const char path[], SkString* name, SkTypeface::Style* style, bool* isFixedWidth, bool isExpected) { SkString fullpath; getFullPathForSysFonts(&fullpath, path); SkMMAPStream stream(fullpath.c_str()); if (stream.getLength() > 0) { return find_name_and_attributes(&stream, name, style, isFixedWidth); } else { SkFILEStream stream(fullpath.c_str()); if (stream.getLength() > 0) { return find_name_and_attributes(&stream, name, style, isFixedWidth); } } if (isExpected) { SkDebugf("---- failed to open <%s> as a font\n", fullpath.c_str()); } return false; } static SkTypeface* deserializeLocked(SkStream* stream); static SkTypeface* createTypefaceLocked(const SkTypeface* familyFace, const char familyName[], SkTypeface::Style style); static SkStream* openStreamLocked(uint32_t fontID); static size_t getFileNameLocked(SkFontID fontID, char path[], size_t length, int32_t* index); static SkFontID nextLogicalFontLocked(const SkScalerContext::Rec& rec); static SkTypeface* createTypefaceFromStreamLocked(SkStream* stream); /////////////////////////////////////////////////////////////////////////////// struct FamilyRec; /* This guy holds a mapping of a name -> family, used for looking up fonts. Since it is stored in a stretchy array that doesn't preserve object semantics, we don't use constructor/destructors, but just have explicit helpers to manage our internal bookkeeping. */ struct NameFamilyPair { const char* fName; // we own this FamilyRec* fFamily; // we don't own this, we just reference it void construct(const char name[], FamilyRec* family) { fName = strdup(name); fFamily = family; // we don't own this, so just record the reference } void destruct() { free((char*)fName); // we don't own family, so just ignore our reference } }; typedef SkTDArray<NameFamilyPair> NameFamilyPairList; // we use atomic_inc to grow this for each typeface we create static int32_t gUniqueFontID; // this is the mutex that protects all of the global data structures in this module // functions with the Locked() suffix must be called while holding this mutex SK_DECLARE_STATIC_MUTEX(gFamilyHeadAndNameListMutex); static FamilyRec* gFamilyHead = NULL; static SkTDArray<NameFamilyPair> gFallbackFilenameList; static NameFamilyPairList gNameList; struct FamilyRec { FamilyRec* fNext; SkTypeface* fFaces[4]; FamilyRec() : fNext(NULL) { memset(fFaces, 0, sizeof(fFaces)); } }; static SkTypeface* findBestFaceLocked(const FamilyRec* family, SkTypeface::Style style) { SkTypeface* const* faces = family->fFaces; if (faces[style] != NULL) { // exact match return faces[style]; } // look for a matching bold style = (SkTypeface::Style)(style ^ SkTypeface::kItalic); if (faces[style] != NULL) { return faces[style]; } // look for the plain if (faces[SkTypeface::kNormal] != NULL) { return faces[SkTypeface::kNormal]; } // look for anything for (int i = 0; i < 4; i++) { if (faces[i] != NULL) { return faces[i]; } } // should never get here, since the faces list should not be empty SkDEBUGFAIL("faces list is empty"); return NULL; } static SkTypeface* FindBestFace(const FamilyRec* family, SkTypeface::Style style) { SkAutoMutexAcquire ac(gFamilyHeadAndNameListMutex); return findBestFaceLocked(family, style); } static FamilyRec* findFamilyLocked(const SkTypeface* member) { FamilyRec* curr = gFamilyHead; while (curr != NULL) { for (int i = 0; i < 4; i++) { if (curr->fFaces[i] == member) { return curr; } } curr = curr->fNext; } return NULL; } /* Returns the matching typeface, or NULL. If a typeface is found, its refcnt is not modified. */ static SkTypeface* findFromUniqueIDLocked(uint32_t uniqueID) { FamilyRec* curr = gFamilyHead; while (curr != NULL) { for (int i = 0; i < 4; i++) { SkTypeface* face = curr->fFaces[i]; if (face != NULL && face->uniqueID() == uniqueID) { return face; } } curr = curr->fNext; } return NULL; } /* Returns the matching typeface, or NULL. If a typeface is found, its refcnt is not modified. */ static SkTypeface* FindFromUniqueID(uint32_t uniqueID) { SkAutoMutexAcquire ac(gFamilyHeadAndNameListMutex); return findFromUniqueIDLocked(uniqueID); } /* Remove reference to this face from its family. If the resulting family is empty (has no faces), return that family, otherwise return NULL */ static FamilyRec* removeFromFamilyLocked(const SkTypeface* face) { FamilyRec* family = findFamilyLocked(face); if (family) { SkASSERT(family->fFaces[face->style()] == face); family->fFaces[face->style()] = NULL; for (int i = 0; i < 4; i++) { if (family->fFaces[i] != NULL) { // family is non-empty return NULL; } } } else { // SkDebugf("removeFromFamilyLocked(%p) face not found", face); } return family; // return the empty family } // maybe we should make FamilyRec be doubly-linked static void detachAndDeleteFamilyLocked(FamilyRec* family) { FamilyRec* curr = gFamilyHead; FamilyRec* prev = NULL; while (curr != NULL) { FamilyRec* next = curr->fNext; if (curr == family) { if (prev == NULL) { gFamilyHead = next; } else { prev->fNext = next; } SkDELETE(family); return; } prev = curr; curr = next; } SkASSERT(!"Yikes, couldn't find family in our list to remove/delete"); } static SkTypeface* findTypefaceLocked(const char name[], SkTypeface::Style style) { int count = gNameList.count(); NameFamilyPair* list = gNameList.begin(); int index = SkStrLCSearch(&list[0].fName, count, name, sizeof(list[0])); if (index >= 0) { return findBestFaceLocked(list[index].fFamily, style); } return NULL; } static SkTypeface* findTypefaceLocked(const SkTypeface* familyMember, SkTypeface::Style style) { const FamilyRec* family = findFamilyLocked(familyMember); return family ? findBestFaceLocked(family, style) : NULL; } static void addNameLocked(const char name[], FamilyRec* family) { SkAutoAsciiToLC tolc(name); name = tolc.lc(); int count = gNameList.count(); NameFamilyPair* list = gNameList.begin(); int index = SkStrLCSearch(&list[0].fName, count, name, sizeof(list[0])); if (index < 0) { list = gNameList.insert(~index); list->construct(name, family); } } static void removeFromNamesLocked(FamilyRec* emptyFamily) { #ifdef SK_DEBUG for (int i = 0; i < 4; i++) { SkASSERT(emptyFamily->fFaces[i] == NULL); } #endif // must go backwards when removing for (int i = gNameList.count() - 1; i >= 0; --i) { NameFamilyPair& pair = gNameList[i]; if (pair.fFamily == emptyFamily) { pair.destruct(); gNameList.remove(i); } } } static void addTypefaceLocked(SkTypeface* typeface, SkTypeface* familyMember) { FamilyRec* rec = NULL; if (familyMember) { rec = findFamilyLocked(familyMember); SkASSERT(rec); } else { rec = SkNEW(FamilyRec); rec->fNext = gFamilyHead; gFamilyHead = rec; } rec->fFaces[typeface->style()] = typeface; } static void removeTypeface(SkTypeface* typeface) { SkAutoMutexAcquire ac(gFamilyHeadAndNameListMutex); // remove us from our family. If the family is now empty, we return // that and then remove that family from the name list FamilyRec* family = removeFromFamilyLocked(typeface); if (NULL != family) { removeFromNamesLocked(family); detachAndDeleteFamilyLocked(family); } } /////////////////////////////////////////////////////////////////////////////// class FamilyTypeface : public SkTypeface { protected: FamilyTypeface(Style style, bool sysFont, bool isFixedWidth) : SkTypeface(style, sk_atomic_inc(&gUniqueFontID) + 1, isFixedWidth) { fIsSysFont = sysFont; } public: virtual ~FamilyTypeface() { removeTypeface(this); } bool isSysFont() const { return fIsSysFont; } virtual SkStream* openStream() = 0; virtual const char* getUniqueString() const = 0; virtual const char* getFilePath() const = 0; private: bool fIsSysFont; typedef SkTypeface INHERITED; }; /////////////////////////////////////////////////////////////////////////////// class StreamTypeface : public FamilyTypeface { public: StreamTypeface(Style style, bool sysFont, SkStream* stream, bool isFixedWidth) : INHERITED(style, sysFont, isFixedWidth) { SkASSERT(stream); stream->ref(); fStream = stream; } virtual ~StreamTypeface() { fStream->unref(); } // overrides virtual SkStream* openStream() { // we just ref our existing stream, since the caller will call unref() // when they are through fStream->ref(); // must rewind each time, since the caller assumes a "new" stream fStream->rewind(); return fStream; } virtual const char* getUniqueString() const { return NULL; } virtual const char* getFilePath() const { return NULL; } private: SkStream* fStream; typedef FamilyTypeface INHERITED; }; class FileTypeface : public FamilyTypeface { public: FileTypeface(Style style, bool sysFont, const char path[], bool isFixedWidth) : INHERITED(style, sysFont, isFixedWidth) { fPath.set(path); } // overrides virtual SkStream* openStream() { SkStream* stream = SkNEW_ARGS(SkMMAPStream, (fPath.c_str())); // check for failure if (stream->getLength() <= 0) { SkDELETE(stream); // maybe MMAP isn't supported. try FILE stream = SkNEW_ARGS(SkFILEStream, (fPath.c_str())); if (stream->getLength() <= 0) { SkDELETE(stream); stream = NULL; } } return stream; } virtual const char* getUniqueString() const { const char* str = strrchr(fPath.c_str(), '/'); if (str) { str += 1; // skip the '/' } return str; } virtual const char* getFilePath() const { return fPath.c_str(); } private: SkString fPath; typedef FamilyTypeface INHERITED; }; /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// // used to record our notion of the pre-existing fonts struct FontInitRec { const char* fFileName; const char* const* fNames; // null-terminated list SkPaint::FontVariant fVariant; SkLanguage fLanguage; }; //used to record information about the fallback fonts struct FallbackFontRec { SkFontID fFontID; SkPaint::FontVariant fVariant; }; struct FallbackFontList { FallbackFontList(const SkLanguage& language) : fLanguage(language) { } SkTDArray<FallbackFontRec> fList; SkLanguage fLanguage; }; // deliberately empty, but we use the address to identify fallback fonts static const char* gFBNames[] = { NULL }; /* Fonts are grouped by family, with the first font in a family having the list of names (even if that list is empty), and the following members having null for the list. The names list must be NULL-terminated. */ static SkTArray<FontInitRec> gSystemFonts; static SkTDArray<FallbackFontList*> gFallbackFontLists; // these globals are assigned (once) by loadSystemFontsLocked() static FamilyRec* gDefaultFamily = NULL; static SkTypeface* gDefaultNormal = NULL; static char** gDefaultNames = NULL; static FallbackFontList* getFallbackFontListLocked(const SkLanguage& lang); static void dumpGlobalsLocked() { SkDebugf("gDefaultNormal=%p id=%u refCnt=%d", gDefaultNormal, gDefaultNormal ? gDefaultNormal->uniqueID() : 0, gDefaultNormal ? gDefaultNormal->getRefCnt() : 0); if (gDefaultFamily) { SkDebugf("gDefaultFamily=%p fFaces={%u,%u,%u,%u} refCnt={%d,%d,%d,%d}", gDefaultFamily, gDefaultFamily->fFaces[0] ? gDefaultFamily->fFaces[0]->uniqueID() : 0, gDefaultFamily->fFaces[1] ? gDefaultFamily->fFaces[1]->uniqueID() : 0, gDefaultFamily->fFaces[2] ? gDefaultFamily->fFaces[2]->uniqueID() : 0, gDefaultFamily->fFaces[3] ? gDefaultFamily->fFaces[3]->uniqueID() : 0, gDefaultFamily->fFaces[0] ? gDefaultFamily->fFaces[0]->getRefCnt() : 0, gDefaultFamily->fFaces[1] ? gDefaultFamily->fFaces[1]->getRefCnt() : 0, gDefaultFamily->fFaces[2] ? gDefaultFamily->fFaces[2]->getRefCnt() : 0, gDefaultFamily->fFaces[3] ? gDefaultFamily->fFaces[3]->getRefCnt() : 0); } else { SkDebugf("gDefaultFamily=%p", gDefaultFamily); } FallbackFontList* defaultFallbackList = getFallbackFontListLocked(SkLanguage()); SkASSERT(defaultFallbackList != NULL); SkDebugf("gSystemFonts.count()=%d defaultFallbackList->fList.count()=%d", gSystemFonts.count(), defaultFallbackList->fList.count()); for (int i = 0; i < gSystemFonts.count(); ++i) { SkDebugf("gSystemFonts[%d] fileName=%s", i, gSystemFonts[i].fFileName); size_t namesIndex = 0; if (gSystemFonts[i].fNames) for (const char* fontName = gSystemFonts[i].fNames[namesIndex]; fontName != 0; fontName = gSystemFonts[i].fNames[++namesIndex]) { SkDebugf(" name[%u]=%s", namesIndex, fontName); } } if (gFamilyHead) { FamilyRec* rec = gFamilyHead; int i=0; while (rec) { SkDebugf("gFamilyHead[%d]=%p fFaces={%u,%u,%u,%u} refCnt={%d,%d,%d,%d}", i++, rec, rec->fFaces[0] ? rec->fFaces[0]->uniqueID() : 0, rec->fFaces[1] ? rec->fFaces[1]->uniqueID() : 0, rec->fFaces[2] ? rec->fFaces[2]->uniqueID() : 0, rec->fFaces[3] ? rec->fFaces[3]->uniqueID() : 0, rec->fFaces[0] ? rec->fFaces[0]->getRefCnt() : 0, rec->fFaces[1] ? rec->fFaces[1]->getRefCnt() : 0, rec->fFaces[2] ? rec->fFaces[2]->getRefCnt() : 0, rec->fFaces[3] ? rec->fFaces[3]->getRefCnt() : 0); rec = rec->fNext; } } else { SkDebugf("gFamilyHead=%p", gFamilyHead); } } static bool haveSystemFont(const char* filename) { for (int i = 0; i < gSystemFonts.count(); i++) { if (strcmp(gSystemFonts[i].fFileName, filename) == 0) { return true; } } return false; } // (SkLanguage)<->(fallback chain index) translation static const size_t kLangDictSize = 128; static SkTDict<FallbackFontList*> gLangTagToFallbackFontList(kLangDictSize); static bool gIsOKToUseFallbackFontListCache = false; // crawl fallback font lists by hand looking for a specific language static FallbackFontList* getFallbackFontListNoCacheLocked( const SkLanguage& lang) { unsigned int numLists = gFallbackFontLists.count(); for (unsigned int listIdx = 0; listIdx < numLists; ++listIdx) { FallbackFontList* list = gFallbackFontLists[listIdx]; SkASSERT(list != NULL); if (list->fLanguage == lang) { return list; } } return NULL; } // perform fancy fuzzy-matching memoized query for a fallback font list. // should only be called after fallback font lists are fully loaded. static FallbackFontList* getFallbackFontListLocked(const SkLanguage& lang) { SkASSERT(gIsOKToUseFallbackFontListCache); const SkString& langTag = lang.getTag(); FallbackFontList* fallbackFontList; if (gLangTagToFallbackFontList.find(langTag.c_str(), langTag.size(), &fallbackFontList)) { // cache hit! return fallbackFontList; } // try again without the cache fallbackFontList = getFallbackFontListNoCacheLocked(lang); if (fallbackFontList != NULL) { // found it - cache and return gLangTagToFallbackFontList.set(langTag.c_str(), langTag.size(), fallbackFontList); SkDEBUGF(("new fallback cache entry: \"%s\"", langTag.c_str())); return fallbackFontList; } // no hit - can we fuzzy-match? if (lang.getTag().isEmpty()) { // nope! this happens if attempting to direct match with no default return NULL; } // attempt fuzzy match SkLanguage parent = lang.getParent(); fallbackFontList = getFallbackFontListLocked(parent); if (fallbackFontList != NULL) { // found it - cache and return gLangTagToFallbackFontList.set(langTag.c_str(), langTag.size(), fallbackFontList); SkDEBUGF(("new fallback cache entry: \"%s\" -> \"%s\"", langTag.c_str(), fallbackFontList->fLanguage.getTag().c_str())); return fallbackFontList; } // utter failure. this happens if attempting to fuzzy-match with no default SkASSERT(fallbackFontList != NULL); return NULL; } // creates a new fallback font list for the specified language static FallbackFontList* createFallbackFontListLocked(const SkLanguage& lang) { SkASSERT(!gIsOKToUseFallbackFontListCache); SkDEBUGF(("new fallback list: \"%s\"", lang.getTag().c_str())); FallbackFontList* fallbackFontList = new FallbackFontList(lang); gFallbackFontLists.push(fallbackFontList); return fallbackFontList; } // adds a fallback font record to both the default fallback chain and the // language-specific fallback chain to which it belongs, if any static void addFallbackFontLocked(const FallbackFontRec& fallbackRec, const SkLanguage& lang) { SkASSERT(!gIsOKToUseFallbackFontListCache); SkDEBUGF(("new fallback font: %d, in \"%s\"", fallbackRec.fFontID, lang.getTag().c_str())); // add to the default fallback list FallbackFontList* fallbackList = getFallbackFontListNoCacheLocked(SkLanguage()); if (fallbackList == NULL) { // oops! no default list yet. create one. fallbackList = createFallbackFontListLocked(SkLanguage()); } SkASSERT(fallbackList != NULL); fallbackList->fList.push(fallbackRec); if (lang.getTag().isEmpty()) { return; } // also add to the appropriate language's fallback list fallbackList = getFallbackFontListNoCacheLocked(lang); if (fallbackList == NULL) { // first entry for this list! fallbackList = createFallbackFontListLocked(lang); } SkASSERT(fallbackList != NULL); fallbackList->fList.push(fallbackRec); } static int getSystemFontIndexForFontID(SkFontID fontID) { // font unique id = one-based index in system font table SkASSERT(fontID - 1 < gSystemFonts.count()); return fontID - 1; } // scans the default fallback font chain, adding every entry to every other // fallback font chain to which it does not belong. this results in every // language-specific fallback font chain having all of its fallback fonts at // the front of the chain, and everything else at the end. after this has been // run, it is ok to use the fallback font chain lookup table. static void finaliseFallbackFontListsLocked() { SkASSERT(!gIsOKToUseFallbackFontListCache); // if we have more than one list, we need to finalise non-default lists unsigned int numLists = gFallbackFontLists.count(); if (numLists > 1) { // pull fonts off of the default list... FallbackFontList* defaultList = getFallbackFontListNoCacheLocked( SkLanguage()); SkASSERT(defaultList != NULL); int numDefaultFonts = defaultList->fList.count(); for (int fontIdx = 0; fontIdx < numDefaultFonts; ++fontIdx) { // figure out which language they represent SkFontID fontID = defaultList->fList[fontIdx].fFontID; int sysFontIdx = getSystemFontIndexForFontID(fontID); const SkLanguage& lang = gSystemFonts[sysFontIdx].fLanguage; for (unsigned int listIdx = 0; listIdx < numLists; ++listIdx) { // and add them to every other language's list FallbackFontList* thisList = gFallbackFontLists[listIdx]; SkASSERT(thisList != NULL); if (thisList != defaultList && thisList->fLanguage != lang) { thisList->fList.push(defaultList->fList[fontIdx]); } } } } gIsOKToUseFallbackFontListCache = true; } static void resetFallbackFontListsLocked() { // clear cache gLangTagToFallbackFontList.reset(); // clear the data it pointed at int numFallbackLists = gFallbackFontLists.count(); for (int fallbackIdx = 0; fallbackIdx < numFallbackLists; ++fallbackIdx) { delete gFallbackFontLists[fallbackIdx]; } gFallbackFontLists.reset(); gIsOKToUseFallbackFontListCache = false; } /* Load info from a configuration file that populates the system/fallback font structures */ static void loadFontInfoLocked() { resetFallbackFontListsLocked(); SkTDArray<FontFamily*> fontFamilies; getFontFamilies(fontFamilies); gSystemFonts.reset(); for (int i = 0; i < fontFamilies.count(); ++i) { FontFamily *family = fontFamilies[i]; for (int j = 0; j < family->fFontFileArray.count(); ++j) { const char* filename = family->fFontFileArray[j]->fFileName; if (haveSystemFont(filename)) { SkDebugf("---- system font and fallback font files specify a duplicate " "font %s, skipping the second occurrence", filename); continue; } FontInitRec fontInfoRecord; fontInfoRecord.fFileName = filename; fontInfoRecord.fVariant = family->fFontFileArray[j]->fVariant; fontInfoRecord.fLanguage = family->fFontFileArray[j]->fLanguage; if (j == 0) { if (family->fNames.count() == 0) { // Fallback font fontInfoRecord.fNames = (char **)gFBNames; } else { SkTDArray<const char*> names = family->fNames; const char **nameList = (const char**) malloc((names.count() + 1) * sizeof(char*)); if (nameList == NULL) { // shouldn't get here break; } if (gDefaultNames == NULL) { gDefaultNames = (char**) nameList; } for (int i = 0; i < names.count(); ++i) { nameList[i] = names[i]; } nameList[names.count()] = NULL; fontInfoRecord.fNames = nameList; } } else { fontInfoRecord.fNames = NULL; } gSystemFonts.push_back(fontInfoRecord); } } fontFamilies.deleteAll(); SkDEBUGF(("---- We have %d system fonts", gSystemFonts.count())); for (int i = 0; i < gSystemFonts.count(); ++i) { SkDEBUGF(("---- gSystemFonts[%d] fileName=%s", i, gSystemFonts[i].fFileName)); } } /* * Called once (ensured by the sentinel check at the beginning of our body). * Initializes all the globals, and register the system fonts. */ static void initSystemFontsLocked() { // check if we've already been called if (gDefaultNormal) { return; } SkASSERT(gUniqueFontID == 0); loadFontInfoLocked(); SkTypeface* firstInFamily = NULL; for (int i = 0; i < gSystemFonts.count(); i++) { // if we're the first in a new family, clear firstInFamily const char* const* names = gSystemFonts[i].fNames; if (names != NULL) { firstInFamily = NULL; } bool isFixedWidth; SkString name; SkTypeface::Style style; // we expect all the fonts, except the "fallback" fonts bool isExpected = (names != gFBNames); if (!getNameAndStyle(gSystemFonts[i].fFileName, &name, &style, &isFixedWidth, isExpected)) { // We need to increase gUniqueFontID here so that the unique id of // each font matches its index in gSystemFonts array, as expected // by findUniqueIDLocked. sk_atomic_inc(&gUniqueFontID); continue; } SkString fullpath; getFullPathForSysFonts(&fullpath, gSystemFonts[i].fFileName); SkTypeface* tf = SkNEW_ARGS(FileTypeface, (style, true, // system-font (cannot delete) fullpath.c_str(), // filename isFixedWidth)); addTypefaceLocked(tf, firstInFamily); SkDEBUGF(("---- SkTypeface[%d] %s fontID %d\n", i, gSystemFonts[i].fFileName, tf->uniqueID())); if (names != NULL) { // see if this is one of our fallback fonts if (names == gFBNames) { // add to appropriate fallback chains FallbackFontRec fallbackRec; fallbackRec.fFontID = tf->uniqueID(); fallbackRec.fVariant = gSystemFonts[i].fVariant; addFallbackFontLocked(fallbackRec, gSystemFonts[i].fLanguage); } firstInFamily = tf; FamilyRec* family = findFamilyLocked(tf); // record the default family if this is it if (names == gDefaultNames) { gDefaultFamily = family; } // add the names to map to this family while (*names) { addNameLocked(*names, family); names += 1; } } } finaliseFallbackFontListsLocked(); // do this after all fonts are loaded. This is our default font, and it // acts as a sentinel so we only execute loadSystemFontsLocked() once gDefaultNormal = findBestFaceLocked(gDefaultFamily, SkTypeface::kNormal); SkDEBUGCODE(dumpGlobalsLocked()); } static int findFallbackFontIndex(SkFontID fontId, FallbackFontList* currentFallbackList) { for (int i = 0; i < currentFallbackList->fList.count(); i++) { if (currentFallbackList->fList[i].fFontID == fontId) { return i; } } return -1; } static void loadSystemFontsLocked() { if (!gDefaultNormal) { initSystemFontsLocked(); } } /////////////////////////////////////////////////////////////////////////////// void SkFontHost::Serialize(const SkTypeface* face, SkWStream* stream) { // lookup and record if the font is custom (i.e. not a system font) bool isCustomFont = !((FamilyTypeface*)face)->isSysFont(); stream->writeBool(isCustomFont); if (isCustomFont) { SkStream* fontStream = ((FamilyTypeface*)face)->openStream(); // store the length of the custom font uint32_t len = fontStream->getLength(); stream->write32(len); // store the entire font in the serialized stream void* fontData = malloc(len); fontStream->read(fontData, len); stream->write(fontData, len); fontStream->unref(); free(fontData); // SkDebugf("--- fonthost custom serialize %d %d\n", face->style(), len); } else { const char* name = ((FamilyTypeface*)face)->getUniqueString(); stream->write8((uint8_t)face->style()); if (NULL == name || 0 == *name) { stream->writePackedUInt(0); // SkDebugf("--- fonthost serialize null\n"); } else { uint32_t len = strlen(name); stream->writePackedUInt(len); stream->write(name, len); // SkDebugf("--- fonthost serialize <%s> %d\n", name, face->style()); } } } SkTypeface* SkFontHost::Deserialize(SkStream* stream) { SkAutoMutexAcquire ac(gFamilyHeadAndNameListMutex); return deserializeLocked(stream); } static SkTypeface* deserializeLocked(SkStream* stream) { loadSystemFontsLocked(); // check if the font is a custom or system font bool isCustomFont = stream->readBool(); if (isCustomFont) { // read the length of the custom font from the stream uint32_t len = stream->readU32(); // generate a new stream to store the custom typeface SkMemoryStream* fontStream = new SkMemoryStream(len); stream->read((void*)fontStream->getMemoryBase(), len); SkTypeface* face = createTypefaceFromStreamLocked(fontStream); fontStream->unref(); // SkDebugf("--- fonthost custom deserialize %d %d\n", face->style(), len); return face; } else { int style = stream->readU8(); int len = stream->readPackedUInt(); if (len > 0) { SkString str; str.resize(len); stream->read(str.writable_str(), len); for (int i = 0; i < gSystemFonts.count(); i++) { if (strcmp(gSystemFonts[i].fFileName, str.c_str()) == 0) { // backup until we hit the fNames for (int j = i; j >= 0; --j) { if (gSystemFonts[j].fNames != NULL) { return createTypefaceLocked(NULL, gSystemFonts[j].fNames[0], (SkTypeface::Style)style); } } } } } } return NULL; } /////////////////////////////////////////////////////////////////////////////// SkTypeface* SkFontHost::CreateTypeface(const SkTypeface* familyFace, const char familyName[], SkTypeface::Style style) { SkAutoMutexAcquire ac(gFamilyHeadAndNameListMutex); return createTypefaceLocked(familyFace, familyName, style); } static SkTypeface* createTypefaceLocked(const SkTypeface* familyFace, const char familyName[], SkTypeface::Style style) { loadSystemFontsLocked(); // clip to legal style bits style = (SkTypeface::Style)(style & SkTypeface::kBoldItalic); SkTypeface* tf = NULL; if (NULL != familyFace) { tf = findTypefaceLocked(familyFace, style); } else if (NULL != familyName) { // SkDebugf("======= familyName <%s>\n", familyName); tf = findTypefaceLocked(familyName, style); } if (NULL == tf) { tf = findBestFaceLocked(gDefaultFamily, style); } // we ref(), since the semantic is to return a new instance tf->ref(); return tf; } SkStream* SkFontHost::OpenStream(uint32_t fontID) { SkAutoMutexAcquire ac(gFamilyHeadAndNameListMutex); return openStreamLocked(fontID); } static SkStream* openStreamLocked(uint32_t fontID) { FamilyTypeface* tf = (FamilyTypeface*)findFromUniqueIDLocked(fontID); SkStream* stream = tf ? tf->openStream() : NULL; if (stream && stream->getLength() == 0) { stream->unref(); stream = NULL; } return stream; } size_t SkFontHost::GetFileName(SkFontID fontID, char path[], size_t length, int32_t* index) { SkAutoMutexAcquire ac(gFamilyHeadAndNameListMutex); return getFileNameLocked(fontID, path, length, index); } static size_t getFileNameLocked(SkFontID fontID, char path[], size_t length, int32_t* index) { FamilyTypeface* tf = (FamilyTypeface*)findFromUniqueIDLocked(fontID); const char* src = tf ? tf->getFilePath() : NULL; if (src) { size_t size = strlen(src); if (path) { memcpy(path, src, SkMin32(size, length)); } if (index) { *index = 0; // we don't have collections (yet) } return size; } else { return 0; } } SkFontID SkFontHost::NextLogicalFont(const SkScalerContextRec& rec) { SkAutoMutexAcquire ac(gFamilyHeadAndNameListMutex); return nextLogicalFontLocked(rec); } static SkFontID nextLogicalFontLocked(const SkScalerContextRec& rec) { loadSystemFontsLocked(); const SkTypeface* origTypeface = findFromUniqueIDLocked(rec.fOrigFontID); const SkTypeface* currTypeface = findFromUniqueIDLocked(rec.fFontID); FallbackFontList* currentFallbackList = getFallbackFontListLocked(rec.fLanguage); SkASSERT(currentFallbackList); SkASSERT(origTypeface != 0); SkASSERT(currTypeface != 0); // Our fallback list always stores the id of the plain in each fallback // family, so we transform currFontID to its plain equivalent. SkFontID plainFontID = findTypefaceLocked(currTypeface, SkTypeface::kNormal)->uniqueID(); /* First see if fontID is already one of our fallbacks. If so, return its successor. If fontID is not in our list, then return the first one in our list. Note: list is zero-terminated, and returning zero means we have no more fonts to use for fallbacks. */ int plainFallbackFontIndex = findFallbackFontIndex(plainFontID, currentFallbackList); int nextFallbackFontIndex = plainFallbackFontIndex + 1; // If a rec object is set to prefer "kDefault_Variant" it means they have no preference // In this case, we set the value to "kCompact_Variant" SkPaint::FontVariant recPreference = rec.fFontVariant; if (recPreference == SkPaint::kDefault_Variant) { recPreference = SkPaint::kCompact_Variant; } SkFontID nextFontID = 0; while (nextFallbackFontIndex < currentFallbackList->fList.count()) { bool normalFont = (currentFallbackList->fList[nextFallbackFontIndex].fVariant == SkPaint::kDefault_Variant); bool fontChosen = (currentFallbackList->fList[nextFallbackFontIndex].fVariant == recPreference); if (normalFont || fontChosen) { const SkTypeface* nextTypeface = findFromUniqueIDLocked(currentFallbackList->fList[nextFallbackFontIndex].fFontID); nextFontID = findTypefaceLocked(nextTypeface, origTypeface->style())->uniqueID(); break; } nextFallbackFontIndex++; } SkDEBUGF(("---- nextLogicalFont: currFontID=%d, origFontID=%d, plainFontID=%d, " "plainFallbackFontIndex=%d, nextFallbackFontIndex=%d " "=> nextFontID=%d", rec.fFontID, rec.fOrigFontID, plainFontID, plainFallbackFontIndex, nextFallbackFontIndex, nextFontID)); return nextFontID; } /////////////////////////////////////////////////////////////////////////////// SkTypeface* SkFontHost::CreateTypefaceFromStream(SkStream* stream) { SkAutoMutexAcquire ac(gFamilyHeadAndNameListMutex); return createTypefaceFromStreamLocked(stream); } static SkTypeface* createTypefaceFromStreamLocked(SkStream* stream) { if (NULL == stream || stream->getLength() <= 0) { return NULL; } // Make sure system fonts are loaded first to comply with the assumption // that the font's uniqueID can be found using the findUniqueIDLocked method. loadSystemFontsLocked(); bool isFixedWidth; SkTypeface::Style style; if (find_name_and_attributes(stream, NULL, &style, &isFixedWidth)) { SkTypeface* typeface = SkNEW_ARGS(StreamTypeface, (style, false, stream, isFixedWidth)); addTypefaceLocked(typeface, NULL); return typeface; } else { return NULL; } } SkTypeface* SkFontHost::CreateTypefaceFromFile(const char path[]) { SkStream* stream = SkNEW_ARGS(SkMMAPStream, (path)); SkTypeface* face = SkFontHost::CreateTypefaceFromStream(stream); // since we created the stream, we let go of our ref() here stream->unref(); return face; } /////////////////////////////////////////////////////////////////////////////// // Function from SkTypeface_android.h /////////////////////////////////////////////////////////////////////////////// static SkFontID findFontIDForChar(SkUnichar uni, SkTypeface::Style style, SkPaint::FontVariant fontVariant) { SkTypeface* face = FindBestFace(gDefaultFamily, style); if (!face) { return 0; } SkPaint paint; paint.setTypeface(face); paint.setTextEncoding(SkPaint::kUTF16_TextEncoding); paint.setFontVariant(fontVariant); SkAutoGlyphCache autoCache(paint, NULL, NULL); SkGlyphCache* cache = autoCache.getCache(); SkFontID fontID = 0; SkScalerContext* ctx = cache->getScalerContext(); if (ctx) { return ctx->findTypefaceIdForChar(uni); } return 0; } struct HB_UnicodeMapping { // TODO: when the WebView no longer needs harfbuzz_old, remove HB_Script script_old; hb_script_t script; const SkUnichar unicode; }; /* * The following scripts are not complex fonts and we do not expect them to be parsed by this table * HB_SCRIPT_COMMON, * HB_SCRIPT_GREEK, * HB_SCRIPT_CYRILLIC, * HB_SCRIPT_HANGUL * HB_SCRIPT_INHERITED */ /* Harfbuzz (old) is missing a number of scripts in its table. For these, * we include a value which can never happen. We won't get complex script * shaping in these cases, but the library wouldn't know how to shape * them anyway. */ #define HB_Script_Unknown HB_ScriptCount static HB_UnicodeMapping HB_UnicodeMappingArray[] = { {HB_Script_Armenian, HB_SCRIPT_ARMENIAN, 0x0531}, {HB_Script_Hebrew, HB_SCRIPT_HEBREW, 0x0591}, {HB_Script_Arabic, HB_SCRIPT_ARABIC, 0x0600}, {HB_Script_Syriac, HB_SCRIPT_SYRIAC, 0x0710}, {HB_Script_Thaana, HB_SCRIPT_THAANA, 0x0780}, {HB_Script_Nko, HB_SCRIPT_NKO, 0x07C0}, {HB_Script_Devanagari, HB_SCRIPT_DEVANAGARI, 0x0901}, {HB_Script_Bengali, HB_SCRIPT_BENGALI, 0x0981}, {HB_Script_Gurmukhi, HB_SCRIPT_GURMUKHI, 0x0A10}, {HB_Script_Gujarati, HB_SCRIPT_GUJARATI, 0x0A90}, {HB_Script_Oriya, HB_SCRIPT_ORIYA, 0x0B10}, {HB_Script_Tamil, HB_SCRIPT_TAMIL, 0x0B82}, {HB_Script_Telugu, HB_SCRIPT_TELUGU, 0x0C10}, {HB_Script_Kannada, HB_SCRIPT_KANNADA, 0x0C90}, {HB_Script_Malayalam, HB_SCRIPT_MALAYALAM, 0x0D10}, {HB_Script_Sinhala, HB_SCRIPT_SINHALA, 0x0D90}, {HB_Script_Thai, HB_SCRIPT_THAI, 0x0E01}, {HB_Script_Lao, HB_SCRIPT_LAO, 0x0E81}, {HB_Script_Tibetan, HB_SCRIPT_TIBETAN, 0x0F00}, {HB_Script_Myanmar, HB_SCRIPT_MYANMAR, 0x1000}, {HB_Script_Georgian, HB_SCRIPT_GEORGIAN, 0x10A0}, {HB_Script_Unknown, HB_SCRIPT_ETHIOPIC, 0x1200}, {HB_Script_Unknown, HB_SCRIPT_CHEROKEE, 0x13A0}, {HB_Script_Ogham, HB_SCRIPT_OGHAM, 0x1680}, {HB_Script_Runic, HB_SCRIPT_RUNIC, 0x16A0}, {HB_Script_Khmer, HB_SCRIPT_KHMER, 0x1780}, {HB_Script_Unknown, HB_SCRIPT_TAI_LE, 0x1950}, {HB_Script_Unknown, HB_SCRIPT_NEW_TAI_LUE, 0x1980}, {HB_Script_Unknown, HB_SCRIPT_TAI_THAM, 0x1A20}, {HB_Script_Unknown, HB_SCRIPT_CHAM, 0xAA00}, }; static hb_script_t getHBScriptFromHBScriptOld(HB_Script script_old) { hb_script_t script = HB_SCRIPT_INVALID; int numSupportedFonts = sizeof(HB_UnicodeMappingArray) / sizeof(HB_UnicodeMapping); for (int i = 0; i < numSupportedFonts; i++) { if (script_old == HB_UnicodeMappingArray[i].script_old) { script = HB_UnicodeMappingArray[i].script; break; } } return script; } // returns 0 for "Not Found" static SkUnichar getUnicodeFromHBScript(hb_script_t script) { SkUnichar unichar = 0; int numSupportedFonts = sizeof(HB_UnicodeMappingArray) / sizeof(HB_UnicodeMapping); for (int i = 0; i < numSupportedFonts; i++) { if (script == HB_UnicodeMappingArray[i].script) { unichar = HB_UnicodeMappingArray[i].unicode; break; } } return unichar; } struct TypefaceLookupStruct { hb_script_t script; SkTypeface::Style style; SkPaint::FontVariant fontVariant; SkTypeface* typeface; }; SK_DECLARE_STATIC_MUTEX(gTypefaceTableMutex); // This is the mutex for gTypefaceTable static SkTDArray<TypefaceLookupStruct> gTypefaceTable; // This is protected by gTypefaceTableMutex static int typefaceLookupCompare(const TypefaceLookupStruct* first, const TypefaceLookupStruct* second) { if (first->script != second->script) { return (first->script > second->script) ? 1 : -1; } if (first->style != second->style) { return (first->style > second->style) ? 1 : -1; } if (first->fontVariant != second->fontVariant) { return (first->fontVariant > second->fontVariant) ? 1 : -1; } return 0; } SK_API SkTypeface* SkCreateTypefaceForScriptNG(hb_script_t script, SkTypeface::Style style, SkPaint::FontVariant fontVariant) { SkTypeface* retTypeface = NULL; SkAutoMutexAcquire ac(gTypefaceTableMutex); // Note: NOT gFamilyHeadAndNameListMutex TypefaceLookupStruct key; key.script = script; key.style = style; key.fontVariant = fontVariant; int index = SkTSearch<TypefaceLookupStruct>( (const TypefaceLookupStruct*) gTypefaceTable.begin(), gTypefaceTable.count(), key, sizeof(TypefaceLookupStruct), &typefaceLookupCompare); if (index >= 0) { retTypeface = gTypefaceTable[index].typeface; } else { SkUnichar unichar = getUnicodeFromHBScript(script); if (!unichar) { return NULL; } SkFontID newFontID = findFontIDForChar(unichar, style, fontVariant); // retrieve the typeface that corresponds to this fontID retTypeface = FindFromUniqueID(newFontID); key.typeface = retTypeface; index = ~index; *gTypefaceTable.insert(index) = key; } // we ref(), the caller is expected to unref when they are done SkSafeRef(retTypeface); return retTypeface; } SK_API SkTypeface* SkCreateTypefaceForScript(HB_Script script, SkTypeface::Style style, SkPaint::FontVariant fontVariant) { return SkCreateTypefaceForScriptNG(getHBScriptFromHBScriptOld(script), style, fontVariant); }