forked from zed0/clang-format-configurator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·257 lines (222 loc) · 7.79 KB
/
setup.sh
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
#!/bin/bash
set -e
#Default options:
useSystemBinaries=n
# Use all online versions OR the list of mandatory versions
useAllOnlineVersions=y
mandatoryVersions="7.0.0 6.0.0 5.0.1 4.0.1 3.5.2"
buildHead=y
installSystemdService=n
echo "Options for this setup:"
if [[ $useAllOnlineVersions == [Yy] ]]; then
echo "* Version to add: All"
else
echo "* Version to add: $mandatoryVersions"
echo "Note: versions that not found localy will be downloaded"
fi
if [[ $useSystemBinaries == [Yy] ]]; then
echo "* Use system clang-format versions: YES"
else
echo "* Use system clang-format versions: NO"
fi
if [[ $buildHead == [Yy] ]]; then
echo "* Build HEAD version for server: YES"
else
echo "* Build HEAD version for server: NO"
fi
if [[ $installSystemdService == [Yy] ]]; then
echo "* Install systemd service for server: YES"
else
echo "* Install systemd service for server: NO"
fi
while true
do
read -rp "Do you want to proceed? (Yn)" yn
case $yn in
[Nn]* ) exit;;
[Yy]* ) break;;
'' ) break;;
esac
done
formatted_array=""
function tar_flags {
echo "x$(echo "$1" | sed '
/\.xz$/c\J
/\.gz$/c\z
')"
}
function generate_source_url_from_version {
echo "http://llvm.org/releases/$1/cfe-$1.src.tar.xz"
}
function generate_binary_url_from_version {
local ver
ver=$1
template_urls=""
template_urls+=" http://llvm.org/releases/$ver/clang+llvm-$ver-x86_64-linux-gnu-ubuntu-16.04.tar.xz"
template_urls+=" http://llvm.org/releases/$ver/clang+llvm-$ver-x86_64-linux-gnu-ubuntu16.04.tar.xz"
template_urls+=" http://llvm.org/releases/$ver/clang+llvm-$ver-x86_64-linux-gnu-ubuntu-14.04.tar.xz"
template_urls+=" http://llvm.org/releases/$ver/clang+llvm-$ver-x86_64-linux-gnu-ubuntu14.04.tar.xz"
template_urls+=" http://llvm.org/releases/$ver/clang+llvm-$ver-x86_64-linux-gnu-debian8.tar.xz"
set +e
for url in $template_urls
do
wget -q --spider "$url"
result=$?
if [ $result -eq 0 ]; then
echo "$url"
break
fi
done
set -e
}
function generate_default_options_list {
local version
local listOfBaseStyles
version=$1
listOfBaseStyles=$(echo -n "$($2 "$version.src/docs/ClangFormatStyleOptions.rst")")
jsFilename="${version}.src/docs/defaults.js"
echo "{" > "$jsFilename"
for style in $listOfBaseStyles
do
echo "\"${style}\" : " >> "$jsFilename"
"${version}/bin/clang-format" -style="$style" -dump-config > "${version}.src/docs/${style}.yaml"
$yaml_parser "${version}.src/docs/${style}.yaml" >> "$jsFilename"
echo "," >> "$jsFilename"
rm -f "${version}.src/docs/${style}.yaml"
done
#removing last ,
sed -i '$ d' "$jsFilename"
echo "}" >> "$jsFilename"
}
yaml_parser="$PWD/node_modules/js-yaml/bin/js-yaml.js"
parser_awk="$PWD/parser.awk"
pushd server/llvm
#filling local list only if usage enabled
local_versions=""
if [[ $useSystemBinaries == [Yy] ]]; then
#get all installed binaries of clang-format and skip not existing directories warnings
clang_local_binaries=$(echo -n "$(find {,/usr}/{,s}bin/clang-format{,-[0-9]*} 2>/dev/null)")
for clang_bin in $clang_local_binaries
do
version=$(${clang_bin} --version | sed 's/.*version \([^ -]*\).*/\1/')
local_versions+="$version\n"
#echo "Found local version: $version - ${clang_bin}"
formatted_array+=" ${version},$(generate_source_url_from_version "${version}"),${clang_bin}"
done
echo "Found local versions"
echo -e "$local_versions" | column -c 50
local_versions=$(echo -e "$local_versions")
fi
versionsToGenerate=""
if [[ $useAllOnlineVersions == [Yy] ]]; then
page_content=$(curl http://releases.llvm.org --compressed --silent)
online_versions=$(echo "$page_content" | grep -Po "['[0-9]+.*,\s+'[0-9\.]+']" | grep -Po "(([0-9]\.)+([0-9]))")
echo "Found versions on website:"
echo "$online_versions" | column -c 50
versionsToGenerate=$online_versions
else
versionsToGenerate=$mandatoryVersions
fi
echo "Getting binary links"
for normal_version in $versionsToGenerate
do
min_version=3.5.2
if (echo -e "$normal_version\n$min_version" | sort -V -C); then
echo "Version $normal_version is too old to handle automatically, skipping."
continue
fi
if [ -d "$normal_version" ] && [ -d "$normal_version.src" ]; then
echo "Already installed $normal_version, skipping."
continue
fi
echo "$normal_version... "
#adding online version if only not in local list
if [ "${local_versions/$normal_version}" = "$local_versions" ]; then
# shellcheck disable=SC2086
formatted_array+=" $normal_version,$(generate_source_url_from_version $normal_version),$(generate_binary_url_from_version $normal_version)"
fi
done
for tuple in $formatted_array
do
IFS=","
# shellcheck disable=SC2086
set $tuple
version=$1
source_url=$2
binary_url=$3
#Checking urls
set +e
wget -q --spider "$source_url"
result=$?
if [ $result -ne 0 ]; then
echo "Wrong source url for version $version. Skipping"
continue
fi
if [ ! -f "$binary_url" ]; then
wget -q --spider "$binary_url"
result=$?
if [ $result -ne 0 ]; then
echo "Wrong binary url for version $version. Skipping"
continue
fi
fi
set -e
#end of check
if [ ! -d "$version" ]; then
mkdir "$version"
if [ -f "$binary_url" ]; then
echo "Creating symlink $version"
mkdir -p "$version/bin"
ln -s "$binary_url" "$version/bin/clang-format"
else
echo "Downloading $version"
wget "$binary_url" --quiet -O - | tar "$(tar_flags "$binary_url")" --strip-components=1 -C "$version" --occurrence=1 --wildcards '*bin/clang-format'
fi
fi
if [ ! -d "$version.src" ]
then
echo "Downloading $version.src"
mkdir "$version.src"
wget "$source_url" --quiet -O - | tar "$(tar_flags "$source_url")" --strip-components=1 -C "$version.src" --occurrence=1 --wildcards '*/docs/ClangFormatStyleOptions.rst'
generate_default_options_list "$version" "$parser_awk"
fi
done
if [[ $buildHead == [yY] ]]; then
echo "Building HEAD"
temp_dir=$(mktemp -d)
git clone --depth 1 http://llvm.org/git/llvm.git "$temp_dir"
pushd "$temp_dir/tools"
git clone --depth 1 http://llvm.org/git/clang.git clang
popd
pushd "$temp_dir"
mkdir build
cd build
cmake -G "Unix Makefiles" ..
make clang-format -j "$(grep -c "^processor" /proc/cpuinfo)"
popd
version="$("$temp_dir/build/bin/clang-format" --version | awk '{print $3 "+" substr($5, 0, 7)}')"
mkdir -p "$version/bin"
cp -f "$temp_dir/build/bin/clang-format" "$version/bin"
mkdir -p "$version.src/docs"
cp -f "$temp_dir/tools/clang/docs/ClangFormatStyleOptions.rst" "$version.src/docs"
generate_default_options_list "$version" "$parser_awk"
rm -rf "$temp_dir"
echo "Installed HEAD as $version"
fi
popd
echo "Doing npm install"
npm install
if [[ $installSystemdService == [yY] ]]; then
install_dir=$(pwd)
npm_binary=$(which npm)
config_content=$(cat clang-format-configurator.service)
config_content="${config_content//%NPM_BINARY_PLACEHOLDER%/$npm_binary}"
config_content="${config_content//%WORKING_DIRECTORY_PLACEHOLDER%/$install_dir}"
config_content="${config_content//%USER_PLACEHOLDER%/$USER}"
echo "$config_content" | sudo tee /etc/systemd/system/clang-format-configurator.service > /dev/null
sudo chmod 644 /etc/systemd/system/clang-format-configurator.service
sudo systemctl enable clang-format-configurator
sudo systemctl restart clang-format-configurator
echo "Installed systemd service"
fi
echo "Done"