Bug 1921551 - React to sync sign in flow correctly r=android-reviewers,matt-tighe
[gecko.git] / gfx / ots / src / post.cc
blob2fb897250d5aebd781a34ba437f01d50a10225f1
1 // Copyright (c) 2009-2017 The OTS Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "post.h"
7 #include "maxp.h"
9 // post - PostScript
10 // http://www.microsoft.com/typography/otspec/post.htm
12 namespace ots {
14 bool OpenTypePOST::Parse(const uint8_t *data, size_t length) {
15 Buffer table(data, length);
17 if (!table.ReadU32(&this->version)) {
18 return Error("Failed to read table version");
21 if (this->version != 0x00010000 &&
22 this->version != 0x00020000 &&
23 this->version != 0x00030000) {
24 // 0x00025000 is deprecated. We don't accept it.
25 return Error("Unsupported table version 0x%x", this->version);
28 if (!table.ReadU32(&this->italic_angle) ||
29 !table.ReadS16(&this->underline) ||
30 !table.ReadS16(&this->underline_thickness) ||
31 !table.ReadU32(&this->is_fixed_pitch) ||
32 // We don't care about the memory usage fields. We'll set all these to
33 // zero when serialising
34 !table.Skip(16)) {
35 return Error("Failed to read table header");
38 if (this->underline_thickness < 0) {
39 this->underline_thickness = 1;
42 if (this->version == 0x00010000 || this->version == 0x00030000) {
43 return true;
46 // We have a version 2 table with a list of Pascal strings at the end
48 uint16_t num_glyphs = 0;
49 if (!table.ReadU16(&num_glyphs)) {
50 return Error("Failed to read numberOfGlyphs");
53 OpenTypeMAXP* maxp = static_cast<OpenTypeMAXP*>
54 (GetFont()->GetTable(OTS_TAG_MAXP));
55 if (!maxp) {
56 return Error("Missing required maxp table");
59 if (num_glyphs == 0) {
60 if (maxp->num_glyphs > 258) {
61 return Error("Can't have no glyphs in the post table if there are more "
62 "than 258 glyphs in the font");
64 // workaround for fonts in http://www.fontsquirrel.com/fontface
65 // (e.g., yataghan.ttf).
66 this->version = 0x00010000;
67 return Warning("Table version is 1, but no glyph names are found");
70 if (num_glyphs != maxp->num_glyphs) {
71 // Note: Fixedsys500c.ttf seems to have inconsistent num_glyphs values.
72 return Error("Bad number of glyphs: %d", num_glyphs);
75 this->glyph_name_index.resize(num_glyphs);
76 for (unsigned i = 0; i < num_glyphs; ++i) {
77 if (!table.ReadU16(&this->glyph_name_index[i])) {
78 return Error("Failed to read glyph name %d", i);
80 // Note: A strict interpretation of the specification requires name indexes
81 // are less than 32768. This, however, excludes fonts like unifont.ttf
82 // which cover all of unicode.
85 // Now we have an array of Pascal strings. We have to check that they are all
86 // valid and read them in.
87 const size_t strings_offset = table.offset();
88 const uint8_t *strings = data + strings_offset;
89 const uint8_t *strings_end = data + length;
91 for (;;) {
92 if (strings == strings_end) break;
93 const unsigned string_length = *strings;
94 if (strings + 1 + string_length > strings_end) {
95 return Error("Bad string length %d", string_length);
97 if (std::memchr(strings + 1, '\0', string_length)) {
98 return Error("Bad string of length %d", string_length);
100 this->names.push_back(
101 std::string(reinterpret_cast<const char*>(strings + 1), string_length));
102 strings += 1 + string_length;
104 const unsigned num_strings = this->names.size();
106 // check that all the references are within bounds
107 for (unsigned i = 0; i < num_glyphs; ++i) {
108 unsigned offset = this->glyph_name_index[i];
109 if (offset < 258) {
110 continue;
113 offset -= 258;
114 if (offset >= num_strings) {
115 return Error("Bad string index %d", offset);
119 return true;
122 bool OpenTypePOST::Serialize(OTSStream *out) {
123 // OpenType with CFF glyphs must have v3 post table.
124 if (GetFont()->GetTable(OTS_TAG_CFF) && this->version != 0x00030000) {
125 Warning("Only version supported for fonts with CFF table is 0x00030000"
126 " not 0x%x", this->version);
127 this->version = 0x00030000;
130 if (!out->WriteU32(this->version) ||
131 !out->WriteU32(this->italic_angle) ||
132 !out->WriteS16(this->underline) ||
133 !out->WriteS16(this->underline_thickness) ||
134 !out->WriteU32(this->is_fixed_pitch) ||
135 !out->WriteU32(0) ||
136 !out->WriteU32(0) ||
137 !out->WriteU32(0) ||
138 !out->WriteU32(0)) {
139 return Error("Failed to write post header");
142 if (this->version != 0x00020000) {
143 return true; // v1.0 and v3.0 does not have glyph names.
146 const uint16_t num_indexes =
147 static_cast<uint16_t>(this->glyph_name_index.size());
148 if (num_indexes != this->glyph_name_index.size() ||
149 !out->WriteU16(num_indexes)) {
150 return Error("Failed to write number of indices");
153 for (uint16_t i = 0; i < num_indexes; ++i) {
154 if (!out->WriteU16(this->glyph_name_index[i])) {
155 return Error("Failed to write name index %d", i);
159 // Now we just have to write out the strings in the correct order
160 for (unsigned i = 0; i < this->names.size(); ++i) {
161 const std::string& s = this->names[i];
162 const uint8_t string_length = static_cast<uint8_t>(s.size());
163 if (string_length != s.size() ||
164 !out->Write(&string_length, 1)) {
165 return Error("Failed to write string %d", i);
167 // Some ttf fonts (e.g., frank.ttf on Windows Vista) have zero-length name.
168 // We allow them.
169 if (string_length > 0 && !out->Write(s.data(), string_length)) {
170 return Error("Failed to write string length for string %d", i);
174 return true;
177 } // namespace ots