Behdad Esfahbod | 8b8b190 | 2011-09-19 16:41:17 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2010 Behdad Esfahbod |
Behdad Esfahbod | 45675e5 | 2012-05-15 23:10:39 -0400 | [diff] [blame] | 3 | * Copyright © 2011,2012 Google, Inc. |
Behdad Esfahbod | 8b8b190 | 2011-09-19 16:41:17 -0400 | [diff] [blame] | 4 | * |
| 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 Esfahbod | 45675e5 | 2012-05-15 23:10:39 -0400 | [diff] [blame] | 28 | #include "main-font-text.hh" |
| 29 | #include "shape-consumer.hh" |
Behdad Esfahbod | 8b8b190 | 2011-09-19 16:41:17 -0400 | [diff] [blame] | 30 | |
Behdad Esfahbod | 5db0683 | 2012-06-02 12:13:08 -0400 | [diff] [blame] | 31 | struct output_buffer_t |
Behdad Esfahbod | 8b8b190 | 2011-09-19 16:41:17 -0400 | [diff] [blame] | 32 | { |
| 33 | output_buffer_t (option_parser_t *parser) |
Behdad Esfahbod | ea5e8a0 | 2014-03-19 15:38:02 -0700 | [diff] [blame] | 34 | : options (parser, hb_buffer_serialize_list_formats ()), |
Behdad Esfahbod | 7235f33 | 2013-06-10 14:39:51 -0400 | [diff] [blame] | 35 | format (parser), |
| 36 | gs (NULL), |
| 37 | line_no (0), |
| 38 | font (NULL) {} |
Behdad Esfahbod | 8b8b190 | 2011-09-19 16:41:17 -0400 | [diff] [blame] | 39 | |
Behdad Esfahbod | 45675e5 | 2012-05-15 23:10:39 -0400 | [diff] [blame] | 40 | void init (const font_options_t *font_opts) |
| 41 | { |
Behdad Esfahbod | 5db0683 | 2012-06-02 12:13:08 -0400 | [diff] [blame] | 42 | options.get_file_handle (); |
Behdad Esfahbod | 45675e5 | 2012-05-15 23:10:39 -0400 | [diff] [blame] | 43 | gs = g_string_new (NULL); |
| 44 | line_no = 0; |
| 45 | font = hb_font_reference (font_opts->get_font ()); |
Behdad Esfahbod | f9edf16 | 2012-11-15 12:14:09 -0800 | [diff] [blame] | 46 | |
| 47 | if (!options.output_format) |
| 48 | output_format = HB_BUFFER_SERIALIZE_FORMAT_TEXT; |
| 49 | else |
| 50 | output_format = hb_buffer_serialize_format_from_string (options.output_format, -1); |
Behdad Esfahbod | 9109f1e | 2014-07-08 20:02:29 -0400 | [diff] [blame] | 51 | /* An empty "output_format" parameter basically skips output generating. |
| 52 | * Useful for benchmarking. */ |
Behdad Esfahbod | 0afedaa | 2014-07-09 17:00:48 -0400 | [diff] [blame] | 53 | if ((!options.output_format || *options.output_format) && |
Behdad Esfahbod | 9109f1e | 2014-07-08 20:02:29 -0400 | [diff] [blame] | 54 | !hb_buffer_serialize_format_to_string (output_format)) |
Behdad Esfahbod | a4bef84 | 2012-11-15 13:29:51 -0800 | [diff] [blame] | 55 | { |
Behdad Esfahbod | 6bad092 | 2012-12-21 16:01:52 -0500 | [diff] [blame] | 56 | if (options.explicit_output_format) |
| 57 | fail (false, "Unknown output format `%s'; supported formats are: %s", |
Behdad Esfahbod | ea5e8a0 | 2014-03-19 15:38:02 -0700 | [diff] [blame] | 58 | options.output_format, |
| 59 | g_strjoinv ("/", const_cast<char**> (options.supported_formats))); |
Behdad Esfahbod | 6bad092 | 2012-12-21 16:01:52 -0500 | [diff] [blame] | 60 | else |
| 61 | /* Just default to TEXT if not explicitly requested and the |
| 62 | * file extension is not recognized. */ |
| 63 | output_format = HB_BUFFER_SERIALIZE_FORMAT_TEXT; |
Behdad Esfahbod | a4bef84 | 2012-11-15 13:29:51 -0800 | [diff] [blame] | 64 | } |
Behdad Esfahbod | f9edf16 | 2012-11-15 12:14:09 -0800 | [diff] [blame] | 65 | |
Behdad Esfahbod | 4dc798d | 2013-08-26 20:39:00 -0400 | [diff] [blame] | 66 | unsigned int flags = HB_BUFFER_SERIALIZE_FLAG_DEFAULT; |
Behdad Esfahbod | f9edf16 | 2012-11-15 12:14:09 -0800 | [diff] [blame] | 67 | if (!format.show_glyph_names) |
| 68 | flags |= HB_BUFFER_SERIALIZE_FLAG_NO_GLYPH_NAMES; |
| 69 | if (!format.show_clusters) |
| 70 | flags |= HB_BUFFER_SERIALIZE_FLAG_NO_CLUSTERS; |
| 71 | if (!format.show_positions) |
| 72 | flags |= HB_BUFFER_SERIALIZE_FLAG_NO_POSITIONS; |
Behdad Esfahbod | fdd1770 | 2015-08-24 13:49:55 +0100 | [diff] [blame^] | 73 | if (format.show_extents) |
| 74 | flags |= HB_BUFFER_SERIALIZE_FLAG_GLYPH_EXTENTS; |
Behdad Esfahbod | f9edf16 | 2012-11-15 12:14:09 -0800 | [diff] [blame] | 75 | format_flags = (hb_buffer_serialize_flags_t) flags; |
Behdad Esfahbod | 45675e5 | 2012-05-15 23:10:39 -0400 | [diff] [blame] | 76 | } |
Behdad Esfahbod | 5db0683 | 2012-06-02 12:13:08 -0400 | [diff] [blame] | 77 | void new_line (void) |
| 78 | { |
| 79 | line_no++; |
| 80 | } |
| 81 | void consume_text (hb_buffer_t *buffer, |
Behdad Esfahbod | 8b8b190 | 2011-09-19 16:41:17 -0400 | [diff] [blame] | 82 | const char *text, |
Behdad Esfahbod | 95cefdf | 2012-04-16 18:08:20 -0400 | [diff] [blame] | 83 | unsigned int text_len, |
Behdad Esfahbod | 45675e5 | 2012-05-15 23:10:39 -0400 | [diff] [blame] | 84 | hb_bool_t utf8_clusters) |
| 85 | { |
Behdad Esfahbod | 45675e5 | 2012-05-15 23:10:39 -0400 | [diff] [blame] | 86 | g_string_set_size (gs, 0); |
Behdad Esfahbod | f9edf16 | 2012-11-15 12:14:09 -0800 | [diff] [blame] | 87 | format.serialize_buffer_of_text (buffer, line_no, text, text_len, font, gs); |
Behdad Esfahbod | 5db0683 | 2012-06-02 12:13:08 -0400 | [diff] [blame] | 88 | fprintf (options.fp, "%s", gs->str); |
| 89 | } |
| 90 | void shape_failed (hb_buffer_t *buffer, |
| 91 | const char *text, |
| 92 | unsigned int text_len, |
| 93 | hb_bool_t utf8_clusters) |
| 94 | { |
| 95 | g_string_set_size (gs, 0); |
| 96 | format.serialize_message (line_no, "msg: all shapers failed", gs); |
| 97 | fprintf (options.fp, "%s", gs->str); |
| 98 | } |
| 99 | void consume_glyphs (hb_buffer_t *buffer, |
| 100 | const char *text, |
| 101 | unsigned int text_len, |
| 102 | hb_bool_t utf8_clusters) |
| 103 | { |
| 104 | g_string_set_size (gs, 0); |
Behdad Esfahbod | f9edf16 | 2012-11-15 12:14:09 -0800 | [diff] [blame] | 105 | format.serialize_buffer_of_glyphs (buffer, line_no, text, text_len, font, |
| 106 | output_format, format_flags, gs); |
Behdad Esfahbod | 5db0683 | 2012-06-02 12:13:08 -0400 | [diff] [blame] | 107 | fprintf (options.fp, "%s", gs->str); |
Behdad Esfahbod | 45675e5 | 2012-05-15 23:10:39 -0400 | [diff] [blame] | 108 | } |
| 109 | void finish (const font_options_t *font_opts) |
| 110 | { |
| 111 | hb_font_destroy (font); |
Behdad Esfahbod | 0594a24 | 2012-06-05 20:35:40 -0400 | [diff] [blame] | 112 | g_string_free (gs, true); |
Behdad Esfahbod | 45675e5 | 2012-05-15 23:10:39 -0400 | [diff] [blame] | 113 | gs = NULL; |
| 114 | font = NULL; |
| 115 | } |
Behdad Esfahbod | 8b8b190 | 2011-09-19 16:41:17 -0400 | [diff] [blame] | 116 | |
| 117 | protected: |
Behdad Esfahbod | 5db0683 | 2012-06-02 12:13:08 -0400 | [diff] [blame] | 118 | output_options_t options; |
Behdad Esfahbod | 45675e5 | 2012-05-15 23:10:39 -0400 | [diff] [blame] | 119 | format_options_t format; |
| 120 | |
Behdad Esfahbod | 8b8b190 | 2011-09-19 16:41:17 -0400 | [diff] [blame] | 121 | GString *gs; |
Behdad Esfahbod | cdc673d | 2012-01-19 12:46:18 -0500 | [diff] [blame] | 122 | unsigned int line_no; |
Behdad Esfahbod | 45675e5 | 2012-05-15 23:10:39 -0400 | [diff] [blame] | 123 | hb_font_t *font; |
Behdad Esfahbod | f9edf16 | 2012-11-15 12:14:09 -0800 | [diff] [blame] | 124 | hb_buffer_serialize_format_t output_format; |
| 125 | hb_buffer_serialize_flags_t format_flags; |
Behdad Esfahbod | 8b8b190 | 2011-09-19 16:41:17 -0400 | [diff] [blame] | 126 | }; |
| 127 | |
Behdad Esfahbod | 8b8b190 | 2011-09-19 16:41:17 -0400 | [diff] [blame] | 128 | int |
| 129 | main (int argc, char **argv) |
| 130 | { |
Behdad Esfahbod | cd4eb96 | 2015-01-20 12:30:45 -0800 | [diff] [blame] | 131 | main_font_text_t<shape_consumer_t<output_buffer_t>, FONT_SIZE_UPEM, 0> driver; |
Behdad Esfahbod | 45675e5 | 2012-05-15 23:10:39 -0400 | [diff] [blame] | 132 | return driver.main (argc, argv); |
Behdad Esfahbod | 8b8b190 | 2011-09-19 16:41:17 -0400 | [diff] [blame] | 133 | } |