2018-01-21 16:16:07 +03:00
|
|
|
#!/usr/bin/env python3
|
2017-05-27 12:07:26 +03:00
|
|
|
|
|
|
|
import os
|
|
|
|
import io
|
|
|
|
import re
|
|
|
|
from string import Template
|
|
|
|
|
2017-12-03 11:59:15 +03:00
|
|
|
print(os.getcwd())
|
2017-05-27 12:07:26 +03:00
|
|
|
if 'CONFIGURATION' in os.environ and os.environ['CONFIGURATION'] == 'Debug':
|
2018-01-21 16:16:07 +03:00
|
|
|
if os.path.isfile('./NvimView/NvimAutoCommandEvent.generated.swift'):
|
2017-05-27 12:07:26 +03:00
|
|
|
print("Files already there, exiting...")
|
|
|
|
exit(0)
|
|
|
|
|
|
|
|
with io.open('./neovim/build/include/auevents_enum.generated.h', 'r') as auto_cmds_file:
|
|
|
|
raw_auto_cmds = [line.strip() for line in auto_cmds_file.readlines() if re.match(r'^EVENT_', line.strip())]
|
|
|
|
|
|
|
|
|
|
|
|
def convert(line):
|
|
|
|
result = re.match(r'^EVENT_(.*) = (.*)', line.replace(',', ''))
|
|
|
|
return result.group(1), result.group(2)
|
|
|
|
|
|
|
|
|
|
|
|
auto_cmds = [convert(line) for line in raw_auto_cmds]
|
2018-01-21 16:16:07 +03:00
|
|
|
auto_cmds_template = Template(
|
2017-05-27 12:07:26 +03:00
|
|
|
'''
|
2018-01-21 16:16:07 +03:00
|
|
|
enum NvimAutoCommandEvent: Int {
|
2017-05-27 12:07:26 +03:00
|
|
|
${event_cases}
|
|
|
|
}
|
|
|
|
'''
|
2018-01-21 16:16:07 +03:00
|
|
|
)
|
2017-05-27 12:07:26 +03:00
|
|
|
|
2018-01-21 16:16:07 +03:00
|
|
|
header = auto_cmds_template.substitute(
|
2017-05-27 12:07:26 +03:00
|
|
|
event_cases='\n'.join(
|
2018-01-21 16:16:07 +03:00
|
|
|
[' case {} = {}'.format(event[0].lower(), event[1]) for event in auto_cmds]
|
2017-05-27 12:07:26 +03:00
|
|
|
),
|
|
|
|
)
|
2018-01-21 16:16:07 +03:00
|
|
|
with io.open('./NvimView/NvimAutoCommandEvent.generated.swift', 'w') as auto_cmds_header_file:
|
|
|
|
auto_cmds_header_file.write(header)
|