-
Notifications
You must be signed in to change notification settings - Fork 216
/
build-dsl
executable file
·60 lines (51 loc) · 1.69 KB
/
build-dsl
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
#!/bin/bash
# ================================================================
# Reads the Miller DSL grammar file and generates Go code.
#
# This is not run on every build / commit / etc.
#
# It's intended to be run manually by the developer, as needed when mlr.bnf
# changes for example.
#
# Resulting auto-generated .go files should then be checked into source control.
#
# With verbose, *.txt files are created with information about LR1 conflicts
# etc. Please don't commit them.
#
# As of mid-2021 this takes easily 5-10 minutes to run.
# ================================================================
set -euo pipefail
verbose="true"
if [ $# -eq 1 ]; then
if [ "$1" == "-v" ]; then
verbose="true"
elif [ "$1" == "-q" ]; then
verbose="true"
fi
fi
# Build the bin/gocc executable:
go install github.com/goccmack/gocc
go mod tidy
bingocc="$HOME/go/bin/gocc"
if [ ! -x "$bingocc" ]; then
exit 1
fi
rm -f pkg/parsing/*.txt
if [ "$verbose" = "true" ]; then
lr1="pkg/parsing/LR1_conflicts.txt"
$bingocc -v -o ./pkg/parsing -p mlr/pkg/parsing pkg/parsing/mlr.bnf || expand -2 $lr1
else
$bingocc -o ./pkg/parsing -p mlr/pkg/parsing pkg/parsing/mlr.bnf
fi
# Code-gen directories:
# pkg/parsing/errors/
# pkg/parsing/lexer/
# pkg/parsing/parser/
# pkg/parsing/token/
# pkg/parsing/util/
# Override GOCC codegen with customized error handling
cp pkg/parsing/errors.go.template pkg/parsing/errors/errors.go
# We might need a manual replace of os.ReadFile by ioutil.ReadFile in autogen code. Note we don't
# use latest-and-greatest Go compiler version in our go.mod since we want to build on Centos which
# can be trailing-edge in that regard.
for x in pkg/parsing/*/*.go; do gofmt -w $x; done