mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-09 15:08:13 +02:00
183 lines
6.0 KiB
Python
183 lines
6.0 KiB
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
# License: GPL v3 Copyright: 2016, Kovid Goyal <kovid at kovidgoyal.net>
|
|
|
|
import locale
|
|
import os
|
|
import sys
|
|
from contextlib import contextmanager
|
|
|
|
from .borders import load_borders_program
|
|
from .boss import Boss
|
|
from .cli import create_opts, parse_args
|
|
from .config import cached_values_for, initial_window_size
|
|
from .constants import appname, glfw_path, is_macos, is_wayland, logo_data_file, config_dir
|
|
from .fast_data_types import (
|
|
create_os_window, glfw_init, glfw_terminate, set_default_window_icon,
|
|
set_options, show_window
|
|
)
|
|
from .fonts.box_drawing import set_scale
|
|
from .utils import (
|
|
detach, end_startup_notification, init_startup_notification, log_error,
|
|
single_instance
|
|
)
|
|
from .window import load_shader_programs
|
|
|
|
|
|
def load_all_shaders(semi_transparent=0):
|
|
load_shader_programs(semi_transparent)
|
|
load_borders_program()
|
|
|
|
|
|
def init_graphics():
|
|
glfw_module = 'cocoa' if is_macos else ('wayland' if is_wayland else 'x11')
|
|
if not glfw_init(glfw_path(glfw_module)):
|
|
raise SystemExit('GLFW initialization failed')
|
|
return glfw_module
|
|
|
|
|
|
def run_app(opts, args):
|
|
set_scale(opts.box_drawing_scale)
|
|
set_options(opts, is_wayland, args.debug_gl, args.debug_font_fallback)
|
|
if is_macos:
|
|
from .fast_data_types import macos_change_titlebar_color
|
|
macos_change_titlebar_color(opts.macos_titlebar_color)
|
|
with cached_values_for('main') as cached_values:
|
|
w, h = initial_window_size(opts, cached_values)
|
|
window_id = create_os_window(w, h, appname, args.name or args.cls or appname, args.cls or appname, load_all_shaders)
|
|
startup_ctx = init_startup_notification(window_id)
|
|
show_window(window_id)
|
|
if not is_wayland and not is_macos: # no window icons on wayland
|
|
with open(logo_data_file, 'rb') as f:
|
|
set_default_window_icon(f.read(), 256, 256)
|
|
boss = Boss(window_id, opts, args, cached_values)
|
|
boss.start()
|
|
end_startup_notification(startup_ctx)
|
|
try:
|
|
boss.child_monitor.main_loop()
|
|
finally:
|
|
boss.destroy()
|
|
|
|
|
|
def ensure_osx_locale():
|
|
# Ensure the LANG env var is set. See
|
|
# https://github.com/kovidgoyal/kitty/issues/90
|
|
from .fast_data_types import cocoa_get_lang
|
|
if 'LANG' not in os.environ:
|
|
lang = cocoa_get_lang()
|
|
if lang is not None:
|
|
os.environ['LANG'] = lang + '.UTF-8'
|
|
|
|
|
|
@contextmanager
|
|
def setup_profiling(args):
|
|
try:
|
|
from .fast_data_types import start_profiler, stop_profiler
|
|
except ImportError:
|
|
start_profiler = stop_profiler = None
|
|
if start_profiler is not None:
|
|
start_profiler('/tmp/kitty-profile.log')
|
|
yield
|
|
if stop_profiler is not None:
|
|
import subprocess
|
|
stop_profiler()
|
|
exe = os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), 'kitty-profile')
|
|
cg = '/tmp/kitty-profile.callgrind'
|
|
print('Post processing profile data for', exe, '...')
|
|
subprocess.call(['pprof', '--callgrind', exe, '/tmp/kitty-profile.log'], stdout=open(cg, 'wb'))
|
|
try:
|
|
subprocess.Popen(['kcachegrind', cg])
|
|
except FileNotFoundError:
|
|
subprocess.call(['pprof', '--text', exe, '/tmp/kitty-profile.log'])
|
|
print('To view the graphical call data, use: kcachegrind', cg)
|
|
|
|
|
|
def macos_cmdline():
|
|
try:
|
|
with open(os.path.join(config_dir, 'macos-launch-services-cmdline')) as f:
|
|
raw = f.read()
|
|
except FileNotFoundError:
|
|
return []
|
|
import shlex
|
|
raw = raw.strip()
|
|
ans = shlex.split(raw)
|
|
if ans and ans[0] == 'kitty':
|
|
del ans[0]
|
|
return ans
|
|
|
|
|
|
def _main():
|
|
try:
|
|
sys.setswitchinterval(1000.0) # we have only a single python thread
|
|
except AttributeError:
|
|
pass # python compiled without threading
|
|
if is_macos:
|
|
ensure_osx_locale()
|
|
try:
|
|
locale.setlocale(locale.LC_ALL, '')
|
|
except Exception:
|
|
if not is_macos:
|
|
raise
|
|
print('Failed to set locale with LANG:', os.environ.get('LANG'), file=sys.stderr)
|
|
os.environ.pop('LANG')
|
|
try:
|
|
locale.setlocale(locale.LC_ALL, '')
|
|
except Exception:
|
|
print('Failed to set locale with no LANG, ignoring', file=sys.stderr)
|
|
|
|
# Ensure kitty is in PATH
|
|
rpath = getattr(sys, 'bundle_exe_dir', None)
|
|
items = frozenset(os.environ['PATH'].split(os.pathsep))
|
|
if not rpath:
|
|
for candidate in items:
|
|
if os.access(os.path.join(candidate, 'kitty'), os.X_OK):
|
|
break
|
|
else:
|
|
rpath = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'launcher')
|
|
if rpath and rpath not in items:
|
|
os.environ['PATH'] += os.pathsep + rpath
|
|
|
|
args = sys.argv[1:]
|
|
if is_macos and os.environ.pop('KITTY_LAUNCHED_BY_LAUNCH_SERVICES', None) == '1':
|
|
os.chdir(os.path.expanduser('~'))
|
|
args = macos_cmdline()
|
|
if not os.path.isdir(os.getcwd()):
|
|
os.chdir(os.path.expanduser('~'))
|
|
args, rest = parse_args(args=args)
|
|
args.args = rest
|
|
if getattr(args, 'detach', False):
|
|
detach()
|
|
if args.cmd:
|
|
exec(args.cmd)
|
|
return
|
|
if args.replay_commands:
|
|
from kitty.client import main
|
|
main(args.replay_commands)
|
|
return
|
|
if args.single_instance:
|
|
is_first = single_instance(args.instance_group)
|
|
if not is_first:
|
|
import json
|
|
data = {'cmd': 'new_instance', 'args': tuple(sys.argv), 'startup_id': os.environ.get('DESKTOP_STARTUP_ID')}
|
|
data = json.dumps(data, ensure_ascii=False).encode('utf-8')
|
|
single_instance.socket.sendall(data)
|
|
return
|
|
opts = create_opts(args)
|
|
init_graphics()
|
|
try:
|
|
with setup_profiling(args):
|
|
# Avoid needing to launch threads to reap zombies
|
|
run_app(opts, args)
|
|
finally:
|
|
glfw_terminate()
|
|
|
|
|
|
def main():
|
|
try:
|
|
_main()
|
|
except Exception:
|
|
import traceback
|
|
tb = traceback.format_exc()
|
|
log_error(tb)
|
|
raise SystemExit(1)
|