tokenizer_data_gen.sh 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #!/bin/sh
  2. INFILE="../../Zend/zend_language_parser.h"
  3. OUTFILE="tokenizer_data.c"
  4. AWK=awk
  5. ####################################################################
  6. if test ! -f "./tokenizer.c"; then
  7. echo "Please run this script from within php-src/ext/tokenizer"
  8. exit 0
  9. fi
  10. echo '/*
  11. +----------------------------------------------------------------------+
  12. | PHP Version 5 |
  13. +----------------------------------------------------------------------+
  14. | Copyright (c) 1997-2016 The PHP Group |
  15. +----------------------------------------------------------------------+
  16. | This source file is subject to version 3.01 of the PHP license, |
  17. | that is bundled with this package in the file LICENSE, and is |
  18. | available through the world-wide-web at the following url: |
  19. | http://www.php.net/license/3_01.txt |
  20. | If you did not receive a copy of the PHP license and are unable to |
  21. | obtain it through the world-wide-web, please send a note to |
  22. | license@php.net so we can mail you a copy immediately. |
  23. +----------------------------------------------------------------------+
  24. | Author: Johannes Schlueter <johannes@php.net> |
  25. +----------------------------------------------------------------------+
  26. */
  27. /* $Id$ */
  28. /*
  29. DO NOT EDIT THIS FILE!
  30. This file is generated using tokenizer_data_gen.sh
  31. */
  32. #include "php.h"
  33. #include "zend.h"
  34. #include <zend_language_parser.h>
  35. ' > $OUTFILE
  36. echo 'void tokenizer_register_constants(INIT_FUNC_ARGS) {' >> $OUTFILE
  37. $AWK '/^#define T_/ { print " REGISTER_LONG_CONSTANT(\"" $2 "\", " $2 ", CONST_CS | CONST_PERSISTENT);" }' < $INFILE >> $OUTFILE
  38. echo ' REGISTER_LONG_CONSTANT("T_DOUBLE_COLON", T_PAAMAYIM_NEKUDOTAYIM, CONST_CS | CONST_PERSISTENT);' >> $OUTFILE
  39. echo '}' >> $OUTFILE
  40. echo '
  41. char *get_token_type_name(int token_type)
  42. {
  43. switch (token_type) {
  44. ' >> $OUTFILE
  45. $AWK '
  46. /^#define T_PAAMAYIM_NEKUDOTAYIM/ {
  47. print " case T_PAAMAYIM_NEKUDOTAYIM: return \"T_DOUBLE_COLON\";"
  48. next
  49. }
  50. /^#define T_/ {
  51. print " case " $2 ": return \"" $2 "\";"
  52. }
  53. ' < $INFILE >> $OUTFILE
  54. echo '
  55. }
  56. return "UNKNOWN";
  57. }
  58. ' >> $OUTFILE
  59. echo "Wrote $OUTFILE"