rc.xsh 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. $VI_MODE = True
  2. $AUTO_PUSHD = True
  3. $XONSH_AUTOPAIR = True
  4. # tab selection: do not execute cmd when pressing enter
  5. $COMPLETIONS_CONFIRM = True
  6. $_Z_EXCLUDE_DIRS = ['/tmp']
  7. xontrib load vox z
  8. def _last_exit_status():
  9. try:
  10. exit_status = __xonsh_history__.rtns[-1]
  11. return exit_status if exit_status != 0 else None
  12. except IndexError:
  13. return None
  14. $PROMPT_FIELDS['last_exit_status'] = _last_exit_status
  15. $SHLVL = int($SHLVL) + 1 if 'SHLVL' in ${...} else 1
  16. $XONSH_STDERR_PREFIX = '{RED}'
  17. $XONSH_STDERR_POSTFIX = '{NO_COLOR}'
  18. $DYNAMIC_CWD_WIDTH = '30%'
  19. $DYNAMIC_CWD_ELISION_CHAR = '…'
  20. $PROMPT = ''.join([
  21. '{RED}{last_exit_status:[{}] }',
  22. '{BOLD_GREEN}{user}@{hostname} ',
  23. '{YELLOW}{cwd} ',
  24. '{{BLUE}}{} '.format('{prompt_end}' * $SHLVL),
  25. '{NO_COLOR}',
  26. ])
  27. $RIGHT_PROMPT = '{gitstatus}{env_name: {}}'
  28. $XONSH_APPEND_NEWLINE = True
  29. import contextlib
  30. import datetime as dt
  31. import io
  32. import os
  33. import re
  34. import shutil
  35. import stat
  36. import subprocess
  37. import sys
  38. os.umask(stat.S_IWGRP | stat.S_IRWXO) # 027
  39. # default locale
  40. # will be used for all non-explicitly set LC_* variables
  41. $LANG = 'en_US.UTF-8'
  42. # fallback locales
  43. # GNU gettext gives preference to LANGUAGE over LC_ALL and LANG
  44. # for the purpose of message handling
  45. # https://www.gnu.org/software/gettext/manual/html_node/The-LANGUAGE-variable.html
  46. # cave: if this list contains 'de(_.*)?' at any (sic!) position
  47. # vim 7.4.1689 will switch to german
  48. $LANGUAGE = ':'.join(['en_US', 'en'])
  49. $LC_COLLATE = 'C.UTF-8'
  50. # char classification, case conversion & other char attrs
  51. $LC_CTYPE = 'de_AT.UTF-8'
  52. # $ locale currency_symbol
  53. $LC_MONETARY = 'de_AT.UTF-8'
  54. # $ locale -k LC_NUMERIC | head -n 3
  55. # decimal_point="."
  56. # thousands_sep=""
  57. # grouping=-1
  58. $LC_NUMERIC = 'C.UTF-8'
  59. # A4
  60. $LC_PAPER = 'de_AT.UTF-8'
  61. USER_BIN_PATH = os.path.join($HOME, '.local', 'bin')
  62. if os.path.isdir(USER_BIN_PATH):
  63. $PATH.insert(0, USER_BIN_PATH)
  64. $PAGER = 'less'
  65. $EDITOR = 'vim'
  66. # i3-sensible-terminal
  67. $TERMINAL = 'termite'
  68. # required by pinentry-tty when using gpg command:
  69. $GPG_TTY = $(tty)
  70. if shutil.which('gpgconf'):
  71. # required by scute
  72. $GPG_AGENT_INFO = $(gpgconf --list-dir agent-socket).rstrip() + ':0:1'
  73. if not 'SSH_CLIENT' in ${...}:
  74. # in gnupg 2.1.13 the location of agents socket changed
  75. $SSH_AUTH_SOCK = $(gpgconf --list-dir agent-ssh-socket).rstrip()
  76. # wrapper for termite required when launching termite from ranger:
  77. $TERMCMD = os.path.join(os.path.dirname(__file__), 'ranger-termite-termcmd')
  78. # https://docs.docker.com/engine/security/trust/content_trust/
  79. $DOCKER_CONTENT_TRUST = 1
  80. class DockerImage:
  81. def __init__(self, image):
  82. import json
  83. attrs, = json.loads(subprocess.check_output(['sudo', 'docker', 'image', 'inspect', image])
  84. .decode(sys.stdout.encoding))
  85. self._id = attrs['Id']
  86. self._tags = attrs['RepoTags']
  87. def __repr__(self):
  88. return '{}(id={!r}, tags={!r})'.format(type(self).__name__, self._id, self._tags)
  89. @classmethod
  90. def build(cls, dockerfile_or_path):
  91. out = io.BytesIO()
  92. with StdoutTee(out) as tee:
  93. if os.path.exists(dockerfile_or_path):
  94. p = subprocess.Popen(['sudo', 'docker', 'build', dockerfile_or_path],
  95. stdin=None, stdout=tee)
  96. else:
  97. p = subprocess.Popen(['sudo', 'docker', 'build', '-'],
  98. stdin=subprocess.PIPE, stdout=tee)
  99. p.stdin.write(dockerfile_or_path.encode())
  100. p.stdin.close()
  101. assert p.wait() == 0, 'docker build failed'
  102. image_id, = re.search(rb'^Successfully built (\S+)$', out.getvalue(), re.MULTILINE).groups()
  103. return cls(image_id.decode(sys.stdout.encoding))
  104. @classmethod
  105. def pull(cls, image):
  106. out = io.BytesIO()
  107. with StdoutTee(out) as tee:
  108. subprocess.run(['sudo', 'docker', 'image', 'pull', image], stdout=tee)
  109. repo_digest, = re.search(rb'^Digest: (sha\S+:\S+)$', out.getvalue(), re.MULTILINE).groups()
  110. return cls('{}@{}'.format(image, repo_digest.decode()))
  111. def run(self, args=[], name=None, detach=False, env={},
  112. network=None, publish_ports=[], volumes=[], caps=[]):
  113. params = ['sudo', 'docker', 'run', '--rm']
  114. if name:
  115. params.extend(['--name', name])
  116. if detach:
  117. params.append('--detach')
  118. else:
  119. params.extend(['--interactive', '--tty'])
  120. params.extend([a for k, v in env.items() for a in ['--env', '{}={}'.format(k, v)]])
  121. if network:
  122. params.extend(['--network', network])
  123. params.extend([a for v in volumes for a in ['--volume', ':'.join(v)]])
  124. params.extend('--publish=' + ':'.join([str(a) for a in p]) for p in publish_ports)
  125. params.extend(['--security-opt=no-new-privileges', '--cap-drop=all'])
  126. params.extend(['--cap-add={}'.format(c) for c in caps])
  127. params.append(self._id)
  128. params.extend(args)
  129. sys.stderr.write('{}\n'.format(shlex_join(params)))
  130. subprocess.run(params, check=True)
  131. class StdoutTee:
  132. def __init__(self, sink):
  133. self._sink = sink
  134. def __enter__(self):
  135. self._read_fd, self._write_fd = os.pipe()
  136. import threading
  137. self._thread = threading.Thread(target=self._loop)
  138. self._thread.start()
  139. return self
  140. def _loop(self):
  141. while True:
  142. try:
  143. data = os_read_non_blocking(self._read_fd)
  144. except OSError: # fd closed
  145. return
  146. if data:
  147. self._sink.write(data)
  148. sys.stdout.buffer.write(data)
  149. sys.stdout.flush()
  150. def fileno(self):
  151. return self._write_fd
  152. def __exit__(self, exc_type, exc_value, traceback):
  153. os.close(self._read_fd)
  154. os.close(self._write_fd)
  155. self._thread.join()
  156. @contextlib.contextmanager
  157. def chdir(path):
  158. previous = os.getcwd()
  159. try:
  160. os.chdir(path)
  161. yield path
  162. finally:
  163. os.chdir(previous)
  164. def dpkg_listfiles(pkg_name):
  165. assert isinstance(pkg_name, str)
  166. paths = $(dpkg --listfiles @(pkg_name)).split('\n')[:-1]
  167. assert len(paths) > 0, 'pkg {!r} not installed'.format(pkg_name)
  168. return paths
  169. def dpkg_search(path_search_pattern):
  170. assert isinstance(path_search_pattern, str)
  171. return re.findall(
  172. '^(\S+): (.*)$\n',
  173. $(dpkg --search @(path_search_pattern)),
  174. flags=re.MULTILINE,
  175. )
  176. def dpkg_welse(cmd):
  177. pkg_name, cmd_path = dpkg_which(cmd)
  178. return dpkg_listfiles(pkg_name)
  179. def dpkg_which(cmd):
  180. cmd_path = shutil.which(cmd)
  181. assert cmd_path, 'cmd {!r} not found'.format(cmd)
  182. matches = dpkg_search(cmd_path)
  183. assert len(matches) != 0, '{!r} not installed via dpkg'.format(cmd_path)
  184. assert len(matches) == 1
  185. return matches[0]
  186. @contextlib.contextmanager
  187. def encfs_mount(root_dir_path, mount_point_path, extpass=None):
  188. mount_arg_patterns = ['encfs', root_dir_path, mount_point_path]
  189. if extpass:
  190. mount_arg_patterns.extend(['--extpass', shlex_join(extpass)])
  191. with fuse_mount(mount_arg_patterns=mount_arg_patterns,
  192. mount_point_path=mount_point_path):
  193. yield mount_point_path
  194. @contextlib.contextmanager
  195. def fuse_mount(mount_arg_patterns, mount_point_path):
  196. import shlex
  197. mount_args = [a.format(mp=shlex.quote(mount_point_path))
  198. for a in mount_arg_patterns]
  199. sys.stderr.write('{}\n'.format(shlex_join(mount_args)))
  200. subprocess.check_call(mount_args)
  201. try:
  202. yield mount_point_path
  203. finally:
  204. umount_args = ['fusermount', '-u', '-z', mount_point_path]
  205. sys.stderr.write('{}\n'.format(shlex_join(umount_args)))
  206. subprocess.check_call(umount_args)
  207. def gpg_decrypt(path, verify=False):
  208. import gpg
  209. with gpg.Context() as gpg_ctx:
  210. with open(path, 'rb') as f:
  211. data, decrypt_result, verify_result = gpg_ctx.decrypt(f, verify=verify)
  212. return data
  213. def locate(*patterns, match_all=True, ignore_case=True):
  214. params = []
  215. if match_all:
  216. params.insert(0, '--all')
  217. if ignore_case:
  218. params.insert(0, '--ignore-case')
  219. return $(locate @(params) -- @(patterns)).split('\n')[:-1]
  220. def os_read_non_blocking(fd, buffer_size_bytes=8*1024, timeout_seconds=0.1):
  221. import select
  222. if fd in select.select([fd], [], [], timeout_seconds)[0]:
  223. return os.read(fd, buffer_size_bytes)
  224. else:
  225. return None
  226. def shlex_join(params):
  227. import shlex
  228. assert isinstance(params, list) or isinstance(params, tuple), params
  229. return ' '.join(shlex.quote(p) for p in params)
  230. def timestamp_now_utc():
  231. return dt.datetime.utcnow().replace(tzinfo=dt.timezone.utc)
  232. def timestamp_now_local():
  233. # if called without tz argument astimezone() assumes
  234. # the system local timezone for the target timezone
  235. return timestamp_now_utc().astimezone()
  236. def timestamp_iso_local():
  237. # if called without tz argument astimezone() assumes
  238. # the system local timezone for the target timezone
  239. return timestamp_now_local().strftime('%Y%m%dT%H%M%S%z')
  240. def yaml_load(path):
  241. import yaml
  242. with open(path, 'r') as f:
  243. return yaml.load(f.read())
  244. def yaml_write(path, data):
  245. import yaml
  246. with open(path, 'w') as f:
  247. f.write(yaml.dump(data, default_flow_style=False))
  248. aliases['d'] = ['sudo', 'docker']
  249. aliases['dpkg-welse'] = lambda args: '\n'.join(dpkg_welse(args[0]))
  250. aliases['dpkg-which'] = lambda args: '\t'.join(dpkg_which(args[0]))
  251. aliases['g'] = ['git']
  252. aliases['ll'] = ['ls', '-l', '--all', '--indicator-style=slash',
  253. '--human-readable', '--time-style=long-iso', '--color=auto']
  254. if shutil.which('startx') and $(tty).rstrip() == '/dev/tty1':
  255. startx
  256. # vim: filetype=python