Start work on rsync support for file transfers

This commit is contained in:
Kovid Goyal 2021-09-17 13:41:45 +05:30
parent a0740d1616
commit f0fab80f5b
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
9 changed files with 106 additions and 19 deletions

View File

@ -36,7 +36,7 @@ def install_deps():
run('sudo apt-get update') run('sudo apt-get update')
run('sudo apt-get install -y libgl1-mesa-dev libxi-dev libxrandr-dev libxinerama-dev ca-certificates' run('sudo apt-get install -y libgl1-mesa-dev libxi-dev libxrandr-dev libxinerama-dev ca-certificates'
' libxcursor-dev libxcb-xkb-dev libdbus-1-dev libxkbcommon-dev libharfbuzz-dev libx11-xcb-dev' ' libxcursor-dev libxcb-xkb-dev libdbus-1-dev libxkbcommon-dev libharfbuzz-dev libx11-xcb-dev'
' libpng-dev liblcms2-dev libfontconfig-dev libxkbcommon-x11-dev libcanberra-dev uuid-dev') ' libpng-dev liblcms2-dev libfontconfig-dev libxkbcommon-x11-dev libcanberra-dev librsync-dev uuid-dev')
if is_bundle: if is_bundle:
install_bundle() install_bundle()
else: else:

View File

@ -1,5 +1,6 @@
pkg-config pkg-config
zlib zlib
librsync
python python
imagemagick imagemagick
harfbuzz harfbuzz

View File

@ -29,7 +29,7 @@ kitty_constants = iv['kitty_constants']
def binary_includes(): def binary_includes():
return tuple(map(get_dll_path, ( return tuple(map(get_dll_path, (
'expat', 'sqlite3', 'ffi', 'z', 'lzma', 'png16', 'lcms2', 'crypt', 'expat', 'sqlite3', 'ffi', 'z', 'lzma', 'png16', 'lcms2', 'crypt',
'iconv', 'pcre', 'graphite2', 'glib-2.0', 'freetype', 'iconv', 'pcre', 'graphite2', 'glib-2.0', 'freetype', 'rsync',
'harfbuzz', 'xkbcommon', 'xkbcommon-x11', 'harfbuzz', 'xkbcommon', 'xkbcommon-x11',
'ncursesw', 'readline', 'brotlicommon', 'brotlienc', 'brotlidec' 'ncursesw', 'readline', 'brotlicommon', 'brotlienc', 'brotlidec'
))) + ( ))) + (

View File

@ -222,7 +222,7 @@ class Freeze(object):
@flush @flush
def get_local_dependencies(self, path_to_lib): def get_local_dependencies(self, path_to_lib):
for x, is_id in self.get_dependencies(path_to_lib): for x, is_id in self.get_dependencies(path_to_lib):
for y in (PREFIX + '/lib/', PREFIX + '/python/Python.framework/'): for y in (PREFIX + '/lib/', PREFIX + '/python/Python.framework/', '@rpath/'):
if x.startswith(y): if x.startswith(y):
if y == PREFIX + '/python/Python.framework/': if y == PREFIX + '/python/Python.framework/':
y = PREFIX + '/python/' y = PREFIX + '/python/'
@ -288,6 +288,7 @@ class Freeze(object):
'lcms2.2', 'lcms2.2',
'crypto.1.1', 'crypto.1.1',
'ssl.1.1', 'ssl.1.1',
'rsync.2',
): ):
print('\nAdding', x) print('\nAdding', x)
x = 'lib%s.dylib' % x x = 'lib%s.dylib' % x

View File

