mirror of
https://github.com/lukaszraczylo/filepuff-mcp.git
synced 2026-06-09 22:53:44 +00:00
feat(parser): add Elixir language support
- [x] Add Elixir documentation extraction (@doc and @moduledoc attributes) - [x] Add Elixir symbol extraction (modules, functions, macros, structs, protocols) - [x] Add tree-sitter Elixir language parser integration - [x] Add Elixir language detection for .ex and .exs file extensions - [x] Add Elixir symbol extraction tests - [x] Update language support table in README - [x] Improve install script with package manager detection and LSP installation - [x] Fix shell script portability (replace echo -e with printf) - [x] Fix checksum verification in install script for macOS/Linux compatibility
This commit is contained in:
+180
-7
@@ -20,15 +20,15 @@ INSTALL_DIR="${INSTALL_DIR:-$HOME/.local/bin}"
|
||||
|
||||
# Functions
|
||||
print_info() {
|
||||
echo -e "${GREEN}[INFO]${NC} $1"
|
||||
printf "${GREEN}[INFO]${NC} %s\n" "$1"
|
||||
}
|
||||
|
||||
print_warn() {
|
||||
echo -e "${YELLOW}[WARN]${NC} $1"
|
||||
printf "${YELLOW}[WARN]${NC} %s\n" "$1"
|
||||
}
|
||||
|
||||
print_error() {
|
||||
echo -e "${RED}[ERROR]${NC} $1" >&2
|
||||
printf "${RED}[ERROR]${NC} %s\n" "$1" >&2
|
||||
}
|
||||
|
||||
detect_platform() {
|
||||
@@ -86,6 +86,108 @@ check_dependencies() {
|
||||
fi
|
||||
}
|
||||
|
||||
detect_package_manager() {
|
||||
if command -v brew &> /dev/null; then
|
||||
echo "brew"
|
||||
elif command -v apt-get &> /dev/null; then
|
||||
echo "apt"
|
||||
elif command -v yum &> /dev/null; then
|
||||
echo "yum"
|
||||
elif command -v pacman &> /dev/null; then
|
||||
echo "pacman"
|
||||
elif command -v apk &> /dev/null; then
|
||||
echo "apk"
|
||||
else
|
||||
echo "unknown"
|
||||
fi
|
||||
}
|
||||
|
||||
install_prerequisites() {
|
||||
local pkg_mgr="$1"
|
||||
local install_lsp="${2:-false}"
|
||||
|
||||
print_info "Checking prerequisites..."
|
||||
|
||||
# Check if ripgrep is installed
|
||||
if ! command -v rg &> /dev/null; then
|
||||
print_warn "ripgrep not found - required for file search functionality"
|
||||
|
||||
case "$pkg_mgr" in
|
||||
brew)
|
||||
print_info "Installing ripgrep via Homebrew..."
|
||||
brew install ripgrep
|
||||
;;
|
||||
apt)
|
||||
print_info "Installing ripgrep via apt..."
|
||||
sudo apt-get update && sudo apt-get install -y ripgrep
|
||||
;;
|
||||
yum)
|
||||
print_info "Installing ripgrep via yum..."
|
||||
sudo yum install -y ripgrep
|
||||
;;
|
||||
pacman)
|
||||
print_info "Installing ripgrep via pacman..."
|
||||
sudo pacman -S --noconfirm ripgrep
|
||||
;;
|
||||
apk)
|
||||
print_info "Installing ripgrep via apk..."
|
||||
sudo apk add --no-cache ripgrep
|
||||
;;
|
||||
unknown)
|
||||
print_error "Could not detect package manager"
|
||||
print_error "Please install ripgrep manually: https://github.com/BurntSushi/ripgrep"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
else
|
||||
print_info "✓ ripgrep is already installed"
|
||||
fi
|
||||
|
||||
if [ "$install_lsp" = "true" ]; then
|
||||
print_info "Installing LSP servers for enhanced IDE features..."
|
||||
|
||||
# Install gopls (Go LSP)
|
||||
if command -v go &> /dev/null && ! command -v gopls &> /dev/null; then
|
||||
print_info "Installing gopls (Go language server)..."
|
||||
go install golang.org/x/tools/gopls@latest
|
||||
fi
|
||||
|
||||
# Install typescript-language-server (TypeScript/JavaScript)
|
||||
if command -v npm &> /dev/null && ! command -v typescript-language-server &> /dev/null; then
|
||||
print_info "Installing typescript-language-server..."
|
||||
npm install -g typescript-language-server typescript
|
||||
fi
|
||||
|
||||
# Install pylsp (Python LSP)
|
||||
if command -v pip3 &> /dev/null && ! python3 -c "import pylsp" 2>/dev/null; then
|
||||
print_info "Installing python-lsp-server..."
|
||||
pip3 install python-lsp-server
|
||||
fi
|
||||
|
||||
# Install clangd (C/C++)
|
||||
if ! command -v clangd &> /dev/null; then
|
||||
case "$pkg_mgr" in
|
||||
brew)
|
||||
print_info "Installing clangd via Homebrew..."
|
||||
brew install llvm
|
||||
;;
|
||||
apt)
|
||||
print_info "Installing clangd via apt..."
|
||||
sudo apt-get install -y clangd
|
||||
;;
|
||||
yum)
|
||||
print_info "Installing clangd via yum..."
|
||||
sudo yum install -y clang-tools-extra
|
||||
;;
|
||||
pacman)
|
||||
print_info "Installing clangd via pacman..."
|
||||
sudo pacman -S --noconfirm clang
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
get_latest_version() {
|
||||
local version
|
||||
version=$(curl -sSf "https://api.github.com/repos/${REPO}/releases/latest" | grep '"tag_name"' | cut -d'"' -f4)
|
||||
@@ -125,11 +227,34 @@ download_and_install() {
|
||||
else
|
||||
print_info "Verifying checksum..."
|
||||
cd "$tmpdir"
|
||||
if grep "$archive_name" checksums.txt | sha256sum -c --status; then
|
||||
print_info "Checksum verification passed"
|
||||
|
||||
# Extract expected checksum for our archive
|
||||
local expected_checksum
|
||||
expected_checksum=$(grep "$archive_name" checksums.txt | awk '{print $1}')
|
||||
|
||||
if [ -z "$expected_checksum" ]; then
|
||||
print_warn "Checksum not found for $archive_name, skipping verification"
|
||||
else
|
||||
print_error "Checksum verification failed"
|
||||
exit 1
|
||||
# Calculate actual checksum (use shasum on macOS, sha256sum on Linux)
|
||||
local actual_checksum
|
||||
if command -v sha256sum &> /dev/null; then
|
||||
actual_checksum=$(sha256sum "$archive_name" | awk '{print $1}')
|
||||
elif command -v shasum &> /dev/null; then
|
||||
actual_checksum=$(shasum -a 256 "$archive_name" | awk '{print $1}')
|
||||
else
|
||||
print_warn "No checksum utility found, skipping verification"
|
||||
cd - > /dev/null
|
||||
return
|
||||
fi
|
||||
|
||||
if [ "$expected_checksum" = "$actual_checksum" ]; then
|
||||
print_info "Checksum verification passed"
|
||||
else
|
||||
print_error "Checksum verification failed"
|
||||
print_error "Expected: $expected_checksum"
|
||||
print_error "Actual: $actual_checksum"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
cd - > /dev/null
|
||||
fi
|
||||
@@ -183,6 +308,37 @@ main() {
|
||||
print_info "MCP Filepuff Installation Script"
|
||||
echo ""
|
||||
|
||||
# Parse command line arguments
|
||||
local install_lsp="false"
|
||||
local skip_prereqs="false"
|
||||
|
||||
while [[ $# -gt 0 ]]; do
|
||||
case "$1" in
|
||||
--with-lsp)
|
||||
install_lsp="true"
|
||||
shift
|
||||
;;
|
||||
--skip-prereqs)
|
||||
skip_prereqs="true"
|
||||
shift
|
||||
;;
|
||||
--help)
|
||||
echo "Usage: install.sh [OPTIONS]"
|
||||
echo ""
|
||||
echo "Options:"
|
||||
echo " --with-lsp Install LSP servers (gopls, typescript-language-server, pylsp, clangd)"
|
||||
echo " --skip-prereqs Skip prerequisite installation (ripgrep, LSP servers)"
|
||||
echo " --help Show this help message"
|
||||
exit 0
|
||||
;;
|
||||
*)
|
||||
print_error "Unknown option: $1"
|
||||
print_error "Use --help for usage information"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
# Check dependencies
|
||||
check_dependencies
|
||||
|
||||
@@ -191,6 +347,18 @@ main() {
|
||||
platform=$(detect_platform)
|
||||
print_info "Detected platform: $platform"
|
||||
|
||||
# Detect package manager
|
||||
local pkg_mgr
|
||||
pkg_mgr=$(detect_package_manager)
|
||||
print_info "Detected package manager: $pkg_mgr"
|
||||
echo ""
|
||||
|
||||
# Install prerequisites unless skipped
|
||||
if [ "$skip_prereqs" != "true" ]; then
|
||||
install_prerequisites "$pkg_mgr" "$install_lsp"
|
||||
echo ""
|
||||
fi
|
||||
|
||||
# Get latest version
|
||||
local version
|
||||
version=$(get_latest_version)
|
||||
@@ -209,6 +377,11 @@ main() {
|
||||
echo ""
|
||||
|
||||
print_info "To get started, run: $BINARY_NAME --help"
|
||||
|
||||
if [ "$install_lsp" != "true" ]; then
|
||||
echo ""
|
||||
print_info "Tip: Run with --with-lsp to install LSP servers for enhanced IDE features"
|
||||
fi
|
||||
}
|
||||
|
||||
# Run main function
|
||||
|
||||
Reference in New Issue
Block a user