-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy pathGenerateParserScript.java
143 lines (128 loc) · 5.86 KB
/
GenerateParserScript.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*******************************************************************************
* Copyright (c) 2020 Bart Jacobs and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*/
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
import java.nio.file.Files;
import java.nio.file.StandardCopyOption;
import org.eclipse.jdt.internal.compiler.parser.Parser;
public class GenerateParserScript {
private static void assertTrue(boolean b) { if (!b) throw new AssertionError(); }
public static void main(String[] args) throws IOException, InterruptedException {
File grammarDir = new File("../grammar");
File parserDir = new File("../src/org/eclipse/jdt/internal/compiler/parser");
String jikespg = System.getProperty("JIKESPG");
assertTrue(jikespg != null);
if (!jikespg.equals("JIKESPG_EXTERNAL")) {
// Run JikesPG
Process process = Runtime.getRuntime().exec(new String[] {jikespg, "java.g"}, null, grammarDir);
boolean ok = false;
try (BufferedReader jikespgOutput = new BufferedReader(new InputStreamReader(process.getInputStream()))) {
for (;;) {
String line = jikespgOutput.readLine();
if (line == null)
break;
System.out.println(line);
if (line.equals("This grammar is LALR(1)."))
ok = true;
}
}
int exitCode = process.waitFor();
assertTrue(exitCode == 0);
if (!ok)
System.exit(1);
}
// Update parserNN.rsc and readableNames.props
File javadclFile = new File(grammarDir, "javadcl.java");
File javahdrFile = new File(grammarDir, "javahdr.java");
Parser.buildFilesFromLPG(javadclFile.toString(), javahdrFile.toString());
for (int i = 1; i <= 24; i++) {
String filename = "parser"+i+".rsc";
Files.move(new File(filename).toPath(), new File(parserDir, filename).toPath(), StandardCopyOption.REPLACE_EXISTING);
}
{
String filename = "readableNames.props";
Files.move(new File(filename).toPath(), new File(parserDir, filename).toPath(), StandardCopyOption.REPLACE_EXISTING);
}
// Update TerminalTokens.java
File javasymFile = new File(grammarDir, "javasym.java");
File terminalTokensFile = new File(parserDir, "TerminalTokens.java");
String javasymText = new String(Files.readAllBytes(javasymFile.toPath())).replace("\r\n", "\n");
String terminalTokensText = new String(Files.readAllBytes(terminalTokensFile.toPath())).replace("\r\n", "\n");
{
String startTag = "// BEGIN_AUTOGENERATED_REGION\n";
int start = terminalTokensText.indexOf(startTag);
assertTrue(start >= 0);
start += startTag.length();
String terminalTokensProlog = terminalTokensText.substring(0, start);
String javasymProlog =
"interface javasym\n" +
"{\n" +
" public final static int\n" +
" ";
assertTrue(javasymText.startsWith(javasymProlog));
javasymText = javasymText.substring(javasymProlog.length());
javasymText = javasymText.replace(",\n ", ",\n\t\t\t\t\t\t\t");
javasymText = javasymText.replace("TokenName$eof", "TokenNameEOF");
javasymText = javasymText.replace("TokenName$error", "TokenNameERROR");
javasymText = javasymText.replace("TokenNamenon-sealed", "TokenNamenon_sealed");
Files.write(terminalTokensFile.toPath(), (terminalTokensProlog + "\tint " + javasymText).getBytes());
}
// Update ParserBasicInformation.java
File javadefFile = new File(grammarDir, "javadef.java");
File parserBasicInformationFile = new File(parserDir, "ParserBasicInformation.java");
String javadefText = new String(Files.readAllBytes(javadefFile.toPath())).replace("\r\n", "\n");
String parserBasicInformationText = new String(Files.readAllBytes(parserBasicInformationFile.toPath())).replace("\r\n", "\n");
{
String startTag = "// BEGIN_AUTOGENERATED_REGION";
int start = parserBasicInformationText.indexOf(startTag);
assertTrue(start >= 0);
start += startTag.length();
String parserBasicInformationProlog = parserBasicInformationText.substring(0, start);
String javadefProlog =
"interface javadef\n" +
"{\n" +
" public final static int";
assertTrue(javadefText.startsWith(javadefProlog));
javadefText = javadefText.substring(javadefProlog.length());
javadefText = javadefText.replace("\n ", "\n\t\t\t\t\t");
javadefText = javadefText.replaceAll(" +", " ");
javadefText = javadefText.replace("};\n\n", "}\n");
Files.write(parserBasicInformationFile.toPath(), (parserBasicInformationProlog + javadefText).getBytes());
}
// Update method consumeRule in Parser.java
File parserFile = new File(parserDir, "Parser.java");
String parserText = new String(Files.readAllBytes(parserFile.toPath())).replace("\r\n", "\n");
File javaActionFile = new File(grammarDir, "JavaAction.java");
String javaActionText = new String(Files.readAllBytes(javaActionFile.toPath()))
.replace("\r\n", "\n").replace(" \n", "\n").replace(" \n", "\n");
{
String startTag = "// BEGIN_AUTOGENERATED_REGION_CONSUME_RULE\n";
String endTag = "// END_AUTOGENERATED_REGION_CONSUME_RULE\n";
int start = parserText.indexOf(startTag);
assertTrue(start >= 0);
start += startTag.length();
int end = parserText.indexOf(endTag, start);
assertTrue(end >= 0);
String newParserText = parserText.substring(0, start) + javaActionText + parserText.substring(end);
Files.write(parserFile.toPath(), newParserText.getBytes());
}
// Clean up JikesPG output files
Files.delete(javadclFile.toPath());
Files.delete(javahdrFile.toPath());
Files.delete(javaActionFile.toPath());
Files.delete(javasymFile.toPath());
Files.delete(javadefFile.toPath());
Files.delete(new File(grammarDir, "javaprs.java").toPath());
Files.delete(new File(grammarDir, "java.l").toPath());
}
}