batch.hh 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * Copyright © 2021 Behdad Esfahbod
  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. #ifndef BATCH_HH
  25. #define BATCH_HH
  26. #include "options.hh"
  27. typedef int (*main_func_t) (int argc, char **argv);
  28. template <typename main_t, bool report_status=false>
  29. int
  30. batch_main (int argc, char **argv)
  31. {
  32. if (argc == 2 && !strcmp (argv[1], "--batch"))
  33. {
  34. int ret = 0;
  35. char buf[4092];
  36. while (fgets (buf, sizeof (buf), stdin))
  37. {
  38. size_t l = strlen (buf);
  39. if (l && buf[l - 1] == '\n') buf[l - 1] = '\0';
  40. char *args[64];
  41. argc = 0;
  42. args[argc++] = argv[0];
  43. char *p = buf, *e;
  44. args[argc++] = p;
  45. while ((e = strchr (p, ';')) && argc < (int) ARRAY_LENGTH (args))
  46. {
  47. *e++ = '\0';
  48. while (*e == ';')
  49. e++;
  50. args[argc++] = p = e;
  51. }
  52. int result = main_t () (argc, args);
  53. if (report_status)
  54. fprintf (stdout, result == 0 ? "success\n" : "failure\n");
  55. fflush (stdout);
  56. ret = MAX (ret, result);
  57. }
  58. return ret;
  59. }
  60. int ret = main_t () (argc, argv);
  61. if (report_status && ret != 0)
  62. fprintf (stdout, "error: Operation failed. Probably a bug. File github issue.\n");
  63. return ret;
  64. }
  65. #endif