main.cc 6.5 KB
Newer Older
B
Behdad Esfahbod 已提交
1
/*
B
Behdad Esfahbod 已提交
2
 * Copyright © 2007,2008,2009  Red Hat, Inc.
B
Behdad Esfahbod 已提交
3
 *
B
Behdad Esfahbod 已提交
4
 *  This is part of HarfBuzz, a text shaping library.
B
Behdad Esfahbod 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *
 * Permission is hereby granted, without written agreement and without
 * license or royalty fees, to use, copy, modify, and distribute this
 * software and its documentation for any purpose, provided that the
 * above copyright notice and the following two paragraphs appear in
 * all copies of this software.
 *
 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
 * DAMAGE.
 *
 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 *
 * Red Hat Author(s): Behdad Esfahbod
 */

B
Behdad Esfahbod 已提交
27
#define HB_OT_LAYOUT_CC
B
Behdad Esfahbod 已提交
28
#include "hb-mutex-private.hh"
29 30 31
#include "hb-open-file-private.hh"
#include "hb-ot-layout-gdef-private.hh"
#include "hb-ot-layout-gsubgpos-private.hh"
32

33
#ifdef HAVE_GLIB
B
Behdad Esfahbod 已提交
34
#include <glib.h>
35
#endif
36 37 38
#include <stdlib.h>
#include <stdio.h>

B
Behdad Esfahbod 已提交
39 40 41
HB_BEGIN_DECLS


