blob: 3ae3fa1bebd04f31d7e7339db9890d16716cb802 [file] [log] [blame]
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -04001/*
2 * Copyright © 2010 Behdad Esfahbod
Behdad Esfahbod45675e52012-05-15 23:10:39 -04003 * Copyright © 2011,2012 Google, Inc.
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -04004 *
5 * This is part of HarfBuzz, a text shaping library.
6 *
7 * Permission is hereby granted, without written agreement and without
8 * license or royalty fees, to use, copy, modify, and distribute this
9 * software and its documentation for any purpose, provided that the
10 * above copyright notice and the following two paragraphs appear in
11 * all copies of this software.
12 *
13 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
14 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
15 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
16 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
17 * DAMAGE.
18 *
19 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
20 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
21 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
22 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
23 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
24 *
25 * Google Author(s): Behdad Esfahbod
26 */
27
Behdad Esfahbod45675e52012-05-15 23:10:39 -040028#include "main-font-text.hh"
29#include "shape-consumer.hh"
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -040030
Behdad Esfahbod5db06832012-06-02 12:13:08 -040031struct output_buffer_t
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -040032{
33 output_buffer_t (option_parser_t *parser)
Behdad Esfahbodea5e8a02014-03-19 15:38:02 -070034 : options (parser, hb_buffer_serialize_list_formats ()),
Behdad Esfahbod7235f332013-06-10 14:39:51 -040035 format (parser),
Behdad Esfahboddbdbfe32017-10-15 12:11:08 +020036 gs (nullptr),
Behdad Esfahbod7235f332013-06-10 14:39:51 -040037 line_no (0),
Behdad Esfahboddbdbfe32017-10-15 12:11:08 +020038 font (nullptr),
Philip Withnall925ceac2017-02-08 02:17:48 +000039 output_format (HB_BUFFER_SERIALIZE_FORMAT_INVALID),
40 format_flags (HB_BUFFER_SERIALIZE_FLAG_DEFAULT) {}
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -040041
Behdad Esfahbode6035052017-07-18 19:14:19 -070042 void init (hb_buffer_t *buffer, const font_options_t *font_opts)
Behdad Esfahbod45675e52012-05-15 23:10:39 -040043 {
Behdad Esfahbod5db06832012-06-02 12:13:08 -040044 options.get_file_handle ();
Behdad Esfahboddbdbfe32017-10-15 12:11:08 +020045 gs = g_string_new (nullptr);
Behdad Esfahbod45675e52012-05-15 23:10:39 -040046 line_no = 0;
47 font = hb_font_reference (font_opts->get_font ());
Behdad Esfahbodf9edf162012-11-15 12:14:09 -080048
49 if (!options.output_format)
50 output_format = HB_BUFFER_SERIALIZE_FORMAT_TEXT;
51 else
52 output_format = hb_buffer_serialize_format_from_string (options.output_format, -1);
Behdad Esfahbod9109f1e2014-07-08 20:02:29 -040053 /* An empty "output_format" parameter basically skips output generating.
54 * Useful for benchmarking. */
Behdad Esfahbod0afedaa2014-07-09 17:00:48 -040055 if ((!options.output_format || *options.output_format) &&
Behdad Esfahbod9109f1e2014-07-08 20:02:29 -040056 !hb_buffer_serialize_format_to_string (output_format))
Behdad Esfahboda4bef842012-11-15 13:29:51 -080057 {
Behdad Esfahbod6bad0922012-12-21 16:01:52 -050058 if (options.explicit_output_format)
59 fail (false, "Unknown output format `%s'; supported formats are: %s",
Behdad Esfahbodea5e8a02014-03-19 15:38:02 -070060 options.output_format,
61 g_strjoinv ("/", const_cast<char**> (options.supported_formats)));
Behdad Esfahbod6bad0922012-12-21 16:01:52 -050062 else
63 /* Just default to TEXT if not explicitly requested and the
64 * file extension is not recognized. */
65 output_format = HB_BUFFER_SERIALIZE_FORMAT_TEXT;
Behdad Esfahboda4bef842012-11-15 13:29:51 -080066 }
Behdad Esfahbodf9edf162012-11-15 12:14:09 -080067
Behdad Esfahbod4dc798d2013-08-26 20:39:00 -040068 unsigned int flags = HB_BUFFER_SERIALIZE_FLAG_DEFAULT;
Behdad Esfahbodf9edf162012-11-15 12:14:09 -080069 if (!format.show_glyph_names)
70 flags |= HB_BUFFER_SERIALIZE_FLAG_NO_GLYPH_NAMES;
71 if (!format.show_clusters)
72 flags |= HB_BUFFER_SERIALIZE_FLAG_NO_CLUSTERS;
73 if (!format.show_positions)
74 flags |= HB_BUFFER_SERIALIZE_FLAG_NO_POSITIONS;
Behdad Esfahbod71fd6322018-01-10 02:20:14 +010075 if (!format.show_advances)
76 flags |= HB_BUFFER_SERIALIZE_FLAG_NO_ADVANCES;
Behdad Esfahbodfdd17702015-08-24 13:49:55 +010077 if (format.show_extents)
78 flags |= HB_BUFFER_SERIALIZE_FLAG_GLYPH_EXTENTS;
Behdad Esfahbod40bd7e92016-05-02 14:47:45 +020079 if (format.show_flags)
80 flags |= HB_BUFFER_SERIALIZE_FLAG_GLYPH_FLAGS;
Behdad Esfahbodf9edf162012-11-15 12:14:09 -080081 format_flags = (hb_buffer_serialize_flags_t) flags;
Behdad Esfahbode6035052017-07-18 19:14:19 -070082
Behdad Esfahbod6f388452017-07-19 17:20:55 -070083 if (format.trace)
Behdad Esfahboddbdbfe32017-10-15 12:11:08 +020084 hb_buffer_set_message_func (buffer, message_func, this, nullptr);
Behdad Esfahbod45675e52012-05-15 23:10:39 -040085 }
Ebrahim Byagowie4120082018-12-17 21:31:01 +033086 void new_line () { line_no++; }
Behdad Esfahbod5db06832012-06-02 12:13:08 -040087 void consume_text (hb_buffer_t *buffer,
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -040088 const char *text,
Behdad Esfahbod95cefdf2012-04-16 18:08:20 -040089 unsigned int text_len,
Behdad Esfahbod45675e52012-05-15 23:10:39 -040090 hb_bool_t utf8_clusters)
91 {
Behdad Esfahbod45675e52012-05-15 23:10:39 -040092 g_string_set_size (gs, 0);
Behdad Esfahbodf9edf162012-11-15 12:14:09 -080093 format.serialize_buffer_of_text (buffer, line_no, text, text_len, font, gs);
Behdad Esfahbod5db06832012-06-02 12:13:08 -040094 fprintf (options.fp, "%s", gs->str);
95 }
Behdad Esfahbodd2052272017-08-11 15:12:25 -070096 void error (const char *message)
Behdad Esfahbod5db06832012-06-02 12:13:08 -040097 {
98 g_string_set_size (gs, 0);
Behdad Esfahboda9e52a12017-08-15 17:30:18 -070099 format.serialize_message (line_no, "error", message, gs);
Behdad Esfahbod5db06832012-06-02 12:13:08 -0400100 fprintf (options.fp, "%s", gs->str);
101 }
102 void consume_glyphs (hb_buffer_t *buffer,
103 const char *text,
104 unsigned int text_len,
105 hb_bool_t utf8_clusters)
106 {
107 g_string_set_size (gs, 0);
Behdad Esfahbodf9edf162012-11-15 12:14:09 -0800108 format.serialize_buffer_of_glyphs (buffer, line_no, text, text_len, font,
109 output_format, format_flags, gs);
Behdad Esfahbod5db06832012-06-02 12:13:08 -0400110 fprintf (options.fp, "%s", gs->str);
Behdad Esfahbod45675e52012-05-15 23:10:39 -0400111 }
Behdad Esfahbode6035052017-07-18 19:14:19 -0700112 void finish (hb_buffer_t *buffer, const font_options_t *font_opts)
Behdad Esfahbod45675e52012-05-15 23:10:39 -0400113 {
Behdad Esfahboddbdbfe32017-10-15 12:11:08 +0200114 hb_buffer_set_message_func (buffer, nullptr, nullptr, nullptr);
Behdad Esfahbod45675e52012-05-15 23:10:39 -0400115 hb_font_destroy (font);
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400116 g_string_free (gs, true);
Behdad Esfahboddbdbfe32017-10-15 12:11:08 +0200117 gs = nullptr;
118 font = nullptr;
Behdad Esfahbod45675e52012-05-15 23:10:39 -0400119 }
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -0400120
Behdad Esfahbode6035052017-07-18 19:14:19 -0700121 static hb_bool_t
122 message_func (hb_buffer_t *buffer,
123 hb_font_t *font,
124 const char *message,
125 void *user_data)
126 {
127 output_buffer_t *that = (output_buffer_t *) user_data;
Behdad Esfahboda9e52a12017-08-15 17:30:18 -0700128 that->trace (buffer, font, message);
Behdad Esfahbode6035052017-07-18 19:14:19 -0700129 return true;
130 }
131
132 void
Behdad Esfahboda9e52a12017-08-15 17:30:18 -0700133 trace (hb_buffer_t *buffer,
134 hb_font_t *font,
135 const char *message)
Behdad Esfahbode6035052017-07-18 19:14:19 -0700136 {
137 g_string_set_size (gs, 0);
138 format.serialize_line_no (line_no, gs);
Behdad Esfahboda9e52a12017-08-15 17:30:18 -0700139 g_string_append_printf (gs, "trace: %s buffer: ", message);
Behdad Esfahbode6035052017-07-18 19:14:19 -0700140 format.serialize_glyphs (buffer, font, output_format, format_flags, gs);
141 g_string_append_c (gs, '\n');
142 fprintf (options.fp, "%s", gs->str);
143 }
144
145
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -0400146 protected:
Behdad Esfahbod5db06832012-06-02 12:13:08 -0400147 output_options_t options;
Behdad Esfahbod45675e52012-05-15 23:10:39 -0400148 format_options_t format;
149
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -0400150 GString *gs;
Behdad Esfahbodcdc673d2012-01-19 12:46:18 -0500151 unsigned int line_no;
Behdad Esfahbod45675e52012-05-15 23:10:39 -0400152 hb_font_t *font;
Behdad Esfahbodf9edf162012-11-15 12:14:09 -0800153 hb_buffer_serialize_format_t output_format;
154 hb_buffer_serialize_flags_t format_flags;
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -0400155};
156
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -0400157int
158main (int argc, char **argv)
159{
Behdad Esfahbod58e20f52018-10-30 00:50:18 -0700160 if (argc == 2 && !strcmp (argv[1], "--batch"))
161 {
162 unsigned int ret = 0;
Behdad Esfahbodedaa7682018-10-30 01:35:58 -0700163 char buf[4092];
164 while (fgets (buf, sizeof (buf), stdin))
Behdad Esfahbod58e20f52018-10-30 00:50:18 -0700165 {
166 size_t l = strlen (buf);
167 if (l && buf[l - 1] == '\n') buf[l - 1] = '\0';
168 main_font_text_t<shape_consumer_t<output_buffer_t>, FONT_SIZE_UPEM, 0> driver;
169 char *args[32];
170 argc = 0;
171 char *p = buf, *e;
172 args[argc++] = p;
173 while ((e = strchr (p, ' ')) && argc < (int) (int) ARRAY_LENGTH (args))
174 {
175 *e++ = '\0';
176 while (*e == ' ')
177 e++;
178 args[argc++] = p = e;
179 }
180 ret |= driver.main (argc, args);
181 fflush (stdout);
182
183 if (ret)
184 break;
185 }
Behdad Esfahbod58e20f52018-10-30 00:50:18 -0700186 return ret;
187 }
Behdad Esfahbodcd4eb962015-01-20 12:30:45 -0800188 main_font_text_t<shape_consumer_t<output_buffer_t>, FONT_SIZE_UPEM, 0> driver;
Behdad Esfahbod45675e52012-05-15 23:10:39 -0400189 return driver.main (argc, argv);
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -0400190}