2022-08-16 17:49:39 +03:00
|
|
|
#!./kitty/launcher/kitty +launch
|
|
|
|
# License: GPLv3 Copyright: 2022, Kovid Goyal <kovid at kovidgoyal.net>
|
|
|
|
|
2022-08-26 08:22:10 +03:00
|
|
|
import io
|
2022-08-29 08:13:33 +03:00
|
|
|
import json
|
2022-09-15 11:40:57 +03:00
|
|
|
import os
|
2022-09-07 08:25:07 +03:00
|
|
|
import sys
|
2022-08-26 08:32:24 +03:00
|
|
|
from contextlib import contextmanager, suppress
|
2022-09-15 11:40:57 +03:00
|
|
|
from functools import lru_cache
|
2022-08-30 13:19:26 +03:00
|
|
|
from typing import Dict, Iterator, List, Set, Tuple, Union
|
2022-08-16 17:49:39 +03:00
|
|
|
|
2022-08-17 07:04:03 +03:00
|
|
|
import kitty.constants as kc
|
2022-08-23 16:23:55 +03:00
|
|
|
from kittens.tui.operations import Mode
|
2022-08-29 08:13:33 +03:00
|
|
|
from kitty.cli import (
|
2022-09-15 11:40:57 +03:00
|
|
|
GoOption, go_options_for_seq, parse_option_spec, serialize_as_go_string
|
2022-08-29 08:13:33 +03:00
|
|
|
)
|
2022-08-24 06:00:21 +03:00
|
|
|
from kitty.key_encoding import config_mod_map
|
2022-08-24 12:41:08 +03:00
|
|
|
from kitty.key_names import (
|
|
|
|
character_key_name_aliases, functional_key_name_aliases
|
|
|
|
)
|
2022-08-29 08:13:33 +03:00
|
|
|
from kitty.options.types import Options
|
2022-08-24 12:41:08 +03:00
|
|
|
from kitty.rc.base import RemoteCommand, all_command_names, command_for_name
|
2022-08-29 08:13:33 +03:00
|
|
|
from kitty.rgb import color_names
|
2022-08-16 17:49:39 +03:00
|
|
|
|
2022-08-26 08:22:10 +03:00
|
|
|
changed: List[str] = []
|
|
|
|
|
|
|
|
|
2022-08-26 08:32:24 +03:00
|
|
|
# Utils {{{
|
2022-08-16 17:49:39 +03:00
|
|
|
|
2022-08-26 08:32:24 +03:00
|
|
|
def serialize_go_dict(x: Union[Dict[str, int], Dict[int, str], Dict[int, int], Dict[str, str]]) -> str:
|
|
|
|
ans = []
|
|
|
|
|
|
|
|
def s(x: Union[int, str]) -> str:
|
|
|
|
if isinstance(x, int):
|
|
|
|
return str(x)
|
|
|
|
return f'"{serialize_as_go_string(x)}"'
|
|
|
|
|
|
|
|
for k, v in x.items():
|
|
|
|
ans.append(f'{s(k)}: {s(v)}')
|
|
|
|
return '{' + ', '.join(ans) + '}'
|
|
|
|
|
|
|
|
|
2022-08-17 07:04:03 +03:00
|
|
|
def replace(template: str, **kw: str) -> str:
|
|
|
|
for k, v in kw.items():
|
|
|
|
template = template.replace(k, v)
|
|
|
|
return template
|
2022-08-26 08:32:24 +03:00
|
|
|
# }}}
|
2022-08-17 07:04:03 +03:00
|
|
|
|
|
|
|
|
2022-09-09 12:40:38 +03:00
|
|
|
def generate_completion_for_rc(name: str) -> None:
|
|
|
|
cmd = command_for_name(name)
|
|
|
|
if cmd.short_desc:
|
|
|
|
print(f'{name}.Description = "{serialize_as_go_string(cmd.short_desc)}"')
|
|
|
|
|
|
|
|
|
2022-09-07 08:25:07 +03:00
|
|
|
def generate_completions_for_kitty() -> None:
|
|
|
|
print('package completion\n')
|
|
|
|
print('func kitty(root *Command) {')
|
2022-09-09 12:40:38 +03:00
|
|
|
print('k := root.add_command("kitty", "")')
|
2022-09-15 16:13:52 +03:00
|
|
|
print('k.First_arg_may_not_be_subcommand = true')
|
|
|
|
print('k.Completion_for_arg = complete_kitty')
|
2022-09-09 12:40:38 +03:00
|
|
|
print('at := k.add_command("@", "Remote control")')
|
|
|
|
print('at.Description = "Control kitty using commands"')
|
|
|
|
for go_name in all_command_names():
|
|
|
|
name = go_name.replace('_', '-')
|
|
|
|
print(f'{go_name} := at.add_command("{name}", "")')
|
|
|
|
generate_completion_for_rc(go_name)
|
|
|
|
print(f'k.add_clone("@{name}", "Remote control", {go_name})')
|
2022-09-07 08:25:07 +03:00
|
|
|
print('}')
|
|
|
|
print('func init() {')
|
|
|
|
print('registered_exes["kitty"] = kitty')
|
|
|
|
print('}')
|
|
|
|
|
|
|
|
|
2022-09-06 16:21:23 +03:00
|
|
|
# rc command wrappers {{{
|
2022-08-17 19:27:02 +03:00
|
|
|
json_field_types: Dict[str, str] = {
|
|
|
|
'bool': 'bool', 'str': 'string', 'list.str': '[]string', 'dict.str': 'map[string]string', 'float': 'float64', 'int': 'int',
|
2022-08-30 18:00:25 +03:00
|
|
|
'scroll_amount': 'interface{}', 'spacing': 'interface{}', 'colors': 'interface{}',
|
2022-08-17 19:27:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def go_field_type(json_field_type: str) -> str:
|
|
|
|
q = json_field_types.get(json_field_type)
|
|
|
|
if q:
|
|
|
|
return q
|
|
|
|
if json_field_type.startswith('choices.'):
|
|
|
|
return 'string'
|
|
|
|
if '.' in json_field_type:
|
|
|
|
p, r = json_field_type.split('.', 1)
|
|
|
|
p = {'list': '[]', 'dict': 'map[string]'}[p]
|
|
|
|
return p + go_field_type(r)
|
|
|
|
raise TypeError(f'Unknown JSON field type: {json_field_type}')
|
|
|
|
|
|
|
|
|
|
|
|
class JSONField:
|
|
|
|
|
|
|
|
def __init__(self, line: str) -> None:
|
|
|
|
field_def = line.split(':', 1)[0]
|
|
|
|
self.required = False
|
|
|
|
self.field, self.field_type = field_def.split('/', 1)
|
|
|
|
if self.field.endswith('+'):
|
|
|
|
self.required = True
|
|
|
|
self.field = self.field[:-1]
|
|
|
|
self.struct_field_name = self.field[0].upper() + self.field[1:]
|
|
|
|
|
|
|
|
def go_declaration(self) -> str:
|
|
|
|
return self.struct_field_name + ' ' + go_field_type(self.field_type) + f'`json:"{self.field},omitempty"`'
|
|
|
|
|
|
|
|
|
2022-08-17 14:03:41 +03:00
|
|
|
def render_alias_map(alias_map: Dict[str, Tuple[str, ...]]) -> str:
|
|
|
|
if not alias_map:
|
|
|
|
return ''
|
|
|
|
amap = 'switch name {\n'
|
|
|
|
for name, aliases in alias_map.items():
|
|
|
|
for alias in aliases:
|
|
|
|
amap += f'\ncase "{alias}":\nname = "{name}"\n'
|
|
|
|
amap += '}'
|
|
|
|
return amap
|
|
|
|
|
|
|
|
|
2022-09-09 12:40:38 +03:00
|
|
|
def go_code_for_remote_command(name: str, cmd: RemoteCommand, template: str) -> str:
|
2022-08-16 21:41:28 +03:00
|
|
|
template = '\n' + template[len('//go:build exclude'):]
|
2022-08-31 17:33:51 +03:00
|
|
|
NO_RESPONSE_BASE = 'false'
|
2022-08-17 07:04:03 +03:00
|
|
|
af: List[str] = []
|
|
|
|
a = af.append
|
2022-08-17 14:03:41 +03:00
|
|
|
alias_map = {}
|
2022-08-17 17:12:43 +03:00
|
|
|
od: List[str] = []
|
|
|
|
ov: List[str] = []
|
2022-08-29 09:40:23 +03:00
|
|
|
option_map: Dict[str, GoOption] = {}
|
2022-09-09 12:40:38 +03:00
|
|
|
for o in rc_command_options(name):
|
2022-08-29 09:40:23 +03:00
|
|
|
field_dest = o.go_var_name.rstrip('_')
|
|
|
|
option_map[field_dest] = o
|
2022-08-17 14:03:41 +03:00
|
|
|
if o.aliases:
|
|
|
|
alias_map[o.long] = tuple(o.aliases)
|
2022-08-17 10:59:12 +03:00
|
|
|
a(o.to_flag_definition())
|
2022-08-18 07:41:17 +03:00
|
|
|
if o.dest in ('no_response', 'response_timeout'):
|
2022-08-17 11:03:24 +03:00
|
|
|
continue
|
2022-08-17 17:12:43 +03:00
|
|
|
od.append(f'{o.go_var_name} {o.go_type}')
|
2022-08-29 09:40:23 +03:00
|
|
|
ov.append(o.set_flag_value(f'options_{name}'))
|
2022-08-17 19:27:02 +03:00
|
|
|
jd: List[str] = []
|
2022-08-29 09:40:23 +03:00
|
|
|
json_fields = []
|
2022-08-29 21:51:59 +03:00
|
|
|
field_types: Dict[str, str] = {}
|
2022-08-17 19:27:02 +03:00
|
|
|
for line in cmd.protocol_spec.splitlines():
|
|
|
|
line = line.strip()
|
|
|
|
if ':' not in line:
|
|
|
|
continue
|
|
|
|
f = JSONField(line)
|
2022-08-29 09:40:23 +03:00
|
|
|
json_fields.append(f)
|
2022-08-29 21:51:59 +03:00
|
|
|
field_types[f.field] = f.field_type
|
2022-08-17 19:27:02 +03:00
|
|
|
jd.append(f.go_declaration())
|
2022-08-29 09:40:23 +03:00
|
|
|
jc: List[str] = []
|
2022-08-30 13:19:26 +03:00
|
|
|
handled_fields: Set[str] = set()
|
2022-08-30 18:00:25 +03:00
|
|
|
jc.extend(cmd.args.as_go_code(name, field_types, handled_fields))
|
2022-08-30 13:19:26 +03:00
|
|
|
|
2022-08-30 18:35:31 +03:00
|
|
|
unhandled = {}
|
|
|
|
used_options = set()
|
2022-08-29 09:40:23 +03:00
|
|
|
for field in json_fields:
|
2022-08-30 18:35:31 +03:00
|
|
|
oq = (cmd.field_to_option_map or {}).get(field.field, field.field)
|
|
|
|
if oq in option_map:
|
|
|
|
o = option_map[oq]
|
|
|
|
used_options.add(oq)
|
2022-08-29 09:40:23 +03:00
|
|
|
jc.append(f'payload.{field.struct_field_name} = options_{name}.{o.go_var_name}')
|
2022-08-30 13:19:26 +03:00
|
|
|
elif field.field in handled_fields:
|
|
|
|
pass
|
2022-08-29 09:40:23 +03:00
|
|
|
else:
|
2022-08-30 18:35:31 +03:00
|
|
|
unhandled[field.field] = field
|
|
|
|
for x in tuple(unhandled):
|
|
|
|
if x == 'match_window' and 'match' in option_map and 'match' not in used_options:
|
|
|
|
used_options.add('match')
|
|
|
|
o = option_map['match']
|
|
|
|
field = unhandled[x]
|
|
|
|
jc.append(f'payload.{field.struct_field_name} = options_{name}.{o.go_var_name}')
|
|
|
|
del unhandled[x]
|
|
|
|
if unhandled:
|
|
|
|
raise SystemExit(f'Cant map fields: {", ".join(unhandled)} for cmd: {name}')
|
2022-08-31 07:39:55 +03:00
|
|
|
if name != 'send_text':
|
|
|
|
unused_options = set(option_map) - used_options - {'no_response', 'response_timeout'}
|
|
|
|
if unused_options:
|
|
|
|
raise SystemExit(f'Unused options: {", ".join(unused_options)} for command: {name}')
|
2022-08-29 21:51:59 +03:00
|
|
|
|
|
|
|
argspec = cmd.args.spec
|
|
|
|
if argspec:
|
|
|
|
argspec = ' ' + argspec
|
2022-08-17 07:04:03 +03:00
|
|
|
ans = replace(
|
|
|
|
template,
|
|
|
|
CMD_NAME=name, __FILE__=__file__, CLI_NAME=name.replace('_', '-'),
|
|
|
|
SHORT_DESC=serialize_as_go_string(cmd.short_desc),
|
|
|
|
LONG_DESC=serialize_as_go_string(cmd.desc.strip()),
|
2022-08-25 15:46:03 +03:00
|
|
|
IS_ASYNC='true' if cmd.is_asynchronous else 'false',
|
2022-08-17 11:03:24 +03:00
|
|
|
NO_RESPONSE_BASE=NO_RESPONSE_BASE, ADD_FLAGS_CODE='\n'.join(af),
|
|
|
|
WAIT_TIMEOUT=str(cmd.response_timeout),
|
2022-08-17 17:12:43 +03:00
|
|
|
ALIAS_NORMALIZE_CODE=render_alias_map(alias_map),
|
|
|
|
OPTIONS_DECLARATION_CODE='\n'.join(od),
|
|
|
|
SET_OPTION_VALUES_CODE='\n'.join(ov),
|
2022-08-17 19:27:02 +03:00
|
|
|
JSON_DECLARATION_CODE='\n'.join(jd),
|
2022-08-29 21:51:59 +03:00
|
|
|
JSON_INIT_CODE='\n'.join(jc), ARGSPEC=argspec,
|
2022-08-22 12:41:00 +03:00
|
|
|
STRING_RESPONSE_IS_ERROR='true' if cmd.string_return_is_error else 'false',
|
2022-08-31 17:33:51 +03:00
|
|
|
STREAM_WANTED='true' if cmd.reads_streaming_data else 'false',
|
2022-08-17 11:03:24 +03:00
|
|
|
)
|
2022-08-16 17:49:39 +03:00
|
|
|
return ans
|
2022-09-06 16:21:23 +03:00
|
|
|
# }}}
|
2022-08-16 17:49:39 +03:00
|
|
|
|
|
|
|
|
2022-08-26 08:32:24 +03:00
|
|
|
# Constants {{{
|
2022-08-27 10:27:07 +03:00
|
|
|
def generate_color_names() -> str:
|
|
|
|
return 'package style\n\nvar ColorNames = map[string]RGBA{' + '\n'.join(
|
|
|
|
f'\t"{name}": RGBA{{ Red:{val.red}, Green:{val.green}, Blue:{val.blue} }},'
|
|
|
|
for name, val in color_names.items()
|
|
|
|
) + '\n}' + '\n\nvar ColorTable = [256]uint32{' + ', '.join(
|
|
|
|
f'{x}' for x in Options.color_table) + '}\n'
|
|
|
|
|
|
|
|
|
2022-08-24 12:41:08 +03:00
|
|
|
def load_ref_map() -> Dict[str, Dict[str, str]]:
|
|
|
|
with open('kitty/docs_ref_map_generated.h') as f:
|
|
|
|
raw = f.read()
|
|
|
|
raw = raw.split('{', 1)[1].split('}', 1)[0]
|
|
|
|
data = json.loads(bytes(bytearray(json.loads(f'[{raw}]'))))
|
|
|
|
return data # type: ignore
|
|
|
|
|
|
|
|
|
2022-08-26 08:22:10 +03:00
|
|
|
def generate_constants() -> str:
|
2022-08-24 12:41:08 +03:00
|
|
|
ref_map = load_ref_map()
|
2022-08-26 08:22:10 +03:00
|
|
|
dp = ", ".join(map(lambda x: f'"{serialize_as_go_string(x)}"', kc.default_pager_for_help))
|
|
|
|
return f'''\
|
2022-08-16 18:44:40 +03:00
|
|
|
package kitty
|
|
|
|
|
|
|
|
type VersionType struct {{
|
|
|
|
Major, Minor, Patch int
|
|
|
|
}}
|
2022-08-23 16:23:55 +03:00
|
|
|
const VersionString string = "{kc.str_version}"
|
|
|
|
const WebsiteBaseURL string = "{kc.website_base_url}"
|
|
|
|
const VCSRevision string = ""
|
|
|
|
const RC_ENCRYPTION_PROTOCOL_VERSION string = "{kc.RC_ENCRYPTION_PROTOCOL_VERSION}"
|
|
|
|
const IsFrozenBuild bool = false
|
|
|
|
const HandleTermiosSignals = {Mode.HANDLE_TERMIOS_SIGNALS.value[0]}
|
2022-08-16 18:44:40 +03:00
|
|
|
var Version VersionType = VersionType{{Major: {kc.version.major}, Minor: {kc.version.minor}, Patch: {kc.version.patch},}}
|
|
|
|
var DefaultPager []string = []string{{ {dp} }}
|
2022-08-24 06:00:21 +03:00
|
|
|
var FunctionalKeyNameAliases = map[string]string{serialize_go_dict(functional_key_name_aliases)}
|
|
|
|
var CharacterKeyNameAliases = map[string]string{serialize_go_dict(character_key_name_aliases)}
|
|
|
|
var ConfigModMap = map[string]uint16{serialize_go_dict(config_mod_map)}
|
2022-08-24 12:41:08 +03:00
|
|
|
var RefMap = map[string]string{serialize_go_dict(ref_map['ref'])}
|
|
|
|
var DocTitleMap = map[string]string{serialize_go_dict(ref_map['doc'])}
|
2022-08-26 08:32:24 +03:00
|
|
|
''' # }}}
|
|
|
|
|
2022-08-26 08:22:10 +03:00
|
|
|
|
2022-08-26 08:32:24 +03:00
|
|
|
# Boilerplate {{{
|
2022-08-26 08:22:10 +03:00
|
|
|
|
|
|
|
@contextmanager
|
|
|
|
def replace_if_needed(path: str) -> Iterator[io.StringIO]:
|
|
|
|
buf = io.StringIO()
|
|
|
|
yield buf
|
2022-08-26 08:32:24 +03:00
|
|
|
orig = ''
|
|
|
|
with suppress(FileNotFoundError), open(path, 'r') as f:
|
2022-08-26 08:22:10 +03:00
|
|
|
orig = f.read()
|
2022-08-26 08:32:24 +03:00
|
|
|
new = buf.getvalue()
|
2022-09-15 11:40:57 +03:00
|
|
|
new = f'// Code generated by {os.path.basename(__file__)}; DO NOT EDIT.\n\n' + new
|
2022-08-26 08:22:10 +03:00
|
|
|
if orig != new:
|
|
|
|
changed.append(path)
|
|
|
|
with open(path, 'w') as f:
|
|
|
|
f.write(new)
|
|
|
|
|
|
|
|
|
2022-09-09 12:40:38 +03:00
|
|
|
@lru_cache(maxsize=256)
|
|
|
|
def rc_command_options(name: str) -> Tuple[GoOption, ...]:
|
|
|
|
cmd = command_for_name(name)
|
|
|
|
return tuple(go_options_for_seq(parse_option_spec(cmd.options_spec or '\n\n')[0]))
|
|
|
|
|
|
|
|
|
2022-08-26 08:22:10 +03:00
|
|
|
def update_at_commands() -> None:
|
2022-08-16 17:49:39 +03:00
|
|
|
with open('tools/cmd/at/template.go') as f:
|
|
|
|
template = f.read()
|
|
|
|
for name in all_command_names():
|
|
|
|
cmd = command_for_name(name)
|
2022-09-09 12:40:38 +03:00
|
|
|
code = go_code_for_remote_command(name, cmd, template)
|
2022-08-25 05:33:23 +03:00
|
|
|
dest = f'tools/cmd/at/cmd_{name}_generated.go'
|
2022-09-06 16:21:23 +03:00
|
|
|
with replace_if_needed(dest) as f:
|
2022-08-16 17:49:39 +03:00
|
|
|
f.write(code)
|
|
|
|
|
|
|
|
|
2022-09-06 16:21:23 +03:00
|
|
|
def update_completion() -> None:
|
2022-09-07 08:25:07 +03:00
|
|
|
orig = sys.stdout
|
|
|
|
try:
|
|
|
|
with replace_if_needed('tools/completion/kitty_generated.go') as f:
|
|
|
|
sys.stdout = f
|
|
|
|
generate_completions_for_kitty()
|
|
|
|
finally:
|
|
|
|
sys.stdout = orig
|
2022-09-06 16:21:23 +03:00
|
|
|
|
|
|
|
|
2022-08-26 08:22:10 +03:00
|
|
|
def main() -> None:
|
|
|
|
with replace_if_needed('constants_generated.go') as f:
|
|
|
|
f.write(generate_constants())
|
2022-08-27 10:27:07 +03:00
|
|
|
with replace_if_needed('tools/utils/style/color-names_generated.go') as f:
|
|
|
|
f.write(generate_color_names())
|
2022-09-06 16:21:23 +03:00
|
|
|
update_completion()
|
2022-08-26 08:22:10 +03:00
|
|
|
update_at_commands()
|
|
|
|
print(json.dumps(changed, indent=2))
|
|
|
|
|
|
|
|
|
2022-08-16 17:49:39 +03:00
|
|
|
if __name__ == '__main__':
|
2022-08-26 08:32:24 +03:00
|
|
|
main() # }}}
|