42 43 44 45 46 47 48 49
int
main (int argc, char **argv)
{
  if (argc != 2) {
    fprintf (stderr, "usage: %s font-file.ttf\n", argv[0]);
    exit (1);
  }

50 51 52 53
  const char *font_data = NULL;
  int len = 0;

#ifdef HAVE_GLIB
54
  GMappedFile *mf = g_mapped_file_new (argv[1], FALSE, NULL);
55 56 57 58 59 60 61 62 63 64
  font_data = g_mapped_file_get_contents (mf);
  len = g_mapped_file_get_length (mf);
#else
  FILE *f = fopen (argv[1], "rb");
  fseek (f, 0, SEEK_END);
  len = ftell (f);
  fseek (f, 0, SEEK_SET);
  font_data = (const char *) malloc (len);
  len = fread ((char *) font_data, 1, len, f);
#endif
B
Behdad Esfahbod 已提交
65

66
  printf ("Opened font file %s: %d bytes long\n", argv[1], len);
B
Behdad Esfahbod 已提交
67

68
  const OpenTypeFontFile &ot = *CastP<OpenTypeFontFile> (font_data);
69

B
Behdad Esfahbod 已提交
70
  switch (ot.get_tag ()) {
71 72 73 74 75 76 77 78 79
  case OpenTypeFontFile::TrueTypeTag:
    printf ("OpenType font with TrueType outlines\n");
    break;
  case OpenTypeFontFile::CFFTag:
    printf ("OpenType font with CFF (Type1) outlines\n");
    break;
  case OpenTypeFontFile::TTCTag:
    printf ("TrueType Collection of OpenType fonts\n");
    break;
B
Behdad Esfahbod 已提交
80 81 82 83 84 85
  case OpenTypeFontFile::TrueTag:
    printf ("Obsolete Apple TrueType font\n");
    break;
  case OpenTypeFontFile::Typ1Tag:
    printf ("Obsolete Apple Type1 font in SFNT container\n");
    break;
86 87 88 89 90
  default:
    printf ("Unknown font format\n");
    break;
  }

B
Behdad Esfahbod 已提交
91
  int num_fonts = ot.get_face_count ();
92 93
  printf ("%d font(s) found in file\n", num_fonts);
  for (int n_font = 0; n_font < num_fonts; n_font++) {
B
Behdad Esfahbod 已提交
94
    const OpenTypeFontFace &font = ot.get_face (n_font);
95
    printf ("Font %d of %d:\n", n_font, num_fonts);
96

B
Behdad Esfahbod 已提交
97
    int num_tables = font.get_table_count ();
98 99
    printf ("  %d table(s) found in font\n", num_tables);
    for (int n_table = 0; n_table < num_tables; n_table++) {
B
Behdad Esfahbod 已提交
100
      const OpenTypeTable &table = font.get_table (n_table);
B
Behdad Esfahbod 已提交
101
      printf ("  Table %2d of %2d: %.4s (0x%08x+0x%08x)\n", n_table, num_tables,
B
Behdad Esfahbod 已提交
102 103 104
	      (const char *)table.tag,
	      (unsigned int) table.offset,
	      (unsigned int) table.length);
105

B
Behdad Esfahbod 已提交
106
      switch (table.tag) {
107

108 109 110 111
      case GSUBGPOS::GSUBTag:
      case GSUBGPOS::GPOSTag:
	{

112
	const GSUBGPOS &g = *CastP<GSUBGPOS> (font_data + table.offset);
113 114

	int num_scripts = g.get_script_count ();
115 116
	printf ("    %d script(s) found in table\n", num_scripts);
	for (int n_script = 0; n_script < num_scripts; n_script++) {
117 118 119
	  const Script &script = g.get_script (n_script);
	  printf ("    Script %2d of %2d: %.4s\n", n_script, num_scripts,
	          (const char *)g.get_script_tag(n_script));
120

121
	  if (!script.has_default_lang_sys())
122
	    printf ("      No default language system\n");
123
	  int num_langsys = script.get_lang_sys_count ();
124
	  printf ("      %d language system(s) found in script\n", num_langsys);
125 126 127 128 129 130 131 132
	  for (int n_langsys = script.has_default_lang_sys() ? -1 : 0; n_langsys < num_langsys; n_langsys++) {
	    const LangSys &langsys = n_langsys == -1
				   ? script.get_default_lang_sys ()
				   : script.get_lang_sys (n_langsys);
	    printf (n_langsys == -1
		   ? "      Default Language System\n"
		   : "      Language System %2d of %2d: %.4s\n", n_langsys, num_langsys,
	            (const char *)script.get_lang_sys_tag (n_langsys));
B
Behdad Esfahbod 已提交
133
	    if (langsys.get_required_feature_index () == Index::NOT_FOUND_INDEX)
134
	      printf ("        No required feature\n");
135 136 137 138 139 140 141

	    int num_features = langsys.get_feature_count ();
	    printf ("        %d feature(s) found in language system\n", num_features);
	    for (int n_feature = 0; n_feature < num_features; n_feature++) {
	      printf ("        Feature index %2d of %2d: %d\n", n_feature, num_features,
	              langsys.get_feature_index (n_feature));
	    }
142 143
	  }
	}
144 145

	int num_features = g.get_feature_count ();
146 147
	printf ("    %d feature(s) found in table\n", num_features);
	for (int n_feature = 0; n_feature < num_features; n_feature++) {
148 149 150 151 152 153
	  const Feature &feature = g.get_feature (n_feature);
	  printf ("    Feature %2d of %2d: %.4s; %d lookup(s)\n", n_feature, num_features,
	          (const char *)g.get_feature_tag(n_feature),
		  feature.get_lookup_count());

	  int num_lookups = feature.get_lookup_count ();
B
Behdad Esfahbod 已提交
154
	  printf ("        %d lookup(s) found in feature\n", num_lookups);
155
	  for (int n_lookup = 0; n_lookup < num_lookups; n_lookup++) {
B
Behdad Esfahbod 已提交
156
	    printf ("        Lookup index %2d of %2d: %d\n", n_lookup, num_lookups,
157 158
	            feature.get_lookup_index (n_lookup));
	  }
159
	}
160 161

	int num_lookups = g.get_lookup_count ();
162 163
	printf ("    %d lookup(s) found in table\n", num_lookups);
	for (int n_lookup = 0; n_lookup < num_lookups; n_lookup++) {
164
	  const Lookup &lookup = g.get_lookup (n_lookup);
165 166
	  printf ("    Lookup %2d of %2d: type %d, props 0x%04X\n", n_lookup, num_lookups,
	          lookup.get_type(), lookup.get_props());
167
	}
168 169 170 171 172 173 174

	}
	break;

      case GDEF::Tag:
	{

175
	const GDEF &gdef = *CastP<GDEF> (font_data + table.offset);
176 177 178 179 180

	printf ("    Has %sglyph classes\n",
		  gdef.has_glyph_classes () ? "" : "no ");
	printf ("    Has %smark attachment types\n",
		  gdef.has_mark_attachment_types () ? "" : "no ");
B
Behdad Esfahbod 已提交
181 182 183 184
	printf ("    Has %sattach points\n",
		  gdef.has_attach_points () ? "" : "no ");
	printf ("    Has %slig carets\n",
		  gdef.has_lig_carets () ? "" : "no ");
B
Behdad Esfahbod 已提交
185 186
	printf ("    Has %smark sets\n",
		  gdef.has_mark_sets () ? "" : "no ");
187
	break;
B
Behdad Esfahbod 已提交
188
	}
189 190 191 192 193 194
      }
    }
  }

  return 0;
}
B
Behdad Esfahbod 已提交
195 196 197


HB_END_DECLS