Behdad Esfahbod | 3bb300e | 2011-08-11 11:54:31 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2011 Google, Inc. |
| 3 | * |
| 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 | |
Behdad Esfahbod | 3bb300e | 2011-08-11 11:54:31 +0200 | [diff] [blame] | 27 | #ifndef OPTIONS_HH |
| 28 | #define OPTIONS_HH |
| 29 | |
| 30 | |
Behdad Esfahbod | 8b8b190 | 2011-09-19 16:41:17 -0400 | [diff] [blame] | 31 | #ifdef HAVE_CONFIG_H |
| 32 | #include "config.h" |
| 33 | #endif |
| 34 | |
| 35 | #include <stdlib.h> |
| 36 | #include <stddef.h> |
| 37 | #include <string.h> |
Behdad Esfahbod | 8b8b190 | 2011-09-19 16:41:17 -0400 | [diff] [blame] | 38 | #include <stdio.h> |
| 39 | #include <math.h> |
| 40 | #include <locale.h> |
| 41 | #include <errno.h> |
| 42 | #include <fcntl.h> |
| 43 | #ifdef HAVE_IO_H |
| 44 | #include <io.h> /* for _setmode() under Windows */ |
| 45 | #endif |
| 46 | |
| 47 | #include <hb.h> |
| 48 | #include <glib.h> |
| 49 | #include <glib/gprintf.h> |
| 50 | |
| 51 | void fail (hb_bool_t suggest_help, const char *format, ...) G_GNUC_NORETURN; |
| 52 | |
| 53 | |
Behdad Esfahbod | 088c1e2 | 2011-09-20 14:43:55 -0400 | [diff] [blame] | 54 | extern hb_bool_t debug; |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 55 | |
| 56 | struct option_group_t |
| 57 | { |
| 58 | virtual void add_options (struct option_parser_t *parser) = 0; |
| 59 | |
| 60 | virtual void pre_parse (GError **error G_GNUC_UNUSED) {}; |
| 61 | virtual void post_parse (GError **error G_GNUC_UNUSED) {}; |
| 62 | }; |
| 63 | |
| 64 | |
| 65 | struct option_parser_t |
| 66 | { |
| 67 | option_parser_t (const char *usage) { |
| 68 | memset (this, 0, sizeof (*this)); |
| 69 | usage_str = usage; |
| 70 | context = g_option_context_new (usage); |
| 71 | |
| 72 | add_main_options (); |
| 73 | } |
| 74 | ~option_parser_t (void) { |
| 75 | g_option_context_free (context); |
| 76 | } |
| 77 | |
| 78 | void add_main_options (void); |
| 79 | |
| 80 | void add_group (GOptionEntry *entries, |
| 81 | const gchar *name, |
| 82 | const gchar *description, |
| 83 | const gchar *help_description, |
| 84 | option_group_t *option_group); |
| 85 | |
| 86 | void parse (int *argc, char ***argv); |
| 87 | |
| 88 | G_GNUC_NORETURN void usage (void) { |
| 89 | g_printerr ("Usage: %s [OPTION...] %s\n", g_get_prgname (), usage_str); |
| 90 | exit (1); |
| 91 | } |
| 92 | |
| 93 | const char *usage_str; |
| 94 | GOptionContext *context; |
| 95 | }; |
| 96 | |
| 97 | |
Behdad Esfahbod | 109cb38 | 2011-09-08 16:00:04 -0400 | [diff] [blame] | 98 | #define DEFAULT_MARGIN 18 |
| 99 | #define DEFAULT_FORE "#000000" |
| 100 | #define DEFAULT_BACK "#FFFFFF" |
Behdad Esfahbod | 11e5199 | 2011-09-19 09:58:55 -0400 | [diff] [blame] | 101 | #define DEFAULT_FONT_SIZE 36 |
Behdad Esfahbod | 109cb38 | 2011-09-08 16:00:04 -0400 | [diff] [blame] | 102 | |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 103 | struct view_options_t : option_group_t |
Behdad Esfahbod | 3bb300e | 2011-08-11 11:54:31 +0200 | [diff] [blame] | 104 | { |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 105 | view_options_t (option_parser_t *parser) { |
| 106 | annotate = false; |
Behdad Esfahbod | 109cb38 | 2011-09-08 16:00:04 -0400 | [diff] [blame] | 107 | fore = DEFAULT_FORE; |
| 108 | back = DEFAULT_BACK; |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 109 | line_space = 0; |
Behdad Esfahbod | 109cb38 | 2011-09-08 16:00:04 -0400 | [diff] [blame] | 110 | margin.t = margin.r = margin.b = margin.l = DEFAULT_MARGIN; |
Behdad Esfahbod | 11e5199 | 2011-09-19 09:58:55 -0400 | [diff] [blame] | 111 | font_size = DEFAULT_FONT_SIZE; |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 112 | |
| 113 | add_options (parser); |
Behdad Esfahbod | 3bb300e | 2011-08-11 11:54:31 +0200 | [diff] [blame] | 114 | } |
| 115 | |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 116 | void add_options (option_parser_t *parser); |
Behdad Esfahbod | bc4b07b | 2011-09-08 17:08:32 -0400 | [diff] [blame] | 117 | |
Behdad Esfahbod | 088c1e2 | 2011-09-20 14:43:55 -0400 | [diff] [blame] | 118 | hb_bool_t annotate; |
Behdad Esfahbod | 3bb300e | 2011-08-11 11:54:31 +0200 | [diff] [blame] | 119 | const char *fore; |
| 120 | const char *back; |
| 121 | double line_space; |
| 122 | struct margin_t { |
| 123 | double t, r, b, l; |
| 124 | } margin; |
Behdad Esfahbod | 11e5199 | 2011-09-19 09:58:55 -0400 | [diff] [blame] | 125 | double font_size; |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 126 | }; |
Behdad Esfahbod | 3bb300e | 2011-08-11 11:54:31 +0200 | [diff] [blame] | 127 | |
Behdad Esfahbod | 109cb38 | 2011-09-08 16:00:04 -0400 | [diff] [blame] | 128 | |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 129 | struct shape_options_t : option_group_t |
Behdad Esfahbod | 3bb300e | 2011-08-11 11:54:31 +0200 | [diff] [blame] | 130 | { |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 131 | shape_options_t (option_parser_t *parser) { |
| 132 | direction = language = script = NULL; |
| 133 | features = NULL; |
| 134 | num_features = 0; |
| 135 | shapers = NULL; |
| 136 | |
| 137 | add_options (parser); |
Behdad Esfahbod | 3bb300e | 2011-08-11 11:54:31 +0200 | [diff] [blame] | 138 | } |
Behdad Esfahbod | 90e312c | 2011-09-08 16:42:37 -0400 | [diff] [blame] | 139 | ~shape_options_t (void) { |
| 140 | free (features); |
| 141 | g_free (shapers); |
| 142 | } |
Behdad Esfahbod | 3bb300e | 2011-08-11 11:54:31 +0200 | [diff] [blame] | 143 | |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 144 | void add_options (option_parser_t *parser); |
Behdad Esfahbod | bc4b07b | 2011-09-08 17:08:32 -0400 | [diff] [blame] | 145 | |
Behdad Esfahbod | 4f4b114 | 2011-09-08 16:49:02 -0400 | [diff] [blame] | 146 | void setup_buffer (hb_buffer_t *buffer) { |
Behdad Esfahbod | 516857e | 2011-09-08 16:50:24 -0400 | [diff] [blame] | 147 | hb_buffer_set_direction (buffer, hb_direction_from_string (direction, -1)); |
| 148 | hb_buffer_set_script (buffer, hb_script_from_string (script, -1)); |
| 149 | hb_buffer_set_language (buffer, hb_language_from_string (language, -1)); |
Behdad Esfahbod | 4f4b114 | 2011-09-08 16:49:02 -0400 | [diff] [blame] | 150 | } |
| 151 | |
Behdad Esfahbod | 088c1e2 | 2011-09-20 14:43:55 -0400 | [diff] [blame] | 152 | hb_bool_t shape (const char *text, int text_len, |
| 153 | hb_font_t *font, hb_buffer_t *buffer) { |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 154 | hb_buffer_reset (buffer); |
| 155 | hb_buffer_add_utf8 (buffer, text, text_len, 0, text_len); |
Behdad Esfahbod | 4f4b114 | 2011-09-08 16:49:02 -0400 | [diff] [blame] | 156 | setup_buffer (buffer); |
| 157 | return hb_shape_full (font, buffer, features, num_features, NULL, shapers); |
| 158 | } |
| 159 | |
Behdad Esfahbod | 3bb300e | 2011-08-11 11:54:31 +0200 | [diff] [blame] | 160 | const char *direction; |
| 161 | const char *language; |
| 162 | const char *script; |
| 163 | hb_feature_t *features; |
| 164 | unsigned int num_features; |
| 165 | char **shapers; |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 166 | }; |
Behdad Esfahbod | 3bb300e | 2011-08-11 11:54:31 +0200 | [diff] [blame] | 167 | |
Behdad Esfahbod | 109cb38 | 2011-09-08 16:00:04 -0400 | [diff] [blame] | 168 | |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 169 | struct font_options_t : option_group_t |
Behdad Esfahbod | 3bb300e | 2011-08-11 11:54:31 +0200 | [diff] [blame] | 170 | { |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 171 | font_options_t (option_parser_t *parser) { |
| 172 | font_file = NULL; |
| 173 | face_index = 0; |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 174 | |
| 175 | font = NULL; |
| 176 | |
| 177 | add_options (parser); |
| 178 | } |
| 179 | ~font_options_t (void) { |
| 180 | hb_font_destroy (font); |
Behdad Esfahbod | 3bb300e | 2011-08-11 11:54:31 +0200 | [diff] [blame] | 181 | } |
| 182 | |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 183 | void add_options (option_parser_t *parser); |
| 184 | |
| 185 | hb_font_t *get_font (void) const; |
Behdad Esfahbod | bc4b07b | 2011-09-08 17:08:32 -0400 | [diff] [blame] | 186 | |
Behdad Esfahbod | 3bb300e | 2011-08-11 11:54:31 +0200 | [diff] [blame] | 187 | const char *font_file; |
| 188 | int face_index; |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 189 | |
| 190 | private: |
| 191 | mutable hb_font_t *font; |
| 192 | }; |
Behdad Esfahbod | 3bb300e | 2011-08-11 11:54:31 +0200 | [diff] [blame] | 193 | |
| 194 | |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 195 | struct text_options_t : option_group_t |
| 196 | { |
| 197 | text_options_t (option_parser_t *parser) { |
| 198 | text = NULL; |
| 199 | text_file = NULL; |
Behdad Esfahbod | 3bb300e | 2011-08-11 11:54:31 +0200 | [diff] [blame] | 200 | |
Behdad Esfahbod | 55aeb04 | 2011-09-16 02:08:36 -0400 | [diff] [blame] | 201 | fp = NULL; |
| 202 | gs = NULL; |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 203 | text_len = (unsigned int) -1; |
| 204 | |
| 205 | add_options (parser); |
| 206 | } |
| 207 | ~text_options_t (void) { |
Behdad Esfahbod | 55aeb04 | 2011-09-16 02:08:36 -0400 | [diff] [blame] | 208 | if (gs) |
| 209 | g_string_free (gs, TRUE); |
| 210 | if (fp) |
| 211 | fclose (fp); |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | void add_options (option_parser_t *parser); |
| 215 | |
| 216 | void post_parse (GError **error G_GNUC_UNUSED) { |
| 217 | if (text && text_file) |
| 218 | g_set_error (error, |
| 219 | G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE, |
| 220 | "Only one of text and text-file must be set"); |
| 221 | |
| 222 | }; |
| 223 | |
| 224 | const char *get_line (unsigned int *len); |
| 225 | |
| 226 | const char *text; |
| 227 | const char *text_file; |
| 228 | |
| 229 | private: |
Behdad Esfahbod | 55aeb04 | 2011-09-16 02:08:36 -0400 | [diff] [blame] | 230 | FILE *fp; |
| 231 | GString *gs; |
| 232 | unsigned int text_len; |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 233 | }; |
| 234 | |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 235 | struct output_options_t : option_group_t |
| 236 | { |
| 237 | output_options_t (option_parser_t *parser) { |
| 238 | output_file = NULL; |
| 239 | output_format = NULL; |
| 240 | |
Behdad Esfahbod | f7e2ef7 | 2011-09-15 17:52:00 -0400 | [diff] [blame] | 241 | fp = NULL; |
| 242 | |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 243 | add_options (parser); |
| 244 | } |
Behdad Esfahbod | f7e2ef7 | 2011-09-15 17:52:00 -0400 | [diff] [blame] | 245 | ~output_options_t (void) { |
Behdad Esfahbod | 55aeb04 | 2011-09-16 02:08:36 -0400 | [diff] [blame] | 246 | if (fp) |
Behdad Esfahbod | f7e2ef7 | 2011-09-15 17:52:00 -0400 | [diff] [blame] | 247 | fclose (fp); |
| 248 | } |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 249 | |
| 250 | void add_options (option_parser_t *parser); |
| 251 | |
| 252 | void post_parse (GError **error G_GNUC_UNUSED) |
| 253 | { |
| 254 | if (output_file && !output_format) { |
| 255 | output_format = strrchr (output_file, '.'); |
| 256 | if (output_format) |
| 257 | output_format++; /* skip the dot */ |
| 258 | } |
| 259 | |
Behdad Esfahbod | f7e2ef7 | 2011-09-15 17:52:00 -0400 | [diff] [blame] | 260 | if (output_file && 0 == strcmp (output_file, "-")) |
| 261 | output_file = NULL; /* STDOUT */ |
| 262 | } |
| 263 | |
Behdad Esfahbod | a75c1b1 | 2011-09-16 01:16:41 -0400 | [diff] [blame] | 264 | FILE *get_file_handle (void); |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 265 | |
| 266 | virtual void init (const font_options_t *font_opts) = 0; |
| 267 | virtual void consume_line (hb_buffer_t *buffer, |
| 268 | const char *text, |
| 269 | unsigned int text_len) = 0; |
| 270 | virtual void finish (const font_options_t *font_opts) = 0; |
| 271 | |
| 272 | const char *output_file; |
| 273 | const char *output_format; |
Behdad Esfahbod | f7e2ef7 | 2011-09-15 17:52:00 -0400 | [diff] [blame] | 274 | |
Behdad Esfahbod | 8b8b190 | 2011-09-19 16:41:17 -0400 | [diff] [blame] | 275 | protected: |
| 276 | |
Behdad Esfahbod | f7e2ef7 | 2011-09-15 17:52:00 -0400 | [diff] [blame] | 277 | mutable FILE *fp; |
Behdad Esfahbod | b9b10ad | 2011-09-13 13:30:39 -0400 | [diff] [blame] | 278 | }; |
Behdad Esfahbod | 3bb300e | 2011-08-11 11:54:31 +0200 | [diff] [blame] | 279 | |
Behdad Esfahbod | 8b8b190 | 2011-09-19 16:41:17 -0400 | [diff] [blame] | 280 | struct format_options_t : option_group_t |
| 281 | { |
| 282 | format_options_t (option_parser_t *parser) { |
| 283 | show_glyph_names = true; |
| 284 | show_positions = true; |
| 285 | show_clusters = true; |
| 286 | |
| 287 | add_options (parser); |
| 288 | } |
| 289 | ~format_options_t (void) { |
| 290 | } |
| 291 | |
| 292 | void add_options (option_parser_t *parser); |
| 293 | |
| 294 | void serialize (hb_buffer_t *buffer, |
| 295 | hb_font_t *font, |
| 296 | GString *gs); |
| 297 | |
| 298 | protected: |
Behdad Esfahbod | 088c1e2 | 2011-09-20 14:43:55 -0400 | [diff] [blame] | 299 | hb_bool_t show_glyph_names; |
| 300 | hb_bool_t show_positions; |
| 301 | hb_bool_t show_clusters; |
Behdad Esfahbod | 8b8b190 | 2011-09-19 16:41:17 -0400 | [diff] [blame] | 302 | }; |
| 303 | |
Behdad Esfahbod | 3bb300e | 2011-08-11 11:54:31 +0200 | [diff] [blame] | 304 | |
| 305 | #endif |