blob: 786c3468dbfaaae0d55bb220a4ba45c84844bc58 [file] [log] [blame]
reed@google.comd71fe992013-02-25 20:38:07 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkFontConfigInterface_DEFINED
9#define SkFontConfigInterface_DEFINED
10
reed@google.com027fd202013-04-19 20:45:30 +000011#include "SkDataTable.h"
reed@google.com54c69142013-04-09 15:54:52 +000012#include "SkFontStyle.h"
reed@google.comd71fe992013-02-25 20:38:07 +000013#include "SkRefCnt.h"
reed@google.com027fd202013-04-19 20:45:30 +000014#include "SkTArray.h"
reed@google.com80f54652013-02-25 22:19:20 +000015#include "SkTypeface.h"
reed@google.comd71fe992013-02-25 20:38:07 +000016
17/**
18 * \class SkFontConfigInterface
19 *
20 * Provides SkFontHost clients with access to fontconfig services. They will
21 * access the global instance found in RefGlobal().
22 */
reed@google.com86a44b82013-03-04 17:26:02 +000023class SK_API SkFontConfigInterface : public SkRefCnt {
reed@google.comd71fe992013-02-25 20:38:07 +000024public:
25 /**
26 * Returns the global SkFontConfigInterface instance, and if it is not
27 * NULL, calls ref() on it. The caller must balance this with a call to
28 * unref().
29 */
30 static SkFontConfigInterface* RefGlobal();
31
32 /**
33 * Replace the current global instance with the specified one, safely
34 * ref'ing the new instance, and unref'ing the previous. Returns its
35 * parameter (the new global instance).
36 */
37 static SkFontConfigInterface* SetGlobal(SkFontConfigInterface*);
38
39 /**
reed@google.comf71a2332013-02-27 19:06:30 +000040 * This should be treated as private to the impl of SkFontConfigInterface.
41 * Callers should not change or expect any particular values. It is meant
42 * to be a union of possible storage types to aid the impl.
reed@google.comd71fe992013-02-25 20:38:07 +000043 */
reed@google.comf71a2332013-02-27 19:06:30 +000044 struct FontIdentity {
reed@google.com8c9737e2013-03-06 13:06:03 +000045 FontIdentity() : fID(0), fTTCIndex(0) {}
46
47 bool operator==(const FontIdentity& other) const {
48 return fID == other.fID &&
49 fTTCIndex == other.fTTCIndex &&
50 fString == other.fString;
51 }
52
53 uint32_t fID;
54 int32_t fTTCIndex;
reed@google.comf71a2332013-02-27 19:06:30 +000055 SkString fString;
reed@google.com54c69142013-04-09 15:54:52 +000056 SkFontStyle fStyle;
reed@google.comf71a2332013-02-27 19:06:30 +000057 };
reed@google.comd71fe992013-02-25 20:38:07 +000058
59 /**
reed@google.comf71a2332013-02-27 19:06:30 +000060 * Given a familyName and style, find the best match.
61 *
62 * If a match is found, return true and set its outFontIdentifier.
63 * If outFamilyName is not null, assign the found familyName to it
64 * (which may differ from the requested familyName).
65 * If outStyle is not null, assign the found style to it
66 * (which may differ from the requested style).
67 *
68 * If a match is not found, return false, and ignore all out parameters.
reed@google.comd71fe992013-02-25 20:38:07 +000069 */
reed@google.comf71a2332013-02-27 19:06:30 +000070 virtual bool matchFamilyName(const char familyName[],
71 SkTypeface::Style requested,
72 FontIdentity* outFontIdentifier,
73 SkString* outFamilyName,
74 SkTypeface::Style* outStyle) = 0;
reed@google.comd71fe992013-02-25 20:38:07 +000075
76 /**
reed@google.comf71a2332013-02-27 19:06:30 +000077 * Given a FontRef, open a stream to access its data, or return null
78 * if the FontRef's data is not available. The caller is responsible for
79 * calling stream->unref() when it is done accessing the data.
reed@google.comd71fe992013-02-25 20:38:07 +000080 */
reed@google.comf71a2332013-02-27 19:06:30 +000081 virtual SkStream* openStream(const FontIdentity&) = 0;
reed@google.comd66045e2013-03-04 19:07:02 +000082
83 /**
84 * Return a singleton instance of a direct subclass that calls into
85 * libfontconfig. This does not affect the refcnt of the returned instance.
86 */
87 static SkFontConfigInterface* GetSingletonDirectInterface();
reed@google.com54c69142013-04-09 15:54:52 +000088
89 // New APIS, which have default impls for now (which do nothing)
90
reed@google.com027fd202013-04-19 20:45:30 +000091 virtual SkDataTable* getFamilyNames() { return SkDataTable::NewEmpty(); }
92 virtual bool matchFamilySet(const char inFamilyName[],
93 SkString* outFamilyName,
94 SkTArray<FontIdentity>*) {
95 return false;
robertphillips@google.com21db1db2013-04-09 23:56:51 +000096 }
reed@google.comd71fe992013-02-25 20:38:07 +000097};
98
99#endif