test-multithread.c 3.8 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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
#include <hb-ot.h>

const char *text = "طرح‌نَما";
const char *path =
#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

int num_iters = 200;

hb_font_t *font;

pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;

static void
fill_the_buffer(hb_buffer_t *buffer)
{
  hb_buffer_add_utf8 (buffer, text, sizeof (text), 0, sizeof (text));
  hb_buffer_guess_segment_properties (buffer);
  hb_shape (font, buffer, NULL, 0);
}

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);
  }

  return 0;
}

78 79
void
test_body ()
80 81
{
  int i;
82
  int num_threads = 30;
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
  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);

98 99 100
  hb_buffer_t *ref_buffer = hb_buffer_create ();
  fill_the_buffer (ref_buffer);

101 102 103
  for (i = 0; i < num_threads; i++)
  {
    pthread_join (threads[i], NULL);
104 105 106
    hb_buffer_t *buffer = buffers[i];
    hb_buffer_diff_flags_t diff = hb_buffer_diff (ref_buffer, buffer, (hb_codepoint_t) -1, 0);
    if (diff)
107
    {
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
      fprintf (stderr, "One of the buffers (%d) was different from the reference.\n", i);
      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,
				  HB_BUFFER_SERIALIZE_FLAG_DEFAULT);
      fprintf (stderr, "Actual: %s\n", out);

      hb_buffer_serialize_glyphs (ref_buffer, 0, hb_buffer_get_length (ref_buffer),
				  out, sizeof (out), NULL,
				  font, HB_BUFFER_SERIALIZE_FORMAT_TEXT,
				  HB_BUFFER_SERIALIZE_FLAG_DEFAULT);
      fprintf (stderr, "Expected: %s\n", out);

123
      exit (1);
124
    }
125
    hb_buffer_destroy (buffer);
126 127
  }

128 129
  hb_buffer_destroy (ref_buffer);

130 131
  free (buffers);
  free (threads);
132 133 134 135 136 137 138 139 140 141 142 143 144
}

int
main (int argc, char **argv)
{
  hb_blob_t *blob = hb_blob_create_from_file (path);
  hb_face_t *face = hb_face_create (blob, 0);
  font = hb_font_create (face);

  hb_ft_font_set_funcs (font);
  test_body ();
  hb_ot_font_set_funcs (font);
  test_body ();
145 146 147 148 149 150 151

  hb_font_destroy (font);
  hb_face_destroy (face);
  hb_blob_destroy (blob);

  return 0;
}