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 35
#include <hb-ot.h>

B
Behdad Esfahbod 已提交
36 37
static const char *text = "طرح‌نَما";
static const char *path =
38 39 40 41 42 43 44 45
#if defined(__linux__)
		"/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf";
#elif defined(_WIN32) || defined(_WIN64)
		"C:\\Windows\\Fonts\\tahoma.ttf";
#elif __APPLE__
		"/Library/Fonts/Tahoma.ttf";
#endif

B
Behdad Esfahbod 已提交
46 47
static int num_threads = 30;
static int num_iters = 200;
48

B
Behdad Esfahbod 已提交
49 50
static hb_font_t *font;
static hb_buffer_t *ref_buffer;
51 52 53 54

pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;

static void
55
fill_the_buffer (hb_buffer_t *buffer)
56 57 58 59 60 61
{
  hb_buffer_add_utf8 (buffer, text, sizeof (text), 0, sizeof (text));
  hb_buffer_guess_segment_properties (buffer);
  hb_shape (font, buffer, NULL, 0);
}

62 63 64 65 66 67 68 69 70 71
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,
72
				HB_BUFFER_SERIALIZE_FLAG_NO_GLYPH_NAMES);
73
    fprintf (stderr, "Actual:   %s\n", out);
74 75 76 77

    hb_buffer_serialize_glyphs (ref_buffer, 0, hb_buffer_get_length (ref_buffer),
				out, sizeof (out), NULL,
				font, HB_BUFFER_SERIALIZE_FORMAT_TEXT,
78
				HB_BUFFER_SERIALIZE_FLAG_NO_GLYPH_NAMES);
79 80 81 82 83 84
    fprintf (stderr, "Expected: %s\n", out);

    exit (1);
  }
}

85 86 87 88 89 90 91 92 93 94 95 96 97
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);
98
    validity_check (buffer);
99 100 101 102 103
  }

  return 0;
}

104
void
B
Behdad Esfahbod 已提交
105
test_body (void)
106 107
{
  int i;
108
  int num_threads = 30;
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
  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);
127
    hb_buffer_destroy (buffers[i]);
128 129 130 131
  }

  free (buffers);
  free (threads);
132 133 134 135 136
}

int
main (int argc, char **argv)
{
137 138 139 140 141
  if (argc > 1)
    num_threads = atoi (argv[1]);
  if (argc > 2)
    num_iters = atoi (argv[2]);

142
  // Dummy call to alleviate _guess_segment_properties thread safety-ness
B
Minor  
Behdad Esfahbod 已提交
143
  // https://github.com/harfbuzz/harfbuzz/issues/1191
144 145
  hb_language_get_default ();

146 147 148 149
  hb_blob_t *blob = hb_blob_create_from_file (path);
  hb_face_t *face = hb_face_create (blob, 0);
  font = hb_font_create (face);

150 151
  hb_ot_font_set_funcs (font);

152 153 154
  ref_buffer = hb_buffer_create ();
  fill_the_buffer (ref_buffer);

155
  test_body ();
156 157 158 159 160 161

  /* hb-font backed by FreeType functions can only be used from
   * one thread at a time, because that's FT_Face's MT guarantee.
   * So, disable this, even though it works "most of the time". */
  //hb_ft_font_set_funcs (font);
  //test_body ();
162

163 164
  hb_buffer_destroy (ref_buffer);

165 166 167 168 169 170
  hb_font_destroy (font);
  hb_face_destroy (face);
  hb_blob_destroy (blob);

  return 0;
}