-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.py
62 lines (47 loc) · 1.47 KB
/
index.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
import os
from loguru import logger
from utils import check_call
def gen_index(lang: str, directory: str, index_command: str):
current_directory = os.getcwd()
try:
os.chdir(directory)
if index_command:
logger.info(f"custom index command: {index_command}")
check_call(index_command)
return
if lang == "golang":
gen_golang_index()
elif lang == "python":
gen_py_index()
elif lang == "java":
gen_java_and_kotlin_index()
elif lang == "kotlin":
gen_java_and_kotlin_index()
elif lang == "node":
gen_node_index()
else:
raise RuntimeError(f"lang {lang} not support")
finally:
os.chdir(current_directory)
def gen_golang_index():
check_call(["lsif-go", "-v"])
def gen_java_and_kotlin_index():
# lock down JAVA_HOME
# https://github.com/orgs/community/discussions/25738
os.environ["JAVA_HOME"] = "/usr/lib/jvm/java-8-openjdk"
# https://sourcegraph.github.io/scip-java/docs/getting-started.html#run-scip-java-index
check_call("scip-java index --output index.scip")
def gen_py_index():
check_call(["scip-python", "index", ".", "--project-name", "srctx"])
def gen_node_index():
check_call(
[
"lsif",
"tsc",
"-p",
"./tsconfig.json",
"--package",
"./package.json",
"--stdout",
]
)