main-font-text.hh 2.6 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_MAIN_FONT_TEXT_HH
  27. #define HB_MAIN_FONT_TEXT_HH
  28. #include "options.hh"
  29. /* main() body for utilities taking font and processing text.*/
  30. template <typename consumer_t,
  31. typename font_options_type,
  32. typename text_options_type>
  33. struct main_font_text_t :
  34. option_parser_t,
  35. font_options_type,
  36. text_options_type,
  37. consumer_t
  38. {
  39. int operator () (int argc, char **argv)
  40. {
  41. add_options ();
  42. parse (&argc, &argv);
  43. this->init (this);
  44. while (this->consume_line (*this))
  45. ;
  46. this->finish (this);
  47. return this->failed ? 1 : 0;
  48. }
  49. protected:
  50. void add_options ()
  51. {
  52. font_options_type::add_options (this);
  53. text_options_type::add_options (this);
  54. consumer_t::add_options (this);
  55. GOptionEntry entries[] =
  56. {
  57. {G_OPTION_REMAINING, 0, G_OPTION_FLAG_IN_MAIN,
  58. G_OPTION_ARG_CALLBACK, (gpointer) &collect_rest, nullptr, "[FONT-FILE] [TEXT]"},
  59. {nullptr}
  60. };
  61. add_main_group (entries, this);
  62. option_parser_t::add_options ();
  63. }
  64. private:
  65. static gboolean
  66. collect_rest (const char *name G_GNUC_UNUSED,
  67. const char *arg,
  68. gpointer data,
  69. GError **error)
  70. {
  71. main_font_text_t *thiz = (main_font_text_t *) data;
  72. if (!thiz->font_file)
  73. {
  74. thiz->font_file = g_strdup (arg);
  75. return true;
  76. }
  77. if (!thiz->text && !thiz->text_file)
  78. {
  79. thiz->text = g_strdup (arg);
  80. return true;
  81. }
  82. g_set_error (error, G_OPTION_ERROR, G_OPTION_ERROR_FAILED,
  83. "Too many arguments on the command line");
  84. return false;
  85. }
  86. };
  87. #endif