-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompile
executable file
·117 lines (102 loc) · 2.7 KB
/
compile
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
#!/bin/bash
CPTOOL_DIR=`dirname $0`
source "$CPTOOL_DIR/util"
print_usage() {
echo "Compile"
echo " compile competitive programming solution."
echo ""
echo "Usage: cptool compile [OPTION]... [LANGUAGE] SOLUTION"
echo ""
echo "Available commands:"
echo " -h --help Show this help screen."
echo " --version Show version."
echo " -d --debug Compile using debug mode"
echo ""
}
compile_solution() {
local debug="$DEBUG"
local language="$1"
local solution="$2"
local lang_folder
lang_folder=$(get_language "$language")
if [ $? -eq 0 ]; then
. "$lang_folder/lang.conf"
if [ -z "$verbose_name" ]; then
local verbose_name="$name";
fi
if [ -z "$extension" ]; then
local extension="$language"
fi
local current_source_code="$solution.$extension"
if [ ! -f "$current_source_code" ]; then
show_error "file "$current_source_code" doesn't exists when compiling solution"
exit 1
fi
local compile_script="$lang_folder/compile"
if [ $debug = true ]; then
if [ ! -f "$lang_folder/debugcompile" ]; then
show_warning "language doesn't have debug compile script, use default compile instead"
local debug=false
else
local compile_script="$lang_folder/debugcompile"
fi
fi
local DEST=`get_solution_target_path "$debug" "$language" "$solution"`
if [ $debug = true ]; then
local DEST="${DEST}_test"
fi
local SOURCE="$current_source_code"
mkdir -p `dirname $DEST`
if [ "$DEST" -nt "$SOURCE" ]; then
show_info "skip compiling solution because no change in solution"
exit 0
fi
eval "DEST=\"$DEST\" SOURCE=\"$SOURCE\" $compile_script"
if [ $? -eq 0 ]; then
show_success "$solution compiled successfully"
exit 0
else
show_error "compilation script failed when compiling solution"
exit 1
fi
else
show_error "language definition doesn't exists when compiling solution"
exit 1
fi
}
DEFAULT_LANGUAGE="cpp"
DEBUG=false
LANGUAGE=""
SOLUTION=""
parsing_options=true
for arg in "$@"
do
if [ $parsing_options = true ]; then
if [ $arg = "-h" ] || [ $arg = "--help" ]; then
print_usage
exit $?
elif [ $arg = "--version" ]; then
print_version
exit $?
elif [ $arg = "-d" ] || [ $arg = "--debug" ]; then
DEBUG=true
else
parsing_options=false
LANGUAGE=$arg
fi
elif [ -z "$SOLUTION" ]; then
SOLUTION=$arg
else
print_usage
exit 1
fi
done
if [ -z "$LANGUAGE" ]; then
show_error "please specify solution name."
print_usage
exit 1
elif [ -z "$SOLUTION" ]; then
SOLUTION="$LANGUAGE"
LANGUAGE="$DEFAULT_LANGUAGE"
fi
compile_solution "$LANGUAGE" "$SOLUTION"