mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-06-09 17:12:01 +00:00
* fix: Solving the problem of "make dev" failing to start in Windows environment * fix: revert the change to the startup_config and fix the lint errors * fix: Address Copilot review feedback - Validate wait-for-port input and avoid PowerShell port interpolation - Require Python 3 in serve.sh launcher detection - Keep Windows event loop policy setup in sitecustomize only - Clarify sitecustomize process-wide backend behavior
75 lines
2.1 KiB
Bash
Executable File
75 lines
2.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# wait-for-port.sh - Wait for a TCP port to become available
|
|
#
|
|
# Usage: ./scripts/wait-for-port.sh <port> [timeout_seconds] [service_name]
|
|
#
|
|
# Arguments:
|
|
# port - TCP port to wait for (required)
|
|
# timeout_seconds - Max seconds to wait (default: 60)
|
|
# service_name - Display name for messages (default: "Service")
|
|
#
|
|
# Exit codes:
|
|
# 0 - Port is listening
|
|
# 1 - Timed out waiting
|
|
|
|
PORT="${1:?Usage: wait-for-port.sh <port> [timeout] [service_name]}"
|
|
TIMEOUT="${2:-60}"
|
|
SERVICE="${3:-Service}"
|
|
|
|
case "$PORT" in
|
|
''|*[!0-9]*)
|
|
echo "Port must be a numeric TCP port: $PORT" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
if [ "$PORT" -lt 1 ] || [ "$PORT" -gt 65535 ]; then
|
|
echo "Port must be between 1 and 65535: $PORT" >&2
|
|
exit 1
|
|
fi
|
|
|
|
elapsed=0
|
|
interval=1
|
|
|
|
is_port_listening() {
|
|
if command -v powershell.exe >/dev/null 2>&1; then
|
|
if WAIT_FOR_PORT_PORT="$PORT" powershell.exe -NoProfile -ExecutionPolicy Bypass -Command "\$ErrorActionPreference='SilentlyContinue'; \$Port = [int]\$env:WAIT_FOR_PORT_PORT; if (Get-NetTCPConnection -LocalPort \$Port -State Listen) { exit 0 } else { exit 1 }" >/dev/null 2>&1; then
|
|
return 0
|
|
fi
|
|
fi
|
|
|
|
if command -v lsof >/dev/null 2>&1; then
|
|
if lsof -nP -iTCP:"$PORT" -sTCP:LISTEN -t >/dev/null 2>&1; then
|
|
return 0
|
|
fi
|
|
fi
|
|
|
|
if command -v ss >/dev/null 2>&1; then
|
|
if ss -ltn "( sport = :$PORT )" 2>/dev/null | tail -n +2 | grep -q .; then
|
|
return 0
|
|
fi
|
|
fi
|
|
|
|
if command -v netstat >/dev/null 2>&1; then
|
|
if netstat -ltn 2>/dev/null | awk '{print $4}' | grep -Eq "(^|[.:])${PORT}$"; then
|
|
return 0
|
|
fi
|
|
fi
|
|
|
|
return 1
|
|
}
|
|
|
|
while ! is_port_listening; do
|
|
if [ "$elapsed" -ge "$TIMEOUT" ]; then
|
|
echo ""
|
|
echo "✗ $SERVICE failed to start on port $PORT after ${TIMEOUT}s"
|
|
exit 1
|
|
fi
|
|
printf "\r Waiting for %s on port %s... %ds" "$SERVICE" "$PORT" "$elapsed"
|
|
sleep "$interval"
|
|
elapsed=$((elapsed + interval))
|
|
done
|
|
|
|
printf "\r %-60s\r" "" # clear the waiting line
|