blob: 4a484c6d66291d551ac524d0bad87aaa8bfce364 [file] [log] [blame]
Behdad Esfahbodc442fd92018-10-23 22:45:45 -07001/*
2 * Copyright © 2018 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
Bruce Mitchener09096aa2018-12-01 10:22:49 +070027#include "hb.hh"
Behdad Esfahbodc442fd92018-10-23 22:45:45 -070028#include "hb-ot.h"
29
30#include <stdlib.h>
31#include <stdio.h>
32
Ebrahim Byagowibb4cdf82019-06-25 01:42:42 +043033#ifdef HB_NO_OPEN
34#define hb_blob_create_from_file(x) hb_blob_get_empty ()
35#endif
36
Behdad Esfahbodc442fd92018-10-23 22:45:45 -070037int
38main (int argc, char **argv)
39{
40 if (argc != 2) {
41 fprintf (stderr, "usage: %s font-file\n", argv[0]);
42 exit (1);
43 }
44
45 hb_blob_t *blob = hb_blob_create_from_file (argv[1]);
46 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
47 hb_blob_destroy (blob);
Bruce Mitchener09096aa2018-12-01 10:22:49 +070048 blob = nullptr;
Behdad Esfahbodc442fd92018-10-23 22:45:45 -070049
Behdad Esfahbod350f98e2019-06-18 13:11:41 -070050 unsigned int count = 0;
51
52#ifndef HB_NO_NAME
Behdad Esfahbod3b7e5f12018-10-27 02:39:20 -070053 const hb_ot_name_entry_t *entries = hb_ot_name_list_names (face, &count);
Behdad Esfahbodc442fd92018-10-23 22:45:45 -070054
55 for (unsigned int i = 0; i < count; i++)
56 {
Behdad Esfahbod831ba742018-11-20 01:16:08 -050057 printf ("%u %s ",
Behdad Esfahbodc442fd92018-10-23 22:45:45 -070058 entries[i].name_id,
59 hb_language_to_string (entries[i].language));
60
61 char buf[64];
62 unsigned int buf_size = sizeof (buf);
63 hb_ot_name_get_utf8 (face,
64 entries[i].name_id,
65 entries[i].language,
66 &buf_size,
67 buf);
68
69 printf ("%s\n", buf);
70 }
Behdad Esfahbod350f98e2019-06-18 13:11:41 -070071#endif
Behdad Esfahbodc442fd92018-10-23 22:45:45 -070072
Ebrahim Byagowi0c9cd5d2018-12-19 21:18:30 +033073 hb_face_destroy (face);
74
Behdad Esfahbodc442fd92018-10-23 22:45:45 -070075 return count ? 0 : 1;
76}