blob: 5d68862ae05f98dc8b6af13ff76012d1eda1472a [file] [log] [blame]
Behdad Esfahbod64aef3a2008-01-23 16:14:38 -05001/*
Behdad Esfahbodee58aae2009-05-17 05:14:33 -04002 * Copyright (C) 2007,2008,2009 Red Hat, Inc.
Behdad Esfahbod64aef3a2008-01-23 16:14:38 -05003 *
Behdad Esfahbodc755cb32010-04-22 00:11:43 -04004 * This is part of HarfBuzz, a text shaping library.
Behdad Esfahbod64aef3a2008-01-23 16:14:38 -05005 *
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 Esfahbodfd92a3d2008-01-24 03:11:09 -050027#define HB_OT_LAYOUT_CC
Behdad Esfahbod5f5b24f2009-08-02 20:03:12 -040028#include "hb-open-file-private.hh"
29#include "hb-ot-layout-gdef-private.hh"
30#include "hb-ot-layout-gsubgpos-private.hh"
Behdad Esfahbod12c45682006-12-28 06:10:59 -050031
Behdad Esfahbodbdd0ff52009-12-15 04:07:40 -050032#ifdef HAVE_GLIB
Behdad Esfahbodbaec6842009-08-01 21:06:11 -040033#include <glib.h>
Behdad Esfahbodbdd0ff52009-12-15 04:07:40 -050034#endif
Behdad Esfahbod12c45682006-12-28 06:10:59 -050035#include <stdlib.h>
36#include <stdio.h>
37
38int
39main (int argc, char **argv)
40{
41 if (argc != 2) {
42 fprintf (stderr, "usage: %s font-file.ttf\n", argv[0]);
43 exit (1);
44 }
45
Behdad Esfahbodbdd0ff52009-12-15 04:07:40 -050046 const char *font_data = NULL;
47 int len = 0;
48
49#ifdef HAVE_GLIB
Behdad Esfahbod12c45682006-12-28 06:10:59 -050050 GMappedFile *mf = g_mapped_file_new (argv[1], FALSE, NULL);
Behdad Esfahbodbdd0ff52009-12-15 04:07:40 -050051 font_data = g_mapped_file_get_contents (mf);
52 len = g_mapped_file_get_length (mf);
53#else
54 FILE *f = fopen (argv[1], "rb");
55 fseek (f, 0, SEEK_END);
56 len = ftell (f);
57 fseek (f, 0, SEEK_SET);
58 font_data = (const char *) malloc (len);
59 len = fread ((char *) font_data, 1, len, f);
60#endif
Behdad Esfahbodce48f032009-11-02 14:35:51 -050061
Behdad Esfahbod12c45682006-12-28 06:10:59 -050062 printf ("Opened font file %s: %d bytes long\n", argv[1], len);
Behdad Esfahbodce48f032009-11-02 14:35:51 -050063
Behdad Esfahbod187454c2010-04-23 16:35:01 -040064 const OpenTypeFontFile &ot = *CastP<OpenTypeFontFile> (font_data);
Behdad Esfahbod12c45682006-12-28 06:10:59 -050065
Behdad Esfahbod1aa46662010-04-23 13:32:03 -040066 switch (ot.get_tag ()) {
Behdad Esfahbod12c45682006-12-28 06:10:59 -050067 case OpenTypeFontFile::TrueTypeTag:
68 printf ("OpenType font with TrueType outlines\n");
69 break;
70 case OpenTypeFontFile::CFFTag:
71 printf ("OpenType font with CFF (Type1) outlines\n");
72 break;
73 case OpenTypeFontFile::TTCTag:
74 printf ("TrueType Collection of OpenType fonts\n");
75 break;
Behdad Esfahbodce5694c2010-05-04 14:10:18 -040076 case OpenTypeFontFile::TrueTag:
77 printf ("Obsolete Apple TrueType font\n");
78 break;
79 case OpenTypeFontFile::Typ1Tag:
80 printf ("Obsolete Apple Type1 font in SFNT container\n");
81 break;
Behdad Esfahbod12c45682006-12-28 06:10:59 -050082 default:
83 printf ("Unknown font format\n");
84 break;
85 }
86
Behdad Esfahbod54e5aac2008-01-27 21:19:51 -050087 int num_fonts = ot.get_face_count ();
Behdad Esfahbod12c45682006-12-28 06:10:59 -050088 printf ("%d font(s) found in file\n", num_fonts);
89 for (int n_font = 0; n_font < num_fonts; n_font++) {
Behdad Esfahbod54e5aac2008-01-27 21:19:51 -050090 const OpenTypeFontFace &font = ot.get_face (n_font);
Behdad Esfahbod40a81312008-01-28 02:30:48 -050091 printf ("Font %d of %d:\n", n_font, num_fonts);
Behdad Esfahbod12c45682006-12-28 06:10:59 -050092
Behdad Esfahbod54e5aac2008-01-27 21:19:51 -050093 int num_tables = font.get_table_count ();
Behdad Esfahbod12c45682006-12-28 06:10:59 -050094 printf (" %d table(s) found in font\n", num_tables);
95 for (int n_table = 0; n_table < num_tables; n_table++) {
Behdad Esfahbod54e5aac2008-01-27 21:19:51 -050096 const OpenTypeTable &table = font.get_table (n_table);
Behdad Esfahbod15164d92009-08-04 13:57:41 -040097 printf (" Table %2d of %2d: %.4s (0x%08x+0x%08x)\n", n_table, num_tables,
Behdad Esfahbod6ad8d5f2009-05-25 02:27:29 -040098 (const char *)table.tag,
99 (unsigned int) table.offset,
100 (unsigned int) table.length);
Behdad Esfahbod12c45682006-12-28 06:10:59 -0500101
Behdad Esfahbod6ad8d5f2009-05-25 02:27:29 -0400102 switch (table.tag) {
Behdad Esfahbod12c45682006-12-28 06:10:59 -0500103
Behdad Esfahbod40a81312008-01-28 02:30:48 -0500104 case GSUBGPOS::GSUBTag:
105 case GSUBGPOS::GPOSTag:
106 {
107
Behdad Esfahbod187454c2010-04-23 16:35:01 -0400108 const GSUBGPOS &g = *CastP<GSUBGPOS> (font_data + table.offset);
Behdad Esfahbod40a81312008-01-28 02:30:48 -0500109
110 int num_scripts = g.get_script_count ();
Behdad Esfahbod12c45682006-12-28 06:10:59 -0500111 printf (" %d script(s) found in table\n", num_scripts);
112 for (int n_script = 0; n_script < num_scripts; n_script++) {
Behdad Esfahbod40a81312008-01-28 02:30:48 -0500113 const Script &script = g.get_script (n_script);
114 printf (" Script %2d of %2d: %.4s\n", n_script, num_scripts,
115 (const char *)g.get_script_tag(n_script));
Behdad Esfahbod12c45682006-12-28 06:10:59 -0500116
Behdad Esfahbod40a81312008-01-28 02:30:48 -0500117 if (!script.has_default_lang_sys())
Behdad Esfahbod12c45682006-12-28 06:10:59 -0500118 printf (" No default language system\n");
Behdad Esfahbod40a81312008-01-28 02:30:48 -0500119 int num_langsys = script.get_lang_sys_count ();
Behdad Esfahbod12c45682006-12-28 06:10:59 -0500120 printf (" %d language system(s) found in script\n", num_langsys);
Behdad Esfahbod40a81312008-01-28 02:30:48 -0500121 for (int n_langsys = script.has_default_lang_sys() ? -1 : 0; n_langsys < num_langsys; n_langsys++) {
122 const LangSys &langsys = n_langsys == -1
123 ? script.get_default_lang_sys ()
124 : script.get_lang_sys (n_langsys);
125 printf (n_langsys == -1
126 ? " Default Language System\n"
127 : " Language System %2d of %2d: %.4s\n", n_langsys, num_langsys,
128 (const char *)script.get_lang_sys_tag (n_langsys));
Behdad Esfahbodb5db4f12010-05-10 22:22:22 -0400129 if (langsys.get_required_feature_index () == Index::NOT_FOUND_INDEX)
Behdad Esfahbod12c45682006-12-28 06:10:59 -0500130 printf (" No required feature\n");
Behdad Esfahbod40a81312008-01-28 02:30:48 -0500131
132 int num_features = langsys.get_feature_count ();
133 printf (" %d feature(s) found in language system\n", num_features);
134 for (int n_feature = 0; n_feature < num_features; n_feature++) {
Behdad Esfahbod40a81312008-01-28 02:30:48 -0500135 printf (" Feature index %2d of %2d: %d\n", n_feature, num_features,
136 langsys.get_feature_index (n_feature));
137 }
Behdad Esfahbod12c45682006-12-28 06:10:59 -0500138 }
139 }
Behdad Esfahbod40a81312008-01-28 02:30:48 -0500140
141 int num_features = g.get_feature_count ();
Behdad Esfahbod12c45682006-12-28 06:10:59 -0500142 printf (" %d feature(s) found in table\n", num_features);
143 for (int n_feature = 0; n_feature < num_features; n_feature++) {
Behdad Esfahbod40a81312008-01-28 02:30:48 -0500144 const Feature &feature = g.get_feature (n_feature);
145 printf (" Feature %2d of %2d: %.4s; %d lookup(s)\n", n_feature, num_features,
146 (const char *)g.get_feature_tag(n_feature),
147 feature.get_lookup_count());
148
149 int num_lookups = feature.get_lookup_count ();
Behdad Esfahbod2d15e722009-04-15 19:50:16 -0400150 printf (" %d lookup(s) found in feature\n", num_lookups);
Behdad Esfahbod40a81312008-01-28 02:30:48 -0500151 for (int n_lookup = 0; n_lookup < num_lookups; n_lookup++) {
Behdad Esfahbod2d15e722009-04-15 19:50:16 -0400152 printf (" Lookup index %2d of %2d: %d\n", n_lookup, num_lookups,
Behdad Esfahbod40a81312008-01-28 02:30:48 -0500153 feature.get_lookup_index (n_lookup));
154 }
Behdad Esfahbod12c45682006-12-28 06:10:59 -0500155 }
Behdad Esfahbod40a81312008-01-28 02:30:48 -0500156
157 int num_lookups = g.get_lookup_count ();
Behdad Esfahbod12c45682006-12-28 06:10:59 -0500158 printf (" %d lookup(s) found in table\n", num_lookups);
159 for (int n_lookup = 0; n_lookup < num_lookups; n_lookup++) {
Behdad Esfahbod40a81312008-01-28 02:30:48 -0500160 const Lookup &lookup = g.get_lookup (n_lookup);
161 printf (" Lookup %2d of %2d: type %d, flags 0x%04X\n", n_lookup, num_lookups,
Behdad Esfahbod303fe622008-01-23 00:20:48 -0500162 lookup.get_type(), lookup.get_flag());
Behdad Esfahbod12c45682006-12-28 06:10:59 -0500163 }
Behdad Esfahbod40a81312008-01-28 02:30:48 -0500164
165 }
166 break;
167
168 case GDEF::Tag:
169 {
170
Behdad Esfahbod187454c2010-04-23 16:35:01 -0400171 const GDEF &gdef = *CastP<GDEF> (font_data + table.offset);
Behdad Esfahbod40a81312008-01-28 02:30:48 -0500172
173 printf (" Has %sglyph classes\n",
174 gdef.has_glyph_classes () ? "" : "no ");
175 printf (" Has %smark attachment types\n",
176 gdef.has_mark_attachment_types () ? "" : "no ");
Behdad Esfahbod79420ad2009-05-26 12:24:16 -0400177 printf (" Has %sattach points\n",
178 gdef.has_attach_points () ? "" : "no ");
179 printf (" Has %slig carets\n",
180 gdef.has_lig_carets () ? "" : "no ");
Behdad Esfahbod67cb8112009-08-09 13:05:08 -0400181 printf (" Has %smark sets\n",
182 gdef.has_mark_sets () ? "" : "no ");
Behdad Esfahbod40a81312008-01-28 02:30:48 -0500183 break;
Behdad Esfahbod62964af2009-05-26 12:40:10 -0400184 }
Behdad Esfahbod12c45682006-12-28 06:10:59 -0500185 }
186 }
187 }
188
189 return 0;
190}