tokenizer_data_gen.sh 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 7 |
  13. +----------------------------------------------------------------------+
  14. | Copyright (c) 1997-2018 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. /*
  28. DO NOT EDIT THIS FILE!
  29. This file is generated using tokenizer_data_gen.sh
  30. */
  31. #include "php.h"
  32. #include "zend.h"
  33. #include <zend_language_parser.h>
  34. ' > $OUTFILE
  35. echo 'void tokenizer_register_constants(INIT_FUNC_ARGS) {' >> $OUTFILE
  36. $AWK '
  37. /^#define T_(NOELSE|ERROR)/ { next }
  38. /^#define T_/ { print " REGISTER_LONG_CONSTANT(\"" $2 "\", " $2 ", CONST_CS | CONST_PERSISTENT);" }
  39. ' < $INFILE >> $OUTFILE
  40. echo ' REGISTER_LONG_CONSTANT("T_DOUBLE_COLON", T_PAAMAYIM_NEKUDOTAYIM, CONST_CS | CONST_PERSISTENT);' >> $OUTFILE
  41. echo '}' >> $OUTFILE
  42. echo '
  43. char *get_token_type_name(int token_type)
  44. {
  45. switch (token_type) {
  46. ' >> $OUTFILE
  47. $AWK '
  48. /^#define T_PAAMAYIM_NEKUDOTAYIM/ {
  49. print " case T_PAAMAYIM_NEKUDOTAYIM: return \"T_DOUBLE_COLON\";"
  50. next
  51. }
  52. /^#define T_(NOELSE|ERROR)/ { next }
  53. /^#define T_/ {
  54. print " case " $2 ": return \"" $2 "\";"
  55. }
  56. ' < $INFILE >> $OUTFILE
  57. echo '
  58. }
  59. return "UNKNOWN";
  60. }
  61. ' >> $OUTFILE
  62. echo "Wrote $OUTFILE"