#!/usr/bin/env python # License: GPLv3 Copyright: 2024, Kovid Goyal import json import string import sys import tempfile from typing import Any, Dict, Literal, Tuple, TypedDict from kitty.cli import create_default_opts from kitty.conf.utils import to_color from kitty.constants import kitten_exe from kitty.fonts import Descriptor from kitty.fonts.common import ( face_from_descriptor, get_axis_map, get_font_files, get_named_style, get_variable_data_for_descriptor, get_variable_data_for_face, is_variable, spec_for_descriptor, ) from kitty.fonts.list import create_family_groups from kitty.fonts.render import display_bitmap from kitty.options.types import Options from kitty.options.utils import parse_font_spec from kitty.utils import screen_size_function def send_to_kitten(x: Any) -> None: try: sys.stdout.buffer.write(json.dumps(x).encode()) sys.stdout.buffer.write(b'\n') sys.stdout.buffer.flush() except BrokenPipeError: raise SystemExit('Pipe to kitten was broken while sending data to it') class TextStyle(TypedDict): font_size: float dpi_x: float dpi_y: float foreground: str background: str def print(*a: Any) -> None: import builtins import os if 'KITTY_STDIO_FORWARDED' in os.environ: fd = int(os.environ['KITTY_STDIO_FORWARDED']) with open(fd, 'w', closefd=False) as f: builtins.print(*a, file=f) else: builtins.print(*a, file=sys.stderr) OptNames = Literal['font_family', 'bold_font', 'italic_font', 'bold_italic_font'] FamilyKey = Tuple[OptNames, ...] def opts_from_cmd(cmd: Dict[str, Any]) -> Tuple[Options, FamilyKey, float, float]: opts = Options() ts: TextStyle = cmd['text_style'] opts.font_size = ts['font_size'] opts.foreground = to_color(ts['foreground']) opts.background = to_color(ts['background']) family_key = [] def d(k: OptNames) -> None: if k in cmd: setattr(opts, k, parse_font_spec(cmd[k])) family_key.append(k) d('font_family') d('bold_font') d('italic_font') d('bold_italic_font') return opts, tuple(family_key), ts['dpi_x'], ts['dpi_y'] BaseKey = Tuple[str, int, int] FaceKey = Tuple[str, BaseKey] RenderedSample = Tuple[bytes, Dict[str, Any]] RenderedSampleTransmit = Dict[str, Any] SAMPLE_TEXT = string.ascii_lowercase + ' ' + string.digits + ' ' + string.ascii_uppercase + ' ' + string.punctuation def render_face_sample(font: Descriptor, opts: Options, dpi_x: float, dpi_y: float, width: int, height: int) -> RenderedSample: face = face_from_descriptor(font) face.set_size(opts.font_size, dpi_x, dpi_y) metadata = { 'variable_data': get_variable_data_for_face(face), 'style': font['style'], 'psname': face.postscript_name(), } if is_variable(font): ns = get_named_style(face) if ns: metadata['variable_named_style'] = ns metadata['variable_axis_map'] = get_axis_map(face) return face.render_sample_text(SAMPLE_TEXT, width, height, opts.foreground.rgb), metadata def render_family_sample( opts: Options, family_key: FamilyKey, dpi_x: float, dpi_y: float, width: int, height: int, output_dir: str, cache: Dict[FaceKey, RenderedSampleTransmit] ) -> Dict[str, RenderedSampleTransmit]: base_key: BaseKey = opts.font_family.created_from_string, width, height ans: Dict[str, RenderedSampleTransmit] = {} font_files = get_font_files(opts) for x in family_key: key: FaceKey = x + ': ' + getattr(opts, x).created_from_string, base_key if x == 'font_family': desc = font_files['medium'] elif x == 'bold_font': desc = font_files['bold'] elif x == 'italic_font': desc = font_files['italic'] elif x == 'bold_italic_font': desc = font_files['bi'] cached = cache.get(key) if cached is not None: ans[x] = cached else: with tempfile.NamedTemporaryFile(delete=False, suffix='.rgba', dir=output_dir) as tf: bitmap, metadata = render_face_sample(desc, opts, dpi_x, dpi_y, width, height) tf.write(bitmap) metadata['path'] = tf.name cache[key] = ans[x] = metadata return ans ResolvedFace = Dict[Literal['family', 'spec'], str] def resolved_faces(opts: Options) -> Dict[OptNames, ResolvedFace]: font_files = get_font_files(opts) ans: Dict[OptNames, ResolvedFace] = {} def d(key: Literal['medium', 'bold', 'italic', 'bi'], opt_name: OptNames) -> None: descriptor = font_files[key] ans[opt_name] = {'family': descriptor['family'], 'spec': spec_for_descriptor(descriptor)} d('medium', 'font_family') d('bold', 'bold_font') d('italic', 'italic_font') d('bi', 'bold_italic_font') return ans def main() -> None: cache: Dict[FaceKey, RenderedSampleTransmit] = {} for line in sys.stdin.buffer: cmd = json.loads(line) action = cmd.get('action', '') if action == 'list_monospaced_fonts': opts = create_default_opts() send_to_kitten({'fonts': create_family_groups(), 'resolved_faces': resolved_faces(opts)}) elif action == 'read_variable_data': ans = [] for descriptor in cmd['descriptors']: ans.append(get_variable_data_for_descriptor(descriptor)) send_to_kitten(ans) elif action == 'render_family_samples': opts, family_key, dpi_x, dpi_y = opts_from_cmd(cmd) send_to_kitten(render_family_sample(opts, family_key, dpi_x, dpi_y, cmd['width'], cmd['height'], cmd['output_dir'], cache)) else: raise SystemExit(f'Unknown action: {action}') def query_kitty() -> Dict[str, str]: import subprocess ans = {} for line in subprocess.check_output([kitten_exe(), 'query-terminal']).decode().splitlines(): k, sep, v = line.partition(':') if sep == ':': ans[k] = v.strip() return ans def showcase(family: str) -> None: q = query_kitty() opts = Options() opts.foreground = to_color(q['foreground']) opts.background = to_color(q['background']) opts.font_size = float(q['font_size']) opts.font_family = parse_font_spec(family) font_files = get_font_files(opts) desc = font_files['medium'] ss = screen_size_function()() width = ss.cell_width * ss.cols height = 5 * ss.cell_height bitmap = render_face_sample(desc, opts, float(q['dpi_x']), float(q['dpi_y']), width, height)[0] display_bitmap(bitmap, width, height)