-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Add tokenizer_data_gen to build process #6723
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
$(top_srcdir)/Zend/zend_language_parser.c: | ||
$(top_srcdir)/Zend/zend_language_scanner.c: | ||
$(top_srcdir)/ext/tokenizer/tokenizer_data.c: $(top_srcdir)/Zend/zend_language_parser.h | ||
$(top_srcdir)/ext/tokenizer/tokenizer_data.c: $(top_srcdir)/Zend/zend_language_parser.y $(top_srcdir)/Zend/zend_language_parser.h | ||
if test ! -z "$(PHP_EXECUTABLE)" && test -x "$(PHP_EXECUTABLE)"; then \ | ||
$(PHP_EXECUTABLE) $(srcdir)/tokenizer_data_gen.php; \ | ||
fi; | ||
$(builddir)/tokenizer.lo: $(top_srcdir)/Zend/zend_language_parser.c $(top_srcdir)/Zend/zend_language_scanner.c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
<?php | ||
|
||
$infile = 'Zend/zend_language_parser.h'; | ||
$outfile = 'ext/tokenizer/tokenizer_data.c'; | ||
|
||
if (!file_exists($infile)) { | ||
fwrite(STDERR, <<<ERROR | ||
$infile is missing. | ||
|
||
Please, generate the PHP parser files by scripts/dev/genfiles | ||
or by running the ./configure build step. | ||
ERROR); | ||
exit(1); | ||
} | ||
|
||
$result = ''; | ||
|
||
$result .= <<<CODE | ||
/* | ||
+----------------------------------------------------------------------+ | ||
| Copyright (c) The PHP Group | | ||
+----------------------------------------------------------------------+ | ||
| This source file is subject to version 3.01 of the PHP license, | | ||
| that is bundled with this package in the file LICENSE, and is | | ||
| available through the world-wide-web at the following url: | | ||
| http://www.php.net/license/3_01.txt | | ||
| If you did not receive a copy of the PHP license and are unable to | | ||
| obtain it through the world-wide-web, please send a note to | | ||
| license@php.net so we can mail you a copy immediately. | | ||
+----------------------------------------------------------------------+ | ||
| Author: Johannes Schlueter <johannes@php.net> | | ||
cmb69 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
+----------------------------------------------------------------------+ | ||
*/ | ||
|
||
/* | ||
DO NOT EDIT THIS FILE! | ||
This file is generated using tokenizer_data_gen.php | ||
*/ | ||
|
||
#include "php.h" | ||
#include "zend.h" | ||
#include <zend_language_parser.h> | ||
|
||
|
||
void tokenizer_register_constants(INIT_FUNC_ARGS) { | ||
|
||
CODE; | ||
|
||
$incontent = file_get_contents($infile); | ||
preg_match_all('(^ (?<token_name>T_.*?)\b)m', $incontent, $matches); | ||
|
||
foreach ($matches['token_name'] as $tokenName) { | ||
if ($tokenName === 'T_NOELSE' || $tokenName === 'T_ERROR') { | ||
continue; | ||
} | ||
$result .= "\tREGISTER_LONG_CONSTANT(\"$tokenName\", $tokenName, CONST_CS | CONST_PERSISTENT);\n&qu 8000 ot;; | ||
} | ||
$result .= "\tREGISTER_LONG_CONSTANT(\"T_DOUBLE_COLON\", T_PAAMAYIM_NEKUDOTAYIM, CONST_CS | CONST_PERSISTENT);\n"; | ||
|
||
$result .= <<<CODE | ||
} | ||
|
||
char *get_token_type_name(int token_type) | ||
{ | ||
\tswitch (token_type) { | ||
|
||
|
||
CODE; | ||
|
||
foreach ($matches['token_name'] as $tokenName) { | ||
if ($tokenName === 'T_NOELSE' || $tokenName === 'T_ERROR') { | ||
continue; | ||
} | ||
if ($tokenName === 'T_PAAMAYIM_NEKUDOTAYIM') { | ||
$result .= "\t\tcase T_PAAMAYIM_NEKUDOTAYIM: return \"T_DOUBLE_COLON\";\n"; | ||
} else { | ||
$result .= "\t\tcase $tokenName: return \"$tokenName\";\n"; | ||
} | ||
} | ||
|
||
$result .= <<<CODE | ||
|
||
\t} | ||
\treturn NULL; | ||
} | ||
|
||
|
||
CODE; | ||
|
||
file_put_contents($outfile, $result); | ||
|
||
echo "Wrote $outfile\n"; |
This file was deleted.
Oops, something went wrong.
Add t
3131
his suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove indentation here to keep this compatible with PHP < 7.3. We should probably bump our PHP version requirement, but this heredoc block probably isn't the right reason to do it :)