blob: fb09242e840fa73ee9b4b786d6079c9a47f7018f [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 }
reed@google.comf55061f2013-04-22 18:48:45 +000052 bool operator!=(const FontIdentity& other) const {
53 return !(*this == other);
54 }
reed@google.com8c9737e2013-03-06 13:06:03 +000055
56 uint32_t fID;
57 int32_t fTTCIndex;
reed@google.comf71a2332013-02-27 19:06:30 +000058 SkString fString;
reed@google.com54c69142013-04-09 15:54:52 +000059 SkFontStyle fStyle;
reed@google.comf55061f2013-04-22 18:48:45 +000060
61 // If buffer is NULL, just return the number of bytes that would have
62 // been written. Will pad contents to a multiple of 4.
63 size_t writeToMemory(void* buffer = NULL) const;
64
65 // Recreate from a flattened buffer, returning the number of bytes read.
66 size_t readFromMemory(const void* buffer, size_t length);
reed@google.comf71a2332013-02-27 19:06:30 +000067 };
reed@google.comd71fe992013-02-25 20:38:07 +000068
69 /**
reed@google.comf71a2332013-02-27 19:06:30 +000070 * Given a familyName and style, find the best match.
71 *
72 * If a match is found, return true and set its outFontIdentifier.
73 * If outFamilyName is not null, assign the found familyName to it
74 * (which may differ from the requested familyName).
75 * If outStyle is not null, assign the found style to it
76 * (which may differ from the requested style).
77 *
78 * If a match is not found, return false, and ignore all out parameters.
reed@google.comd71fe992013-02-25 20:38:07 +000079 */
reed@google.comf71a2332013-02-27 19:06:30 +000080 virtual bool matchFamilyName(const char familyName[],
81 SkTypeface::Style requested,
82 FontIdentity* outFontIdentifier,
83 SkString* outFamilyName,
84 SkTypeface::Style* outStyle) = 0;
reed@google.comd71fe992013-02-25 20:38:07 +000085
86 /**
reed@google.comf71a2332013-02-27 19:06:30 +000087 * Given a FontRef, open a stream to access its data, or return null
88 * if the FontRef's data is not available. The caller is responsible for
89 * calling stream->unref() when it is done accessing the data.
reed@google.comd71fe992013-02-25 20:38:07 +000090 */
reed@google.comf71a2332013-02-27 19:06:30 +000091 virtual SkStream* openStream(const FontIdentity&) = 0;
reed@google.comd66045e2013-03-04 19:07:02 +000092
93 /**
94 * Return a singleton instance of a direct subclass that calls into
95 * libfontconfig. This does not affect the refcnt of the returned instance.
96 */
97 static SkFontConfigInterface* GetSingletonDirectInterface();
reed@google.com54c69142013-04-09 15:54:52 +000098
99 // New APIS, which have default impls for now (which do nothing)
100
reed@google.com027fd202013-04-19 20:45:30 +0000101 virtual SkDataTable* getFamilyNames() { return SkDataTable::NewEmpty(); }
102 virtual bool matchFamilySet(const char inFamilyName[],
103 SkString* outFamilyName,
104 SkTArray<FontIdentity>*) {
105 return false;
robertphillips@google.com21db1db2013-04-09 23:56:51 +0000106 }
reed@google.comd71fe992013-02-25 20:38:07 +0000107};
108
109#endif