Flutter Engine
The Flutter Engine
SkDescriptor.h
Go to the documentation of this file.
1/*
2 * Copyright 2006 The Android Open Source Project
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 SkDescriptor_DEFINED
9#define SkDescriptor_DEFINED
10
16
17#include <cstddef>
18#include <cstdint>
19#include <memory>
20#include <optional>
21
22class SkReadBuffer;
23class SkWriteBuffer;
24
26public:
27 static size_t ComputeOverhead(int entryCount) {
28 SkASSERT(entryCount >= 0);
29 return sizeof(SkDescriptor) + entryCount * sizeof(Entry);
30 }
31
32 static std::unique_ptr<SkDescriptor> Alloc(size_t length);
33
34 //
35 // Ensure the unsized delete is called.
36 void operator delete(void* p);
37 void* operator new(size_t);
38 void* operator new(size_t, void* p) { return p; }
39
40 void flatten(SkWriteBuffer& buffer) const;
41
42 uint32_t getLength() const { return fLength; }
43 void* addEntry(uint32_t tag, size_t length, const void* data = nullptr);
44 void computeChecksum();
45
46 // Assumes that getLength <= capacity of this SkDescriptor.
47 bool isValid() const;
48
49#ifdef SK_DEBUG
50 void assertChecksum() const {
51 SkASSERT(SkDescriptor::ComputeChecksum(this) == fChecksum);
52 }
53#endif
54
55 const void* findEntry(uint32_t tag, uint32_t* length) const;
56
57 std::unique_ptr<SkDescriptor> copy() const;
58
59 // This assumes that all memory added has a length that is a multiple of 4. This is checked
60 // by the assert in addEntry.
61 bool operator==(const SkDescriptor& other) const;
62 bool operator!=(const SkDescriptor& other) const { return !(*this == other); }
63
64 uint32_t getChecksum() const { return fChecksum; }
65
66 struct Entry {
67 uint32_t fTag;
68 uint32_t fLen;
69 };
70
71 uint32_t getCount() const { return fCount; }
72
73 SkString dumpRec() const;
74
75private:
76 SkDescriptor() = default;
78 friend class SkAutoDescriptor;
79
80 static uint32_t ComputeChecksum(const SkDescriptor* desc);
81
82 uint32_t fChecksum{0}; // must be first
83 uint32_t fLength{sizeof(SkDescriptor)}; // must be second
84 uint32_t fCount{0};
85};
86
88public:
90 explicit SkAutoDescriptor(size_t size);
91 explicit SkAutoDescriptor(const SkDescriptor&);
97
98 // Returns no value if there is an error.
99 static std::optional<SkAutoDescriptor> MakeFromBuffer(SkReadBuffer& buffer);
100
101 void reset(size_t size);
102 void reset(const SkDescriptor& desc);
103 SkDescriptor* getDesc() const { SkASSERT(fDesc); return fDesc; }
104
105private:
106 void free();
107 static constexpr size_t kStorageSize
108 = sizeof(SkDescriptor)
109 + sizeof(SkDescriptor::Entry) + sizeof(SkScalerContextRec) // for rec
110 + sizeof(SkDescriptor::Entry) + sizeof(void*) // for typeface
111 + 32; // slop for occasional small extras
112
113 SkDescriptor* fDesc{nullptr};
114 alignas(uint32_t) char fStorage[kStorageSize];
115};
116
117#endif //SkDescriptor_DEFINED
#define SkASSERT(cond)
Definition: SkAssert.h:116
SkAutoDescriptor & operator=(const SkAutoDescriptor &)
SkDescriptor * getDesc() const
Definition: SkDescriptor.h:103
static std::optional< SkAutoDescriptor > MakeFromBuffer(SkReadBuffer &buffer)
void reset(size_t size)
void * addEntry(uint32_t tag, size_t length, const void *data=nullptr)
void flatten(SkWriteBuffer &buffer) const
static std::unique_ptr< SkDescriptor > Alloc(size_t length)
std::unique_ptr< SkDescriptor > copy() const
uint32_t getChecksum() const
Definition: SkDescriptor.h:64
void computeChecksum()
uint32_t getLength() const
Definition: SkDescriptor.h:42
SkString dumpRec() const
static size_t ComputeOverhead(int entryCount)
Definition: SkDescriptor.h:27
bool operator!=(const SkDescriptor &other) const
Definition: SkDescriptor.h:62
bool isValid() const
const void * findEntry(uint32_t tag, uint32_t *length) const
bool operator==(const SkDescriptor &other) const
uint32_t getCount() const
Definition: SkDescriptor.h:71
size_t length
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
std::shared_ptr< const fml::Mapping > data
Definition: texture_gles.cc:63