Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
528 B
39 lines
528 B
4 years ago
|
|
||
|
import sys
|
||
|
import re
|
||
|
|
||
|
include = sys.argv[1]
|
||
|
msg_basename = sys.argv[2]
|
||
|
count = 1
|
||
|
|
||
|
m = re.search(r'(.*\D)(\d+)$', sys.argv[2])
|
||
|
if m:
|
||
|
msg_basename = m.group(1)
|
||
|
count = int(m.group(2))
|
||
|
|
||
|
print(f'''
|
||
|
#include "{include}"
|
||
|
|
||
|
char buf[1];
|
||
|
|
||
|
int main() {{
|
||
|
''')
|
||
|
|
||
|
def RefMessage(name):
|
||
|
print(f'''
|
||
|
{{
|
||
|
{name} proto;
|
||
|
proto.ParseFromArray(buf, 0);
|
||
|
proto.SerializePartialToArray(&buf[0], 0);
|
||
|
}}
|
||
|
''')
|
||
|
|
||
|
RefMessage(msg_basename)
|
||
|
|
||
|
for i in range(2, count + 1):
|
||
|
RefMessage(msg_basename + str(i))
|
||
|
|
||
|
print('''
|
||
|
return 0;
|
||
|
}''')
|