Improve lsp management scripts

pull/2/head
Ensar Sarajčić 2021-10-19 17:21:57 +02:00
parent 803fffce9b
commit e040958ca0
2 changed files with 405 additions and 89 deletions

401
symlinks/bin/lsp 100755
View File

@ -0,0 +1,401 @@
#!/usr/bin/env bash
set -e
echov () {
if [ $VERBOSE -eq 1 ]; then
echo "$@"
fi
}
usage () {
case $1 in
install)
usage_install; exit 0 ;;
uninstall)
usage_uninstal; exit 0 ;;
status)
usage_status; exit 0 ;;
esac
if [ ! -z "$1" ]; then
echo -e "Unknown command: $1 \n"
fi
echo "Basic LSP (Language Server Protocol) manager."
echo "Manages installations of language servers."
echo -e "\nUsage: lsp COMMAND [options] [arguments] \n"
echo "Commands:"
echo " install - installs a new language server (or a new version of already installed one)"
echo " status - prints status of servers installed (if server name is passed, prints status of that server)"
echo " uninstall - uninstalls a language server"
echo ""
echo "Options:"
echo " -h --help - prints this help message (if one of commands is passed, prints help message for that command)"
echo " -v --verbose - enables verbose logging"
if [ ! -z "$1" ]; then
exit 1
fi
}
usage_install () {
echo "LSP Install"
echo "Installs a new language server. If language server is already installed, this overwrites that installation."
echo -e "\nUsage: lsp install [options] <server> [<version>] \n"
echo "Arguments:"
echo " server - name of server to install ('status --all' can be used to get a list of all)"
echo " version - optional argument representing version of server (otherwise default is used)"
echov " - version is hardcoded and could be outdated"
echo ""
echo "Options:"
echo " -h --help - prints this help message"
echo " -v --verbose - enables verbose logging"
echov "Examples:"
echov " > lsp install jdtls"
echov ""
echov " > lsp install jdtls 1.4.0"
}
usage_uninstall () {
echo "LSP Uninstall"
echo "Uninstalls a language server. Silently fails if server is not present."
echo -e "\nUsage: lsp uninstall [options] <server> \n"
echo "Arguments:"
echo " server - name of server to uninstall ('status' can be used to get a list of installed servers)"
echo ""
echo "Options:"
echo " -h --help - prints this help message"
echo " -v --verbose - enables verbose logging"
echov "Examples:"
echov " > lsp uninstall jdtls"
}
usage_status () {
echo "LSP Status"
echo "Prints status of installed servers"
echo -e "\nUsage: lsp status [options] [<server>] \n"
echo "Arguments:"
echo " server - name of server or language to show status for"
echov " - if it does not exist, this tool tries to look for it in every language listed"
echo ""
echo "Options:"
echo " -h --help - prints this help message"
echo " -v --verbose - enables verbose logging"
echov ""
echov "Examples:"
echov " > lsp status java "
echov " Language java:"
echov " Server google-java-format (UNKNOWN):"
echov " Installed: true"
echov " Version: UNKNOWN"
echov " Location: /Users/ensar.sarajcic/lsp/java/google-java-format"
echov " On path: false"
echov ""
echov " > lsp status java --all "
echov " Language java:"
echov " Server google-java-format (UNKNOWN):"
echov " Installed: true"
echov " Version: UNKNOWN"
echov " Location: /Users/ensar.sarajcic/lsp/java/google-java-format"
echov " On path: false"
echov ""
echov " Server jdtls:"
echov " Installed: false"
}
POSITIONAL=()
HELP=0
VERBOSE=0
ALL=0
while [[ $# -gt 0 ]]; do
key="$1"
case $key in
-h|--help)
HELP=1
shift # past argument
;;
-v|--verbose)
VERBOSE=1
shift # past argument
;;
-a|--all)
ALL=1
shift # past argument
;;
*) # unknown option
POSITIONAL+=("$1") # save it in an array for later
shift # past argument
;;
esac
done
COMMAND="${POSITIONAL[0]}"
echov "Detected command: $COMMAND"
if [ $HELP -eq 1 ]; then
usage $COMMAND
exit 0
fi
UNAME=$(sh -c 'uname 2>/dev/null || echo Unknown')
if [[ "$UNAME" == "Windows_NT" ]]; then
UNAME="Windows"
fi
echov "Detected host: $UNAME"
SERVER="${POSITIONAL[1]}"
VERSION="${POSITIONAL[2]}"
echov "Detected server: $SERVER"
echov "Detected version: $VERSION"
declare -A SUPPORTED_SERVERS=(
["java"]="jdtls"
["dotnet"]="omnisharp"
["haskell"]="hls"
["solidity"]="solang"
["xml"]="lemminx"
)
install () {
SERVER=$1
VERSION=$2
case $SERVER in
jdtls)
if [ -z "$VERSION" ]; then
VERSION="1.4.0"
fi
FILE_NAME=$(curl https://download.eclipse.org/jdtls/milestones/$VERSION/latest.txt)
wget -O - https://download.eclipse.org/jdtls/milestones/$VERSION/$FILE_NAME > /tmp/jdtls.tar.gz
mkdir -p $HOME/lsp/java/jdtls
tar -xf /tmp/jdtls.tar.gz -C $HOME/lsp/java/jdtls
;;
omnisharp)
if [ -z "$VERSION" ]; then
VERSION="v1.37.16"
fi
case $UNAME in
Linux)
FILE_NAME="omnisharp-linux-x64.tar.gz"
;;
Darwin)
FILE_NAME="omnisharp-osx.tar.gz"
;;
esac
wget -O - https://github.com/OmniSharp/omnisharp-roslyn/releases/download/$VERSION/$FILE_NAME > /tmp/omnisharp.tar.gz
mkdir -p $HOME/lsp/dotnet/omnisharp
tar -xf /tmp/omnisharp.tar.gz -C $HOME/lsp/dotnet/omnisharp
;;
hls)
if [ -z "$VERSION" ]; then
VERSION="1.4.0"
fi
case $UNAME in
Linux)
FILE_NAME="haskell-language-server-Linux-${VERSION}.tar.gz"
;;
Darwin)
FILE_NAME="haskell-language-server-macOS-${VERSION}.tar.gz"
;;
esac
wget -O - https://github.com/haskell/haskell-language-server/releases/download/$VERSION/$FILE_NAME > /tmp/hls.tar.gz
mkdir -p $HOME/lsp/haskell/hls
tar -xf /tmp/hls.tar.gz -C $HOME/lsp/haskell/hls
chmod +x $HOME/lsp/haskell/hls/*
;;
solang)
if [ -z "$VERSION" ]; then
VERSION="v0.1.8"
fi
case $UNAME in
Linux)
FILE_NAME="solang-linux"
;;
Windows)
FILE_NAME="solang.exe"
;;
Darwin)
FILE_NAME="solang-mac-intel"
;;
esac
mkdir -p $HOME/lsp/solidity/solang
wget -O - https://github.com/hyperledger-labs/solang/releases/download/$VERSION/$FILE_NAME > $HOME/lsp/solidity/solang/solang
chmod +x $HOME/lsp/solidity/solang/solang
;;
lemminx)
if [ -z "$VERSION" ]; then
VERSION="0.18.0-400"
fi
case $UNAME in
Linux)
FILE_NAME="lemminx-linux.zip"
;;
Windows)
FILE_NAME="lemminx-win32.zip"
;;
Darwin)
FILE_NAME="lemminx-osx-x86_64.zip"
;;
esac
mkdir -p $HOME/lsp/xml/lemminx
wget -O - https://download.jboss.org/jbosstools/vscode/stable/lemminx-binary/$VERSION/$FILE_NAME > /tmp/lemminx-download.zip
unzip -p /tmp/lemminx-download.zip > $HOME/lsp/xml/lemminx/lemminx
chmod +x $HOME/lsp/xml/lemminx/lemminx
;;
*)
echo "Unknown server: $SERVER"
echo "Run 'lsp status --all' for a list of available servers"
exit 1
;;
esac
echo "$SERVER $VERSION" >> "$MY_CONFIG_CACHE_DIR/lspstatus"
echo "" >> "$MY_CONFIG_CACHE_DIR/lspstatus"
tac "$MY_CONFIG_CACHE_DIR/lspstatus" | awk 'BEGIN { FS = " " } ; {print $2 " " $1}' | uniq -f 1 > /tmp/newlspstatus
cat /tmp/newlspstatus | awk 'BEGIN { FS = " " } ; {print $2 " " $1}' > "$MY_CONFIG_CACHE_DIR/lspstatus"
rm /tmp/newlspstatus
echov "Successfully installed $SERVER, version $VERSION"
}
uninstall () {
SERVER=$1
case $SERVER in
jdtls)
rm -rf $HOME/lsp/java/jdtls
;;
omnisharp)
rm -rf $HOME/lsp/dotnet/omnisharp
;;
hls)
rm -rf $HOME/lsp/haskell/hls
;;
solang)
rm -rf $HOME/lsp/solidity/solang
;;
lemminx)
rm -rf $HOME/lsp/xml/lemminx
;;
*)
echo "Unknown server: $SERVER"
echo "Run 'lsp status' for a list of installed servers"
exit 1
;;
esac
sed -i -e "/$SERVER/d" "$MY_CONFIG_CACHE_DIR/lspstatus"
echov "Successfully removed $SERVER"
}
status () {
SERVER=$1
HAD_UNKNOWN=0
TREAT_SERVER_AS_LANGUAGE=0
BOLDSTART="\033[1m"
ERRORSTART="\033[91m"
INFOSTART="\033[34m"
MODEND="\033[0m"
LANGUAGES=$(ls $HOME/lsp)
echov "Found languages: $LANGUAGES"
if [ $ALL -eq 1 ]; then
echov "Adding all supported languages"
LANGUAGES+=" java dotnet haskell solidity xml"
LANGUAGES=$(echo $LANGUAGES | tr ' ' '\n' | sort | uniq -)
fi
echov "Checking languages: $LANGUAGES"
if [ ! -z "$SERVER" ]; then
EXPECTED_SERVERS="${SUPPORTED_SERVERS[$SERVER]}"
if [ ! -z "$EXPECTED_SERVERS" ]; then
echov "Passed server name: $SERVER was recognized as a language"
TREAT_SERVER_AS_LANGUAGE=1
LANGUAGES="$SERVER"
fi
fi
echov ""
for lang in $LANGUAGES; do
if [ -d "$HOME/lsp/$lang" ]; then
INSTALLED_SERVERS=$(ls $HOME/lsp/$lang)
else
INSTALLED_SERVERS=""
fi
SERVERS="$INSTALLED_SERVERS"
EXPECTED_SERVERS="${SUPPORTED_SERVERS[$lang]}"
if [ $ALL -eq 1 ]; then
SERVERS+=" $EXPECTED_SERVERS"
SERVERS=$(echo $SERVERS | tr ' ' '\n' | sort | uniq -)
fi
if [ -z "$EXPECTED_SERVERS" ]; then
HAD_UNKNOWN=1
echo -e "Language $BOLDSTART${lang}$MODEND $ERRORSTART(UNKNOWN)$MODEND:"
else
echo -e "Language $BOLDSTART${lang}$MODEND:"
fi
if [ ! -z "$SERVER" ]; then
if [ $TREAT_SERVER_AS_LANGUAGE -eq 0 ]; then
if [ ! -z "$INSTALLED_SERVERS" ]; then
SERVERS="$SERVER"
fi
fi
fi
for server in $SERVERS; do
VERSION="UNKNOWN"
for available_server in "${EXPECTED_SERVERS[@]}"; do
if [[ $server = "$available_server" ]]; then
VERSION=$(get_version $server)
break
fi
done
if [ "$VERSION" == "UNKNOWN" ]; then
echo -e " Server $BOLDSTART${server}$MODEND $ERRORSTART(UNKNOWN)$MODEND:"
HAD_UNKNOWN=1
else
echo -e " Server $BOLDSTART${server}$MODEND:"
fi
INSTALLED=0
for installed_server in "${INSTALLED_SERVERS[@]}"; do
if [[ $server = "$installed_server" ]]; then
INSTALLED=1
if [ -z "$VERSION" ]; then
VERSION="UNKNOWN"
fi
echo -e " Installed: ${INFOSTART}true${MODEND}"
echo " Version: $VERSION"
echo " Location: $HOME/lsp/$lang/$server"
if [[ ":$PATH:" == *":$HOME/lsp/$lang/$server:"* ]]; then
echo -e " On path: ${INFOSTART}true${MODEND}"
else
echo " On path: false"
fi
break
fi
done
if [ $INSTALLED -eq 0 ]; then
echo -e " Installed: ${ERRORSTART}false${MODEND}"
fi
echo ""
done
echo ""
done
if [ $HAD_UNKNOWN -eq 1 ]; then
echov "Found unknown servers."
echov "Make sure $HOME/lsp contains only LSP servers and similar tools."
fi
}
get_version () {
SERVER=$1
cat "$MY_CONFIG_CACHE_DIR/lspstatus" | grep "$SERVER" | cut -f 2 -d ' '
}
case $COMMAND in
install)
install $SERVER $VERSION
;;
status)
status $SERVER
;;
uninstall)
uninstall $SERVER
;;
*)
usage $COMMAND; exit 1 ;;
esac

View File

@ -3,92 +3,7 @@
SERVER=$1
VERSION=$2
UNAME=$(sh -c 'uname 2>/dev/null || echo Unknown')
if [[ "$UNAME" == "Windows_NT" ]]; then
UNAME="Windows"
fi
case $SERVER in
jdtls)
if [ -z "$VERSION" ]; then
VERSION="1.4.0"
fi
FILE_NAME=$(curl https://download.eclipse.org/jdtls/milestones/$VERSION/latest.txt)
wget -O - https://download.eclipse.org/jdtls/milestones/$VERSION/$FILE_NAME > /tmp/jdtls.tar.gz
mkdir -p $HOME/lsp/java/jdtls
tar -xf /tmp/jdtls.tar.gz -C $HOME/lsp/java/jdtls
;;
omnisharp)
if [ -z "$VERSION" ]; then
VERSION="v1.37.16"
fi
case $UNAME in
Linux)
FILE_NAME="omnisharp-linux-x64.tar.gz"
;;
Darwin)
FILE_NAME="omnisharp-osx.tar.gz"
;;
esac
wget -O - https://github.com/OmniSharp/omnisharp-roslyn/releases/download/$VERSION/$FILE_NAME > /tmp/omnisharp.tar.gz
mkdir -p $HOME/lsp/dotnet/omnisharp
tar -xf /tmp/omnisharp.tar.gz -C $HOME/lsp/dotnet/omnisharp
;;
hls)
if [ -z "$VERSION" ]; then
VERSION="1.4.0"
fi
case $UNAME in
Linux)
FILE_NAME="haskell-language-server-Linux-${VERSION}.tar.gz"
;;
Darwin)
FILE_NAME="haskell-language-server-macOS-${VERSION}.tar.gz"
;;
esac
wget -O - https://github.com/haskell/haskell-language-server/releases/download/$VERSION/$FILE_NAME > /tmp/hls.tar.gz
mkdir -p $HOME/lsp/haskell/hls
tar -xf /tmp/hls.tar.gz -C $HOME/lsp/haskell/hls
chmod +x $HOME/lsp/haskell/hls/*
;;
solang)
if [ -z "$VERSION" ]; then
VERSION="v0.1.8"
fi
case $UNAME in
Linux)
FILE_NAME="solang-linux"
;;
Windows)
FILE_NAME="solang.exe"
;;
Darwin)
FILE_NAME="solang-mac-intel"
;;
esac
mkdir -p $HOME/lsp/solidity/solang
wget -O - https://github.com/hyperledger-labs/solang/releases/download/$VERSION/$FILE_NAME > $HOME/lsp/solidity/solang/solang
chmod +x $HOME/lsp/solidity/solang/solang
;;
lemminx)
if [ -z "$VERSION" ]; then
VERSION="0.18.0-400"
fi
case $UNAME in
Linux)
FILE_NAME="lemminx-linux.zip"
;;
Windows)
FILE_NAME="lemminx-win32.zip"
;;
Darwin)
FILE_NAME="lemminx-osx-x86_64.zip"
;;
esac
mkdir -p $HOME/lsp/xml/lemminx
wget -O - https://download.jboss.org/jbosstools/vscode/stable/lemminx-binary/$VERSION/$FILE_NAME > /tmp/lemminx-download.zip
unzip -p /tmp/lemminx-download.zip > $HOME/lsp/xml/lemminx/lemminx
chmod +x $HOME/lsp/xml/lemminx/lemminx
;;
esac
echo "lspinstall is deprecated!"
echo "calling 'lsp install $SERVER $VERSION' instead"
echo ""
lsp install $SERVER $VERSION