blob: bc699c1d101e113b4569b3d752cee0a717036466 [file] [log] [blame]
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +02001/*
Behdad Esfahbod8f8956a2012-05-25 14:30:24 -04002 * Copyright © 2011,2012 Google, Inc.
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +02003 *
4 * This is part of HarfBuzz, a text shaping library.
5 *
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.
11 *
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.
17 *
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.
23 *
24 * Google Author(s): Behdad Esfahbod
25 */
26
27#include "options.hh"
28
Behdad Esfahbod5ddd9cc2011-09-16 16:40:44 -040029#ifdef HAVE_FREETYPE
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -040030#include <hb-ft.h>
Behdad Esfahbod8650def2014-07-05 15:50:18 -040031#endif
32#ifdef HAVE_OT
Behdad Esfahbod16dac7e2015-06-03 12:07:46 -070033#include <hb-ot.h>
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -040034#endif
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +020035
Behdad Esfahbod8650def2014-07-05 15:50:18 -040036struct supported_font_funcs_t {
37 char name[4];
38 void (*func) (hb_font_t *);
39} supported_font_funcs[] =
40{
41#ifdef HAVE_FREETYPE
42 {"ft", hb_ft_font_set_funcs},
43#endif
44#ifdef HAVE_OT
45 {"ot", hb_ot_font_set_funcs},
46#endif
47};
48
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +020049
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -040050void
51fail (hb_bool_t suggest_help, const char *format, ...)
52{
53 const char *msg;
54
55 va_list vap;
56 va_start (vap, format);
57 msg = g_strdup_vprintf (format, vap);
Behdad Esfahbodc36c4a92015-01-02 14:09:23 -080058 va_end (vap);
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -040059 const char *prgname = g_get_prgname ();
60 g_printerr ("%s: %s\n", prgname, msg);
61 if (suggest_help)
62 g_printerr ("Try `%s --help' for more information.\n", prgname);
63
64 exit (1);
65}
66
67
Behdad Esfahbod0594a242012-06-05 20:35:40 -040068hb_bool_t debug = false;
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -040069
70static gchar *
71shapers_to_string (void)
72{
73 GString *shapers = g_string_new (NULL);
74 const char **shaper_list = hb_shape_list_shapers ();
75
76 for (; *shaper_list; shaper_list++) {
77 g_string_append (shapers, *shaper_list);
78 g_string_append_c (shapers, ',');
79 }
80 g_string_truncate (shapers, MAX (0, (gint)shapers->len - 1));
81
Behdad Esfahbod0594a242012-06-05 20:35:40 -040082 return g_string_free (shapers, false);
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -040083}
84
85static G_GNUC_NORETURN gboolean
86show_version (const char *name G_GNUC_UNUSED,
87 const char *arg G_GNUC_UNUSED,
88 gpointer data G_GNUC_UNUSED,
89 GError **error G_GNUC_UNUSED)
90{
91 g_printf ("%s (%s) %s\n", g_get_prgname (), PACKAGE_NAME, PACKAGE_VERSION);
92
93 char *shapers = shapers_to_string ();
94 g_printf ("Available shapers: %s\n", shapers);
95 g_free (shapers);
96 if (strcmp (HB_VERSION_STRING, hb_version_string ()))
97 g_printf ("Linked HarfBuzz library has a different version: %s\n", hb_version_string ());
98
99 exit(0);
100}
101
102
103void
104option_parser_t::add_main_options (void)
105{
106 GOptionEntry entries[] =
107 {
108 {"version", 0, G_OPTION_FLAG_NO_ARG,
109 G_OPTION_ARG_CALLBACK, (gpointer) &show_version, "Show version numbers", NULL},
110 {"debug", 0, 0, G_OPTION_ARG_NONE, &debug, "Free all resources before exit", NULL},
111 {NULL}
112 };
113 g_option_context_add_main_entries (context, entries, NULL);
114}
115
116static gboolean
117pre_parse (GOptionContext *context G_GNUC_UNUSED,
118 GOptionGroup *group G_GNUC_UNUSED,
119 gpointer data,
120 GError **error)
121{
122 option_group_t *option_group = (option_group_t *) data;
123 option_group->pre_parse (error);
124 return *error == NULL;
125}
126
127static gboolean
128post_parse (GOptionContext *context G_GNUC_UNUSED,
129 GOptionGroup *group G_GNUC_UNUSED,
130 gpointer data,
131 GError **error)
132{
133 option_group_t *option_group = static_cast<option_group_t *>(data);
134 option_group->post_parse (error);
135 return *error == NULL;
136}
137
138void
139option_parser_t::add_group (GOptionEntry *entries,
140 const gchar *name,
141 const gchar *description,
142 const gchar *help_description,
143 option_group_t *option_group)
144{
145 GOptionGroup *group = g_option_group_new (name, description, help_description,
146 static_cast<gpointer>(option_group), NULL);
147 g_option_group_add_entries (group, entries);
148 g_option_group_set_parse_hooks (group, pre_parse, post_parse);
149 g_option_context_add_group (context, group);
150}
151
152void
153option_parser_t::parse (int *argc, char ***argv)
154{
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -0400155 setlocale (LC_ALL, "");
156
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400157 GError *parse_error = NULL;
158 if (!g_option_context_parse (context, argc, argv, &parse_error))
159 {
Behdad Esfahboda75c1b12011-09-16 01:16:41 -0400160 if (parse_error != NULL) {
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400161 fail (true, "%s", parse_error->message);
Behdad Esfahboda75c1b12011-09-16 01:16:41 -0400162 //g_error_free (parse_error);
163 } else
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400164 fail (true, "Option parse error");
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400165 }
166}
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200167
168
169static gboolean
170parse_margin (const char *name G_GNUC_UNUSED,
171 const char *arg,
Behdad Esfahbodbc4b07b2011-09-08 17:08:32 -0400172 gpointer data,
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200173 GError **error G_GNUC_UNUSED)
174{
Behdad Esfahbodbc4b07b2011-09-08 17:08:32 -0400175 view_options_t *view_opts = (view_options_t *) data;
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200176 view_options_t::margin_t &m = view_opts->margin;
Behdad Esfahboda6648102015-04-09 15:04:42 -0700177 switch (sscanf (arg, "%lf%*[ ,]%lf%*[ ,]%lf%*[ ,]%lf", &m.t, &m.r, &m.b, &m.l)) {
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200178 case 1: m.r = m.t;
179 case 2: m.b = m.t;
180 case 3: m.l = m.r;
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400181 case 4: return true;
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200182 default:
183 g_set_error (error, G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE,
184 "%s argument should be one to four space-separated numbers",
185 name);
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400186 return false;
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200187 }
188}
189
190
191static gboolean
192parse_shapers (const char *name G_GNUC_UNUSED,
193 const char *arg,
Behdad Esfahbodbc4b07b2011-09-08 17:08:32 -0400194 gpointer data,
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200195 GError **error G_GNUC_UNUSED)
196{
Behdad Esfahbodbc4b07b2011-09-08 17:08:32 -0400197 shape_options_t *shape_opts = (shape_options_t *) data;
Behdad Esfahbodade74592012-08-06 19:42:47 -0700198 g_strfreev (shape_opts->shapers);
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200199 shape_opts->shapers = g_strsplit (arg, ",", 0);
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400200 return true;
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200201}
202
Behdad Esfahbodfd528c12011-10-12 15:03:58 -0400203static G_GNUC_NORETURN gboolean
204list_shapers (const char *name G_GNUC_UNUSED,
205 const char *arg G_GNUC_UNUSED,
206 gpointer data G_GNUC_UNUSED,
207 GError **error G_GNUC_UNUSED)
208{
209 for (const char **shaper = hb_shape_list_shapers (); *shaper; shaper++)
210 g_printf ("%s\n", *shaper);
211
212 exit(0);
213}
214
215
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200216static gboolean
217parse_features (const char *name G_GNUC_UNUSED,
218 const char *arg,
Behdad Esfahbodbc4b07b2011-09-08 17:08:32 -0400219 gpointer data,
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200220 GError **error G_GNUC_UNUSED)
221{
Behdad Esfahbodbc4b07b2011-09-08 17:08:32 -0400222 shape_options_t *shape_opts = (shape_options_t *) data;
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200223 char *s = (char *) arg;
224 char *p;
225
226 shape_opts->num_features = 0;
Behdad Esfahbod8f8956a2012-05-25 14:30:24 -0400227 g_free (shape_opts->features);
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200228 shape_opts->features = NULL;
229
230 if (!*s)
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400231 return true;
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200232
233 /* count the features first, so we can allocate memory */
234 p = s;
235 do {
236 shape_opts->num_features++;
237 p = strchr (p, ',');
238 if (p)
239 p++;
240 } while (p);
241
242 shape_opts->features = (hb_feature_t *) calloc (shape_opts->num_features, sizeof (*shape_opts->features));
243
244 /* now do the actual parsing */
245 p = s;
246 shape_opts->num_features = 0;
Behdad Esfahbode30ebd22012-09-06 22:09:06 -0400247 while (p && *p) {
248 char *end = strchr (p, ',');
249 if (hb_feature_from_string (p, end ? end - p : -1, &shape_opts->features[shape_opts->num_features]))
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200250 shape_opts->num_features++;
Behdad Esfahbode30ebd22012-09-06 22:09:06 -0400251 p = end ? end + 1 : NULL;
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200252 }
253
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400254 return true;
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200255}
256
257
Behdad Esfahbod109cb382011-09-08 16:00:04 -0400258void
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400259view_options_t::add_options (option_parser_t *parser)
Behdad Esfahbod109cb382011-09-08 16:00:04 -0400260{
261 GOptionEntry entries[] =
262 {
Behdad Esfahbodbc4b07b2011-09-08 17:08:32 -0400263 {"annotate", 0, 0, G_OPTION_ARG_NONE, &this->annotate, "Annotate output rendering", NULL},
Behdad Esfahbodd6884752013-12-12 13:21:57 -0500264 {"background", 0, 0, G_OPTION_ARG_STRING, &this->back, "Set background color (default: " DEFAULT_BACK ")", "rrggbb/rrggbbaa"},
265 {"foreground", 0, 0, G_OPTION_ARG_STRING, &this->fore, "Set foreground color (default: " DEFAULT_FORE ")", "rrggbb/rrggbbaa"},
Behdad Esfahbodbc4b07b2011-09-08 17:08:32 -0400266 {"line-space", 0, 0, G_OPTION_ARG_DOUBLE, &this->line_space, "Set space between lines (default: 0)", "units"},
Behdad Esfahbod9a34a502012-12-05 19:18:18 -0500267 {"margin", 0, 0, G_OPTION_ARG_CALLBACK, (gpointer) &parse_margin, "Margin around output (default: " G_STRINGIFY(DEFAULT_MARGIN) ")","one to four numbers"},
Behdad Esfahbod109cb382011-09-08 16:00:04 -0400268 {NULL}
269 };
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400270 parser->add_group (entries,
271 "view",
272 "View options:",
Behdad Esfahbod30874b42012-05-12 15:54:27 +0200273 "Options controlling output rendering",
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400274 this);
Behdad Esfahbod109cb382011-09-08 16:00:04 -0400275}
276
277void
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400278shape_options_t::add_options (option_parser_t *parser)
Behdad Esfahbod109cb382011-09-08 16:00:04 -0400279{
280 GOptionEntry entries[] =
281 {
Behdad Esfahbodfd528c12011-10-12 15:03:58 -0400282 {"list-shapers", 0, G_OPTION_FLAG_NO_ARG,
283 G_OPTION_ARG_CALLBACK, (gpointer) &list_shapers, "List available shapers and quit", NULL},
Behdad Esfahbod8f8956a2012-05-25 14:30:24 -0400284 {"shaper", 0, G_OPTION_FLAG_HIDDEN,
285 G_OPTION_ARG_CALLBACK, (gpointer) &parse_shapers, "Hidden duplicate of --shapers", NULL},
Behdad Esfahbod8650def2014-07-05 15:50:18 -0400286 {"shapers", 0, 0, G_OPTION_ARG_CALLBACK, (gpointer) &parse_shapers, "Set comma-separated list of shapers to try","list"},
Behdad Esfahbodbc4b07b2011-09-08 17:08:32 -0400287 {"direction", 0, 0, G_OPTION_ARG_STRING, &this->direction, "Set text direction (default: auto)", "ltr/rtl/ttb/btt"},
288 {"language", 0, 0, G_OPTION_ARG_STRING, &this->language, "Set text language (default: $LANG)", "langstr"},
289 {"script", 0, 0, G_OPTION_ARG_STRING, &this->script, "Set text script (default: auto)", "ISO-15924 tag"},
Behdad Esfahbod407f80d2012-11-13 15:33:27 -0800290 {"bot", 0, 0, G_OPTION_ARG_NONE, &this->bot, "Treat text as beginning-of-paragraph", NULL},
291 {"eot", 0, 0, G_OPTION_ARG_NONE, &this->eot, "Treat text as end-of-paragraph", NULL},
292 {"preserve-default-ignorables",0, 0, G_OPTION_ARG_NONE, &this->preserve_default_ignorables, "Preserve Default-Ignorable characters", NULL},
Behdad Esfahbod30874b42012-05-12 15:54:27 +0200293 {"utf8-clusters", 0, 0, G_OPTION_ARG_NONE, &this->utf8_clusters, "Use UTF8 byte indices, not char indices", NULL},
Behdad Esfahbod376d5872015-07-22 16:51:12 +0100294 {"cluster-level", 0, 0, G_OPTION_ARG_INT, &this->cluster_level, "Cluster merging level (default: 0)", "0/1/2"},
Behdad Esfahbod39b17832012-07-17 17:09:29 -0400295 {"normalize-glyphs",0, 0, G_OPTION_ARG_NONE, &this->normalize_glyphs, "Rearrange glyph clusters in nominal order", NULL},
Behdad Esfahbod50067e22013-04-11 16:31:01 -0400296 {"num-iterations", 0, 0, G_OPTION_ARG_INT, &this->num_iterations, "Run shaper N times (default: 1)", "N"},
Behdad Esfahbod109cb382011-09-08 16:00:04 -0400297 {NULL}
298 };
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400299 parser->add_group (entries,
300 "shape",
301 "Shape options:",
302 "Options controlling the shaping process",
303 this);
Behdad Esfahbod8750aba2012-01-18 22:47:44 -0500304
Behdad Esfahbod30874b42012-05-12 15:54:27 +0200305 const gchar *features_help = "Comma-separated list of font features\n"
Behdad Esfahbod8750aba2012-01-18 22:47:44 -0500306 "\n"
307 " Features can be enabled or disabled, either globally or limited to\n"
Behdad Esfahbod0de25d42014-07-25 12:35:03 -0400308 " specific character ranges. The format for specifying feature settings\n"
309 " follows. All valid CSS font-feature-settings values other than 'normal'\n"
310 " and 'inherited' are also accepted, though, not documented below.\n"
Behdad Esfahbod95cefdf2012-04-16 18:08:20 -0400311 "\n"
312 " The range indices refer to the positions between Unicode characters,\n"
313 " unless the --utf8-clusters is provided, in which case range indices\n"
314 " refer to UTF-8 byte indices. The position before the first character\n"
315 " is always 0.\n"
Behdad Esfahbodd5300242012-01-21 19:07:22 -0500316 "\n"
317 " The format is Python-esque. Here is how it all works:\n"
Behdad Esfahbod8750aba2012-01-18 22:47:44 -0500318 "\n"
319 " Syntax: Value: Start: End:\n"
320 "\n"
321 " Setting value:\n"
322 " \"kern\" 1 0 ∞ # Turn feature on\n"
323 " \"+kern\" 1 0 ∞ # Turn feature on\n"
324 " \"-kern\" 0 0 ∞ # Turn feature off\n"
325 " \"kern=0\" 0 0 ∞ # Turn feature off\n"
326 " \"kern=1\" 1 0 ∞ # Turn feature on\n"
327 " \"aalt=2\" 2 0 ∞ # Choose 2nd alternate\n"
328 "\n"
329 " Setting index:\n"
330 " \"kern[]\" 1 0 ∞ # Turn feature on\n"
331 " \"kern[:]\" 1 0 ∞ # Turn feature on\n"
332 " \"kern[5:]\" 1 5 ∞ # Turn feature on, partial\n"
333 " \"kern[:5]\" 1 0 5 # Turn feature on, partial\n"
334 " \"kern[3:5]\" 1 3 5 # Turn feature on, range\n"
335 " \"kern[3]\" 1 3 3+1 # Turn feature on, single char\n"
336 "\n"
337 " Mixing it all:\n"
338 "\n"
Behdad Esfahbod3bc22eb2012-11-12 10:07:28 -0800339 " \"aalt[3:5]=2\" 2 3 5 # Turn 2nd alternate on for range";
Behdad Esfahbod8750aba2012-01-18 22:47:44 -0500340
341 GOptionEntry entries2[] =
342 {
343 {"features", 0, 0, G_OPTION_ARG_CALLBACK, (gpointer) &parse_features, features_help, "list"},
344 {NULL}
345 };
346 parser->add_group (entries2,
347 "features",
348 "Features options:",
Behdad Esfahbod30874b42012-05-12 15:54:27 +0200349 "Options controlling font features used",
Behdad Esfahbod8750aba2012-01-18 22:47:44 -0500350 this);
Behdad Esfahbod109cb382011-09-08 16:00:04 -0400351}
352
Behdad Esfahbodcd4eb962015-01-20 12:30:45 -0800353static gboolean
354parse_font_size (const char *name G_GNUC_UNUSED,
355 const char *arg,
356 gpointer data,
357 GError **error G_GNUC_UNUSED)
358{
359 font_options_t *font_opts = (font_options_t *) data;
360 if (0 == strcmp (arg, "upem"))
361 {
362 font_opts->font_size_y = font_opts->font_size_x = FONT_SIZE_UPEM;
363 return true;
364 }
Behdad Esfahboda6648102015-04-09 15:04:42 -0700365 switch (sscanf (arg, "%lf%*[ ,]%lf", &font_opts->font_size_x, &font_opts->font_size_y)) {
Behdad Esfahbodcd4eb962015-01-20 12:30:45 -0800366 case 1: font_opts->font_size_y = font_opts->font_size_x;
367 case 2: return true;
368 default:
369 g_set_error (error, G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE,
370 "%s argument should be one to four space-separated numbers",
371 name);
372 return false;
373 }
374}
Behdad Esfahbod109cb382011-09-08 16:00:04 -0400375void
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400376font_options_t::add_options (option_parser_t *parser)
Behdad Esfahbod109cb382011-09-08 16:00:04 -0400377{
Behdad Esfahbod8650def2014-07-05 15:50:18 -0400378 char *text = NULL;
379
380 {
381 ASSERT_STATIC (ARRAY_LENGTH_CONST (supported_font_funcs) > 0);
382 GString *s = g_string_new (NULL);
383 g_string_printf (s, "Set font functions implementation to use (default: %s)\n\n Supported font function implementations are: %s",
384 supported_font_funcs[0].name,
385 supported_font_funcs[0].name);
386 for (unsigned int i = 1; i < ARRAY_LENGTH (supported_font_funcs); i++)
387 {
388 g_string_append_c (s, '/');
389 g_string_append (s, supported_font_funcs[i].name);
390 }
391 text = g_string_free (s, FALSE);
392 parser->free_later (text);
393 }
394
Behdad Esfahbodcd4eb962015-01-20 12:30:45 -0800395 char *font_size_text;
396 if (default_font_size == FONT_SIZE_UPEM)
397 font_size_text = (char *) "Font size (default: upem)";
398 else
399 {
400 font_size_text = g_strdup_printf ("Font size (default: %d)", default_font_size);
401 parser->free_later (font_size_text);
402 }
403
Behdad Esfahbod109cb382011-09-08 16:00:04 -0400404 GOptionEntry entries[] =
405 {
Behdad Esfahbod8650def2014-07-05 15:50:18 -0400406 {"font-file", 0, 0, G_OPTION_ARG_STRING, &this->font_file, "Set font file-name", "filename"},
407 {"face-index", 0, 0, G_OPTION_ARG_INT, &this->face_index, "Set face index (default: 0)", "index"},
Behdad Esfahbodcd4eb962015-01-20 12:30:45 -0800408 {"font-size", 0, default_font_size ? 0 : G_OPTION_FLAG_HIDDEN,
409 G_OPTION_ARG_CALLBACK, (gpointer) &parse_font_size, font_size_text, "1/2 numbers or 'upem'"},
Behdad Esfahbod5789ca62015-01-09 14:22:01 -0800410 {"font-funcs", 0, 0, G_OPTION_ARG_STRING, &this->font_funcs, text, "impl"},
Behdad Esfahbod109cb382011-09-08 16:00:04 -0400411 {NULL}
412 };
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400413 parser->add_group (entries,
414 "font",
415 "Font options:",
416 "Options controlling the font",
417 this);
Behdad Esfahbod109cb382011-09-08 16:00:04 -0400418}
419
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200420void
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400421text_options_t::add_options (option_parser_t *parser)
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200422{
423 GOptionEntry entries[] =
424 {
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400425 {"text", 0, 0, G_OPTION_ARG_STRING, &this->text, "Set input text", "string"},
Behdad Esfahbod78d41d82012-11-13 15:15:09 -0800426 {"text-file", 0, 0, G_OPTION_ARG_STRING, &this->text_file, "Set input text file-name\n\n If no text is provided, standard input is used for input.\n", "filename"},
Behdad Esfahbod321f73c2012-11-13 15:12:24 -0800427 {"text-before", 0, 0, G_OPTION_ARG_STRING, &this->text_before, "Set text context before each line", "string"},
428 {"text-after", 0, 0, G_OPTION_ARG_STRING, &this->text_after, "Set text context after each line", "string"},
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200429 {NULL}
430 };
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400431 parser->add_group (entries,
432 "text",
433 "Text options:",
434 "Options controlling the input text",
435 this);
436}
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200437
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400438void
439output_options_t::add_options (option_parser_t *parser)
440{
Behdad Esfahbod9815a882012-12-21 16:46:53 -0500441 const char *text;
442
443 if (NULL == supported_formats)
Collin Fair1d55ffe2015-02-14 09:29:35 -0500444 text = "Set output serialization format";
Behdad Esfahbod9815a882012-12-21 16:46:53 -0500445 else
Behdad Esfahbodea5e8a02014-03-19 15:38:02 -0700446 {
447 char *items = g_strjoinv ("/", const_cast<char **> (supported_formats));
Behdad Esfahbod2306ad42014-07-04 18:09:29 -0400448 text = g_strdup_printf ("Set output format\n\n Supported output formats are: %s", items);
Behdad Esfahbodea5e8a02014-03-19 15:38:02 -0700449 g_free (items);
Behdad Esfahbod2306ad42014-07-04 18:09:29 -0400450 parser->free_later ((char *) text);
Behdad Esfahbodea5e8a02014-03-19 15:38:02 -0700451 }
Behdad Esfahbod9815a882012-12-21 16:46:53 -0500452
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400453 GOptionEntry entries[] =
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200454 {
Behdad Esfahbodb5afd8f2011-09-19 16:56:21 -0400455 {"output-file", 0, 0, G_OPTION_ARG_STRING, &this->output_file, "Set output file-name (default: stdout)","filename"},
Behdad Esfahbod9815a882012-12-21 16:46:53 -0500456 {"output-format", 0, 0, G_OPTION_ARG_STRING, &this->output_format, text, "format"},
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400457 {NULL}
458 };
459 parser->add_group (entries,
460 "output",
Collin Fair9ee176e2015-02-14 09:59:44 -0500461 "Output destination & format options:",
Collin Fair1d55ffe2015-02-14 09:29:35 -0500462 "Options controlling the destination and form of the output",
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400463 this);
464}
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200465
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400466
467
468hb_font_t *
469font_options_t::get_font (void) const
470{
471 if (font)
472 return font;
473
474 hb_blob_t *blob = NULL;
475
476 /* Create the blob */
477 {
Behdad Esfahbod44511682011-09-16 00:38:19 -0400478 char *font_data;
479 unsigned int len = 0;
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400480 hb_destroy_func_t destroy;
481 void *user_data;
482 hb_memory_mode_t mm;
483
Behdad Esfahbod44511682011-09-16 00:38:19 -0400484 /* This is a hell of a lot of code for just reading a file! */
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400485 if (!font_file)
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400486 fail (true, "No font file set");
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400487
Behdad Esfahbod44511682011-09-16 00:38:19 -0400488 if (0 == strcmp (font_file, "-")) {
489 /* read it */
490 GString *gs = g_string_new (NULL);
491 char buf[BUFSIZ];
Behdad Esfahbode2aab4b2013-02-12 15:35:32 -0500492#if defined(_WIN32) || defined(__CYGWIN__)
Behdad Esfahbod21e5d7e2015-12-17 16:28:38 +0000493 setmode (fileno (stdin), O_BINARY);
Behdad Esfahbod44511682011-09-16 00:38:19 -0400494#endif
495 while (!feof (stdin)) {
496 size_t ret = fread (buf, 1, sizeof (buf), stdin);
497 if (ferror (stdin))
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400498 fail (false, "Failed reading font from standard input: %s",
Behdad Esfahbod44511682011-09-16 00:38:19 -0400499 strerror (errno));
500 g_string_append_len (gs, buf, ret);
501 }
502 len = gs->len;
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400503 font_data = g_string_free (gs, false);
Behdad Esfahbod44511682011-09-16 00:38:19 -0400504 user_data = font_data;
505 destroy = (hb_destroy_func_t) g_free;
506 mm = HB_MEMORY_MODE_WRITABLE;
507 } else {
Behdad Esfahbodf51e1672012-01-30 09:48:33 -0500508 GError *error = NULL;
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400509 GMappedFile *mf = g_mapped_file_new (font_file, false, &error);
Behdad Esfahbod44511682011-09-16 00:38:19 -0400510 if (mf) {
511 font_data = g_mapped_file_get_contents (mf);
512 len = g_mapped_file_get_length (mf);
513 if (len) {
Behdad Esfahbodc2bc8182013-10-27 23:36:35 +0100514 destroy = (hb_destroy_func_t) g_mapped_file_unref;
Behdad Esfahbod44511682011-09-16 00:38:19 -0400515 user_data = (void *) mf;
516 mm = HB_MEMORY_MODE_READONLY_MAY_MAKE_WRITABLE;
517 } else
Behdad Esfahbodc2bc8182013-10-27 23:36:35 +0100518 g_mapped_file_unref (mf);
Behdad Esfahbodf51e1672012-01-30 09:48:33 -0500519 } else {
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400520 fail (false, "%s", error->message);
Behdad Esfahbodf51e1672012-01-30 09:48:33 -0500521 //g_error_free (error);
Behdad Esfahbod44511682011-09-16 00:38:19 -0400522 }
523 if (!len) {
524 /* GMappedFile is buggy, it doesn't fail if file isn't regular.
525 * Try reading.
526 * https://bugzilla.gnome.org/show_bug.cgi?id=659212 */
527 GError *error = NULL;
528 gsize l;
529 if (g_file_get_contents (font_file, &font_data, &l, &error)) {
530 len = l;
531 destroy = (hb_destroy_func_t) g_free;
532 user_data = (void *) font_data;
533 mm = HB_MEMORY_MODE_WRITABLE;
534 } else {
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400535 fail (false, "%s", error->message);
Behdad Esfahbod44511682011-09-16 00:38:19 -0400536 //g_error_free (error);
537 }
538 }
539 }
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400540
Behdad Esfahbod642135f2015-11-03 11:26:34 -0800541 if (debug)
542 mm = HB_MEMORY_MODE_DUPLICATE;
543
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400544 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200545 }
546
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400547 /* Create the face */
548 hb_face_t *face = hb_face_create (blob, face_index);
549 hb_blob_destroy (blob);
550
551
552 font = hb_font_create (face);
553
Behdad Esfahbodcd4eb962015-01-20 12:30:45 -0800554 if (font_size_x == FONT_SIZE_UPEM)
555 font_size_x = hb_face_get_upem (face);
556 if (font_size_y == FONT_SIZE_UPEM)
557 font_size_y = hb_face_get_upem (face);
558
559 int scale_x = (int) scalbnf (font_size_x, subpixel_bits);
560 int scale_y = (int) scalbnf (font_size_y, subpixel_bits);
561 hb_font_set_scale (font, scale_x, scale_y);
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400562 hb_face_destroy (face);
563
Behdad Esfahbod8650def2014-07-05 15:50:18 -0400564 void (*set_font_funcs) (hb_font_t *) = NULL;
565 if (!font_funcs)
566 {
567 set_font_funcs = supported_font_funcs[0].func;
568 }
569 else
570 {
571 for (unsigned int i = 0; i < ARRAY_LENGTH (supported_font_funcs); i++)
Chun-wei Fan998e8dd2015-11-02 16:55:29 +0800572 if (0 == g_ascii_strcasecmp (font_funcs, supported_font_funcs[i].name))
Behdad Esfahbod8650def2014-07-05 15:50:18 -0400573 {
574 set_font_funcs = supported_font_funcs[i].func;
575 break;
576 }
577 if (!set_font_funcs)
578 {
579 GString *s = g_string_new (NULL);
580 for (unsigned int i = 0; i < ARRAY_LENGTH (supported_font_funcs); i++)
581 {
582 if (i)
583 g_string_append_c (s, '/');
584 g_string_append (s, supported_font_funcs[i].name);
585 }
586 char *p = g_string_free (s, FALSE);
587 fail (false, "Unknown font function implementation `%s'; supported values are: %s; default is %s",
588 font_funcs,
589 p,
590 supported_font_funcs[0].name);
591 //free (p);
592 }
593 }
594 set_font_funcs (font);
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400595
596 return font;
597}
598
599
600const char *
601text_options_t::get_line (unsigned int *len)
602{
Behdad Esfahbod55aeb042011-09-16 02:08:36 -0400603 if (text) {
Behdad Esfahbod3530cc22015-11-03 11:34:47 -0800604 if (!line) line = text;
605 if (line_len == (unsigned int) -1)
606 line_len = strlen (line);
Behdad Esfahbod55aeb042011-09-16 02:08:36 -0400607
Behdad Esfahbod3530cc22015-11-03 11:34:47 -0800608 if (!line_len) {
Behdad Esfahbod55aeb042011-09-16 02:08:36 -0400609 *len = 0;
610 return NULL;
611 }
612
Behdad Esfahbod3530cc22015-11-03 11:34:47 -0800613 const char *ret = line;
614 const char *p = (const char *) memchr (line, '\n', line_len);
Behdad Esfahbod55aeb042011-09-16 02:08:36 -0400615 unsigned int ret_len;
616 if (!p) {
Behdad Esfahbod3530cc22015-11-03 11:34:47 -0800617 ret_len = line_len;
618 line += ret_len;
619 line_len = 0;
Behdad Esfahbod55aeb042011-09-16 02:08:36 -0400620 } else {
621 ret_len = p - ret;
Behdad Esfahbod3530cc22015-11-03 11:34:47 -0800622 line += ret_len + 1;
623 line_len -= ret_len + 1;
Behdad Esfahbod55aeb042011-09-16 02:08:36 -0400624 }
625
626 *len = ret_len;
627 return ret;
628 }
629
630 if (!fp) {
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400631 if (!text_file)
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400632 fail (true, "At least one of text or text-file must be set");
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400633
Behdad Esfahbod55aeb042011-09-16 02:08:36 -0400634 if (0 != strcmp (text_file, "-"))
635 fp = fopen (text_file, "r");
636 else
637 fp = stdin;
638
639 if (!fp)
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400640 fail (false, "Failed opening text file `%s': %s",
Behdad Esfahbod55aeb042011-09-16 02:08:36 -0400641 text_file, strerror (errno));
642
643 gs = g_string_new (NULL);
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400644 }
645
Behdad Esfahbod55aeb042011-09-16 02:08:36 -0400646 g_string_set_size (gs, 0);
647 char buf[BUFSIZ];
648 while (fgets (buf, sizeof (buf), fp)) {
649 unsigned int bytes = strlen (buf);
Behdad Esfahbod27c36af2012-01-19 12:30:43 -0500650 if (bytes && buf[bytes - 1] == '\n') {
Behdad Esfahbod55aeb042011-09-16 02:08:36 -0400651 bytes--;
652 g_string_append_len (gs, buf, bytes);
653 break;
654 }
655 g_string_append_len (gs, buf, bytes);
Behdad Esfahbodb9b10ad2011-09-13 13:30:39 -0400656 }
Behdad Esfahbod55aeb042011-09-16 02:08:36 -0400657 if (ferror (fp))
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400658 fail (false, "Failed reading text: %s",
Behdad Esfahbod55aeb042011-09-16 02:08:36 -0400659 strerror (errno));
660 *len = gs->len;
661 return !*len && feof (fp) ? NULL : gs->str;
Behdad Esfahbod3bb300e2011-08-11 11:54:31 +0200662}
Behdad Esfahboda75c1b12011-09-16 01:16:41 -0400663
664
665FILE *
666output_options_t::get_file_handle (void)
667{
668 if (fp)
669 return fp;
670
671 if (output_file)
672 fp = fopen (output_file, "wb");
673 else {
Behdad Esfahbode2aab4b2013-02-12 15:35:32 -0500674#if defined(_WIN32) || defined(__CYGWIN__)
Behdad Esfahbod21e5d7e2015-12-17 16:28:38 +0000675 setmode (fileno (stdout), O_BINARY);
Behdad Esfahboda75c1b12011-09-16 01:16:41 -0400676#endif
677 fp = stdout;
678 }
679 if (!fp)
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400680 fail (false, "Cannot open output file `%s': %s",
Behdad Esfahboda75c1b12011-09-16 01:16:41 -0400681 g_filename_display_name (output_file), strerror (errno));
682
683 return fp;
684}
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -0400685
Behdad Esfahbodc1885482012-06-04 08:56:00 -0400686static gboolean
687parse_verbose (const char *name G_GNUC_UNUSED,
688 const char *arg G_GNUC_UNUSED,
689 gpointer data G_GNUC_UNUSED,
690 GError **error G_GNUC_UNUSED)
691{
692 format_options_t *format_opts = (format_options_t *) data;
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400693 format_opts->show_text = format_opts->show_unicode = format_opts->show_line_num = true;
694 return true;
Behdad Esfahbodc1885482012-06-04 08:56:00 -0400695}
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -0400696
697void
698format_options_t::add_options (option_parser_t *parser)
699{
700 GOptionEntry entries[] =
701 {
Behdad Esfahbod820505a2015-04-13 23:51:45 -0700702 {"show-text", 0, 0, G_OPTION_ARG_NONE, &this->show_text, "Prefix each line of output with its corresponding input text", NULL},
703 {"show-unicode", 0, 0, G_OPTION_ARG_NONE, &this->show_unicode, "Prefix each line of output with its corresponding input codepoint(s)", NULL},
704 {"show-line-num", 0, 0, G_OPTION_ARG_NONE, &this->show_line_num, "Prefix each line of output with its corresponding input line number", NULL},
705 {"verbose", 0, G_OPTION_FLAG_NO_ARG,
706 G_OPTION_ARG_CALLBACK, (gpointer) &parse_verbose, "Prefix each line of output with all of the above", NULL},
707 {"no-glyph-names", 0, G_OPTION_FLAG_REVERSE,
708 G_OPTION_ARG_NONE, &this->show_glyph_names, "Output glyph indices instead of names", NULL},
709 {"no-positions", 0, G_OPTION_FLAG_REVERSE,
710 G_OPTION_ARG_NONE, &this->show_positions, "Do not output glyph positions", NULL},
711 {"no-clusters", 0, G_OPTION_FLAG_REVERSE,
712 G_OPTION_ARG_NONE, &this->show_clusters, "Do not output cluster indices", NULL},
Behdad Esfahbodfdd17702015-08-24 13:49:55 +0100713 {"show-extents", 0, 0, G_OPTION_ARG_NONE, &this->show_extents, "Output glyph extents", NULL},
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -0400714 {NULL}
715 };
716 parser->add_group (entries,
Collin Fair9ee176e2015-02-14 09:59:44 -0500717 "output-syntax",
718 "Output syntax:\n"
719 " text: [<glyph name or index>=<glyph cluster index within input>@<horizontal displacement>,<vertical displacement>+<horizontal advance>,<vertical advance>|...]\n"
720 " json: [{\"g\": <glyph name or index>, \"ax\": <horizontal advance>, \"ay\": <vertical advance>, \"dx\": <horizontal displacement>, \"dy\": <vertical displacement>, \"cl\": <glyph cluster index within input>}, ...]\n"
721 "\nOutput syntax options:",
722 "Options controlling the syntax of the output",
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -0400723 this);
724}
725
726void
Behdad Esfahbodcc4d9812012-01-19 12:32:20 -0500727format_options_t::serialize_unicode (hb_buffer_t *buffer,
728 GString *gs)
729{
730 unsigned int num_glyphs = hb_buffer_get_length (buffer);
731 hb_glyph_info_t *info = hb_buffer_get_glyph_infos (buffer, NULL);
732
733 g_string_append_c (gs, '<');
734 for (unsigned int i = 0; i < num_glyphs; i++)
735 {
736 if (i)
737 g_string_append_c (gs, ',');
738 g_string_append_printf (gs, "U+%04X", info->codepoint);
739 info++;
740 }
741 g_string_append_c (gs, '>');
742}
743
744void
745format_options_t::serialize_glyphs (hb_buffer_t *buffer,
746 hb_font_t *font,
Behdad Esfahbodf9edf162012-11-15 12:14:09 -0800747 hb_buffer_serialize_format_t output_format,
748 hb_buffer_serialize_flags_t flags,
Behdad Esfahbodcc4d9812012-01-19 12:32:20 -0500749 GString *gs)
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -0400750{
Behdad Esfahbodc91c4fa2012-01-19 17:51:57 -0500751 g_string_append_c (gs, '[');
Behdad Esfahbodf9edf162012-11-15 12:14:09 -0800752 unsigned int num_glyphs = hb_buffer_get_length (buffer);
753 unsigned int start = 0;
Behdad Esfahbod088c1e22011-09-20 14:43:55 -0400754
Behdad Esfahbodf9edf162012-11-15 12:14:09 -0800755 while (start < num_glyphs) {
756 char buf[1024];
757 unsigned int consumed;
758 start += hb_buffer_serialize_glyphs (buffer, start, num_glyphs,
759 buf, sizeof (buf), &consumed,
760 font, output_format, flags);
761 if (!consumed)
762 break;
763 g_string_append (gs, buf);
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -0400764 }
Behdad Esfahbodc91c4fa2012-01-19 17:51:57 -0500765 g_string_append_c (gs, ']');
Behdad Esfahbod8b8b1902011-09-19 16:41:17 -0400766}
Behdad Esfahbodcdc673d2012-01-19 12:46:18 -0500767void
768format_options_t::serialize_line_no (unsigned int line_no,
769 GString *gs)
770{
771 if (show_line_num)
772 g_string_append_printf (gs, "%d: ", line_no);
773}
774void
Behdad Esfahbod5db06832012-06-02 12:13:08 -0400775format_options_t::serialize_buffer_of_text (hb_buffer_t *buffer,
776 unsigned int line_no,
777 const char *text,
778 unsigned int text_len,
779 hb_font_t *font,
Behdad Esfahbod5db06832012-06-02 12:13:08 -0400780 GString *gs)
Behdad Esfahbodcdc673d2012-01-19 12:46:18 -0500781{
782 if (show_text) {
783 serialize_line_no (line_no, gs);
Behdad Esfahbodd8134bc2012-01-20 17:18:59 -0500784 g_string_append_c (gs, '(');
Behdad Esfahbodcdc673d2012-01-19 12:46:18 -0500785 g_string_append_len (gs, text, text_len);
Behdad Esfahbodd8134bc2012-01-20 17:18:59 -0500786 g_string_append_c (gs, ')');
Behdad Esfahbodcdc673d2012-01-19 12:46:18 -0500787 g_string_append_c (gs, '\n');
788 }
789
790 if (show_unicode) {
791 serialize_line_no (line_no, gs);
Behdad Esfahbodae621662012-06-02 12:21:19 -0400792 serialize_unicode (buffer, gs);
Behdad Esfahbodcdc673d2012-01-19 12:46:18 -0500793 g_string_append_c (gs, '\n');
794 }
Behdad Esfahbod5db06832012-06-02 12:13:08 -0400795}
796void
797format_options_t::serialize_message (unsigned int line_no,
798 const char *msg,
799 GString *gs)
800{
801 serialize_line_no (line_no, gs);
802 g_string_append_printf (gs, "%s", msg);
803 g_string_append_c (gs, '\n');
804}
805void
806format_options_t::serialize_buffer_of_glyphs (hb_buffer_t *buffer,
807 unsigned int line_no,
808 const char *text,
809 unsigned int text_len,
810 hb_font_t *font,
Behdad Esfahbodf9edf162012-11-15 12:14:09 -0800811 hb_buffer_serialize_format_t output_format,
812 hb_buffer_serialize_flags_t format_flags,
Behdad Esfahbod5db06832012-06-02 12:13:08 -0400813 GString *gs)
814{
Behdad Esfahbodcdc673d2012-01-19 12:46:18 -0500815 serialize_line_no (line_no, gs);
Behdad Esfahbodf9edf162012-11-15 12:14:09 -0800816 serialize_glyphs (buffer, font, output_format, format_flags, gs);
Behdad Esfahbodcdc673d2012-01-19 12:46:18 -0500817 g_string_append_c (gs, '\n');
818}