Flutter Engine
The Flutter Engine
SkDWriteFontFileStream.h
Go to the documentation of this file.
1/*
2 * Copyright 2012 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 SkDWriteFontFileStream_DEFINED
9#define SkDWriteFontFileStream_DEFINED
10
12
17
18#include <dwrite.h>
19
20/**
21 * An SkStream backed by an IDWriteFontFileStream.
22 * This allows Skia code to read an IDWriteFontFileStream.
23 */
25public:
26 explicit SkDWriteFontFileStream(IDWriteFontFileStream* fontFileStream);
28
29 size_t read(void* buffer, size_t size) override;
30 bool isAtEnd() const override;
31 bool rewind() override;
32 size_t getPosition() const override;
33 bool seek(size_t position) override;
34 bool move(long offset) override;
35 size_t getLength() const override;
36 const void* getMemoryBase() override;
37
38 std::unique_ptr<SkDWriteFontFileStream> duplicate() const {
39 return std::unique_ptr<SkDWriteFontFileStream>(this->onDuplicate());
40 }
41 std::unique_ptr<SkDWriteFontFileStream> fork() const {
42 return std::unique_ptr<SkDWriteFontFileStream>(this->onFork());
43 }
44
45private:
46 SkDWriteFontFileStream* onDuplicate() const override;
47 SkDWriteFontFileStream* onFork() const override;
48
49 SkTScopedComPtr<IDWriteFontFileStream> fFontFileStream;
50 size_t fPos;
51 const void* fLockedMemory;
52 void* fFragmentLock;
53};
54
55/**
56 * An IDWriteFontFileStream backed by an SkStream.
57 * This allows DirectWrite to read an SkStream.
58 */
59class SkDWriteFontFileStreamWrapper : public IDWriteFontFileStream {
60public:
61 // IUnknown methods
62 SK_STDMETHODIMP QueryInterface(REFIID iid, void** ppvObject) override;
63 SK_STDMETHODIMP_(ULONG) AddRef() override;
64 SK_STDMETHODIMP_(ULONG) Release() override;
65
66 // IDWriteFontFileStream methods
68 void const** fragmentStart,
69 UINT64 fileOffset,
70 UINT64 fragmentSize,
71 void** fragmentContext) override;
72
73 SK_STDMETHODIMP_(void) ReleaseFileFragment(void* fragmentContext) override;
74 SK_STDMETHODIMP GetFileSize(UINT64* fileSize) override;
75 SK_STDMETHODIMP GetLastWriteTime(UINT64* lastWriteTime) override;
76
77 static HRESULT Create(SkStreamAsset* stream,
78 SkDWriteFontFileStreamWrapper** streamFontFileStream);
79
80private:
83
84 ULONG fRefCount;
85 std::unique_ptr<SkStreamAsset> fStream;
86 SkMutex fStreamMutex;
87};
88#endif
#define SK_STDMETHODIMP
Definition: SkObjBase.h:22
static HRESULT Create(SkStreamAsset *stream, SkDWriteFontFileStreamWrapper **streamFontFileStream)
SK_STDMETHODIMP_(ULONG) AddRef() override
SK_STDMETHODIMP GetFileSize(UINT64 *fileSize) override
SK_STDMETHODIMP_(ULONG) Release() override
SK_STDMETHODIMP ReadFileFragment(void const **fragmentStart, UINT64 fileOffset, UINT64 fragmentSize, void **fragmentContext) override
SK_STDMETHODIMP QueryInterface(REFIID iid, void **ppvObject) override
SK_STDMETHODIMP GetLastWriteTime(UINT64 *lastWriteTime) override
SK_STDMETHODIMP_(void) ReleaseFileFragment(void *fragmentContext) override
bool isAtEnd() const override
bool rewind() override
size_t read(void *buffer, size_t size) override
bool move(long offset) override
SkDWriteFontFileStream(IDWriteFontFileStream *fontFileStream)
size_t getLength() const override
bool seek(size_t position) override
const void * getMemoryBase() override
std::unique_ptr< SkDWriteFontFileStream > fork() const
~SkDWriteFontFileStream() override
size_t getPosition() const override
std::unique_ptr< SkDWriteFontFileStream > duplicate() const
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace buffer
Definition: switches.h:126
it will be possible to load the file into Perfetto s trace viewer disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
Definition: switches.h:259
SeparatedVector2 offset
DWORD ULONG
Definition: windows_types.h:40