blob: 74f766f52e8acf31f6cde398acf89cf9b4b85f31 [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.com80f54652013-02-25 22:19:20 +000014#include "SkTypeface.h"
reed@google.comd71fe992013-02-25 20:38:07 +000015
bungeman02657072016-05-02 11:54:13 -070016class SkFontMgr;
tomhudsone438ddb2014-07-01 18:54:41 -070017
reed@google.comd71fe992013-02-25 20:38:07 +000018/**
19 * \class SkFontConfigInterface
20 *
bungeman7be2eb82015-02-23 08:25:00 -080021 * A simple interface for remotable font management.
22 * The global instance can be found with RefGlobal().
reed@google.comd71fe992013-02-25 20:38:07 +000023 */
reed@google.com86a44b82013-03-04 17:26:02 +000024class SK_API SkFontConfigInterface : public SkRefCnt {
reed@google.comd71fe992013-02-25 20:38:07 +000025public:
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +000026
reed@google.comd71fe992013-02-25 20:38:07 +000027 /**
bungeman1ae0e012016-09-19 12:13:16 -070028 * Returns the global SkFontConfigInterface instance. If it is not
29 * nullptr, calls ref() on it. The caller must balance this with a call to
30 * unref(). The default SkFontConfigInterface is the result of calling
31 * GetSingletonDirectInterface.
reed@google.comd71fe992013-02-25 20:38:07 +000032 */
33 static SkFontConfigInterface* RefGlobal();
34
35 /**
36 * Replace the current global instance with the specified one, safely
37 * ref'ing the new instance, and unref'ing the previous. Returns its
38 * parameter (the new global instance).
39 */
40 static SkFontConfigInterface* SetGlobal(SkFontConfigInterface*);
41
42 /**
reed@google.comf71a2332013-02-27 19:06:30 +000043 * This should be treated as private to the impl of SkFontConfigInterface.
44 * Callers should not change or expect any particular values. It is meant
45 * to be a union of possible storage types to aid the impl.
reed@google.comd71fe992013-02-25 20:38:07 +000046 */
reed@google.comf71a2332013-02-27 19:06:30 +000047 struct FontIdentity {
reed@google.com8c9737e2013-03-06 13:06:03 +000048 FontIdentity() : fID(0), fTTCIndex(0) {}
49
50 bool operator==(const FontIdentity& other) const {
51 return fID == other.fID &&
52 fTTCIndex == other.fTTCIndex &&
53 fString == other.fString;
54 }
reed@google.comf55061f2013-04-22 18:48:45 +000055 bool operator!=(const FontIdentity& other) const {
56 return !(*this == other);
57 }
reed@google.com8c9737e2013-03-06 13:06:03 +000058
59 uint32_t fID;
60 int32_t fTTCIndex;
reed@google.comf71a2332013-02-27 19:06:30 +000061 SkString fString;
reed@google.com54c69142013-04-09 15:54:52 +000062 SkFontStyle fStyle;
skia.committer@gmail.come36a1682013-04-23 07:01:29 +000063
reed@google.comf55061f2013-04-22 18:48:45 +000064 // If buffer is NULL, just return the number of bytes that would have
65 // been written. Will pad contents to a multiple of 4.
66 size_t writeToMemory(void* buffer = NULL) const;
skia.committer@gmail.come36a1682013-04-23 07:01:29 +000067
reed@google.comf55061f2013-04-22 18:48:45 +000068 // Recreate from a flattened buffer, returning the number of bytes read.
69 size_t readFromMemory(const void* buffer, size_t length);
reed@google.comf71a2332013-02-27 19:06:30 +000070 };
reed@google.comd71fe992013-02-25 20:38:07 +000071
72 /**
reed@google.comf71a2332013-02-27 19:06:30 +000073 * Given a familyName and style, find the best match.
74 *
75 * If a match is found, return true and set its outFontIdentifier.
76 * If outFamilyName is not null, assign the found familyName to it
77 * (which may differ from the requested familyName).
78 * If outStyle is not null, assign the found style to it
79 * (which may differ from the requested style).
80 *
81 * If a match is not found, return false, and ignore all out parameters.
reed@google.comd71fe992013-02-25 20:38:07 +000082 */
bungeman11a77c62016-04-12 13:45:06 -070083 virtual bool matchFamilyName(const char familyName[],
84 SkFontStyle requested,
85 FontIdentity* outFontIdentifier,
86 SkString* outFamilyName,
87 SkFontStyle* outStyle) = 0;
reed@google.comd71fe992013-02-25 20:38:07 +000088
89 /**
reed@google.comf71a2332013-02-27 19:06:30 +000090 * Given a FontRef, open a stream to access its data, or return null
91 * if the FontRef's data is not available. The caller is responsible for
bungeman5f213d92015-01-27 05:39:10 -080092 * deleting the stream when it is done accessing the data.
reed@google.comd71fe992013-02-25 20:38:07 +000093 */
bungeman5f213d92015-01-27 05:39:10 -080094 virtual SkStreamAsset* openStream(const FontIdentity&) = 0;
reed@google.comd66045e2013-03-04 19:07:02 +000095
96 /**
fmalita9b137dc2015-11-20 13:47:55 -080097 * Return an SkTypeface for the given FontIdentity.
98 *
99 * The default implementation simply returns a new typeface built using data obtained from
100 * openStream(), but derived classes may implement more complex caching schemes.
fmalita9b137dc2015-11-20 13:47:55 -0800101 */
bungeman13b9c952016-05-12 10:09:30 -0700102 virtual sk_sp<SkTypeface> makeTypeface(const FontIdentity& identity) {
103 return SkTypeface::MakeFromStream(this->openStream(identity), identity.fTTCIndex);
bungeman6296da72016-05-11 12:38:18 -0700104 }
fmalita9b137dc2015-11-20 13:47:55 -0800105
106 /**
reed@google.comd66045e2013-03-04 19:07:02 +0000107 * Return a singleton instance of a direct subclass that calls into
108 * libfontconfig. This does not affect the refcnt of the returned instance.
109 */
bungeman02657072016-05-02 11:54:13 -0700110 static SkFontConfigInterface* GetSingletonDirectInterface();
reed@google.com54c69142013-04-09 15:54:52 +0000111
112 // New APIS, which have default impls for now (which do nothing)
113
bungemanfeb3c1a2016-08-05 06:51:50 -0700114 virtual sk_sp<SkDataTable> getFamilyNames() { return SkDataTable::MakeEmpty(); }
commit-bot@chromium.orgab1c1382013-12-05 12:08:12 +0000115 typedef SkRefCnt INHERITED;
reed@google.comd71fe992013-02-25 20:38:07 +0000116};
117
reed@google.comd71fe992013-02-25 20:38:07 +0000118#endif