Behdad Esfahbod | 64aef3a | 2008-01-23 16:14:38 -0500 | [diff] [blame] | 1 | /* |
Behdad Esfahbod | 2409d5f | 2011-04-21 17:14:28 -0400 | [diff] [blame] | 2 | * Copyright © 2007,2008,2009 Red Hat, Inc. |
Behdad Esfahbod | 64aef3a | 2008-01-23 16:14:38 -0500 | [diff] [blame] | 3 | * |
Behdad Esfahbod | c755cb3 | 2010-04-22 00:11:43 -0400 | [diff] [blame] | 4 | * This is part of HarfBuzz, a text shaping library. |
Behdad Esfahbod | 64aef3a | 2008-01-23 16:14:38 -0500 | [diff] [blame] | 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 | * Red Hat Author(s): Behdad Esfahbod |
| 25 | */ |
| 26 | |
Behdad Esfahbod | fd3d004 | 2018-05-24 15:58:26 -0700 | [diff] [blame] | 27 | #include "hb-static.cc" |
Behdad Esfahbod | c77ae40 | 2018-08-25 22:36:36 -0700 | [diff] [blame] | 28 | #include "hb-open-file.hh" |
Behdad Esfahbod | 7a750ac | 2011-08-17 14:19:59 +0200 | [diff] [blame] | 29 | #include "hb-ot-layout-gdef-table.hh" |
Behdad Esfahbod | c77ae40 | 2018-08-25 22:36:36 -0700 | [diff] [blame] | 30 | #include "hb-ot-layout-gsubgpos.hh" |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 31 | |
Behdad Esfahbod | bdd0ff5 | 2009-12-15 04:07:40 -0500 | [diff] [blame] | 32 | #ifdef HAVE_GLIB |
Behdad Esfahbod | baec684 | 2009-08-01 21:06:11 -0400 | [diff] [blame] | 33 | #include <glib.h> |
Behdad Esfahbod | bdd0ff5 | 2009-12-15 04:07:40 -0500 | [diff] [blame] | 34 | #endif |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 35 | #include <stdlib.h> |
| 36 | #include <stdio.h> |
| 37 | |
Behdad Esfahbod | acdba3f | 2010-07-23 15:11:18 -0400 | [diff] [blame] | 38 | |
Behdad Esfahbod | 7c8e844 | 2012-08-28 17:57:49 -0400 | [diff] [blame] | 39 | using namespace OT; |
| 40 | |
Ebrahim Byagowi | bb4cdf8 | 2019-06-25 01:42:42 +0430 | [diff] [blame] | 41 | #ifdef HB_NO_OPEN |
| 42 | #define hb_blob_create_from_file(x) hb_blob_get_empty () |
| 43 | #endif |
| 44 | |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 45 | int |
| 46 | main (int argc, char **argv) |
| 47 | { |
| 48 | if (argc != 2) { |
| 49 | fprintf (stderr, "usage: %s font-file.ttf\n", argv[0]); |
| 50 | exit (1); |
| 51 | } |
| 52 | |
Ebrahim Byagowi | ce17340 | 2018-04-20 10:29:06 +0430 | [diff] [blame] | 53 | hb_blob_t *blob = hb_blob_create_from_file (argv[1]); |
| 54 | unsigned int len; |
| 55 | const char *font_data = hb_blob_get_data (blob, &len); |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 56 | printf ("Opened font file %s: %d bytes long\n", argv[1], len); |
Behdad Esfahbod | ce48f03 | 2009-11-02 14:35:51 -0500 | [diff] [blame] | 57 | |
Behdad Esfahbod | 8e3e412 | 2018-07-22 22:49:26 -0700 | [diff] [blame] | 58 | hb_blob_t *font_blob = hb_sanitize_context_t().sanitize_blob<OpenTypeFontFile> (blob); |
Behdad Esfahbod | eba1c16 | 2018-05-08 02:47:42 -0700 | [diff] [blame] | 59 | const OpenTypeFontFile* sanitized = font_blob->as<OpenTypeFontFile> (); |
Behdad Esfahbod | b912fbe | 2018-08-06 06:30:12 -0700 | [diff] [blame] | 60 | if (!font_blob->data) |
Ebrahim Byagowi | c55aa14 | 2018-04-18 00:01:20 +0430 | [diff] [blame] | 61 | { |
| 62 | printf ("Sanitization of the file wasn't successful. Exit"); |
| 63 | return 1; |
| 64 | } |
| 65 | const OpenTypeFontFile& ot = *sanitized; |
| 66 | |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 67 | |
Behdad Esfahbod | 1aa4666 | 2010-04-23 13:32:03 -0400 | [diff] [blame] | 68 | switch (ot.get_tag ()) { |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 69 | case OpenTypeFontFile::TrueTypeTag: |
| 70 | printf ("OpenType font with TrueType outlines\n"); |
| 71 | break; |
| 72 | case OpenTypeFontFile::CFFTag: |
| 73 | printf ("OpenType font with CFF (Type1) outlines\n"); |
| 74 | break; |
| 75 | case OpenTypeFontFile::TTCTag: |
| 76 | printf ("TrueType Collection of OpenType fonts\n"); |
| 77 | break; |
Behdad Esfahbod | ce5694c | 2010-05-04 14:10:18 -0400 | [diff] [blame] | 78 | case OpenTypeFontFile::TrueTag: |
| 79 | printf ("Obsolete Apple TrueType font\n"); |
| 80 | break; |
| 81 | case OpenTypeFontFile::Typ1Tag: |
| 82 | printf ("Obsolete Apple Type1 font in SFNT container\n"); |
| 83 | break; |
Ebrahim Byagowi | 225b92b | 2018-07-01 14:32:00 +0430 | [diff] [blame] | 84 | case OpenTypeFontFile::DFontTag: |
| 85 | printf ("DFont Mac Resource Fork\n"); |
| 86 | break; |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 87 | default: |
| 88 | printf ("Unknown font format\n"); |
| 89 | break; |
| 90 | } |
| 91 | |
Behdad Esfahbod | 54e5aac | 2008-01-27 21:19:51 -0500 | [diff] [blame] | 92 | int num_fonts = ot.get_face_count (); |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 93 | printf ("%d font(s) found in file\n", num_fonts); |
| 94 | for (int n_font = 0; n_font < num_fonts; n_font++) { |
Behdad Esfahbod | 54e5aac | 2008-01-27 21:19:51 -0500 | [diff] [blame] | 95 | const OpenTypeFontFace &font = ot.get_face (n_font); |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 96 | printf ("Font %d of %d:\n", n_font, num_fonts); |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 97 | |
Behdad Esfahbod | 54e5aac | 2008-01-27 21:19:51 -0500 | [diff] [blame] | 98 | int num_tables = font.get_table_count (); |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 99 | printf (" %d table(s) found in font\n", num_tables); |
| 100 | for (int n_table = 0; n_table < num_tables; n_table++) { |
Behdad Esfahbod | 54e5aac | 2008-01-27 21:19:51 -0500 | [diff] [blame] | 101 | const OpenTypeTable &table = font.get_table (n_table); |
Behdad Esfahbod | 15164d9 | 2009-08-04 13:57:41 -0400 | [diff] [blame] | 102 | printf (" Table %2d of %2d: %.4s (0x%08x+0x%08x)\n", n_table, num_tables, |
Ebrahim Byagowi | c55aa14 | 2018-04-18 00:01:20 +0430 | [diff] [blame] | 103 | (const char *) table.tag, |
Behdad Esfahbod | 6ad8d5f | 2009-05-25 02:27:29 -0400 | [diff] [blame] | 104 | (unsigned int) table.offset, |
| 105 | (unsigned int) table.length); |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 106 | |
Behdad Esfahbod | 6ad8d5f | 2009-05-25 02:27:29 -0400 | [diff] [blame] | 107 | switch (table.tag) { |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 108 | |
Behdad Esfahbod | a130ee6 | 2017-11-14 20:30:03 -0800 | [diff] [blame] | 109 | case HB_OT_TAG_GSUB: |
| 110 | case HB_OT_TAG_GPOS: |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 111 | { |
| 112 | |
Behdad Esfahbod | 187454c | 2010-04-23 16:35:01 -0400 | [diff] [blame] | 113 | const GSUBGPOS &g = *CastP<GSUBGPOS> (font_data + table.offset); |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 114 | |
| 115 | int num_scripts = g.get_script_count (); |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 116 | printf (" %d script(s) found in table\n", num_scripts); |
| 117 | for (int n_script = 0; n_script < num_scripts; n_script++) { |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 118 | const Script &script = g.get_script (n_script); |
| 119 | printf (" Script %2d of %2d: %.4s\n", n_script, num_scripts, |
| 120 | (const char *)g.get_script_tag(n_script)); |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 121 | |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 122 | if (!script.has_default_lang_sys()) |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 123 | printf (" No default language system\n"); |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 124 | int num_langsys = script.get_lang_sys_count (); |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 125 | printf (" %d language system(s) found in script\n", num_langsys); |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 126 | for (int n_langsys = script.has_default_lang_sys() ? -1 : 0; n_langsys < num_langsys; n_langsys++) { |
| 127 | const LangSys &langsys = n_langsys == -1 |
| 128 | ? script.get_default_lang_sys () |
| 129 | : script.get_lang_sys (n_langsys); |
Behdad Esfahbod | 1a2a4a0 | 2012-05-05 22:38:20 +0200 | [diff] [blame] | 130 | if (n_langsys == -1) |
| 131 | printf (" Default Language System\n"); |
| 132 | else |
| 133 | printf (" Language System %2d of %2d: %.4s\n", n_langsys, num_langsys, |
| 134 | (const char *)script.get_lang_sys_tag (n_langsys)); |
Behdad Esfahbod | 0ddecab | 2014-05-01 16:01:40 -0700 | [diff] [blame] | 135 | if (!langsys.has_required_feature ()) |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 136 | printf (" No required feature\n"); |
Behdad Esfahbod | 0ddecab | 2014-05-01 16:01:40 -0700 | [diff] [blame] | 137 | else |
| 138 | printf (" Required feature index: %d\n", |
| 139 | langsys.get_required_feature_index ()); |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 140 | |
| 141 | int num_features = langsys.get_feature_count (); |
| 142 | printf (" %d feature(s) found in language system\n", num_features); |
| 143 | for (int n_feature = 0; n_feature < num_features; n_feature++) { |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 144 | printf (" Feature index %2d of %2d: %d\n", n_feature, num_features, |
| 145 | langsys.get_feature_index (n_feature)); |
| 146 | } |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 147 | } |
| 148 | } |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 149 | |
| 150 | int num_features = g.get_feature_count (); |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 151 | printf (" %d feature(s) found in table\n", num_features); |
| 152 | for (int n_feature = 0; n_feature < num_features; n_feature++) { |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 153 | const Feature &feature = g.get_feature (n_feature); |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 154 | int num_lookups = feature.get_lookup_count (); |
Jonathan Kew | da13293 | 2014-04-27 14:05:24 +0100 | [diff] [blame] | 155 | printf (" Feature %2d of %2d: %c%c%c%c\n", n_feature, num_features, |
| 156 | HB_UNTAG(g.get_feature_tag(n_feature))); |
Behdad Esfahbod | 0ddecab | 2014-05-01 16:01:40 -0700 | [diff] [blame] | 157 | |
Behdad Esfahbod | 2d15e72 | 2009-04-15 19:50:16 -0400 | [diff] [blame] | 158 | printf (" %d lookup(s) found in feature\n", num_lookups); |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 159 | for (int n_lookup = 0; n_lookup < num_lookups; n_lookup++) { |
Behdad Esfahbod | 2d15e72 | 2009-04-15 19:50:16 -0400 | [diff] [blame] | 160 | printf (" Lookup index %2d of %2d: %d\n", n_lookup, num_lookups, |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 161 | feature.get_lookup_index (n_lookup)); |
| 162 | } |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 163 | } |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 164 | |
| 165 | int num_lookups = g.get_lookup_count (); |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 166 | printf (" %d lookup(s) found in table\n", num_lookups); |
| 167 | for (int n_lookup = 0; n_lookup < num_lookups; n_lookup++) { |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 168 | const Lookup &lookup = g.get_lookup (n_lookup); |
Behdad Esfahbod | 8c69e65 | 2010-10-27 22:07:49 -0400 | [diff] [blame] | 169 | printf (" Lookup %2d of %2d: type %d, props 0x%04X\n", n_lookup, num_lookups, |
| 170 | lookup.get_type(), lookup.get_props()); |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 171 | } |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 172 | |
| 173 | } |
| 174 | break; |
| 175 | |
Behdad Esfahbod | 6c48f20 | 2013-09-09 15:43:10 -0400 | [diff] [blame] | 176 | case GDEF::tableTag: |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 177 | { |
| 178 | |
Behdad Esfahbod | 187454c | 2010-04-23 16:35:01 -0400 | [diff] [blame] | 179 | const GDEF &gdef = *CastP<GDEF> (font_data + table.offset); |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 180 | |
| 181 | printf (" Has %sglyph classes\n", |
| 182 | gdef.has_glyph_classes () ? "" : "no "); |
| 183 | printf (" Has %smark attachment types\n", |
| 184 | gdef.has_mark_attachment_types () ? "" : "no "); |
Behdad Esfahbod | 79420ad | 2009-05-26 12:24:16 -0400 | [diff] [blame] | 185 | printf (" Has %sattach points\n", |
| 186 | gdef.has_attach_points () ? "" : "no "); |
| 187 | printf (" Has %slig carets\n", |
| 188 | gdef.has_lig_carets () ? "" : "no "); |
Behdad Esfahbod | 67cb811 | 2009-08-09 13:05:08 -0400 | [diff] [blame] | 189 | printf (" Has %smark sets\n", |
| 190 | gdef.has_mark_sets () ? "" : "no "); |
Behdad Esfahbod | 40a8131 | 2008-01-28 02:30:48 -0500 | [diff] [blame] | 191 | break; |
Behdad Esfahbod | 62964af | 2009-05-26 12:40:10 -0400 | [diff] [blame] | 192 | } |
Behdad Esfahbod | 12c4568 | 2006-12-28 06:10:59 -0500 | [diff] [blame] | 193 | } |
| 194 | } |
| 195 | } |
| 196 | |
| 197 | return 0; |
| 198 | } |