forked from XiaoMi/rdsn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compile_thrift.py
executable file
·217 lines (165 loc) · 6.33 KB
/
compile_thrift.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
#!/usr/bin/env python2
import os
import sys
import platform
import re
'''
the default thrift generator
'''
thrift_description = [
{
"name": "dsn.layer2",
"path": "src",
"include_fix": {
"_types.h": {
"add": ["<dsn/cpp/serialization_helper/dsn_types.h>"],
"remove": ["\"dsn_types.h\""]
},
"_types.cpp": {
"add": ["<dsn/cpp/serialization_helper/dsn.layer2_types.h>"],
"remove": ["\"dsn.layer2_types.h\""]
}
},
"file_move": {
"_types.h": "include/dsn/cpp/serialization_helper",
"_types.cpp": "src/runtime"
}
},
]
class CompileError(Exception):
""" Raised when dealing with thrift idl have errors"""
def __init__(self, msg):
self.msg = msg
def __str__(self):
return self.msg
def fix_include_file(filename, fix_commands):
tmp_result = filename + ".swapfile"
from_fd, to_fd = open(filename, "r"), open(tmp_result, "w")
add_ok = not "add" in fix_commands
for line in from_fd:
include_statement = False
if len(line.strip()) > 0:
stripped_line = line.strip()
if stripped_line[0] == "#" and "include" in stripped_line:
include_statement = True
if include_statement == True and add_ok == False:
add_includes = "\n".join(["#include %s" % (s)
for s in fix_commands["add"]])
to_fd.write(add_includes + "\n")
add_ok = True
if include_statement == True and ("remove" in fix_commands):
if len(filter(lambda x: x in line, fix_commands["remove"])) == 0:
to_fd.write(line)
else:
to_fd.write(line)
from_fd.close()
to_fd.close()
os.remove(filename)
os.rename(tmp_result, filename)
def fix_include(thrift_name, include_fix_dict):
# current dir is thrift file dir
os.chdir("output")
for pair in include_fix_dict.iteritems():
filename = thrift_name + pair[0]
fix_include_file(filename, pair[1])
os.chdir("..")
def compile_thrift_file(thrift_info):
thrift_name = thrift_info["name"]
print "\n>>> compiling thrift file %s.thrift ..." % (thrift_name)
if "path" not in thrift_info:
raise CompileError("can't find thrift file")
# ensure <name>.thrift exists
os.chdir(root_dir + "/" + thrift_info["path"])
if os.path.isfile(thrift_name+".thrift") == False:
raise CompileError("can't find thrift file")
# create tmp directory: <thrift_info["path"]>/output
os.system("rm -rf output")
os.system("mkdir output")
print "mkdir {}/output".format(os.getcwd())
# generate files
cmd = "{} -gen cpp:moveable_types -out output {}.thrift".format(
thrift_exe, thrift_name)
os.system(cmd)
print cmd
# TODO(wutao1): code format files
# os.system("clang-format-3.9 -i output/*")
if "include_fix" in thrift_info:
fix_include(thrift_name, thrift_info["include_fix"])
if "hook" in thrift_info:
os.chdir("output")
for hook_func, args in thrift_info["hook"]:
hook_func(args)
os.chdir("..")
if "file_move" in thrift_info:
for pair in thrift_info["file_move"].iteritems():
dest_path = root_dir + "/" + pair[1]
for postfix in pair[0].split():
src_path = "output/%s%s" % (thrift_name, postfix)
cmd = "mv %s %s" % (src_path, dest_path)
os.system(cmd)
print cmd
os.system("rm -rf output")
print "rm -rf {}/output".format(os.getcwd())
os.chdir(root_dir)
# special hooks for thrift, all these are executed in the output dir
def constructor_hook(args):
generated_fname = args[0]
class_name = args[1]
add_code = args[2]
target_fname = generated_fname + ".swapfile"
src_fd, dst_fd = open(generated_fname, "r"), open(target_fname, "w")
in_class = 0
for line in src_fd:
if in_class == 1:
if "public:" in line:
line = line + add_code + "\n"
elif "bool operator <" in line:
line = ""
# this may not be right
elif line.startswith("};"):
in_class = 2
elif in_class == 0 and line.startswith("class " + class_name + " {"):
in_class = 1
dst_fd.write(line)
src_fd.close()
dst_fd.close()
os.remove(generated_fname)
os.rename(target_fname, generated_fname)
def replace_hook(args):
generated_fname = args[0]
replace_map = args[1]
target_fname = generated_fname + ".swapfile"
src_fd, dst_fd = open(generated_fname, "r"), open(target_fname, "w")
for line in src_fd:
for key, value in replace_map.items():
line = re.sub(key, value, line)
dst_fd.write(line)
src_fd.close()
dst_fd.close()
os.remove(generated_fname)
os.rename(target_fname, generated_fname)
def add_hook(name, path, func, args):
for i in thrift_description:
if name == i["name"] and path == i["path"]:
if "hook" not in i:
i["hook"] = [(func, args)]
else:
i["hook"].append((func, args))
if __name__ == "__main__":
thrift_exe = os.getcwd() + "/thirdparty/output/bin/thrift"
root_dir = os.getcwd()
print "thrift_exe = " + thrift_exe
print "root_dir = " + root_dir
if not os.path.isfile(thrift_exe):
print "Error: can't find compiler %s\nPlease build thrift in thirdparty/" % thrift_exe
sys.exit()
ctor_kv_pair = " kv_pair(const std::string& _key, const std::string& _val): key(_key), value(_val) {\n }"
ctor_configuration_proposal_action = " configuration_proposal_action(::dsn::rpc_address t, ::dsn::rpc_address n, config_type::type tp): target(t), node(n), type(tp) {}"
add_hook("simple_kv", "src/replica/storage/simple_kv", constructor_hook,
["simple_kv_types.h", "kv_pair", ctor_kv_pair])
add_hook("replication", "src/", constructor_hook,
["replication_types.h", "configuration_proposal_action", ctor_configuration_proposal_action])
add_hook("dsn.layer2", "src", replace_hook, ["dsn.layer2_types.h", {
r"dsn\.layer2_TYPES_H": 'dsn_layer2_TYPES_H'}])
for i in thrift_description:
compile_thrift_file(i)