2013-02-25 20:38:07 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2013 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SkFontConfigInterface_DEFINED
|
|
|
|
#define SkFontConfigInterface_DEFINED
|
|
|
|
|
2013-04-19 20:45:30 +00:00
|
|
|
#include "SkDataTable.h"
|
2013-04-09 15:54:52 +00:00
|
|
|
#include "SkFontStyle.h"
|
2013-02-25 20:38:07 +00:00
|
|
|
#include "SkRefCnt.h"
|
2013-04-19 20:45:30 +00:00
|
|
|
#include "SkTArray.h"
|
2013-02-25 22:19:20 +00:00
|
|
|
#include "SkTypeface.h"
|
2013-02-25 20:38:07 +00:00
|
|
|
|
2014-07-02 01:54:41 +00:00
|
|
|
struct SkBaseMutex;
|
|
|
|
|
2013-02-25 20:38:07 +00:00
|
|
|
/**
|
|
|
|
* \class SkFontConfigInterface
|
|
|
|
*
|
2015-02-23 16:25:00 +00:00
|
|
|
* A simple interface for remotable font management.
|
|
|
|
* The global instance can be found with RefGlobal().
|
2013-02-25 20:38:07 +00:00
|
|
|
*/
|
2013-03-04 17:26:02 +00:00
|
|
|
class SK_API SkFontConfigInterface : public SkRefCnt {
|
2013-02-25 20:38:07 +00:00
|
|
|
public:
|
2013-07-11 22:29:29 +00:00
|
|
|
SK_DECLARE_INST_COUNT(SkFontConfigInterface)
|
|
|
|
|
2013-02-25 20:38:07 +00:00
|
|
|
/**
|
|
|
|
* Returns the global SkFontConfigInterface instance, and if it is not
|
|
|
|
* NULL, calls ref() on it. The caller must balance this with a call to
|
|
|
|
* unref().
|
|
|
|
*/
|
|
|
|
static SkFontConfigInterface* RefGlobal();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Replace the current global instance with the specified one, safely
|
|
|
|
* ref'ing the new instance, and unref'ing the previous. Returns its
|
|
|
|
* parameter (the new global instance).
|
|
|
|
*/
|
|
|
|
static SkFontConfigInterface* SetGlobal(SkFontConfigInterface*);
|
|
|
|
|
|
|
|
/**
|
2013-02-27 19:06:30 +00:00
|
|
|
* This should be treated as private to the impl of SkFontConfigInterface.
|
|
|
|
* Callers should not change or expect any particular values. It is meant
|
|
|
|
* to be a union of possible storage types to aid the impl.
|
2013-02-25 20:38:07 +00:00
|
|
|
*/
|
2013-02-27 19:06:30 +00:00
|
|
|
struct FontIdentity {
|
2013-03-06 13:06:03 +00:00
|
|
|
FontIdentity() : fID(0), fTTCIndex(0) {}
|
|
|
|
|
|
|
|
bool operator==(const FontIdentity& other) const {
|
|
|
|
return fID == other.fID &&
|
|
|
|
fTTCIndex == other.fTTCIndex &&
|
|
|
|
fString == other.fString;
|
|
|
|
}
|
2013-04-22 18:48:45 +00:00
|
|
|
bool operator!=(const FontIdentity& other) const {
|
|
|
|
return !(*this == other);
|
|
|
|
}
|
2013-03-06 13:06:03 +00:00
|
|
|
|
|
|
|
uint32_t fID;
|
|
|
|
int32_t fTTCIndex;
|
2013-02-27 19:06:30 +00:00
|
|
|
SkString fString;
|
2013-04-09 15:54:52 +00:00
|
|
|
SkFontStyle fStyle;
|
2013-04-23 07:01:29 +00:00
|
|
|
|
2013-04-22 18:48:45 +00:00
|
|
|
// If buffer is NULL, just return the number of bytes that would have
|
|
|
|
// been written. Will pad contents to a multiple of 4.
|
|
|
|
size_t writeToMemory(void* buffer = NULL) const;
|
2013-04-23 07:01:29 +00:00
|
|
|
|
2013-04-22 18:48:45 +00:00
|
|
|
// Recreate from a flattened buffer, returning the number of bytes read.
|
|
|
|
size_t readFromMemory(const void* buffer, size_t length);
|
2013-02-27 19:06:30 +00:00
|
|
|
};
|
2013-02-25 20:38:07 +00:00
|
|
|
|
|
|
|
/**
|
2013-02-27 19:06:30 +00:00
|
|
|
* Given a familyName and style, find the best match.
|
|
|
|
*
|
|
|
|
* If a match is found, return true and set its outFontIdentifier.
|
|
|
|
* If outFamilyName is not null, assign the found familyName to it
|
|
|
|
* (which may differ from the requested familyName).
|
|
|
|
* If outStyle is not null, assign the found style to it
|
|
|
|
* (which may differ from the requested style).
|
|
|
|
*
|
|
|
|
* If a match is not found, return false, and ignore all out parameters.
|
2013-02-25 20:38:07 +00:00
|
|
|
*/
|
2013-02-27 19:06:30 +00:00
|
|
|
virtual bool matchFamilyName(const char familyName[],
|
|
|
|
SkTypeface::Style requested,
|
|
|
|
FontIdentity* outFontIdentifier,
|
|
|
|
SkString* outFamilyName,
|
|
|
|
SkTypeface::Style* outStyle) = 0;
|
2013-02-25 20:38:07 +00:00
|
|
|
|
|
|
|
/**
|
2013-02-27 19:06:30 +00:00
|
|
|
* Given a FontRef, open a stream to access its data, or return null
|
|
|
|
* if the FontRef's data is not available. The caller is responsible for
|
2015-01-27 13:39:10 +00:00
|
|
|
* deleting the stream when it is done accessing the data.
|
2013-02-25 20:38:07 +00:00
|
|
|
*/
|
2015-01-27 13:39:10 +00:00
|
|
|
virtual SkStreamAsset* openStream(const FontIdentity&) = 0;
|
2013-03-04 19:07:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a singleton instance of a direct subclass that calls into
|
|
|
|
* libfontconfig. This does not affect the refcnt of the returned instance.
|
2014-07-02 01:54:41 +00:00
|
|
|
* The mutex may be used to guarantee the singleton is only constructed once.
|
2013-03-04 19:07:02 +00:00
|
|
|
*/
|
2015-02-23 16:25:00 +00:00
|
|
|
static SkFontConfigInterface* GetSingletonDirectInterface(SkBaseMutex* mutex = NULL);
|
2013-04-09 15:54:52 +00:00
|
|
|
|
|
|
|
// New APIS, which have default impls for now (which do nothing)
|
|
|
|
|
2013-04-19 20:45:30 +00:00
|
|
|
virtual SkDataTable* getFamilyNames() { return SkDataTable::NewEmpty(); }
|
2014-11-14 19:11:46 +00:00
|
|
|
virtual bool matchFamilySet(const char[] /*inFamilyName*/,
|
|
|
|
SkString* /*outFamilyName*/,
|
2013-04-19 20:45:30 +00:00
|
|
|
SkTArray<FontIdentity>*) {
|
|
|
|
return false;
|
2013-04-09 23:56:51 +00:00
|
|
|
}
|
2013-12-05 12:08:12 +00:00
|
|
|
typedef SkRefCnt INHERITED;
|
2013-02-25 20:38:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|