Bug 1862332 [wpt PR 42877] - WebKit export of https://bugs.webkit.org/show_bug.cgi...
[gecko.git] / gfx / harfbuzz / src / hb-ot-name.cc
blob6adf1e8fbea5a38651625fcebf622eb339bace41
1 /*
2 * Copyright © 2018 Google, Inc.
4 * This is part of HarfBuzz, a text shaping library.
6 * Permission is hereby granted, without written agreement and without
7 * license or royalty fees, to use, copy, modify, and distribute this
8 * software and its documentation for any purpose, provided that the
9 * above copyright notice and the following two paragraphs appear in
10 * all copies of this software.
12 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
16 * DAMAGE.
18 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
21 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
24 * Google Author(s): Behdad Esfahbod
27 #include "hb.hh"
29 #ifndef HB_NO_NAME
31 #include "hb-ot-name-table.hh"
33 #include "hb-utf.hh"
36 /**
37 * SECTION:hb-ot-name
38 * @title: hb-ot-name
39 * @short_description: OpenType font name information
40 * @include: hb-ot.h
42 * Functions for fetching name strings from OpenType fonts.
43 **/
46 /**
47 * hb_ot_name_list_names:
48 * @face: font face.
49 * @num_entries: (out) (optional): number of returned entries.
51 * Enumerates all available name IDs and language combinations. Returned
52 * array is owned by the @face and should not be modified. It can be
53 * used as long as @face is alive.
55 * Returns: (transfer none) (array length=num_entries): Array of available name entries.
56 * Since: 2.1.0
57 **/
58 const hb_ot_name_entry_t *
59 hb_ot_name_list_names (hb_face_t *face,
60 unsigned int *num_entries /* OUT */)
62 const OT::name_accelerator_t &name = *face->table.name;
63 if (num_entries) *num_entries = name.names.length;
64 return (const hb_ot_name_entry_t *) name.names;
67 template <typename utf_t>
68 static inline unsigned int
69 hb_ot_name_get_utf (hb_face_t *face,
70 hb_ot_name_id_t name_id,
71 hb_language_t language,
72 unsigned int *text_size /* IN/OUT */,
73 typename utf_t::codepoint_t *text /* OUT */)
75 const OT::name_accelerator_t &name = *face->table.name;
77 if (!language)
78 language = hb_language_from_string ("en", 2);
80 unsigned int width;
81 int idx = name.get_index (name_id, language, &width);
82 if (idx != -1)
84 hb_bytes_t bytes = name.get_name (idx);
86 if (width == 2) /* UTF16-BE */
87 return OT::hb_ot_name_convert_utf<hb_utf16_be_t, utf_t> (bytes, text_size, text);
89 if (width == 1) /* ASCII */
90 return OT::hb_ot_name_convert_utf<hb_ascii_t, utf_t> (bytes, text_size, text);
93 if (text_size)
95 if (*text_size)
96 *text = 0;
97 *text_size = 0;
99 return 0;
103 * hb_ot_name_get_utf8:
104 * @face: font face.
105 * @name_id: OpenType name identifier to fetch.
106 * @language: language to fetch the name for.
107 * @text_size: (inout) (optional): input size of @text buffer, and output size of
108 * text written to buffer.
109 * @text: (out caller-allocates) (array length=text_size): buffer to write fetched name into.
111 * Fetches a font name from the OpenType 'name' table.
112 * If @language is #HB_LANGUAGE_INVALID, English ("en") is assumed.
113 * Returns string in UTF-8 encoding. A NUL terminator is always written
114 * for convenience, and isn't included in the output @text_size.
116 * Returns: full length of the requested string, or 0 if not found.
117 * Since: 2.1.0
119 unsigned int
120 hb_ot_name_get_utf8 (hb_face_t *face,
121 hb_ot_name_id_t name_id,
122 hb_language_t language,
123 unsigned int *text_size /* IN/OUT */,
124 char *text /* OUT */)
126 return hb_ot_name_get_utf<hb_utf8_t> (face, name_id, language, text_size,
127 (hb_utf8_t::codepoint_t *) text);
131 * hb_ot_name_get_utf16:
132 * @face: font face.
133 * @name_id: OpenType name identifier to fetch.
134 * @language: language to fetch the name for.
135 * @text_size: (inout) (optional): input size of @text buffer, and output size of
136 * text written to buffer.
137 * @text: (out caller-allocates) (array length=text_size): buffer to write fetched name into.
139 * Fetches a font name from the OpenType 'name' table.
140 * If @language is #HB_LANGUAGE_INVALID, English ("en") is assumed.
141 * Returns string in UTF-16 encoding. A NUL terminator is always written
142 * for convenience, and isn't included in the output @text_size.
144 * Returns: full length of the requested string, or 0 if not found.
145 * Since: 2.1.0
147 unsigned int
148 hb_ot_name_get_utf16 (hb_face_t *face,
149 hb_ot_name_id_t name_id,
150 hb_language_t language,
151 unsigned int *text_size /* IN/OUT */,
152 uint16_t *text /* OUT */)
154 return hb_ot_name_get_utf<hb_utf16_t> (face, name_id, language, text_size, text);
158 * hb_ot_name_get_utf32:
159 * @face: font face.
160 * @name_id: OpenType name identifier to fetch.
161 * @language: language to fetch the name for.
162 * @text_size: (inout) (optional): input size of @text buffer, and output size of
163 * text written to buffer.
164 * @text: (out caller-allocates) (array length=text_size): buffer to write fetched name into.
166 * Fetches a font name from the OpenType 'name' table.
167 * If @language is #HB_LANGUAGE_INVALID, English ("en") is assumed.
168 * Returns string in UTF-32 encoding. A NUL terminator is always written
169 * for convenience, and isn't included in the output @text_size.
171 * Returns: full length of the requested string, or 0 if not found.
172 * Since: 2.1.0
174 unsigned int
175 hb_ot_name_get_utf32 (hb_face_t *face,
176 hb_ot_name_id_t name_id,
177 hb_language_t language,
178 unsigned int *text_size /* IN/OUT */,
179 uint32_t *text /* OUT */)
181 return hb_ot_name_get_utf<hb_utf32_t> (face, name_id, language, text_size, text);
184 #endif