diff options
author | Rodrigo Tobar <rtobarc@gmail.com> | 2023-01-23 23:56:43 +0800 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-02-02 14:50:38 +0100 |
commit | 286e3e6872e9612b7e419f6aea3ee0ba5703bc3e (patch) | |
tree | 64dc7ac688023b123fbed80055e207c539c25b6c /Userland/Libraries/LibPDF/Encoding.cpp | |
parent | fb0c3a9e18cbd55423b1dc780e5847a5202aa3e5 (diff) | |
download | serenity-286e3e6872e9612b7e419f6aea3ee0ba5703bc3e.zip |
LibPDF: Simplify Encoding to align with simple font requirements
All "Simple Fonts" in PDF (all but Type0 fonts) have the property that
glyphs are selected with single byte character codes. This means that
the Encoding objects should use u8 for representing these character
codes. Moreover, and as mentioned in a previous commit, there is no need
to store the unicode code point associated with a character (which was
in turn wrongly associated to a glyph).
This commit greatly simplifies the Encoding class. Namely it:
* Removes the unnecessary CharDescriptor class.
* Changes the internal maps to be u8 -> FlyString and vice-versa,
effectively providing two-way lookups.
* Adds a new method to set a two-way u8 -> FlyString mapping and uses
it in all possible places.
* Simplified the creation of Encoding objects.
* Changes how the WinAnsi special treatment for bullet points is
implemented.
Diffstat (limited to 'Userland/Libraries/LibPDF/Encoding.cpp')
-rw-r--r-- | Userland/Libraries/LibPDF/Encoding.cpp | 71 |
1 files changed, 29 insertions, 42 deletions
diff --git a/Userland/Libraries/LibPDF/Encoding.cpp b/Userland/Libraries/LibPDF/Encoding.cpp index 9c951da309..c21767afa3 100644 --- a/Userland/Libraries/LibPDF/Encoding.cpp +++ b/Userland/Libraries/LibPDF/Encoding.cpp @@ -11,15 +11,9 @@ namespace PDF { -PDFErrorOr<NonnullRefPtr<Encoding>> Encoding::create(HashMap<u16, CharDescriptor> descriptors) +NonnullRefPtr<Encoding> Encoding::create() { - auto encoding = adopt_ref(*new Encoding()); - encoding->m_descriptors = descriptors; - - for (auto& descriptor : descriptors) - encoding->m_name_mapping.set(descriptor.value.name, descriptor.value.code_point); - - return encoding; + return adopt_ref(*new Encoding()); } PDFErrorOr<NonnullRefPtr<Encoding>> Encoding::from_object(Document* document, NonnullRefPtr<Object> const& obj) @@ -49,8 +43,8 @@ PDFErrorOr<NonnullRefPtr<Encoding>> Encoding::from_object(Document* document, No auto encoding = adopt_ref(*new Encoding()); - encoding->m_descriptors = base_encoding->descriptors(); - encoding->m_name_mapping = base_encoding->name_mapping(); + encoding->m_descriptors = base_encoding->m_descriptors; + encoding->m_name_mapping = base_encoding->m_name_mapping; auto differences_array = TRY(dict->get_array(document, CommonNames::Differences)); @@ -66,8 +60,7 @@ PDFErrorOr<NonnullRefPtr<Encoding>> Encoding::from_object(Document* document, No VERIFY(!first); auto& object = item.get<NonnullRefPtr<Object>>(); auto name = object->cast<NameObject>()->name(); - - encoding->m_descriptors.set(current_code_point, { name, base_encoding->m_name_mapping.ensure(name) }); + encoding->set(current_code_point, name); current_code_point++; } } @@ -75,13 +68,18 @@ PDFErrorOr<NonnullRefPtr<Encoding>> Encoding::from_object(Document* document, No return encoding; } +void Encoding::set(CharCodeType char_code, DeprecatedFlyString const& glyph_name) +{ + m_descriptors.set(char_code, glyph_name); + m_name_mapping.set(glyph_name, char_code); +} + NonnullRefPtr<Encoding> Encoding::standard_encoding() { static NonnullRefPtr<Encoding> encoding = adopt_ref(*new Encoding()); if (encoding->m_descriptors.is_empty()) { #define ENUMERATE(name, standard_code, mac_code, win_code, pdf_code) \ - encoding->m_descriptors.set(standard_code, { #name, 0 }); \ - encoding->m_name_mapping.set(#name, standard_code); + encoding->set(standard_code, #name); ENUMERATE_LATIN_CHARACTER_SET(ENUMERATE) #undef ENUMERATE } @@ -94,8 +92,7 @@ NonnullRefPtr<Encoding> Encoding::mac_encoding() static NonnullRefPtr<Encoding> encoding = adopt_ref(*new Encoding()); if (encoding->m_descriptors.is_empty()) { #define ENUMERATE(name, standard_code, mac_code, win_code, pdf_code) \ - encoding->m_descriptors.set(mac_code, { #name, 0 }); \ - encoding->m_name_mapping.set(#name, mac_code); + encoding->set(mac_code, #name); ENUMERATE_LATIN_CHARACTER_SET(ENUMERATE) #undef ENUMERATE } @@ -108,13 +105,20 @@ NonnullRefPtr<Encoding> Encoding::windows_encoding() static NonnullRefPtr<Encoding> encoding = adopt_ref(*new Encoding()); if (encoding->m_descriptors.is_empty()) { #define ENUMERATE(name, standard_code, mac_code, win_code, pdf_code) \ - encoding->m_descriptors.set(win_code, { #name, 0 }); \ - encoding->m_name_mapping.set(#name, win_code); + encoding->set(win_code, #name); ENUMERATE_LATIN_CHARACTER_SET(ENUMERATE) #undef ENUMERATE - encoding->m_windows = true; - } + // PDF Annex D table D.2, note 3: + // In WinAnsiEncoding, all unused codes greater than 40 (octal) map to the bullet character. However, only + // code 225 (octal) shall be specifically assigned to the bullet character; other codes are subject to future re-assignment. + // + // Since CharCodeType is u8 *and* we need to include 255, we iterate in reverse order to have more readable code. + for (CharCodeType char_code = 255; char_code > 040; char_code--) { + if (!encoding->m_descriptors.contains(char_code)) + encoding->set(char_code, "bullet"); + } + } return encoding; } @@ -123,8 +127,7 @@ NonnullRefPtr<Encoding> Encoding::pdf_doc_encoding() static NonnullRefPtr<Encoding> encoding = adopt_ref(*new Encoding()); if (encoding->m_descriptors.is_empty()) { #define ENUMERATE(name, standard_code, mac_code, win_code, pdf_code) \ - encoding->m_descriptors.set(pdf_code, { #name, 0 }); \ - encoding->m_name_mapping.set(#name, pdf_code); + encoding->set(pdf_code, #name); ENUMERATE_LATIN_CHARACTER_SET(ENUMERATE) #undef ENUMERATE } @@ -136,9 +139,8 @@ NonnullRefPtr<Encoding> Encoding::symbol_encoding() { static NonnullRefPtr<Encoding> encoding = adopt_ref(*new Encoding()); if (encoding->m_descriptors.is_empty()) { -#define ENUMERATE(name, code) \ - encoding->m_descriptors.set(code, { #name, 0 }); \ - encoding->m_name_mapping.set(#name, code); +#define ENUMERATE(name, code) \ + encoding->set(code, #name); ENUMERATE_SYMBOL_CHARACTER_SET(ENUMERATE) #undef ENUMERATE } @@ -150,21 +152,14 @@ NonnullRefPtr<Encoding> Encoding::zapf_encoding() { static NonnullRefPtr<Encoding> encoding = adopt_ref(*new Encoding()); if (encoding->m_descriptors.is_empty()) { -#define ENUMERATE(name, code) \ - encoding->m_descriptors.set(code, { #name, 0 }); \ - encoding->m_name_mapping.set(#name, code); +#define ENUMERATE(name, code) \ + encoding->set(code, #name); ENUMERATE_ZAPF_DINGBATS_CHARACTER_SET(ENUMERATE) #undef ENUMERATE } - return encoding; } -CharDescriptor const& Encoding::get_char_code_descriptor(u16 char_code) const -{ - return const_cast<Encoding*>(this)->m_descriptors.ensure(char_code); -} - u16 Encoding::get_char_code(DeprecatedString const& name) const { auto code_iterator = m_name_mapping.find(name); @@ -173,12 +168,4 @@ u16 Encoding::get_char_code(DeprecatedString const& name) const return 0; } -bool Encoding::should_map_to_bullet(u16 char_code) const -{ - // PDF Annex D table D.2, note 3: - // In WinAnsiEncoding, all unused codes greater than 40 (octal) map to the bullet character. However, only - // code 225 (octal) shall be specifically assigned to the bullet character; other codes are subject to future re-assignment. - return m_windows && char_code > 040 && !m_descriptors.contains(char_code); -} - } |