-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathinstall.py
568 lines (528 loc) · 19.4 KB
/
install.py
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
#!/usr/bin/env python3
# coding:utf-8
import argparse
import os
import platform
import re
import subprocess
import time
class ThirdParty:
def __init__(self, proxy: str) -> None:
self._proxy: str = proxy
self._modules = {
"setup": {
"github": "https://github.com/minhanghuang/setup.git",
"gitee": "https://gitee.com/minhanghuang/setup.git",
},
"nlohmann_json": {
"github": "https://github.com/nlohmann/json.git",
"gitee": "https://gitee.com/minhanghuang/nlohmann_json.git",
},
"tinyxml2": {
"github": "https://github.com/leethomason/tinyxml2.git",
"gitee": "https://gitee.com/minhanghuang/tinyxml2.git",
},
"gperftools": {
"github": "https://github.com/gperftools/gperftools.git",
"gitee": "https://gitee.com/minhanghuang/gperftools.git",
},
"PROJ": {
"github": "https://github.com/OSGeo/PROJ.git",
"gitee": "https://gitee.com/minhanghuang/PROJ.git",
},
"gflags": {
"github": "https://github.com/gflags/gflags.git",
"gitee": "https://gitee.com/minhanghuang/gflags.git",
},
"glog": {
"github": "https://github.com/google/glog.git",
"gitee": "https://gitee.com/minhanghuang/glog.git",
},
"googletest": {
"github": "https://github.com/google/googletest.git",
"gitee": "https://gitee.com/minhanghuang/googletest.git",
},
"protobuf": {
"github": "https://github.com/protocolbuffers/protobuf.git",
"gitee": "https://gitee.com/minhanghuang/protobuf.git",
},
"asio": {
"github": "https://github.com/chriskohlhoff/asio.git",
"gitee": "https://gitee.com/minhanghuang/asio.git",
},
"foonathan_memory_vendor": {
"github": "https://github.com/eProsima/foonathan_memory_vendor.git",
"gitee": "https://gitee.com/minhanghuang/foonathan_memory_vendor.git",
},
"Fast-CDR": {
"github": "https://github.com/eProsima/Fast-CDR.git",
"gitee": "https://gitee.com/minhanghuang/Fast-CDR.git",
},
"Fast-DDS": {
"github": "https://github.com/eProsima/Fast-DDS.git",
"gitee": "https://gitee.com/minhanghuang/Fast-DDS.git",
},
}
return None
def get_repo_url(self, name) -> str:
if name not in self._modules.keys():
raise Exception("repo not found: {}".format(name))
return self._modules[name][self._proxy]
class Install:
def __init__(self, platform: str, install_prefix: str, proxy: str) -> None:
self._machine = platform
self._home_path = os.path.expanduser("~")
self._current_path = os.path.abspath(os.path.dirname(__file__))
self._dowload_path = os.path.join(self._current_path, "third_party")
self._install_prefix = os.path.join(self._current_path, "install")
self._proxy: str = proxy
if install_prefix != "install":
self._install_prefix = install_prefix
if "gitee" == proxy:
self._proxy = proxy
else:
self._proxy = "github"
if not os.path.exists(self._install_prefix):
os.makedirs(self._install_prefix)
self.environment = self._load_environment()
self._third_party: ThirdParty = ThirdParty(self._proxy)
return None
def _load_environment(self):
"""
In case of cross-compilation, we need to load the environment setup file
:return: env
"""
env = os.environ.copy()
return env
def _cmd(self, command):
"""执行系统命令,使用指定的环境变量"""
if command is None:
return None
print("[command]: {}".format(command))
try:
subprocess.run(
command,
shell=True,
env=self.environment,
check=True,
# stdout=subprocess.PIPE,
# stderr=subprocess.PIPE,
)
except Exception as e:
print("[cmd error]: {}".format(e))
raise e
def start(self):
self._install_gcc()
self._install_cmake()
self._install_setup()
self._install_tinyxml2()
# # self._clone_dds()
self._install_dds2()
self._install_nlohmann_json()
self._install_proj() # ros_bridge of apollo v10
self._install_gfamily()
self._install_gperftools() # apollo v10
self._unpack_bvar() # apollo v10
def _clone_repo(self, repo_name: str, *args):
dowload_path = os.path.join(self._dowload_path, repo_name)
if os.path.exists(dowload_path):
print("repo exists: {}".format(dowload_path))
return None
repo_url = self._third_party.get_repo_url(repo_name)
command = "git clone {} {}".format(repo_url, dowload_path)
for arg in args:
command += " " + arg
print("start clone: {}".format(command))
result = subprocess.run(command, shell=True)
if result.returncode != 0:
print("clone failed: {}".format(repo_url))
raise Exception("clone failed: {}".format(repo_url))
print("clone success: {}".format(repo_url))
def _install_setup(self):
self._clone_repo("setup", "--depth=1")
os.chdir(os.path.join(self._dowload_path, "setup"))
self._cmd("mkdir -p build")
os.chdir("build")
self._cmd("cmake -DCMAKE_INSTALL_PREFIX={} ..".format(self._install_prefix))
self._cmd("make install -j$(($(nproc) - 1))")
os.chdir(self._current_path)
def _install_gcc(self):
print("start to install gcc")
gcc_version = "0.0"
try:
result = subprocess.run(
["gcc", "--version"],
stdout=subprocess.PIPE,
universal_newlines=True,
check=True,
)
output = result.stdout.splitlines()[0]
match = re.search(r"(\d+\.\d+\.\d+)", output)
if match:
gcc_version = match.group(1)
print(f"GCC version: {gcc_version}")
if "8.1" < gcc_version:
print(
"GCC version is greater than or equal to 8.1.0, skip installation"
)
return None
except Exception as e:
print("gcc error: {}".format(e))
self._cmd("sudo apt update")
self._cmd("sudo apt install -y software-properties-common")
self._cmd("sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test")
self._cmd("sudo apt update")
self._cmd("sudo apt install -y gcc-9 g++-9")
self._cmd(
"sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 100"
)
self._cmd(
"sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-9 100"
)
self._cmd("sudo ldconfig")
self._cmd("gcc --version")
self._cmd("g++ --version")
return None
def _install_cmake(self):
print("start to install cmake")
cmake_version = "0.0.0"
try:
result = subprocess.run(
["cmake", "--version"],
stdout=subprocess.PIPE,
universal_newlines=True,
check=True,
)
output = result.stdout.splitlines()[0]
match = re.search(r"(\d+\.\d+\.\d+)", output)
if match:
cmake_version = match.group(1)
print(f"CMake version: {cmake_version}")
if "3.20" < cmake_version:
print("CMake version is greater than 3.20, skip installation")
return None
except Exception as e:
print("cmake error: {}".format(e))
cmake_name = "cmake-3.22.0-linux-x86_64"
if "x86_64" == self._machine:
pass
else:
cmake_name = "cmake-3.22.0-linux-aarch64"
print(
"CMake version is less than 3.20, start installation ({})".format(
cmake_name
)
)
self._cmd(
"wget -t 10 {} -P {}".format(
"https://cmake.org/files/v3.22/{}.tar.gz".format(cmake_name),
self._dowload_path,
)
)
os.chdir(self._dowload_path)
self._cmd("tar -zxvf {}.tar.gz".format(cmake_name))
self._cmd("cp -r {}/bin/* /usr/local/bin".format(cmake_name))
self._cmd("cp -r {}/doc/* /usr/local/doc".format(cmake_name))
self._cmd("cp -r {}/share/* /usr/local/share".format(cmake_name))
self._cmd("rm -rf {}*".format(cmake_name))
self._cmd("sudo ldconfig")
self._cmd("cmake --version")
os.chdir(self._current_path)
return None
def _install_nlohmann_json(self):
self._clone_repo("nlohmann_json", "--depth=1")
print("start make nlohmann_json")
os.chdir(os.path.join(self._dowload_path, "nlohmann_json"))
self._cmd("mkdir -p build")
os.chdir("build")
self._cmd(
"cmake -DCMAKE_INSTALL_PREFIX={} -DBUILD_SHARED_LIBS=ON ..".format(
self._install_prefix
)
)
self._cmd("make install -j$(($(nproc) - 1))")
os.chdir(self._current_path)
def _install_tinyxml2(self):
self._clone_repo(
"tinyxml2",
"--single-branch",
"--branch=8.0.0",
"--depth=1",
)
print("start make tinyxml2")
os.chdir(os.path.join(self._dowload_path, "tinyxml2"))
self._cmd("mkdir -p build")
os.chdir("build")
self._cmd(
"cmake -DCMAKE_INSTALL_PREFIX={} -DBUILD_SHARED_LIBS=ON ..".format(
self._install_prefix
)
)
self._cmd("make install -j$(($(nproc) - 1))")
os.chdir(self._current_path)
def _install_gperftools(self):
self._clone_repo(
"gperftools",
"--single-branch",
"--branch=gperftools-2.8",
"--depth=1",
)
print("start make gperttools")
os.chdir(os.path.join(self._dowload_path, "gperftools"))
self._cmd("./autogen.sh || sleep 1 && ./autogen.sh")
self._cmd(
"./configure --disable-libunwind --prefix={} --libdir={}".format(
self._install_prefix, os.path.join(self._install_prefix, "lib")
)
)
self._cmd("make install -j$(($(nproc) - 1))")
os.chdir(self._current_path)
return None
def _install_proj(self):
self._clone_repo(
"PROJ",
"--single-branch",
"--branch=7.1.0",
"--depth=1",
)
print("start make PROJ")
os.chdir(os.path.join(self._dowload_path, "PROJ"))
self._cmd(
"patch -p1 -N < {}".format(
os.path.join(self._current_path, "scripts/PROJ-7.1.0.patch")
)
)
self._cmd("mkdir -p build")
os.chdir("build")
self._cmd(
"cmake -DBUILD_TESTING=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX={} -DBUILD_SHARED_LIBS=ON ..".format(
self._install_prefix
)
)
self._cmd("make install -j$(($(nproc) - 1))")
os.chdir(self._current_path)
return None
def _install_gfamily(self):
self._clone_repo(
"gflags",
"--single-branch",
"--branch=v2.2.0",
"--depth=1",
)
self._clone_repo(
"glog",
"--single-branch",
"--branch=v0.4.0",
"--depth=1",
)
self._clone_repo(
"googletest",
"--single-branch",
"--branch=release-1.10.0",
"--depth=1",
)
self._clone_repo(
"protobuf",
"--single-branch",
"--branch=v3.14.0",
"--depth=1",
)
print("start make gflags")
os.chdir(os.path.join(self._dowload_path, "gflags"))
self._cmd("mkdir -p build")
os.chdir("build")
self._cmd(
"cmake -DCMAKE_CXX_FLAGS='-fPIC' -DREGISTER_INSTALL_PREFIX=OFF -DCMAKE_INSTALL_PREFIX={} -DBUILD_SHARED_LIBS=ON ..".format(
self._install_prefix
)
)
self._cmd("make install -j$(($(nproc) - 1))")
os.chdir(self._current_path)
print("start make glog")
os.chdir(os.path.join(self._dowload_path, "glog"))
self._cmd("mkdir -p build")
os.chdir("build")
self._cmd(
"cmake -DCMAKE_CXX_FLAGS='-fPIC' -DCMAKE_INSTALL_PREFIX={} -DBUILD_SHARED_LIBS=ON ..".format(
self._install_prefix
)
)
self._cmd("make install -j$(($(nproc) - 1))")
os.chdir(self._current_path)
print("start make googletest")
os.chdir(os.path.join(self._dowload_path, "googletest"))
self._cmd("mkdir -p build")
os.chdir("build")
self._cmd(
"cmake -DCMAKE_CXX_FLAGS='-fPIC -w' -DCMAKE_INSTALL_PREFIX={} -DBUILD_SHARED_LIBS=ON ..".format(
self._install_prefix
)
)
self._cmd("make install -j$(($(nproc) - 1))")
os.chdir(self._current_path)
print("start make protobuf")
os.chdir(os.path.join(self._dowload_path, "protobuf"))
os.chdir("cmake")
self._cmd("mkdir -p build")
os.chdir("build")
self._cmd(
"cmake -Dprotobuf_BUILD_SHARED_LIBS=ON -Dprotobuf_BUILD_TESTS=OFF -DCMAKE_INSTALL_PREFIX={} ..".format(
self._install_prefix
)
)
self._cmd("make install -j$(($(nproc) - 1))")
os.chdir(self._current_path)
def _clone_dds(self):
# self._clone_github_repo(
# "Fast-RTPS",
# "--single-branch",
# "--branch=v1.5.0",
# "--depth=1"
# )
# os.chdir(os.path.join(self._dowload_path, "Fast-RTPS"))
# self._cmd("git submodule update --init")
# self._cmd("patch -p1 < {}".format(os.path.join(self._current_path,
# "scripts/FastRTPS_1.5.0.patch")))
# self._cmd("mkdir -p build")
# self._cmd(
# "cmake -DEPROSIMA_BUILD=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX={} ..".format(
# self._install_prefix))
# os.chdir(self._current_path)
dds_name = "fast-rtps-1.5.0-1.prebuilt.x86_64.tar.gz"
if "x86_64" == self._machine:
pass
else:
dds_name = "fast-rtps-1.5.0-1.prebuilt.aarch64.tar.gz"
if not os.path.exists(os.path.join(self._dowload_path, dds_name)):
self._cmd(
"wget -t 10 {} -P {}".format(
"https://apollo-system.cdn.bcebos.com/archive/6.0/{}".format(
dds_name
),
self._dowload_path,
),
)
os.chdir(self._dowload_path)
self._cmd("tar -zxvf {}".format(dds_name))
self._cmd("cp -r fast-rtps-1.5.0-1/* {}".format(self._install_prefix))
self._cmd("rm -rf fast-rtps-1.5.0-1/")
os.chdir(self._current_path)
def _install_dds2(self):
self._clone_repo(
"asio",
"--single-branch",
"--branch=asio-1-18-1",
"--depth=1",
)
self._clone_repo(
"foonathan_memory_vendor",
"--single-branch",
"--branch=v1.3.1",
"--depth=1",
)
self._clone_repo(
"Fast-CDR",
"--single-branch",
"--branch=v2.2.2",
"--depth=1",
)
self._clone_repo(
"Fast-DDS",
"--single-branch",
"--branch=v2.14.3",
"--depth=1",
)
print("start install asio")
os.chdir(os.path.join(self._dowload_path, "asio/asio"))
self._cmd("cp -r include {}".format(self._install_prefix))
os.chdir(self._current_path)
print("start make foonathan_memory_vendor")
os.chdir(os.path.join(self._dowload_path, "foonathan_memory_vendor"))
self._cmd("mkdir -p build")
os.chdir("build")
self._cmd(
"cmake -DCMAKE_CXX_STANDARD=17 -DCMAKE_INSTALL_PREFIX={} -DBUILD_SHARED_LIBS=ON ..".format(
self._install_prefix
)
)
self._cmd("make install -j$(($(nproc) - 1))")
os.chdir(self._current_path)
print("start make Fast-CDR")
os.chdir(os.path.join(self._dowload_path, "Fast-CDR"))
self._cmd(
"patch -p1 < {}".format(
os.path.join(self._current_path, "scripts/Fast-CDR_v2.2.2.patch")
)
)
self._cmd("mkdir -p build")
os.chdir("build")
self._cmd(
"cmake -DCMAKE_INSTALL_PREFIX={} -DBUILD_SHARED_LIBS=ON ..".format(
self._install_prefix
)
)
self._cmd("make install -j$(($(nproc) - 1))")
os.chdir(self._current_path)
print("start make Fast-DDS")
os.chdir(os.path.join(self._dowload_path, "Fast-DDS"))
self._cmd("mkdir -p build")
os.chdir("build")
self._cmd(
"cmake -DCMAKE_INSTALL_PREFIX={} -DBUILD_SHARED_LIBS=ON ..".format(
self._install_prefix
)
)
self._cmd("make install -j$(($(nproc) - 1))")
os.chdir(self._current_path)
return None
def _unpack_bvar(self):
download_url = (
"https://raw.githubusercontent.com/wiki/minhanghuang/CyberRT/libs"
)
if "gitee" == self._proxy:
download_url = "https://gitee.com/minhanghuang/CyberRT-Libs/raw/master/libs"
else:
pass
bvar_name = "bvar_9.0.0-rc-r2_amd64.deb"
if "x86_64" == self._machine:
pass
else:
bvar_name = "bvar_9.0.0-rc-r3_arm64.deb"
download_url = download_url + "/" + bvar_name
self._cmd(
"wget -t 10 {} -O {}".format(
download_url, os.path.join(self._dowload_path, "bvar.deb")
)
)
self._cmd(
"dpkg -x {} {}".format(
os.path.join(self._dowload_path, "bvar.deb"),
os.path.join(self._dowload_path, "bvar"),
)
)
self._cmd(
"cp -r {}* {}".format(
os.path.join(self._dowload_path, "bvar/usr/local/"),
self._install_prefix,
)
)
return None
def parse_config():
parser = argparse.ArgumentParser(description="install")
parser.add_argument(
"--platform", type=str, default=platform.machine(), help="platform"
)
parser.add_argument(
"--install_prefix", type=str, default="install", help="install prefix"
)
parser.add_argument("--proxy", type=str, default="github", help="proxy")
args = parser.parse_args()
return args
if __name__ == "__main__":
args = parse_config()
print(
f"args.platform: {args.platform}, args.install_prefix: {args.install_prefix} args.proxy: {args.proxy}"
)
time.sleep(2)
install = Install(args.platform, args.install_prefix, args.proxy)
install.start()