test-multithread.c 4.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/*
 * Copyright © 2018  Ebrahim Byagowi
 *
 *  This is part of HarfBuzz, a text shaping library.
 *
 * 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.
 *
 */

#include <stdlib.h>
#include <string.h>
#include <stdio.h>

#include <pthread.h>

#include <hb.h>
33
#include <hb-ft.h>
34
#include <hb-ot.h>
35
#include <glib.h>
36

B
Behdad Esfahbod 已提交
37 38
static const char *font_path = "fonts/Inconsolata-Regular.abc.ttf";
static const char *text = "abc";
39

B
Behdad Esfahbod 已提交
40 41
static int num_threads = 30;
static int num_iters = 200;
42

B
Behdad Esfahbod 已提交
43 44
static hb_font_t *font;
static hb_buffer_t *ref_buffer;
45

46
static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
47 48

static void
49
fill_the_buffer (hb_buffer_t *buffer)
50
{
51
  hb_buffer_add_utf8 (buffer, text, -1, 0, -1);
52 53 54 55
  hb_buffer_guess_segment_properties (buffer);
  hb_shape (font, buffer, NULL, 0);
}

56 57 58 59 60 61 62 63 64 65
static void
validity_check (hb_buffer_t *buffer) {
  if (hb_buffer_diff (ref_buffer, buffer, (hb_codepoint_t) -1, 0))
  {
    fprintf (stderr, "One of the buffers was different from the reference.\n");
    char out[255];

    hb_buffer_serialize_glyphs (buffer, 0, hb_buffer_get_length (ref_buffer),
				out, sizeof (out), NULL,
				font, HB_BUFFER_SERIALIZE_FORMAT_TEXT,
66
				HB_BUFFER_SERIALIZE_FLAG_NO_GLYPH_NAMES);
67
    fprintf (stderr, "Actual:   %s\n", out);
68 69 70 71

    hb_buffer_serialize_glyphs (ref_buffer, 0, hb_buffer_get_length (ref_buffer),
				out, sizeof (out), NULL,
				font, HB_BUFFER_SERIALIZE_FORMAT_TEXT,
72
				HB_BUFFER_SERIALIZE_FLAG_NO_GLYPH_NAMES);
73 74 75 76 77 78
    fprintf (stderr, "Expected: %s\n", out);

    exit (1);
  }
}

79 80 81 82 83 84 85 86 87 88 89 90 91
static void *
thread_func (void *data)
{
  hb_buffer_t *buffer = (hb_buffer_t *) data;

  pthread_mutex_lock (&mutex);
  pthread_mutex_unlock (&mutex);

  int i;
  for (i = 0; i < num_iters; i++)
  {
    hb_buffer_clear_contents (buffer);
    fill_the_buffer (buffer);
92
    validity_check (buffer);
93 94 95 96 97
  }

  return 0;
}

98
static void
B
Behdad Esfahbod 已提交
99
test_body (void)
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
{
  int i;
  pthread_t *threads = calloc (num_threads, sizeof (pthread_t));
  hb_buffer_t **buffers = calloc (num_threads, sizeof (hb_buffer_t *));

  pthread_mutex_lock (&mutex);

  for (i = 0; i < num_threads; i++)
  {
    hb_buffer_t *buffer = hb_buffer_create ();
    buffers[i] = buffer;
    pthread_create (&threads[i], NULL, thread_func, buffer);
  }

  /* Let them loose! */
  pthread_mutex_unlock (&mutex);

  for (i = 0; i < num_threads; i++)
  {
    pthread_join (threads[i], NULL);
120
    hb_buffer_destroy (buffers[i]);
121 122 123 124
  }

  free (buffers);
  free (threads);
125 126 127 128 129
}

int
main (int argc, char **argv)
{
130 131 132 133 134 135 136 137
  g_test_init (&argc, &argv, NULL);

#if GLIB_CHECK_VERSION(2,37,2)
  gchar *default_path = g_test_build_filename (G_TEST_DIST, font_path, NULL);
#else
  gchar *default_path = g_strdup (font_path);
#endif

B
Minor  
Behdad Esfahbod 已提交
138
  char *path = argc > 1 && *argv[1] ? argv[1] : (char *) default_path;
139
  if (argc > 2)
140 141 142 143 144
    num_threads = atoi (argv[2]);
  if (argc > 3)
    num_iters = atoi (argv[3]);
  if (argc > 4)
    text = argv[4];
145

B
Minor  
Behdad Esfahbod 已提交
146 147
  /* Dummy call to alleviate _guess_segment_properties thread safety-ness
   * https://github.com/harfbuzz/harfbuzz/issues/1191 */
148 149
  hb_language_get_default ();

150
  hb_blob_t *blob = hb_blob_create_from_file (path);
151 152 153 154 155 156
  if (hb_blob_get_length (blob) == 0)
  {
    printf ("The test font is not found.");
    return 1;
  }

157 158 159
  hb_face_t *face = hb_face_create (blob, 0);
  font = hb_font_create (face);

160 161
  hb_ot_font_set_funcs (font);

162 163 164
  ref_buffer = hb_buffer_create ();
  fill_the_buffer (ref_buffer);

165
  test_body ();
166

167 168
  hb_ft_font_set_funcs (font);
  test_body ();
169

170 171
  hb_buffer_destroy (ref_buffer);

172 173 174 175
  hb_font_destroy (font);
  hb_face_destroy (face);
  hb_blob_destroy (blob);

176 177
  g_free (default_path);

178 179
  return 0;
}