shape-consumer.hh 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * Copyright © 2011,2012 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. #ifndef HB_SHAPE_CONSUMER_HH
  27. #define HB_SHAPE_CONSUMER_HH
  28. #include "font-options.hh"
  29. #include "shape-options.hh"
  30. #include "text-options.hh"
  31. template <typename output_t>
  32. struct shape_consumer_t : shape_options_t
  33. {
  34. void add_options (option_parser_t *parser)
  35. {
  36. shape_options_t::add_options (parser);
  37. output.add_options (parser);
  38. }
  39. template <typename app_t>
  40. void init (const app_t *app)
  41. {
  42. failed = false;
  43. buffer = hb_buffer_create ();
  44. output.init (buffer, app);
  45. }
  46. template <typename app_t>
  47. bool consume_line (app_t &app)
  48. {
  49. unsigned int text_len;
  50. const char *text;
  51. if (!(text = app.get_line (&text_len)))
  52. return false;
  53. output.new_line ();
  54. for (unsigned int n = num_iterations; n; n--)
  55. {
  56. populate_buffer (buffer, text, text_len, app.text_before, app.text_after, app.font);
  57. if (n == 1)
  58. output.consume_text (buffer, text, text_len, utf8_clusters);
  59. const char *error = nullptr;
  60. if (!shape (app.font, buffer, &error))
  61. {
  62. failed = true;
  63. output.error (error);
  64. if (hb_buffer_get_content_type (buffer) == HB_BUFFER_CONTENT_TYPE_GLYPHS)
  65. break;
  66. else
  67. return true;
  68. }
  69. }
  70. if (glyphs)
  71. output.consume_glyphs (buffer, nullptr, 0, false);
  72. else
  73. output.consume_glyphs (buffer, text, text_len, utf8_clusters);
  74. return true;
  75. }
  76. template <typename app_t>
  77. void finish (const app_t *app)
  78. {
  79. output.finish (buffer, app);
  80. hb_buffer_destroy (buffer);
  81. buffer = nullptr;
  82. }
  83. public:
  84. bool failed = false;
  85. protected:
  86. output_t output;
  87. hb_buffer_t *buffer = nullptr;
  88. };
  89. #endif