.lib/sh/stubexec.sh

Thu, 18 May 2023 01:49:15 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Thu, 18 May 2023 01:49:15 -0500
changeset 1116
2d8f07b212e9
parent 1115
15ca9da8cd59
child 1119
84cd2286f0bf
permissions
-rw-r--r--

add neo-tree

cache="${XDG_CACHE_HOME:-$HOME/.cache}/stubexec"

stubexec() {
  local real_bin="$(realbin "$0")"
  if [ ! -x "$real_bin" ] || age_check $0; then
    try_nix "$@" ||
      try_install_callback
    touch_checktime "$0"
    stubexec "$@"
  fi
  exec "$real_bin" "$@"
}

db() {
  mkdir -p "$cache"
  kv "$cache/db" "$@"
}

touch_checktime() {
  db touch "$(basename $1)"
}

age_check() {
  db age_days_gt "$(basename $1)" "${age_limit:-90}"
}

realpath() {
  local dir="$(dirname -- "$1")"
  local file="$(basename -- "$1")"
  (cd "$dir" 2>/dev/null && printf '%s/%s\n' "$(pwd -P)" "$file")
}

shim_filter() {
  local binpath=''
  while read binpath; do
    case "$binpath" in
      */.plenv/shims/*)
        plenv which $1 >/dev/null 2>&1 || continue
        ;;
      */.asdf/shims/*)
        asdf which $1 >/dev/null 2>&1 || continue
        ;;
    esac
    echo "$binpath"
  done
}

realbin() {
  local bn="$(basename $1)"
  which -a "$bn" |
    grep -v "$(realpath $1)" |
    shim_filter "$bn" |
    head -n 1
}

has() {
  type "$1" >/dev/null 2>&1
}

try_nix() {
  [ "${nix_ref:-}" ] && has nix || return 1

  local installed_slot="$(
    nix profile list | perl -anE 'BEGIN { $m = shift =~ s/#/#.+/r } say $F[0] if $F[1] =~ $m' "$nix_ref"
  )"
  if [ "$installed_slot" ]; then
    nix profile upgrade "$installed_slot"
  else
    nix profile install "$nix_ref"
  fi
}

try_install_callback() {
  install_it
}

bina_install() {
  local github_repo="$1"
  mkdir -p ~/.local/bin
  cd ~/.local/bin
  curl -fsSL "https://bina.egoist.dev/${github_repo}?dir=." | sh
  cd -
}

stubexec "$@"

mercurial