@ -28,6 +28,15 @@
} }
}, },
{
"name": "openssl",
"unix": {
"filename": "openssl-1.1.1i.tar.gz",
"hash": "sha256:e8be6a35fe41d10603c3cc635e93289ed00bf34b79671a3a4de64fcee00d5242",
"urls": ["https://www.openssl.org/source/{filename}"]
}
},
{ {
"name": "cmake", "name": "cmake",
"os": "macos", "os": "macos",
@ -90,15 +99,6 @@
} }
}, },
{
"name": "openssl",
"unix": {
"filename": "openssl-1.1.1i.tar.gz",
"hash": "sha256:e8be6a35fe41d10603c3cc635e93289ed00bf34b79671a3a4de64fcee00d5242",
"urls": ["https://www.openssl.org/source/{filename}"]
}
},
{ {
"name": "ncurses", "name": "ncurses",
"os": "linux", "os": "linux",
@ -128,6 +128,16 @@
} }
}, },
{
"name": "librsync",
"unix": {
"filename": "librsync-2.3.2.tar.gz",
"hash": "sha256:ef8ce23df38d5076d25510baa2cabedffbe0af460d887d86c2413a1c2b0c676f",
"urls": ["https://github.com/librsync/librsync/releases/download/v2.3.2/{filename}"]
}
},
{ {
"name": "xcrypt", "name": "xcrypt",
"os": "linux", "os": "linux",

View File

@ -34,6 +34,7 @@ Run-time dependencies:
* ``zlib`` * ``zlib``
* ``libpng`` * ``libpng``
* ``liblcms2`` * ``liblcms2``
* ``librsync``
* ``freetype`` (not needed on macOS) * ``freetype`` (not needed on macOS)
* ``fontconfig`` (not needed on macOS) * ``fontconfig`` (not needed on macOS)
* ``libcanberra`` (not needed on macOS) * ``libcanberra`` (not needed on macOS)

35
kittens/transfer/rsync.c Normal file
View File

@ -0,0 +1,35 @@
/*
* rsync.c
* Copyright (C) 2021 Kovid Goyal <kovid at kovidgoyal.net>
*
* Distributed under terms of the GPL3 license.
*/
#include "data-types.h"
#include <librsync.h>
static PyMethodDef module_methods[] = {
{NULL, NULL, 0, NULL} /* Sentinel */
};
static int
exec_module(PyObject *m UNUSED) {
return 0;
}
IGNORE_PEDANTIC_WARNINGS
static PyModuleDef_Slot slots[] = { {Py_mod_exec, (void*)exec_module}, {0, NULL} };
END_IGNORE_PEDANTIC_WARNINGS
static struct PyModuleDef module = {
.m_base = PyModuleDef_HEAD_INIT,
.m_name = "rsync", /* name of module */
.m_doc = NULL,
.m_slots = slots,
.m_methods = module_methods
};
EXPORTED PyMODINIT_FUNC
PyInit_rsync(void) {
return PyModuleDef_Init(&module);
}

View File

@ -23,7 +23,8 @@ class TestBuild(BaseTest):
from kittens.choose import subseq_matcher from kittens.choose import subseq_matcher
from kittens.diff import diff_speedup from kittens.diff import diff_speedup
from kittens.unicode_input import unicode_names from kittens.unicode_input import unicode_names
del fdt, unicode_names, subseq_matcher, diff_speedup from kittens.transfer import rsync
del fdt, unicode_names, subseq_matcher, diff_speedup, rsync
def test_loading_shaders(self) -> None: def test_loading_shaders(self) -> None:
from kitty.utils import load_shaders from kitty.utils import load_shaders

View File

@ -746,23 +746,28 @@ def compile_kittens(compilation_database: CompilationDatabase) -> None:
output: str, output: str,
extra_headers: Sequence[str] = (), extra_headers: Sequence[str] = (),
extra_sources: Sequence[str] = (), extra_sources: Sequence[str] = (),
filter_sources: Optional[Callable[[str], bool]] = None filter_sources: Optional[Callable[[str], bool]] = None,
) -> Tuple[List[str], List[str], str]: cflags: Sequence[str] = (), ldflags: Sequence[str] = (),
) -> Tuple[str, List[str], List[str], str, Sequence[str], Sequence[str]]:
sources = list(filter(filter_sources, list(extra_sources) + list_files(os.path.join('kittens', kitten, '*.c')))) sources = list(filter(filter_sources, list(extra_sources) + list_files(os.path.join('kittens', kitten, '*.c'))))
headers = list_files(os.path.join('kittens', kitten, '*.h')) + list(extra_headers) headers = list_files(os.path.join('kittens', kitten, '*.h')) + list(extra_headers)
return (sources, headers, 'kittens/{}/{}'.format(kitten, output)) return kitten, sources, headers, 'kittens/{}/{}'.format(kitten, output), cflags, ldflags
for sources, all_headers, dest in ( for kitten, sources, all_headers, dest, cflags, ldflags in (
files('unicode_input', 'unicode_names'), files('unicode_input', 'unicode_names'),
files('diff', 'diff_speedup'), files('diff', 'diff_speedup'),
files('transfer', 'rsync', ldflags=('-lrsync',)),
files( files(
'choose', 'subseq_matcher', 'choose', 'subseq_matcher',
extra_headers=('kitty/charsets.h',), extra_headers=('kitty/charsets.h',),
extra_sources=('kitty/charsets.c',), extra_sources=('kitty/charsets.c',),
filter_sources=lambda x: 'windows_compat.c' not in x), filter_sources=lambda x: 'windows_compat.c' not in x),
): ):
final_env = kenv.copy()
final_env.cflags.extend(cflags)
final_env.ldflags.extend(ldflags)
compile_c_extension( compile_c_extension(
kenv, dest, compilation_database, sources, all_headers + ['kitty/data-types.h']) final_env, dest, compilation_database, sources, all_headers + ['kitty/data-types.h'])
def init_env_from_args(args: Options, native_optimizations: bool = False) -> None: def init_env_from_args(args: Options, native_optimizations: bool = False) -> None:
@ -1186,7 +1191,7 @@ def option_parser() -> argparse.ArgumentParser: # {{{
'action', 'action',
nargs='?', nargs='?',
default=Options.action, default=Options.action,
choices='build test linux-package kitty.app linux-freeze macos-freeze build-launcher build-frozen-launcher clean export-ci-bundles'.split(), choices='build test linux-package kitty.app linux-freeze macos-freeze build-launcher build-frozen-launcher clean export-ci-bundles build-dep'.split(),
help='Action to perform (default is build)' help='Action to perform (default is build)'
) )
p.add_argument( p.add_argument(
@ -1300,8 +1305,41 @@ def option_parser() -> argparse.ArgumentParser: # {{{
# }}} # }}}
def build_dep() -> None:
class Options(argparse.Namespace):
platform: str
deps: List[str]
p = argparse.ArgumentParser(prog=f'{sys.argv[0]} build-dep', description='Build dependencies for the kitty binary packages')
p.add_argument(
'--platform',
default='all',
choices='all macos linux linux-x86'.split(),
help='Platforms to build the dep for'
)
p.add_argument(
'deps',
nargs='*',
default=[],
help='Names of the dependencies, if none provided, build all'
)
args = p.parse_args(sys.argv[2:], namespace=Options)
if args.platform == 'all':
platforms = ['linux', 'linux 32', 'macos']
elif args.platform == 'linux-x86':
platforms = ['linux 32']
else:
platforms = [args.platform]
base = [sys.executable, '../bypy']
for pf in platforms:
cmd = base + pf.split() + args.deps
run_tool(cmd)
def main() -> None: def main() -> None:
global verbose global verbose
if len(sys.argv) > 1 and sys.argv[1] == 'build-dep':
return build_dep()
args = option_parser().parse_args(namespace=Options()) args = option_parser().parse_args(namespace=Options())
if not is_macos: if not is_macos:
args.build_universal_binary = False args.build_universal_binary = False