Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
650431e3d1 | ||
|
|
412c69cc36 | ||
|
|
813a74f3ef | ||
|
|
0d32e6105a | ||
|
|
0cf8de3dda | ||
|
|
4f1b24c1c3 | ||
|
|
5c76bc87ba | ||
|
|
9a574ed497 | ||
|
|
2d052cb832 | ||
|
|
1e5f45dcc9 | ||
|
|
c9284d6222 | ||
|
|
2824fafc32 | ||
|
|
974abed278 | ||
|
|
47af792d62 | ||
|
|
0c7dba0ef1 | ||
|
|
f1eb30cea0 | ||
|
|
a25a2d16b6 | ||
|
|
a88b6cf98d | ||
|
|
41e50322be | ||
|
|
f1db46ecbe | ||
|
|
c0904e6aaa | ||
|
|
1d9492aff5 | ||
|
|
9416fa6518 | ||
|
|
360e2f3af0 | ||
|
|
0119c7cb0e | ||
|
|
daf2990b15 | ||
|
|
96fe5ecb8f | ||
|
|
f103e9e065 | ||
|
|
6a1052d437 | ||
|
|
7e028b09d4 | ||
|
|
f6e801defc | ||
|
|
90f2088265 | ||
|
|
0d0f218d52 | ||
|
|
01f2c66f48 | ||
|
|
8fda3fa2da | ||
|
|
69f40e7d36 | ||
|
|
bc918e7664 | ||
|
|
aba3930417 | ||
|
|
4476f41aa6 | ||
|
|
5122683761 | ||
|
|
924835dd55 | ||
|
|
9fd7b02522 | ||
|
|
8e871a3ce6 | ||
|
|
df29546ff9 | ||
|
|
bbd6fe3f5f | ||
|
|
7e87adfc8d | ||
|
|
87729df01f | ||
|
|
18ad29b501 | ||
|
|
61e28645f1 | ||
|
|
a3bc92ddb5 | ||
|
|
1874d23716 | ||
|
|
c4ec2fd2ef | ||
|
|
ced6523c00 | ||
|
|
2e8a0a164f | ||
|
|
c4713dccbd | ||
|
|
981e94efc3 | ||
|
|
434cb67372 | ||
|
|
10e8139a32 | ||
|
|
f9e465bed5 | ||
|
|
7b13d42930 |
+211
-13
@@ -6,19 +6,123 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Build APK
|
- name: Build Android APK
|
||||||
env:
|
env:
|
||||||
CLONE_TOKEN: ${{ secrets.TMUX_GITEA_TOKEN }}
|
CLONE_TOKEN: ${{ secrets.TMUX_GITEA_TOKEN }}
|
||||||
|
ANDROID_KEYSTORE_BASE64: ${{ secrets.ANDROID_KEYSTORE_BASE64 }}
|
||||||
|
ANDROID_KEYSTORE_PASSWORD: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }}
|
||||||
|
ANDROID_KEY_ALIAS: ${{ secrets.ANDROID_KEY_ALIAS }}
|
||||||
|
ANDROID_KEY_PASSWORD: ${{ secrets.ANDROID_KEY_PASSWORD }}
|
||||||
run: |
|
run: |
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
|
install_packages() {
|
||||||
|
if command -v apt-get >/dev/null 2>&1; then
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y "$@"
|
||||||
|
elif command -v apk >/dev/null 2>&1; then
|
||||||
|
apk add --no-cache "$@"
|
||||||
|
elif command -v dnf >/dev/null 2>&1; then
|
||||||
|
dnf install -y "$@"
|
||||||
|
else
|
||||||
|
echo "No supported package manager found." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
if ! command -v git >/dev/null 2>&1 || ! command -v curl >/dev/null 2>&1 || ! command -v unzip >/dev/null 2>&1; then
|
if ! command -v git >/dev/null 2>&1 || ! command -v curl >/dev/null 2>&1 || ! command -v unzip >/dev/null 2>&1; then
|
||||||
apt-get update
|
install_packages git curl unzip
|
||||||
apt-get install -y git curl unzip
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
REF="${GITHUB_REF:-}"
|
||||||
|
REF_NAME="${GITHUB_REF_NAME:-}"
|
||||||
|
if [ -z "${REF_NAME}" ]; then
|
||||||
|
REF_NAME="${REF##*/}"
|
||||||
|
fi
|
||||||
|
if [ "${REF#refs/tags/v}" != "${REF}" ]; then
|
||||||
|
if [ -z "${CLONE_TOKEN:-}" ]; then
|
||||||
|
echo "Gitea release publishing requires TMUX_GITEA_TOKEN." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
TAG="${REF_NAME}"
|
||||||
|
VERSION_NAME="${TAG#v}"
|
||||||
|
MAJOR="$(printf '%s' "${VERSION_NAME}" | cut -d. -f1)"
|
||||||
|
MINOR="$(printf '%s' "${VERSION_NAME}" | cut -d. -f2)"
|
||||||
|
PATCH="$(printf '%s' "${VERSION_NAME}" | cut -d. -f3)"
|
||||||
|
VERSION_CODE=$((MAJOR * 1000000 + MINOR * 1000 + PATCH))
|
||||||
|
GITHUB_APK_URL="https://github.com/neatstudio/tmux-browser-android/releases/download/${TAG}/tmux-android.apk"
|
||||||
|
|
||||||
|
mkdir -p release
|
||||||
|
ATTEMPT=1
|
||||||
|
while [ "${ATTEMPT}" -le 6 ]; do
|
||||||
|
if curl -fsSL "${GITHUB_APK_URL}" -o release/tmux-android.apk; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
rm -f release/tmux-android.apk
|
||||||
|
echo "Waiting for GitHub release ${TAG} (${ATTEMPT}/6)..."
|
||||||
|
sleep 10
|
||||||
|
ATTEMPT=$((ATTEMPT + 1))
|
||||||
|
done
|
||||||
|
if [ ! -s release/tmux-android.apk ]; then
|
||||||
|
echo "GitHub release APK unavailable for ${TAG}." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
SHA256="$(sha256sum release/tmux-android.apk | cut -d ' ' -f1)"
|
||||||
|
APK_URL="https://gitea.neatcn.com/tmux/tmux-browser-android/releases/download/${TAG}/tmux-android.apk"
|
||||||
|
RELEASE_PAGE_URL="https://gitea.neatcn.com/tmux/tmux-browser-android/releases/tag/${TAG}"
|
||||||
|
cat > release/latest.json << JSON
|
||||||
|
{
|
||||||
|
"versionCode": ${VERSION_CODE},
|
||||||
|
"versionName": "${VERSION_NAME}",
|
||||||
|
"apkUrl": "${APK_URL}",
|
||||||
|
"sha256": "${SHA256}",
|
||||||
|
"releasePageUrl": "${RELEASE_PAGE_URL}",
|
||||||
|
"minSdk": 26
|
||||||
|
}
|
||||||
|
JSON
|
||||||
|
|
||||||
|
API_ROOT="https://gitea.neatcn.com/api/v1/repos/tmux/tmux-browser-android"
|
||||||
|
RELEASE_BODY='{"tag_name":"'"${TAG}"'","target_commitish":"main","name":"tmux Android '"${VERSION_NAME}"'","body":"Android APK for tmux-ui remote testing.","draft":false,"prerelease":false}'
|
||||||
|
if ! curl -fsSL -X POST \
|
||||||
|
-H "Authorization: token ${CLONE_TOKEN}" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-d "${RELEASE_BODY}" \
|
||||||
|
"${API_ROOT}/releases" \
|
||||||
|
-o /tmp/gitea-release.json; then
|
||||||
|
curl -fsSL -H "Authorization: token ${CLONE_TOKEN}" \
|
||||||
|
"${API_ROOT}/releases/tags/${TAG}" \
|
||||||
|
-o /tmp/gitea-release.json
|
||||||
|
fi
|
||||||
|
RELEASE_ID="$(sed -n 's/^{"id":\([0-9][0-9]*\),.*/\1/p' /tmp/gitea-release.json | head -1)"
|
||||||
|
if [ -z "${RELEASE_ID}" ]; then
|
||||||
|
echo "Cannot resolve Gitea release id for ${TAG}." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
curl -fsSL -X POST -H "Authorization: token ${CLONE_TOKEN}" \
|
||||||
|
-F "attachment=@release/tmux-android.apk;type=application/vnd.android.package-archive" \
|
||||||
|
"${API_ROOT}/releases/${RELEASE_ID}/assets?name=tmux-android.apk" \
|
||||||
|
-o /tmp/gitea-apk-asset.json
|
||||||
|
curl -fsSL -X POST -H "Authorization: token ${CLONE_TOKEN}" \
|
||||||
|
-F "attachment=@release/latest.json;type=application/json" \
|
||||||
|
"${API_ROOT}/releases/${RELEASE_ID}/assets?name=latest.json" \
|
||||||
|
-o /tmp/gitea-latest-asset.json
|
||||||
|
echo "Mirrored GitHub release ${TAG} to Gitea."
|
||||||
|
echo "versionCode=${VERSION_CODE}"
|
||||||
|
echo "versionName=${VERSION_NAME}"
|
||||||
|
echo "sha256=${SHA256}"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
if ! command -v java >/dev/null 2>&1; then
|
if ! command -v java >/dev/null 2>&1; then
|
||||||
apt-get update
|
if command -v apk >/dev/null 2>&1; then
|
||||||
apt-get install -y openjdk-17-jdk-headless
|
install_packages openjdk17-jdk
|
||||||
|
elif command -v dnf >/dev/null 2>&1; then
|
||||||
|
install_packages java-17-openjdk-devel
|
||||||
|
else
|
||||||
|
install_packages openjdk-17-jdk-headless
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
java -version
|
java -version
|
||||||
|
|
||||||
@@ -26,8 +130,12 @@ jobs:
|
|||||||
rm -rf "${WORKDIR}"
|
rm -rf "${WORKDIR}"
|
||||||
SERVER_URL="${GITHUB_SERVER_URL:-https://gitea.neatcn.com}"
|
SERVER_URL="${GITHUB_SERVER_URL:-https://gitea.neatcn.com}"
|
||||||
REPOSITORY="${GITHUB_REPOSITORY:-tmux/tmux-browser-android}"
|
REPOSITORY="${GITHUB_REPOSITORY:-tmux/tmux-browser-android}"
|
||||||
AUTH_SERVER_URL="$(printf '%s' "${SERVER_URL}" | sed "s#https://#https://gouki:${CLONE_TOKEN}@#")"
|
if [ -n "${CLONE_TOKEN:-}" ]; then
|
||||||
git clone "${AUTH_SERVER_URL}/${REPOSITORY}.git" "${WORKDIR}"
|
AUTH_SERVER_URL="$(printf '%s' "${SERVER_URL}" | sed "s#https://#https://gouki:${CLONE_TOKEN}@#")"
|
||||||
|
git clone "${AUTH_SERVER_URL}/${REPOSITORY}.git" "${WORKDIR}"
|
||||||
|
else
|
||||||
|
git clone "${SERVER_URL}/${REPOSITORY}.git" "${WORKDIR}"
|
||||||
|
fi
|
||||||
cd "${WORKDIR}"
|
cd "${WORKDIR}"
|
||||||
git checkout "${GITHUB_SHA:-main}"
|
git checkout "${GITHUB_SHA:-main}"
|
||||||
|
|
||||||
@@ -53,15 +161,105 @@ jobs:
|
|||||||
yes | sdkmanager --licenses >/dev/null || true
|
yes | sdkmanager --licenses >/dev/null || true
|
||||||
sdkmanager "platforms;android-35" "build-tools;35.0.0" "platform-tools"
|
sdkmanager "platforms;android-35" "build-tools;35.0.0" "platform-tools"
|
||||||
|
|
||||||
VERSION_NAME="0.1.${GITHUB_RUN_NUMBER:-0}"
|
REF="${GITHUB_REF:-}"
|
||||||
VERSION_CODE=$((2000 + ${GITHUB_RUN_NUMBER:-0}))
|
REF_NAME="${GITHUB_REF_NAME:-}"
|
||||||
gradle :app:assembleDebug \
|
if [ -z "${REF_NAME}" ]; then
|
||||||
|
REF_NAME="${REF##*/}"
|
||||||
|
fi
|
||||||
|
PUBLISH_RELEASE=0
|
||||||
|
if [ "${REF#refs/tags/v}" != "${REF}" ]; then
|
||||||
|
PUBLISH_RELEASE=1
|
||||||
|
VERSION_NAME="${REF_NAME#v}"
|
||||||
|
MAJOR="$(printf '%s' "${VERSION_NAME}" | cut -d. -f1)"
|
||||||
|
MINOR="$(printf '%s' "${VERSION_NAME}" | cut -d. -f2)"
|
||||||
|
PATCH="$(printf '%s' "${VERSION_NAME}" | cut -d. -f3)"
|
||||||
|
VERSION_CODE=$((MAJOR * 1000000 + MINOR * 1000 + PATCH))
|
||||||
|
else
|
||||||
|
VERSION_NAME="0.1.${GITHUB_RUN_NUMBER:-0}"
|
||||||
|
VERSION_CODE=$((3000 + ${GITHUB_RUN_NUMBER:-0}))
|
||||||
|
fi
|
||||||
|
|
||||||
|
SIGNED=false
|
||||||
|
if [ -n "${ANDROID_KEYSTORE_BASE64:-}" ]; then
|
||||||
|
echo "${ANDROID_KEYSTORE_BASE64}" | base64 -d > release.jks
|
||||||
|
{
|
||||||
|
echo "storeFile=release.jks"
|
||||||
|
echo "storePassword=${ANDROID_KEYSTORE_PASSWORD}"
|
||||||
|
echo "keyAlias=${ANDROID_KEY_ALIAS}"
|
||||||
|
echo "keyPassword=${ANDROID_KEY_PASSWORD}"
|
||||||
|
} > signing.properties
|
||||||
|
SIGNED=true
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "${PUBLISH_RELEASE}" = "1" ] && [ "${SIGNED}" != "true" ]; then
|
||||||
|
echo "Gitea release publishing requires ANDROID_KEYSTORE_BASE64 and signing secrets." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if [ "${PUBLISH_RELEASE}" = "1" ] && [ -z "${CLONE_TOKEN:-}" ]; then
|
||||||
|
echo "Gitea release publishing requires TMUX_GITEA_TOKEN." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "${SIGNED}" = "true" ]; then
|
||||||
|
BUILD_TASK=":app:assembleRelease"
|
||||||
|
else
|
||||||
|
BUILD_TASK=":app:assembleDebug"
|
||||||
|
fi
|
||||||
|
gradle "${BUILD_TASK}" \
|
||||||
-PversionCode="${VERSION_CODE}" \
|
-PversionCode="${VERSION_CODE}" \
|
||||||
-PversionName="${VERSION_NAME}" \
|
-PversionName="${VERSION_NAME}" \
|
||||||
-PrepoSlug="neatstudio/tmux-browser-android"
|
-PrepoSlug="neatstudio/tmux-browser-android"
|
||||||
|
|
||||||
mkdir -p release
|
mkdir -p release
|
||||||
APK_PATH="$(find app/build/outputs/apk -name '*.apk' | sort | tail -n 1)"
|
APK_PATH="$(find app/build/outputs/apk -name '*.apk' | sort | tail -n 1)"
|
||||||
cp "${APK_PATH}" release/tmux-android-gitea.apk
|
cp "${APK_PATH}" release/tmux-android.apk
|
||||||
ls -lh release/tmux-android-gitea.apk
|
cp "${APK_PATH}" "release/tmux-android-${VERSION_NAME}.apk"
|
||||||
sha256sum release/tmux-android-gitea.apk
|
SHA256="$(sha256sum release/tmux-android.apk | awk '{print $1}')"
|
||||||
|
TAG="v${VERSION_NAME}"
|
||||||
|
APK_URL="https://gitea.neatcn.com/tmux/tmux-browser-android/releases/download/${TAG}/tmux-android.apk"
|
||||||
|
RELEASE_PAGE_URL="https://gitea.neatcn.com/tmux/tmux-browser-android/releases/tag/${TAG}"
|
||||||
|
cat > release/latest.json << JSON
|
||||||
|
{
|
||||||
|
"versionCode": ${VERSION_CODE},
|
||||||
|
"versionName": "${VERSION_NAME}",
|
||||||
|
"apkUrl": "${APK_URL}",
|
||||||
|
"sha256": "${SHA256}",
|
||||||
|
"releasePageUrl": "${RELEASE_PAGE_URL}",
|
||||||
|
"minSdk": 26
|
||||||
|
}
|
||||||
|
JSON
|
||||||
|
ls -lh release/tmux-android.apk release/latest.json
|
||||||
|
sha256sum release/tmux-android.apk
|
||||||
|
|
||||||
|
if [ "${PUBLISH_RELEASE}" != "1" ]; then
|
||||||
|
echo "Gitea main build completed as compile check."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
API_ROOT="https://gitea.neatcn.com/api/v1/repos/tmux/tmux-browser-android"
|
||||||
|
RELEASE_BODY='{"tag_name":"'"${TAG}"'","target_commitish":"main","name":"tmux Android '"${VERSION_NAME}"'","body":"Android APK for tmux-ui remote testing.","draft":false,"prerelease":false}'
|
||||||
|
if ! curl -fsSL -X POST \
|
||||||
|
-H "Authorization: token ${CLONE_TOKEN}" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-d "${RELEASE_BODY}" \
|
||||||
|
"${API_ROOT}/releases" \
|
||||||
|
-o /tmp/gitea-release.json; then
|
||||||
|
curl -fsSL -H "Authorization: token ${CLONE_TOKEN}" \
|
||||||
|
"${API_ROOT}/releases/tags/${TAG}" \
|
||||||
|
-o /tmp/gitea-release.json
|
||||||
|
fi
|
||||||
|
RELEASE_ID="$(sed -n 's/^{"id":\([0-9][0-9]*\),.*/\1/p' /tmp/gitea-release.json | head -1)"
|
||||||
|
if [ -z "${RELEASE_ID}" ]; then
|
||||||
|
echo "Cannot resolve Gitea release id." >&2
|
||||||
|
cat /tmp/gitea-release.json >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
curl -fsSL -X POST -H "Authorization: token ${CLONE_TOKEN}" \
|
||||||
|
-F "attachment=@release/tmux-android.apk;type=application/vnd.android.package-archive" \
|
||||||
|
"${API_ROOT}/releases/${RELEASE_ID}/assets?name=tmux-android.apk" \
|
||||||
|
-o /tmp/gitea-apk-asset.json
|
||||||
|
curl -fsSL -X POST -H "Authorization: token ${CLONE_TOKEN}" \
|
||||||
|
-F "attachment=@release/latest.json;type=application/json" \
|
||||||
|
"${API_ROOT}/releases/${RELEASE_ID}/assets?name=latest.json" \
|
||||||
|
-o /tmp/gitea-latest-asset.json
|
||||||
|
echo "Published Gitea release ${TAG}."
|
||||||
|
|||||||
@@ -2,8 +2,6 @@ name: Android APK
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
tags:
|
tags:
|
||||||
- "v*"
|
- "v*"
|
||||||
pull_request:
|
pull_request:
|
||||||
@@ -27,10 +25,12 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
if [[ "${GITHUB_REF}" == refs/tags/v* ]]; then
|
if [[ "${GITHUB_REF}" == refs/tags/v* ]]; then
|
||||||
VERSION_NAME="${GITHUB_REF_NAME#v}"
|
VERSION_NAME="${GITHUB_REF_NAME#v}"
|
||||||
|
IFS='.' read -r MAJOR MINOR PATCH <<< "${VERSION_NAME}"
|
||||||
|
VERSION_CODE=$((MAJOR * 1000000 + MINOR * 1000 + PATCH))
|
||||||
else
|
else
|
||||||
VERSION_NAME="0.1.${GITHUB_RUN_NUMBER}"
|
VERSION_NAME="0.1.${GITHUB_RUN_NUMBER}"
|
||||||
|
VERSION_CODE=$((1000 + GITHUB_RUN_NUMBER))
|
||||||
fi
|
fi
|
||||||
VERSION_CODE=$((1000 + GITHUB_RUN_NUMBER))
|
|
||||||
echo "VERSION_NAME=${VERSION_NAME}" >> "${GITHUB_ENV}"
|
echo "VERSION_NAME=${VERSION_NAME}" >> "${GITHUB_ENV}"
|
||||||
echo "VERSION_CODE=${VERSION_CODE}" >> "${GITHUB_ENV}"
|
echo "VERSION_CODE=${VERSION_CODE}" >> "${GITHUB_ENV}"
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,5 @@
|
|||||||
.gradle/
|
.gradle/
|
||||||
|
.ci/
|
||||||
build/
|
build/
|
||||||
app/build/
|
app/build/
|
||||||
local.properties
|
local.properties
|
||||||
@@ -6,4 +7,3 @@ signing.properties
|
|||||||
*.jks
|
*.jks
|
||||||
*.keystore
|
*.keystore
|
||||||
release/
|
release/
|
||||||
|
|
||||||
|
|||||||
@@ -26,7 +26,10 @@ APIs directly:
|
|||||||
display
|
display
|
||||||
- mobile soft-key row for tmux-oriented input, including tmux prefix, detach,
|
- mobile soft-key row for tmux-oriented input, including tmux prefix, detach,
|
||||||
new window, previous/next window, Ctrl keys, arrows, page keys, and paste
|
new window, previous/next window, Ctrl keys, arrows, page keys, and paste
|
||||||
- automatic update checks against the selected release manifest
|
- terminal viewport resize based on the phone's visible text area, including
|
||||||
|
keyboard height changes, so tmux output wraps at the same width the user sees
|
||||||
|
- automatic update checks with Gitea first and GitHub fallback, plus manual
|
||||||
|
source-specific checks
|
||||||
- one-download-per-version APK cache, SHA-256 verification, and installer
|
- one-download-per-version APK cache, SHA-256 verification, and installer
|
||||||
handoff
|
handoff
|
||||||
- native Update and About pages for version/build type, protocol, permission,
|
- native Update and About pages for version/build type, protocol, permission,
|
||||||
@@ -85,22 +88,32 @@ base64 -w 0 tmux-android-release.jks
|
|||||||
Branch builds and manual workflow runs create Actions artifacts only. Use them
|
Branch builds and manual workflow runs create Actions artifacts only. Use them
|
||||||
to verify grouped changes before publishing.
|
to verify grouped changes before publishing.
|
||||||
|
|
||||||
Publish a release build by pushing a `v*` tag. A tag should be reserved for a
|
Gitea is the primary build and update channel. Normal `main` pushes run the
|
||||||
coherent feature/test batch, not every small UI or text change. Tag publishing
|
Gitea Android workflow for compile checks, while GitHub no longer builds every
|
||||||
creates a GitHub Release with:
|
main push. Publish a release build by pushing a `v*` tag after a coherent
|
||||||
|
feature/test batch, not every small UI or text change.
|
||||||
|
|
||||||
|
Tag publishing can create GitHub Release assets with:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
https://github.com/neatstudio/tmux-browser-android/releases/latest/download/tmux-android.apk
|
https://github.com/neatstudio/tmux-browser-android/releases/latest/download/tmux-android.apk
|
||||||
https://github.com/neatstudio/tmux-browser-android/releases/latest/download/latest.json
|
https://github.com/neatstudio/tmux-browser-android/releases/latest/download/latest.json
|
||||||
```
|
```
|
||||||
|
|
||||||
Gitea is the app's default install/update channel because phones may not be able
|
Gitea is also the app's default install/update channel because phones may not be
|
||||||
to reach GitHub reliably. GitHub remains an optional public source. This Gitea
|
able to reach GitHub reliably. GitHub remains an optional public source. This
|
||||||
instance does not support the GitHub-style `/releases/latest/download/...` URL,
|
Gitea instance does not support the GitHub-style
|
||||||
so the app uses the Gitea Release API as the stable Gitea update entrypoint.
|
`/releases/latest/download/...` URL, so the app uses the Gitea Release API as
|
||||||
|
the stable Gitea update entrypoint.
|
||||||
|
|
||||||
Plain branch builds only create Actions artifacts; they are useful for CI
|
Release APKs on GitHub and Gitea should either be the exact same file or be
|
||||||
verification, but releases are the stable download/update channel.
|
built from the same tag with the same signing keystore, `versionCode`, and
|
||||||
|
`versionName`. The Gitea workflow publishes release assets only when signing
|
||||||
|
secrets are present. Unsigned Gitea builds remain compile checks and must not be
|
||||||
|
used for automatic in-place updates.
|
||||||
|
|
||||||
|
Plain branch builds are useful for CI verification, but releases are the stable
|
||||||
|
download/update channel.
|
||||||
|
|
||||||
Unsigned/debug workflow artifacts are useful only for smoke testing install and
|
Unsigned/debug workflow artifacts are useful only for smoke testing install and
|
||||||
launch. Automatic in-place updates require release APKs signed with the same
|
launch. Automatic in-place updates require release APKs signed with the same
|
||||||
@@ -111,18 +124,16 @@ incompatible package.
|
|||||||
|
|
||||||
The terminal screen connects to `/ws/terminal` and sends the upstream protocol
|
The terminal screen connects to `/ws/terminal` and sends the upstream protocol
|
||||||
messages unchanged: `attach`, `input`, `resize`, `scroll`, and `clear-history`.
|
messages unchanged: `attach`, `input`, `resize`, `scroll`, and `clear-history`.
|
||||||
The first Android UI renders terminal output as monospace text with basic ANSI
|
The Android UI renders terminal output through a lightweight screen buffer with
|
||||||
SGR color support. The terminal view stays bottom-aligned when output is short,
|
cursor movement, line clearing, screen clearing, basic ANSI SGR color support,
|
||||||
auto-scrolls as data arrives, and adjusts its bottom inset when the soft keyboard
|
and throttled redraws. It is enough for shell-oriented remote testing, but it is
|
||||||
opens. Rendering is throttled and the local terminal buffer is capped so opening
|
not yet a complete xterm-compatible renderer for full-screen TUIs such as `vim`
|
||||||
busy sessions does not block the UI thread. Input typed before the terminal
|
or `top`.
|
||||||
attach message is sent is queued and flushed after the WebSocket client is ready.
|
|
||||||
It is enough for shell-oriented remote testing, but it is not yet a complete
|
|
||||||
xterm-compatible renderer for full-screen TUIs such as `vim` or `top`.
|
|
||||||
|
|
||||||
The terminal toolbar and shortcut row include tmux prefix helpers. The app sends
|
The terminal input area is a native multi-line composer with a paged accessory
|
||||||
the same control bytes a keyboard would send, for example `Ctrl+B`, `Ctrl+B d`,
|
bar for editing keys, control keys, tmux prefix helpers, navigation keys, and
|
||||||
`Ctrl+B c`, `Ctrl+B n`, and `Ctrl+B p`.
|
common shell symbols. The app sends the same control bytes a keyboard would
|
||||||
|
send, for example `Ctrl+B`, `Ctrl+B d`, `Ctrl+B c`, `Ctrl+B n`, and `Ctrl+B p`.
|
||||||
|
|
||||||
All app features are native Android controls. Complex server objects such as
|
All app features are native Android controls. Complex server objects such as
|
||||||
preferences, timeline events, group messages, and image metadata currently use
|
preferences, timeline events, group messages, and image metadata currently use
|
||||||
@@ -161,9 +172,19 @@ manifest is:
|
|||||||
https://github.com/neatstudio/tmux-browser-android/releases/latest/download/latest.json
|
https://github.com/neatstudio/tmux-browser-android/releases/latest/download/latest.json
|
||||||
```
|
```
|
||||||
|
|
||||||
The app checks only the selected update source. It does not probe GitHub and
|
The app has four update checks on the `Update` page:
|
||||||
Gitea during the same update check. Choose the source in the app's `Update`
|
|
||||||
page, or use a custom manifest/API URL.
|
- `Auto check` tries Gitea first, then tries GitHub only if Gitea cannot be
|
||||||
|
reached.
|
||||||
|
- `Gitea` checks only the public Gitea release API.
|
||||||
|
- `GitHub` checks only the public GitHub manifest.
|
||||||
|
- `Selected` checks the source chosen with `Source`, including a custom
|
||||||
|
manifest/API URL.
|
||||||
|
|
||||||
|
Each source retries transient network failures before that source is considered
|
||||||
|
failed. The `APK` and `Release page` buttons still resolve from the selected
|
||||||
|
source, so they can be forced to Gitea on phones that cannot reliably reach
|
||||||
|
GitHub.
|
||||||
|
|
||||||
Gitea tag-specific assets are also public, for example:
|
Gitea tag-specific assets are also public, for example:
|
||||||
|
|
||||||
@@ -174,8 +195,9 @@ https://gitea.neatcn.com/tmux/tmux-browser-android/releases/download/v0.1.7/tmux
|
|||||||
|
|
||||||
In the app:
|
In the app:
|
||||||
|
|
||||||
- Open the `Update` page to check `latest.json`, download the APK, verify
|
- Open the `Update` page and tap `Auto check` to check `latest.json`, download
|
||||||
SHA-256, and open Android's installer.
|
the APK, verify SHA-256, and open Android's installer. Use `Gitea`, `GitHub`,
|
||||||
|
or `Selected` to force a single update source.
|
||||||
- If the same version APK was already downloaded and its SHA-256 still matches,
|
- If the same version APK was already downloaded and its SHA-256 still matches,
|
||||||
the app reuses that file instead of downloading it again.
|
the app reuses that file instead of downloading it again.
|
||||||
- If Android sends you to the unknown-app install permission screen, return to
|
- If Android sends you to the unknown-app install permission screen, return to
|
||||||
|
|||||||
@@ -14,6 +14,8 @@ val defaultGithubUpdateUrl = providers.gradleProperty("defaultGithubUpdateUrl")
|
|||||||
.orElse("https://github.com/${repoSlug.get()}/releases/latest/download/latest.json")
|
.orElse("https://github.com/${repoSlug.get()}/releases/latest/download/latest.json")
|
||||||
val defaultGiteaUpdateUrl = providers.gradleProperty("defaultGiteaUpdateUrl")
|
val defaultGiteaUpdateUrl = providers.gradleProperty("defaultGiteaUpdateUrl")
|
||||||
.orElse("https://gitea.neatcn.com/api/v1/repos/tmux/tmux-browser-android/releases/latest")
|
.orElse("https://gitea.neatcn.com/api/v1/repos/tmux/tmux-browser-android/releases/latest")
|
||||||
|
val defaultPreviewUpdateUrl = providers.gradleProperty("defaultPreviewUpdateUrl")
|
||||||
|
.orElse("https://gitea.neatcn.com/tmux/tmux-browser-android/releases/download/preview/latest.json")
|
||||||
val defaultApkUrl = providers.gradleProperty("defaultApkUrl")
|
val defaultApkUrl = providers.gradleProperty("defaultApkUrl")
|
||||||
.orElse("https://github.com/${repoSlug.get()}/releases/latest/download/tmux-android.apk")
|
.orElse("https://github.com/${repoSlug.get()}/releases/latest/download/tmux-android.apk")
|
||||||
val defaultReleasePageUrl = providers.gradleProperty("defaultReleasePageUrl")
|
val defaultReleasePageUrl = providers.gradleProperty("defaultReleasePageUrl")
|
||||||
@@ -40,6 +42,7 @@ android {
|
|||||||
buildConfigField("String", "DEFAULT_UPDATE_URL", "\"${defaultUpdateUrl.get()}\"")
|
buildConfigField("String", "DEFAULT_UPDATE_URL", "\"${defaultUpdateUrl.get()}\"")
|
||||||
buildConfigField("String", "DEFAULT_GITHUB_UPDATE_URL", "\"${defaultGithubUpdateUrl.get()}\"")
|
buildConfigField("String", "DEFAULT_GITHUB_UPDATE_URL", "\"${defaultGithubUpdateUrl.get()}\"")
|
||||||
buildConfigField("String", "DEFAULT_GITEA_UPDATE_URL", "\"${defaultGiteaUpdateUrl.get()}\"")
|
buildConfigField("String", "DEFAULT_GITEA_UPDATE_URL", "\"${defaultGiteaUpdateUrl.get()}\"")
|
||||||
|
buildConfigField("String", "DEFAULT_PREVIEW_UPDATE_URL", "\"${defaultPreviewUpdateUrl.get()}\"")
|
||||||
buildConfigField("String", "DEFAULT_APK_URL", "\"${defaultApkUrl.get()}\"")
|
buildConfigField("String", "DEFAULT_APK_URL", "\"${defaultApkUrl.get()}\"")
|
||||||
buildConfigField("String", "DEFAULT_RELEASE_PAGE_URL", "\"${defaultReleasePageUrl.get()}\"")
|
buildConfigField("String", "DEFAULT_RELEASE_PAGE_URL", "\"${defaultReleasePageUrl.get()}\"")
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import android.util.Base64;
|
|||||||
|
|
||||||
import java.io.BufferedInputStream;
|
import java.io.BufferedInputStream;
|
||||||
import java.io.BufferedOutputStream;
|
import java.io.BufferedOutputStream;
|
||||||
|
import java.net.InetSocketAddress;
|
||||||
import java.net.Socket;
|
import java.net.Socket;
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.charset.StandardCharsets;
|
||||||
@@ -14,16 +15,22 @@ import java.util.Arrays;
|
|||||||
import javax.net.ssl.SSLSocketFactory;
|
import javax.net.ssl.SSLSocketFactory;
|
||||||
|
|
||||||
final class AppEventSocketClient {
|
final class AppEventSocketClient {
|
||||||
|
private static final long HEARTBEAT_INTERVAL_MS = 15000L;
|
||||||
|
private static final int SOCKET_CONNECT_TIMEOUT_MS = 10000;
|
||||||
|
private static final int SOCKET_READ_TIMEOUT_MS = 45000;
|
||||||
|
|
||||||
interface Listener {
|
interface Listener {
|
||||||
void onMessage(String text);
|
void onMessage(String text);
|
||||||
void onClosed();
|
void onClosed();
|
||||||
}
|
}
|
||||||
|
|
||||||
private final Listener listener;
|
private final Listener listener;
|
||||||
|
private final Object writeLock = new Object();
|
||||||
private Socket socket;
|
private Socket socket;
|
||||||
private BufferedInputStream input;
|
private BufferedInputStream input;
|
||||||
private BufferedOutputStream output;
|
private BufferedOutputStream output;
|
||||||
private volatile boolean closed;
|
private volatile boolean closed;
|
||||||
|
private Thread heartbeatThread;
|
||||||
|
|
||||||
AppEventSocketClient(Listener listener) {
|
AppEventSocketClient(Listener listener) {
|
||||||
this.listener = listener;
|
this.listener = listener;
|
||||||
@@ -40,12 +47,11 @@ final class AppEventSocketClient {
|
|||||||
sendFrame(8, new byte[0]);
|
sendFrame(8, new byte[0]);
|
||||||
} catch (Exception ignored) {
|
} catch (Exception ignored) {
|
||||||
}
|
}
|
||||||
try {
|
closeSocketQuietly();
|
||||||
if (socket != null) {
|
}
|
||||||
socket.close();
|
|
||||||
}
|
boolean isClosed() {
|
||||||
} catch (Exception ignored) {
|
return closed;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void run(String baseUrl) {
|
private void run(String baseUrl) {
|
||||||
@@ -55,6 +61,7 @@ final class AppEventSocketClient {
|
|||||||
input = new BufferedInputStream(socket.getInputStream());
|
input = new BufferedInputStream(socket.getInputStream());
|
||||||
output = new BufferedOutputStream(socket.getOutputStream());
|
output = new BufferedOutputStream(socket.getOutputStream());
|
||||||
handshake(uri);
|
handshake(uri);
|
||||||
|
startHeartbeat();
|
||||||
while (!closed) {
|
while (!closed) {
|
||||||
Frame frame = readFrame();
|
Frame frame = readFrame();
|
||||||
if (frame.opcode == 1) {
|
if (frame.opcode == 1) {
|
||||||
@@ -69,12 +76,7 @@ final class AppEventSocketClient {
|
|||||||
} finally {
|
} finally {
|
||||||
closed = true;
|
closed = true;
|
||||||
listener.onClosed();
|
listener.onClosed();
|
||||||
try {
|
closeSocketQuietly();
|
||||||
if (socket != null) {
|
|
||||||
socket.close();
|
|
||||||
}
|
|
||||||
} catch (Exception ignored) {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -91,10 +93,39 @@ final class AppEventSocketClient {
|
|||||||
if (port == -1) {
|
if (port == -1) {
|
||||||
port = "wss".equalsIgnoreCase(uri.getScheme()) ? 443 : 80;
|
port = "wss".equalsIgnoreCase(uri.getScheme()) ? 443 : 80;
|
||||||
}
|
}
|
||||||
|
Socket raw = new Socket();
|
||||||
|
raw.connect(new InetSocketAddress(uri.getHost(), port), SOCKET_CONNECT_TIMEOUT_MS);
|
||||||
|
Socket connected;
|
||||||
if ("wss".equalsIgnoreCase(uri.getScheme())) {
|
if ("wss".equalsIgnoreCase(uri.getScheme())) {
|
||||||
return SSLSocketFactory.getDefault().createSocket(uri.getHost(), port);
|
connected = ((SSLSocketFactory) SSLSocketFactory.getDefault())
|
||||||
|
.createSocket(raw, uri.getHost(), port, true);
|
||||||
|
} else {
|
||||||
|
connected = raw;
|
||||||
}
|
}
|
||||||
return new Socket(uri.getHost(), port);
|
connected.setKeepAlive(true);
|
||||||
|
connected.setTcpNoDelay(true);
|
||||||
|
connected.setSoTimeout(SOCKET_READ_TIMEOUT_MS);
|
||||||
|
return connected;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void startHeartbeat() {
|
||||||
|
heartbeatThread = new Thread(() -> {
|
||||||
|
while (!closed) {
|
||||||
|
try {
|
||||||
|
Thread.sleep(HEARTBEAT_INTERVAL_MS);
|
||||||
|
if (!closed) {
|
||||||
|
sendFrame(9, new byte[0]);
|
||||||
|
}
|
||||||
|
} catch (InterruptedException ignored) {
|
||||||
|
Thread.currentThread().interrupt();
|
||||||
|
return;
|
||||||
|
} catch (Exception error) {
|
||||||
|
closeSocketQuietly();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, "app-events-ws-heartbeat");
|
||||||
|
heartbeatThread.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void handshake(URI uri) throws Exception {
|
private void handshake(URI uri) throws Exception {
|
||||||
@@ -181,32 +212,47 @@ final class AppEventSocketClient {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void sendFrame(int opcode, byte[] payload) throws Exception {
|
private void sendFrame(int opcode, byte[] payload) throws Exception {
|
||||||
if (output == null) {
|
synchronized (writeLock) {
|
||||||
return;
|
if (output == null) {
|
||||||
}
|
return;
|
||||||
output.write(0x80 | opcode);
|
|
||||||
byte[] mask = new byte[4];
|
|
||||||
new SecureRandom().nextBytes(mask);
|
|
||||||
int length = payload.length;
|
|
||||||
if (length < 126) {
|
|
||||||
output.write(0x80 | length);
|
|
||||||
} else if (length <= 0xffff) {
|
|
||||||
output.write(0x80 | 126);
|
|
||||||
output.write((length >>> 8) & 0xff);
|
|
||||||
output.write(length & 0xff);
|
|
||||||
} else {
|
|
||||||
output.write(0x80 | 127);
|
|
||||||
for (int i = 7; i >= 0; i--) {
|
|
||||||
output.write((length >>> (8 * i)) & 0xff);
|
|
||||||
}
|
}
|
||||||
|
output.write(0x80 | opcode);
|
||||||
|
byte[] mask = new byte[4];
|
||||||
|
new SecureRandom().nextBytes(mask);
|
||||||
|
int length = payload.length;
|
||||||
|
if (length < 126) {
|
||||||
|
output.write(0x80 | length);
|
||||||
|
} else if (length <= 0xffff) {
|
||||||
|
output.write(0x80 | 126);
|
||||||
|
output.write((length >>> 8) & 0xff);
|
||||||
|
output.write(length & 0xff);
|
||||||
|
} else {
|
||||||
|
output.write(0x80 | 127);
|
||||||
|
for (int i = 7; i >= 0; i--) {
|
||||||
|
output.write((length >>> (8 * i)) & 0xff);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
output.write(mask);
|
||||||
|
byte[] masked = Arrays.copyOf(payload, payload.length);
|
||||||
|
for (int i = 0; i < masked.length; i++) {
|
||||||
|
masked[i] = (byte) (masked[i] ^ mask[i % 4]);
|
||||||
|
}
|
||||||
|
output.write(masked);
|
||||||
|
output.flush();
|
||||||
}
|
}
|
||||||
output.write(mask);
|
}
|
||||||
byte[] masked = Arrays.copyOf(payload, payload.length);
|
|
||||||
for (int i = 0; i < masked.length; i++) {
|
private void closeSocketQuietly() {
|
||||||
masked[i] = (byte) (masked[i] ^ mask[i % 4]);
|
if (heartbeatThread != null) {
|
||||||
|
heartbeatThread.interrupt();
|
||||||
|
heartbeatThread = null;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
if (socket != null) {
|
||||||
|
socket.close();
|
||||||
|
}
|
||||||
|
} catch (Exception ignored) {
|
||||||
}
|
}
|
||||||
output.write(masked);
|
|
||||||
output.flush();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final class Frame {
|
private static final class Frame {
|
||||||
|
|||||||
@@ -0,0 +1,85 @@
|
|||||||
|
package com.neatstudio.tmuxandroid;
|
||||||
|
|
||||||
|
import org.json.JSONObject;
|
||||||
|
|
||||||
|
final class ConversationMessage {
|
||||||
|
final String messageId;
|
||||||
|
final String sessionName;
|
||||||
|
final String role;
|
||||||
|
final String contentType;
|
||||||
|
final String content;
|
||||||
|
final String status;
|
||||||
|
final String toolName;
|
||||||
|
final String parentMessageId;
|
||||||
|
final String createdAt;
|
||||||
|
final boolean local;
|
||||||
|
|
||||||
|
ConversationMessage(
|
||||||
|
String messageId,
|
||||||
|
String sessionName,
|
||||||
|
String role,
|
||||||
|
String contentType,
|
||||||
|
String content,
|
||||||
|
String status,
|
||||||
|
String toolName,
|
||||||
|
String parentMessageId,
|
||||||
|
String createdAt,
|
||||||
|
boolean local
|
||||||
|
) {
|
||||||
|
this.messageId = messageId;
|
||||||
|
this.sessionName = sessionName;
|
||||||
|
this.role = role;
|
||||||
|
this.contentType = contentType;
|
||||||
|
this.content = content;
|
||||||
|
this.status = status;
|
||||||
|
this.toolName = toolName;
|
||||||
|
this.parentMessageId = parentMessageId;
|
||||||
|
this.createdAt = createdAt;
|
||||||
|
this.local = local;
|
||||||
|
}
|
||||||
|
|
||||||
|
static ConversationMessage fromJson(JSONObject object) {
|
||||||
|
return new ConversationMessage(
|
||||||
|
value(object, "messageId", object.optString("id", "")),
|
||||||
|
object.optString("sessionName", ""),
|
||||||
|
object.optString("role", "assistant"),
|
||||||
|
object.optString("contentType", "text"),
|
||||||
|
object.optString("content", ""),
|
||||||
|
object.optString("status", "complete"),
|
||||||
|
object.optString("toolName", ""),
|
||||||
|
value(object, "parentMessageId", ""),
|
||||||
|
object.optString("createdAt", ""),
|
||||||
|
false
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
static ConversationMessage localUser(String sessionName, String content) {
|
||||||
|
long now = System.currentTimeMillis();
|
||||||
|
return new ConversationMessage(
|
||||||
|
"local-" + now,
|
||||||
|
sessionName,
|
||||||
|
"user",
|
||||||
|
"text",
|
||||||
|
content,
|
||||||
|
"sending",
|
||||||
|
"",
|
||||||
|
"",
|
||||||
|
"~" + now,
|
||||||
|
true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
boolean isTool() {
|
||||||
|
return "tool".equals(role)
|
||||||
|
|| "tool".equals(contentType)
|
||||||
|
|| "command".equals(contentType)
|
||||||
|
|| "code".equals(contentType);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static String value(JSONObject object, String key, String fallback) {
|
||||||
|
if (!object.has(key) || object.isNull(key)) {
|
||||||
|
return fallback;
|
||||||
|
}
|
||||||
|
return object.optString(key, fallback);
|
||||||
|
}
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,901 @@
|
|||||||
|
package com.neatstudio.tmuxandroid;
|
||||||
|
|
||||||
|
import android.graphics.Color;
|
||||||
|
import android.graphics.Typeface;
|
||||||
|
import android.text.SpannableStringBuilder;
|
||||||
|
import android.text.Spanned;
|
||||||
|
import android.text.TextPaint;
|
||||||
|
import android.text.style.BackgroundColorSpan;
|
||||||
|
import android.text.style.ClickableSpan;
|
||||||
|
import android.text.style.ForegroundColorSpan;
|
||||||
|
import android.text.style.StyleSpan;
|
||||||
|
import android.view.View;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Locale;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
final class TerminalScreenBuffer {
|
||||||
|
private static final int DEFAULT_FG = 0xffe6ebf2;
|
||||||
|
private static final int DEFAULT_BG = Color.TRANSPARENT;
|
||||||
|
private static final int TERMINAL_BG = 0xff0b0e13;
|
||||||
|
|
||||||
|
private int cols;
|
||||||
|
private int rows;
|
||||||
|
private Cell[][] cells;
|
||||||
|
private int cursorRow;
|
||||||
|
private int cursorCol;
|
||||||
|
private int savedRow;
|
||||||
|
private int savedCol;
|
||||||
|
private String pendingControl = "";
|
||||||
|
private boolean wrapPending;
|
||||||
|
private int fg = DEFAULT_FG;
|
||||||
|
private int bg = DEFAULT_BG;
|
||||||
|
private boolean bold;
|
||||||
|
private boolean dim;
|
||||||
|
|
||||||
|
interface FocusToggle {
|
||||||
|
void toggle(String key);
|
||||||
|
}
|
||||||
|
|
||||||
|
TerminalScreenBuffer(int cols, int rows) {
|
||||||
|
resize(cols, rows);
|
||||||
|
}
|
||||||
|
|
||||||
|
void resize(int nextCols, int nextRows) {
|
||||||
|
nextCols = Math.max(1, nextCols);
|
||||||
|
nextRows = Math.max(1, nextRows);
|
||||||
|
cols = nextCols;
|
||||||
|
rows = nextRows;
|
||||||
|
cells = new Cell[rows][cols];
|
||||||
|
for (int row = 0; row < rows; row++) {
|
||||||
|
for (int col = 0; col < cols; col++) {
|
||||||
|
cells[row][col] = new Cell();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cursorRow = 0;
|
||||||
|
cursorCol = 0;
|
||||||
|
savedRow = 0;
|
||||||
|
savedCol = 0;
|
||||||
|
wrapPending = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void clear() {
|
||||||
|
clearScreen();
|
||||||
|
cursorRow = 0;
|
||||||
|
cursorCol = 0;
|
||||||
|
savedRow = 0;
|
||||||
|
savedCol = 0;
|
||||||
|
pendingControl = "";
|
||||||
|
wrapPending = false;
|
||||||
|
fg = DEFAULT_FG;
|
||||||
|
bg = DEFAULT_BG;
|
||||||
|
bold = false;
|
||||||
|
dim = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void write(String text) {
|
||||||
|
if (!pendingControl.isEmpty()) {
|
||||||
|
text = pendingControl + text;
|
||||||
|
pendingControl = "";
|
||||||
|
}
|
||||||
|
int index = 0;
|
||||||
|
while (index < text.length()) {
|
||||||
|
char item = text.charAt(index);
|
||||||
|
if (item == '\u001b') {
|
||||||
|
int next = handleEscape(text, index);
|
||||||
|
if (next < 0) {
|
||||||
|
pendingControl = text.substring(index);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
index = next;
|
||||||
|
} else if (item == '\r') {
|
||||||
|
wrapPending = false;
|
||||||
|
cursorCol = 0;
|
||||||
|
index++;
|
||||||
|
} else if (item == '\n') {
|
||||||
|
wrapPending = false;
|
||||||
|
newLine();
|
||||||
|
index++;
|
||||||
|
} else if (item == '\b') {
|
||||||
|
wrapPending = false;
|
||||||
|
cursorCol = Math.max(0, cursorCol - 1);
|
||||||
|
index++;
|
||||||
|
} else if (item == '\t') {
|
||||||
|
int nextTab = ((cursorCol / 8) + 1) * 8;
|
||||||
|
while (cursorCol < Math.min(nextTab, cols)) {
|
||||||
|
putChar(' ');
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
} else if (isNakedDeviceAttributesTail(text, index)) {
|
||||||
|
index = skipNakedDeviceAttributesTail(text, index);
|
||||||
|
} else if (item >= 0x20 && item != 0x7f) {
|
||||||
|
putChar(item);
|
||||||
|
index++;
|
||||||
|
} else {
|
||||||
|
index++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
CharSequence render() {
|
||||||
|
return renderRows(0, rows);
|
||||||
|
}
|
||||||
|
|
||||||
|
CharSequence renderBody() {
|
||||||
|
return renderRows(0, Math.max(0, rows - 1));
|
||||||
|
}
|
||||||
|
|
||||||
|
CharSequence renderStatusLine() {
|
||||||
|
return renderRows(Math.max(0, rows - 1), rows);
|
||||||
|
}
|
||||||
|
|
||||||
|
private CharSequence renderRows(int startRow, int endRow) {
|
||||||
|
SpannableStringBuilder output = new SpannableStringBuilder();
|
||||||
|
for (int row = startRow; row < endRow; row++) {
|
||||||
|
appendRow(output, row);
|
||||||
|
if (row + 1 < endRow) {
|
||||||
|
output.append('\n');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return output;
|
||||||
|
}
|
||||||
|
|
||||||
|
String renderTail(int maxRows) {
|
||||||
|
List<String> visible = new ArrayList<>();
|
||||||
|
for (int row = rows - 1; row >= 0 && visible.size() < maxRows; row--) {
|
||||||
|
String text = rowText(row).trim();
|
||||||
|
if (!text.isEmpty()) {
|
||||||
|
visible.add(0, text);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (visible.isEmpty()) {
|
||||||
|
return "Waiting for terminal output";
|
||||||
|
}
|
||||||
|
return String.join("\n", visible);
|
||||||
|
}
|
||||||
|
|
||||||
|
CharSequence renderFocused(Set<String> expandedBlocks, FocusToggle toggle) {
|
||||||
|
SpannableStringBuilder output = new SpannableStringBuilder();
|
||||||
|
int row = 0;
|
||||||
|
while (row < rows) {
|
||||||
|
String text = rowText(row).trim();
|
||||||
|
if (!isCollapsibleHeader(text)) {
|
||||||
|
if (text.isEmpty()) {
|
||||||
|
if (output.length() > 0) {
|
||||||
|
output.append('\n');
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
appendStyledRow(output, row);
|
||||||
|
}
|
||||||
|
row++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
int startRow = row;
|
||||||
|
List<String> hiddenRows = new ArrayList<>();
|
||||||
|
hiddenRows.add(text);
|
||||||
|
row++;
|
||||||
|
while (row < rows) {
|
||||||
|
String next = rowText(row).trim();
|
||||||
|
if (next.isEmpty() || isTopLevelLine(next)) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
hiddenRows.add(next);
|
||||||
|
row++;
|
||||||
|
}
|
||||||
|
appendFocusBlock(output, hiddenRows, startRow, row - 1, expandedBlocks, toggle);
|
||||||
|
}
|
||||||
|
if (output.length() == 0) {
|
||||||
|
output.append("Waiting for terminal output");
|
||||||
|
}
|
||||||
|
return output;
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isCollapsibleHeader(String text) {
|
||||||
|
boolean activity = text.startsWith("• ") || text.startsWith("● ");
|
||||||
|
String header = stripActivityMarker(text);
|
||||||
|
return activity && (header.startsWith("Ran ")
|
||||||
|
|| header.equals("Explored")
|
||||||
|
|| header.startsWith("Explored ")
|
||||||
|
|| header.startsWith("Searched ")
|
||||||
|
|| header.startsWith("Read ")
|
||||||
|
|| header.startsWith("List ")
|
||||||
|
|| header.startsWith("Viewed ")
|
||||||
|
|| header.startsWith("Opened ")
|
||||||
|
|| header.startsWith("Fetched ")
|
||||||
|
|| header.startsWith("Downloaded ")
|
||||||
|
|| header.startsWith("Wrote ")
|
||||||
|
|| header.startsWith("Edited ")
|
||||||
|
|| header.startsWith("Applied ")
|
||||||
|
|| header.startsWith("Updated ")
|
||||||
|
|| header.startsWith("Checked ")
|
||||||
|
|| header.startsWith("Inspected ")
|
||||||
|
|| header.startsWith("Waited ")
|
||||||
|
|| header.startsWith("Working")
|
||||||
|
|| header.startsWith("Stop hook"))
|
||||||
|
|| text.startsWith("─ Worked for ");
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isTopLevelLine(String text) {
|
||||||
|
return text.startsWith("• ")
|
||||||
|
|| text.startsWith("● ")
|
||||||
|
|| text.startsWith("› ")
|
||||||
|
|| text.startsWith("> ")
|
||||||
|
|| text.startsWith("─ ")
|
||||||
|
|| isCollapsibleHeader(text);
|
||||||
|
}
|
||||||
|
|
||||||
|
private String stripActivityMarker(String text) {
|
||||||
|
if (text.startsWith("• ") || text.startsWith("● ")) {
|
||||||
|
return text.substring(2).trim();
|
||||||
|
}
|
||||||
|
return text;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void appendFocusBlock(
|
||||||
|
SpannableStringBuilder output,
|
||||||
|
List<String> lines,
|
||||||
|
int startRow,
|
||||||
|
int endRow,
|
||||||
|
Set<String> expandedBlocks,
|
||||||
|
FocusToggle toggle
|
||||||
|
) {
|
||||||
|
String key = startRow + ":" + endRow;
|
||||||
|
boolean expanded = expandedBlocks.contains(key);
|
||||||
|
String summary = focusSummary(lines);
|
||||||
|
int actionStart = output.length();
|
||||||
|
appendLine(output, (expanded ? "▼ " : "▶ ") + summary);
|
||||||
|
int actionEnd = output.length();
|
||||||
|
output.setSpan(new ClickableSpan() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View widget) {
|
||||||
|
toggle.toggle(key);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void updateDrawState(TextPaint paint) {
|
||||||
|
paint.setColor(0xff67da91);
|
||||||
|
paint.setUnderlineText(false);
|
||||||
|
paint.setFakeBoldText(true);
|
||||||
|
}
|
||||||
|
}, actionStart, actionEnd, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||||
|
if (expanded) {
|
||||||
|
for (String line : lines) {
|
||||||
|
appendLine(output, " " + line);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private String focusSummary(List<String> lines) {
|
||||||
|
String first = stripActivityMarker(lines.get(0));
|
||||||
|
String joined = String.join(" ", lines).toLowerCase(Locale.ROOT);
|
||||||
|
String type;
|
||||||
|
if (first.startsWith("Explored") || first.startsWith("Searched")
|
||||||
|
|| first.startsWith("Read ") || first.startsWith("List ")
|
||||||
|
|| first.startsWith("Viewed ") || first.startsWith("Inspected ")) {
|
||||||
|
type = "Explored";
|
||||||
|
} else if (first.startsWith("Working") || first.startsWith("Stop hook")
|
||||||
|
|| first.startsWith("─ Worked for ")) {
|
||||||
|
type = "Status";
|
||||||
|
} else if (joined.contains("error") || joined.contains("failed") || joined.contains("exception")) {
|
||||||
|
type = "Command failed";
|
||||||
|
} else {
|
||||||
|
type = "Command output";
|
||||||
|
}
|
||||||
|
return type + " · " + lines.size() + " lines · " + compactSummary(first, 48);
|
||||||
|
}
|
||||||
|
|
||||||
|
private String compactSummary(String text, int maxChars) {
|
||||||
|
String compact = text.replaceAll("\\s+", " ").trim();
|
||||||
|
if (compact.length() <= maxChars) {
|
||||||
|
return compact;
|
||||||
|
}
|
||||||
|
return compact.substring(0, maxChars - 1) + "…";
|
||||||
|
}
|
||||||
|
|
||||||
|
private void appendLine(SpannableStringBuilder output, String text) {
|
||||||
|
if (output.length() > 0) {
|
||||||
|
output.append('\n');
|
||||||
|
}
|
||||||
|
output.append(text);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void appendStyledRow(SpannableStringBuilder output, int row) {
|
||||||
|
if (output.length() > 0) {
|
||||||
|
output.append('\n');
|
||||||
|
}
|
||||||
|
int limit = cols;
|
||||||
|
while (limit > 0 && cells[row][limit - 1].value == ' '
|
||||||
|
&& cells[row][limit - 1].bg == DEFAULT_BG) {
|
||||||
|
limit--;
|
||||||
|
}
|
||||||
|
appendRow(output, row, limit);
|
||||||
|
}
|
||||||
|
|
||||||
|
private int handleEscape(String text, int index) {
|
||||||
|
if (index + 1 >= text.length()) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
char next = text.charAt(index + 1);
|
||||||
|
wrapPending = false;
|
||||||
|
if (next == '[') {
|
||||||
|
int end = findAnsiEnd(text, index + 2);
|
||||||
|
if (end == -1) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
applyCsi(text.substring(index + 2, end), text.charAt(end));
|
||||||
|
return end + 1;
|
||||||
|
}
|
||||||
|
if (next == ']') {
|
||||||
|
return skipStringEscape(text, index + 2);
|
||||||
|
}
|
||||||
|
if (next == 'P' || next == '^' || next == '_') {
|
||||||
|
return skipStringEscape(text, index + 2);
|
||||||
|
}
|
||||||
|
if (next == '(' || next == ')' || next == '*' || next == '+' || next == '-' || next == '.') {
|
||||||
|
if (index + 2 >= text.length()) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
return Math.min(index + 3, text.length());
|
||||||
|
}
|
||||||
|
if (next == '7') {
|
||||||
|
saveCursor();
|
||||||
|
} else if (next == '8') {
|
||||||
|
restoreCursor();
|
||||||
|
} else if (next == 'D') {
|
||||||
|
newLine();
|
||||||
|
} else if (next == 'E') {
|
||||||
|
cursorCol = 0;
|
||||||
|
newLine();
|
||||||
|
} else if (next == 'M') {
|
||||||
|
reverseIndex();
|
||||||
|
} else if (next == 'c') {
|
||||||
|
clear();
|
||||||
|
}
|
||||||
|
return Math.min(index + 2, text.length());
|
||||||
|
}
|
||||||
|
|
||||||
|
private void applyCsi(String rawParams, char command) {
|
||||||
|
wrapPending = false;
|
||||||
|
String params = rawParams;
|
||||||
|
while (!params.isEmpty()) {
|
||||||
|
char first = params.charAt(0);
|
||||||
|
if (first == '?' || first == '>' || first == '!' || first == '=') {
|
||||||
|
params = params.substring(1);
|
||||||
|
} else {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
List<Integer> values = parseParams(params);
|
||||||
|
switch (command) {
|
||||||
|
case 'm':
|
||||||
|
applySgr(values);
|
||||||
|
break;
|
||||||
|
case 'H':
|
||||||
|
case 'f':
|
||||||
|
cursorRow = clamp(param(values, 0, 1) - 1, 0, rows - 1);
|
||||||
|
cursorCol = clamp(param(values, 1, 1) - 1, 0, cols - 1);
|
||||||
|
break;
|
||||||
|
case 'A':
|
||||||
|
cursorRow = clamp(cursorRow - param(values, 0, 1), 0, rows - 1);
|
||||||
|
break;
|
||||||
|
case 'B':
|
||||||
|
cursorRow = clamp(cursorRow + param(values, 0, 1), 0, rows - 1);
|
||||||
|
break;
|
||||||
|
case 'C':
|
||||||
|
cursorCol = clamp(cursorCol + param(values, 0, 1), 0, cols - 1);
|
||||||
|
break;
|
||||||
|
case 'D':
|
||||||
|
cursorCol = clamp(cursorCol - param(values, 0, 1), 0, cols - 1);
|
||||||
|
break;
|
||||||
|
case 'G':
|
||||||
|
cursorCol = clamp(param(values, 0, 1) - 1, 0, cols - 1);
|
||||||
|
break;
|
||||||
|
case 'd':
|
||||||
|
cursorRow = clamp(param(values, 0, 1) - 1, 0, rows - 1);
|
||||||
|
break;
|
||||||
|
case 'J':
|
||||||
|
eraseDisplay(param(values, 0, 0));
|
||||||
|
break;
|
||||||
|
case 'K':
|
||||||
|
eraseLine(param(values, 0, 0));
|
||||||
|
break;
|
||||||
|
case 'P':
|
||||||
|
deleteChars(param(values, 0, 1));
|
||||||
|
break;
|
||||||
|
case '@':
|
||||||
|
insertChars(param(values, 0, 1));
|
||||||
|
break;
|
||||||
|
case 'X':
|
||||||
|
eraseChars(param(values, 0, 1));
|
||||||
|
break;
|
||||||
|
case 'L':
|
||||||
|
insertLines(param(values, 0, 1));
|
||||||
|
break;
|
||||||
|
case 'M':
|
||||||
|
deleteLines(param(values, 0, 1));
|
||||||
|
break;
|
||||||
|
case 's':
|
||||||
|
saveCursor();
|
||||||
|
break;
|
||||||
|
case 'u':
|
||||||
|
restoreCursor();
|
||||||
|
break;
|
||||||
|
case 'c':
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void applySgr(List<Integer> values) {
|
||||||
|
if (values.isEmpty()) {
|
||||||
|
values.add(0);
|
||||||
|
}
|
||||||
|
for (int index = 0; index < values.size(); index++) {
|
||||||
|
int value = values.get(index);
|
||||||
|
if (value == 0) {
|
||||||
|
fg = DEFAULT_FG;
|
||||||
|
bg = DEFAULT_BG;
|
||||||
|
bold = false;
|
||||||
|
dim = false;
|
||||||
|
} else if (value == 1) {
|
||||||
|
bold = true;
|
||||||
|
} else if (value == 2) {
|
||||||
|
dim = true;
|
||||||
|
} else if (value == 22) {
|
||||||
|
bold = false;
|
||||||
|
dim = false;
|
||||||
|
} else if (value == 39) {
|
||||||
|
fg = DEFAULT_FG;
|
||||||
|
} else if (value == 49) {
|
||||||
|
bg = DEFAULT_BG;
|
||||||
|
} else if ((value >= 30 && value <= 37) || (value >= 90 && value <= 97)) {
|
||||||
|
fg = ansiColor(value, false);
|
||||||
|
} else if ((value >= 40 && value <= 47) || (value >= 100 && value <= 107)) {
|
||||||
|
bg = ansiColor(value, true);
|
||||||
|
} else if ((value == 38 || value == 48) && index + 2 < values.size()) {
|
||||||
|
boolean background = value == 48;
|
||||||
|
int mode = values.get(index + 1);
|
||||||
|
if (mode == 5) {
|
||||||
|
int color = xtermColor(values.get(index + 2));
|
||||||
|
if (background) {
|
||||||
|
bg = color;
|
||||||
|
} else {
|
||||||
|
fg = color;
|
||||||
|
}
|
||||||
|
index += 2;
|
||||||
|
} else if (mode == 2 && index + 4 < values.size()) {
|
||||||
|
int color = Color.rgb(
|
||||||
|
clamp(values.get(index + 2), 0, 255),
|
||||||
|
clamp(values.get(index + 3), 0, 255),
|
||||||
|
clamp(values.get(index + 4), 0, 255)
|
||||||
|
);
|
||||||
|
if (background) {
|
||||||
|
bg = color;
|
||||||
|
} else {
|
||||||
|
fg = color;
|
||||||
|
}
|
||||||
|
index += 4;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void putChar(char value) {
|
||||||
|
if (wrapPending) {
|
||||||
|
wrapPending = false;
|
||||||
|
newLine();
|
||||||
|
}
|
||||||
|
int width = isWideCharacter(value) ? 2 : 1;
|
||||||
|
if (width == 2 && cursorCol == cols - 1) {
|
||||||
|
newLine();
|
||||||
|
}
|
||||||
|
cells[cursorRow][cursorCol].set(value, fg, bg, bold, dim);
|
||||||
|
if (width == 2) {
|
||||||
|
cells[cursorRow][cursorCol + 1].setContinuation(fg, bg, bold, dim);
|
||||||
|
}
|
||||||
|
if (cursorCol + width >= cols) {
|
||||||
|
cursorCol = cols - 1;
|
||||||
|
wrapPending = true;
|
||||||
|
} else {
|
||||||
|
cursorCol += width;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isWideCharacter(char value) {
|
||||||
|
return value >= '\u1100' && (value <= '\u115f'
|
||||||
|
|| value == '\u2329' || value == '\u232a'
|
||||||
|
|| (value >= '\u2e80' && value <= '\ua4cf' && value != '\u303f')
|
||||||
|
|| (value >= '\uac00' && value <= '\ud7a3')
|
||||||
|
|| (value >= '\uf900' && value <= '\ufaff')
|
||||||
|
|| (value >= '\ufe10' && value <= '\ufe19')
|
||||||
|
|| (value >= '\ufe30' && value <= '\ufe6f')
|
||||||
|
|| (value >= '\uff00' && value <= '\uff60')
|
||||||
|
|| (value >= '\uffe0' && value <= '\uffe6'));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void newLine() {
|
||||||
|
wrapPending = false;
|
||||||
|
cursorRow++;
|
||||||
|
if (cursorRow >= rows) {
|
||||||
|
scrollUp(1);
|
||||||
|
cursorRow = rows - 1;
|
||||||
|
}
|
||||||
|
cursorCol = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void reverseIndex() {
|
||||||
|
if (cursorRow == 0) {
|
||||||
|
scrollDown(1);
|
||||||
|
} else {
|
||||||
|
cursorRow--;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void eraseDisplay(int mode) {
|
||||||
|
if (mode == 2 || mode == 3) {
|
||||||
|
clearScreen();
|
||||||
|
} else if (mode == 1) {
|
||||||
|
for (int row = 0; row < cursorRow; row++) {
|
||||||
|
clearLine(row, 0, cols - 1);
|
||||||
|
}
|
||||||
|
clearLine(cursorRow, 0, cursorCol);
|
||||||
|
} else {
|
||||||
|
clearLine(cursorRow, cursorCol, cols - 1);
|
||||||
|
for (int row = cursorRow + 1; row < rows; row++) {
|
||||||
|
clearLine(row, 0, cols - 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void eraseLine(int mode) {
|
||||||
|
if (mode == 2) {
|
||||||
|
clearLine(cursorRow, 0, cols - 1);
|
||||||
|
} else if (mode == 1) {
|
||||||
|
clearLine(cursorRow, 0, cursorCol);
|
||||||
|
} else {
|
||||||
|
clearLine(cursorRow, cursorCol, cols - 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void eraseChars(int count) {
|
||||||
|
int end = Math.min(cols - 1, cursorCol + Math.max(1, count) - 1);
|
||||||
|
clearLine(cursorRow, cursorCol, end);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void deleteChars(int count) {
|
||||||
|
count = Math.max(1, count);
|
||||||
|
Cell[] line = cells[cursorRow];
|
||||||
|
for (int col = cursorCol; col < cols; col++) {
|
||||||
|
int source = col + count;
|
||||||
|
if (source < cols) {
|
||||||
|
line[col].copyFrom(line[source]);
|
||||||
|
} else {
|
||||||
|
line[col].clear();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void insertChars(int count) {
|
||||||
|
count = Math.max(1, count);
|
||||||
|
Cell[] line = cells[cursorRow];
|
||||||
|
for (int col = cols - 1; col >= cursorCol; col--) {
|
||||||
|
int source = col - count;
|
||||||
|
if (source >= cursorCol) {
|
||||||
|
line[col].copyFrom(line[source]);
|
||||||
|
} else {
|
||||||
|
line[col].clear();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void insertLines(int count) {
|
||||||
|
count = Math.min(Math.max(1, count), rows - cursorRow);
|
||||||
|
for (int row = rows - 1; row >= cursorRow + count; row--) {
|
||||||
|
copyLine(row, row - count);
|
||||||
|
}
|
||||||
|
for (int row = cursorRow; row < cursorRow + count; row++) {
|
||||||
|
clearLine(row, 0, cols - 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void deleteLines(int count) {
|
||||||
|
count = Math.min(Math.max(1, count), rows - cursorRow);
|
||||||
|
for (int row = cursorRow; row + count < rows; row++) {
|
||||||
|
copyLine(row, row + count);
|
||||||
|
}
|
||||||
|
for (int row = rows - count; row < rows; row++) {
|
||||||
|
clearLine(row, 0, cols - 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void clearScreen() {
|
||||||
|
for (int row = 0; row < rows; row++) {
|
||||||
|
clearLine(row, 0, cols - 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void clearLine(int row, int start, int end) {
|
||||||
|
start = clamp(start, 0, cols - 1);
|
||||||
|
end = clamp(end, 0, cols - 1);
|
||||||
|
for (int col = start; col <= end; col++) {
|
||||||
|
cells[row][col].clear();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void scrollUp(int count) {
|
||||||
|
count = Math.min(Math.max(1, count), rows);
|
||||||
|
for (int row = 0; row + count < rows; row++) {
|
||||||
|
copyLine(row, row + count);
|
||||||
|
}
|
||||||
|
for (int row = rows - count; row < rows; row++) {
|
||||||
|
clearLine(row, 0, cols - 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void scrollDown(int count) {
|
||||||
|
count = Math.min(Math.max(1, count), rows);
|
||||||
|
for (int row = rows - 1; row - count >= 0; row--) {
|
||||||
|
copyLine(row, row - count);
|
||||||
|
}
|
||||||
|
for (int row = 0; row < count; row++) {
|
||||||
|
clearLine(row, 0, cols - 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void copyLine(int target, int source) {
|
||||||
|
for (int col = 0; col < cols; col++) {
|
||||||
|
cells[target][col].copyFrom(cells[source][col]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void appendRow(SpannableStringBuilder output, int row) {
|
||||||
|
appendRow(output, row, cols);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void appendRow(SpannableStringBuilder output, int row, int limit) {
|
||||||
|
int col = 0;
|
||||||
|
while (col < limit) {
|
||||||
|
Cell first = cells[row][col];
|
||||||
|
int start = output.length();
|
||||||
|
int fgColor = first.fg;
|
||||||
|
int bgColor = first.bg;
|
||||||
|
boolean isBold = first.bold;
|
||||||
|
boolean isDim = first.dim;
|
||||||
|
while (col < limit) {
|
||||||
|
Cell cell = cells[row][col];
|
||||||
|
if (cell.fg != fgColor || cell.bg != bgColor || cell.bold != isBold || cell.dim != isDim) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (!cell.continuation) {
|
||||||
|
output.append(cell.value);
|
||||||
|
}
|
||||||
|
col++;
|
||||||
|
}
|
||||||
|
int end = output.length();
|
||||||
|
if (isDim) {
|
||||||
|
fgColor = blendColor(fgColor, bgColor == DEFAULT_BG ? TERMINAL_BG : bgColor, 0.55f);
|
||||||
|
}
|
||||||
|
output.setSpan(new ForegroundColorSpan(fgColor), start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||||
|
if (bgColor != DEFAULT_BG) {
|
||||||
|
output.setSpan(new BackgroundColorSpan(bgColor), start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||||
|
}
|
||||||
|
if (isBold) {
|
||||||
|
output.setSpan(new StyleSpan(Typeface.BOLD), start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private String rowText(int row) {
|
||||||
|
StringBuilder text = new StringBuilder(cols);
|
||||||
|
for (int col = 0; col < cols; col++) {
|
||||||
|
Cell cell = cells[row][col];
|
||||||
|
if (!cell.continuation) {
|
||||||
|
text.append(cell.value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return text.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void saveCursor() {
|
||||||
|
savedRow = cursorRow;
|
||||||
|
savedCol = cursorCol;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void restoreCursor() {
|
||||||
|
cursorRow = clamp(savedRow, 0, rows - 1);
|
||||||
|
cursorCol = clamp(savedCol, 0, cols - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
private int skipStringEscape(String text, int start) {
|
||||||
|
int cursor = start;
|
||||||
|
while (cursor < text.length()) {
|
||||||
|
char item = text.charAt(cursor);
|
||||||
|
if (item == '\u0007') {
|
||||||
|
return cursor + 1;
|
||||||
|
}
|
||||||
|
if (item == '\u001b' && cursor + 1 < text.length() && text.charAt(cursor + 1) == '\\') {
|
||||||
|
return cursor + 2;
|
||||||
|
}
|
||||||
|
cursor++;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isNakedDeviceAttributesTail(String text, int index) {
|
||||||
|
int cursor = index;
|
||||||
|
boolean hasSemicolon = false;
|
||||||
|
if (cursor < text.length() && (text.charAt(cursor) == '?' || text.charAt(cursor) == '>')) {
|
||||||
|
cursor++;
|
||||||
|
}
|
||||||
|
while (cursor < text.length()) {
|
||||||
|
char item = text.charAt(cursor);
|
||||||
|
if (item >= '0' && item <= '9') {
|
||||||
|
cursor++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (item == ';') {
|
||||||
|
hasSemicolon = true;
|
||||||
|
cursor++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
return item == 'c' && hasSemicolon && cursor > index && cursor - index <= 16;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private int skipNakedDeviceAttributesTail(String text, int index) {
|
||||||
|
int cursor = index;
|
||||||
|
while (cursor < text.length() && text.charAt(cursor) != 'c') {
|
||||||
|
cursor++;
|
||||||
|
}
|
||||||
|
return Math.min(cursor + 1, text.length());
|
||||||
|
}
|
||||||
|
|
||||||
|
private int findAnsiEnd(String text, int start) {
|
||||||
|
for (int index = start; index < text.length(); index++) {
|
||||||
|
char item = text.charAt(index);
|
||||||
|
if (item >= '@' && item <= '~') {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
private List<Integer> parseParams(String params) {
|
||||||
|
List<Integer> values = new ArrayList<>();
|
||||||
|
if (params.isEmpty()) {
|
||||||
|
return values;
|
||||||
|
}
|
||||||
|
String[] parts = params.split(";", -1);
|
||||||
|
for (String part : parts) {
|
||||||
|
String cleaned = part.trim();
|
||||||
|
if (cleaned.isEmpty()) {
|
||||||
|
values.add(0);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
values.add(Integer.parseInt(cleaned));
|
||||||
|
} catch (NumberFormatException ignored) {
|
||||||
|
values.add(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return values;
|
||||||
|
}
|
||||||
|
|
||||||
|
private int param(List<Integer> values, int index, int fallback) {
|
||||||
|
if (index >= values.size()) {
|
||||||
|
return fallback;
|
||||||
|
}
|
||||||
|
int value = values.get(index);
|
||||||
|
return value == 0 ? fallback : value;
|
||||||
|
}
|
||||||
|
|
||||||
|
private int ansiColor(int code, boolean background) {
|
||||||
|
int base = background ? (code >= 100 ? code - 100 : code - 40) : (code >= 90 ? code - 90 : code - 30);
|
||||||
|
boolean bright = code >= 90;
|
||||||
|
switch (base) {
|
||||||
|
case 0:
|
||||||
|
return bright ? Color.rgb(80, 88, 100) : Color.rgb(33, 38, 45);
|
||||||
|
case 1:
|
||||||
|
return bright ? Color.rgb(255, 123, 114) : Color.rgb(248, 81, 73);
|
||||||
|
case 2:
|
||||||
|
return bright ? Color.rgb(86, 211, 100) : Color.rgb(63, 185, 80);
|
||||||
|
case 3:
|
||||||
|
return bright ? Color.rgb(234, 179, 8) : Color.rgb(210, 153, 34);
|
||||||
|
case 4:
|
||||||
|
return bright ? Color.rgb(121, 192, 255) : Color.rgb(88, 166, 255);
|
||||||
|
case 5:
|
||||||
|
return bright ? Color.rgb(210, 168, 255) : Color.rgb(188, 140, 255);
|
||||||
|
case 6:
|
||||||
|
return bright ? Color.rgb(86, 211, 219) : Color.rgb(57, 197, 187);
|
||||||
|
case 7:
|
||||||
|
default:
|
||||||
|
return bright ? Color.rgb(240, 246, 252) : Color.rgb(201, 209, 217);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private int xtermColor(int value) {
|
||||||
|
value = clamp(value, 0, 255);
|
||||||
|
if (value < 16) {
|
||||||
|
if (value < 8) {
|
||||||
|
return ansiColor(30 + value, false);
|
||||||
|
}
|
||||||
|
return ansiColor(90 + value - 8, false);
|
||||||
|
}
|
||||||
|
if (value >= 232) {
|
||||||
|
int shade = 8 + (value - 232) * 10;
|
||||||
|
return Color.rgb(shade, shade, shade);
|
||||||
|
}
|
||||||
|
int index = value - 16;
|
||||||
|
int red = xtermComponent(index / 36);
|
||||||
|
int green = xtermComponent((index / 6) % 6);
|
||||||
|
int blue = xtermComponent(index % 6);
|
||||||
|
return Color.rgb(red, green, blue);
|
||||||
|
}
|
||||||
|
|
||||||
|
private int xtermComponent(int value) {
|
||||||
|
return value == 0 ? 0 : 55 + value * 40;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int blendColor(int foreground, int background, float foregroundRatio) {
|
||||||
|
float backgroundRatio = 1f - foregroundRatio;
|
||||||
|
return Color.rgb(
|
||||||
|
Math.round(Color.red(foreground) * foregroundRatio + Color.red(background) * backgroundRatio),
|
||||||
|
Math.round(Color.green(foreground) * foregroundRatio + Color.green(background) * backgroundRatio),
|
||||||
|
Math.round(Color.blue(foreground) * foregroundRatio + Color.blue(background) * backgroundRatio)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int clamp(int value, int min, int max) {
|
||||||
|
return Math.max(min, Math.min(max, value));
|
||||||
|
}
|
||||||
|
|
||||||
|
private static final class Cell {
|
||||||
|
char value = ' ';
|
||||||
|
int fg = DEFAULT_FG;
|
||||||
|
int bg = DEFAULT_BG;
|
||||||
|
boolean bold;
|
||||||
|
boolean dim;
|
||||||
|
boolean continuation;
|
||||||
|
|
||||||
|
void clear() {
|
||||||
|
value = ' ';
|
||||||
|
fg = DEFAULT_FG;
|
||||||
|
bg = DEFAULT_BG;
|
||||||
|
bold = false;
|
||||||
|
dim = false;
|
||||||
|
continuation = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void set(char nextValue, int nextFg, int nextBg, boolean nextBold, boolean nextDim) {
|
||||||
|
value = nextValue;
|
||||||
|
fg = nextFg;
|
||||||
|
bg = nextBg;
|
||||||
|
bold = nextBold;
|
||||||
|
dim = nextDim;
|
||||||
|
continuation = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void setContinuation(int nextFg, int nextBg, boolean nextBold, boolean nextDim) {
|
||||||
|
value = ' ';
|
||||||
|
fg = nextFg;
|
||||||
|
bg = nextBg;
|
||||||
|
bold = nextBold;
|
||||||
|
dim = nextDim;
|
||||||
|
continuation = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void copyFrom(Cell other) {
|
||||||
|
value = other.value;
|
||||||
|
fg = other.fg;
|
||||||
|
bg = other.bg;
|
||||||
|
bold = other.bold;
|
||||||
|
dim = other.dim;
|
||||||
|
continuation = other.continuation;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -6,16 +6,24 @@ import org.json.JSONObject;
|
|||||||
|
|
||||||
import java.io.BufferedInputStream;
|
import java.io.BufferedInputStream;
|
||||||
import java.io.BufferedOutputStream;
|
import java.io.BufferedOutputStream;
|
||||||
|
import java.net.InetSocketAddress;
|
||||||
import java.net.Socket;
|
import java.net.Socket;
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.security.MessageDigest;
|
import java.security.MessageDigest;
|
||||||
import java.security.SecureRandom;
|
import java.security.SecureRandom;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
import java.util.concurrent.ExecutorService;
|
||||||
|
import java.util.concurrent.Executors;
|
||||||
|
import java.util.concurrent.RejectedExecutionException;
|
||||||
|
|
||||||
import javax.net.ssl.SSLSocketFactory;
|
import javax.net.ssl.SSLSocketFactory;
|
||||||
|
|
||||||
final class TerminalSocketClient {
|
final class TerminalSocketClient {
|
||||||
|
private static final long HEARTBEAT_INTERVAL_MS = 15000L;
|
||||||
|
private static final int SOCKET_CONNECT_TIMEOUT_MS = 10000;
|
||||||
|
private static final int SOCKET_READ_TIMEOUT_MS = 45000;
|
||||||
|
|
||||||
interface Listener {
|
interface Listener {
|
||||||
void onConnected();
|
void onConnected();
|
||||||
void onOutput(String data);
|
void onOutput(String data);
|
||||||
@@ -25,11 +33,14 @@ final class TerminalSocketClient {
|
|||||||
|
|
||||||
private final Object writeLock = new Object();
|
private final Object writeLock = new Object();
|
||||||
private final Listener listener;
|
private final Listener listener;
|
||||||
|
private final ExecutorService writeExecutor = Executors.newSingleThreadExecutor(runnable ->
|
||||||
|
new Thread(runnable, "terminal-ws-write"));
|
||||||
private Socket socket;
|
private Socket socket;
|
||||||
private BufferedInputStream input;
|
private BufferedInputStream input;
|
||||||
private BufferedOutputStream output;
|
private BufferedOutputStream output;
|
||||||
private volatile boolean closed;
|
private volatile boolean closed;
|
||||||
private Thread thread;
|
private Thread thread;
|
||||||
|
private Thread heartbeatThread;
|
||||||
|
|
||||||
TerminalSocketClient(Listener listener) {
|
TerminalSocketClient(Listener listener) {
|
||||||
this.listener = listener;
|
this.listener = listener;
|
||||||
@@ -42,32 +53,34 @@ final class TerminalSocketClient {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void sendInput(String data) {
|
void sendInput(String data) {
|
||||||
sendMessage("input", "data", data);
|
sendMessageAsync("input", "data", data);
|
||||||
}
|
}
|
||||||
|
|
||||||
void resize(int cols, int rows) {
|
void resize(int cols, int rows) {
|
||||||
sendMessage("resize", "cols", cols, "rows", rows);
|
sendMessageAsync("resize", "cols", cols, "rows", rows);
|
||||||
}
|
}
|
||||||
|
|
||||||
void scroll(int lines) {
|
void scroll(int lines) {
|
||||||
sendMessage("scroll", "lines", lines);
|
sendMessageAsync("scroll", "lines", lines);
|
||||||
}
|
}
|
||||||
|
|
||||||
void clearHistory() {
|
void clearHistory() {
|
||||||
sendMessage("clear-history");
|
sendMessageAsync("clear-history");
|
||||||
}
|
}
|
||||||
|
|
||||||
void close() {
|
void close() {
|
||||||
closed = true;
|
closed = true;
|
||||||
try {
|
try {
|
||||||
sendFrame(8, new byte[0]);
|
writeExecutor.execute(() -> {
|
||||||
} catch (Exception ignored) {
|
try {
|
||||||
}
|
sendFrame(8, new byte[0]);
|
||||||
try {
|
} catch (Exception ignored) {
|
||||||
if (socket != null) {
|
}
|
||||||
socket.close();
|
closeSocketQuietly();
|
||||||
}
|
});
|
||||||
} catch (Exception ignored) {
|
writeExecutor.shutdown();
|
||||||
|
} catch (RejectedExecutionException ignored) {
|
||||||
|
closeSocketQuietly();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -82,7 +95,7 @@ final class TerminalSocketClient {
|
|||||||
input = new BufferedInputStream(socket.getInputStream());
|
input = new BufferedInputStream(socket.getInputStream());
|
||||||
output = new BufferedOutputStream(socket.getOutputStream());
|
output = new BufferedOutputStream(socket.getOutputStream());
|
||||||
handshake(uri);
|
handshake(uri);
|
||||||
sendMessage(
|
sendMessageSync(
|
||||||
"attach",
|
"attach",
|
||||||
"tabId", "android-" + System.currentTimeMillis(),
|
"tabId", "android-" + System.currentTimeMillis(),
|
||||||
"sessionName", sessionName,
|
"sessionName", sessionName,
|
||||||
@@ -90,6 +103,7 @@ final class TerminalSocketClient {
|
|||||||
"rows", rows
|
"rows", rows
|
||||||
);
|
);
|
||||||
listener.onConnected();
|
listener.onConnected();
|
||||||
|
startHeartbeat();
|
||||||
readLoop();
|
readLoop();
|
||||||
} catch (Exception error) {
|
} catch (Exception error) {
|
||||||
if (!closed) {
|
if (!closed) {
|
||||||
@@ -98,12 +112,8 @@ final class TerminalSocketClient {
|
|||||||
} finally {
|
} finally {
|
||||||
closed = true;
|
closed = true;
|
||||||
listener.onClosed();
|
listener.onClosed();
|
||||||
try {
|
closeSocketQuietly();
|
||||||
if (socket != null) {
|
writeExecutor.shutdownNow();
|
||||||
socket.close();
|
|
||||||
}
|
|
||||||
} catch (Exception ignored) {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -120,10 +130,39 @@ final class TerminalSocketClient {
|
|||||||
if (port == -1) {
|
if (port == -1) {
|
||||||
port = "wss".equalsIgnoreCase(uri.getScheme()) ? 443 : 80;
|
port = "wss".equalsIgnoreCase(uri.getScheme()) ? 443 : 80;
|
||||||
}
|
}
|
||||||
|
Socket raw = new Socket();
|
||||||
|
raw.connect(new InetSocketAddress(uri.getHost(), port), SOCKET_CONNECT_TIMEOUT_MS);
|
||||||
|
Socket connected;
|
||||||
if ("wss".equalsIgnoreCase(uri.getScheme())) {
|
if ("wss".equalsIgnoreCase(uri.getScheme())) {
|
||||||
return SSLSocketFactory.getDefault().createSocket(uri.getHost(), port);
|
connected = ((SSLSocketFactory) SSLSocketFactory.getDefault())
|
||||||
|
.createSocket(raw, uri.getHost(), port, true);
|
||||||
|
} else {
|
||||||
|
connected = raw;
|
||||||
}
|
}
|
||||||
return new Socket(uri.getHost(), port);
|
connected.setKeepAlive(true);
|
||||||
|
connected.setTcpNoDelay(true);
|
||||||
|
connected.setSoTimeout(SOCKET_READ_TIMEOUT_MS);
|
||||||
|
return connected;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void startHeartbeat() {
|
||||||
|
heartbeatThread = new Thread(() -> {
|
||||||
|
while (!closed) {
|
||||||
|
try {
|
||||||
|
Thread.sleep(HEARTBEAT_INTERVAL_MS);
|
||||||
|
if (!closed) {
|
||||||
|
sendFrame(9, new byte[0]);
|
||||||
|
}
|
||||||
|
} catch (InterruptedException ignored) {
|
||||||
|
Thread.currentThread().interrupt();
|
||||||
|
return;
|
||||||
|
} catch (Exception error) {
|
||||||
|
closeSocketQuietly();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, "terminal-ws-heartbeat");
|
||||||
|
heartbeatThread.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void handshake(URI uri) throws Exception {
|
private void handshake(URI uri) throws Exception {
|
||||||
@@ -243,7 +282,7 @@ final class TerminalSocketClient {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void sendJson(JSONObject object) {
|
private void sendJsonSync(JSONObject object) {
|
||||||
try {
|
try {
|
||||||
sendFrame(1, object.toString().getBytes(StandardCharsets.UTF_8));
|
sendFrame(1, object.toString().getBytes(StandardCharsets.UTF_8));
|
||||||
} catch (Exception error) {
|
} catch (Exception error) {
|
||||||
@@ -253,14 +292,21 @@ final class TerminalSocketClient {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void sendMessage(String type, Object... keyValues) {
|
private void sendMessageAsync(String type, Object... keyValues) {
|
||||||
|
try {
|
||||||
|
writeExecutor.execute(() -> sendMessageSync(type, keyValues));
|
||||||
|
} catch (RejectedExecutionException ignored) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void sendMessageSync(String type, Object... keyValues) {
|
||||||
try {
|
try {
|
||||||
JSONObject object = new JSONObject();
|
JSONObject object = new JSONObject();
|
||||||
object.put("type", type);
|
object.put("type", type);
|
||||||
for (int i = 0; i + 1 < keyValues.length; i += 2) {
|
for (int i = 0; i + 1 < keyValues.length; i += 2) {
|
||||||
object.put(String.valueOf(keyValues[i]), keyValues[i + 1]);
|
object.put(String.valueOf(keyValues[i]), keyValues[i + 1]);
|
||||||
}
|
}
|
||||||
sendJson(object);
|
sendJsonSync(object);
|
||||||
} catch (Exception error) {
|
} catch (Exception error) {
|
||||||
if (!closed) {
|
if (!closed) {
|
||||||
listener.onError(error.getMessage() == null ? error.toString() : error.getMessage());
|
listener.onError(error.getMessage() == null ? error.toString() : error.getMessage());
|
||||||
@@ -268,6 +314,19 @@ final class TerminalSocketClient {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void closeSocketQuietly() {
|
||||||
|
if (heartbeatThread != null) {
|
||||||
|
heartbeatThread.interrupt();
|
||||||
|
heartbeatThread = null;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
if (socket != null) {
|
||||||
|
socket.close();
|
||||||
|
}
|
||||||
|
} catch (Exception ignored) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void sendFrame(int opcode, byte[] payload) throws Exception {
|
private void sendFrame(int opcode, byte[] payload) throws Exception {
|
||||||
synchronized (writeLock) {
|
synchronized (writeLock) {
|
||||||
if (output == null) {
|
if (output == null) {
|
||||||
|
|||||||
@@ -26,6 +26,8 @@ import java.util.concurrent.Executors;
|
|||||||
|
|
||||||
final class UpdateManager {
|
final class UpdateManager {
|
||||||
private static final String PREF_PENDING_INSTALL_APK = "pending_install_apk";
|
private static final String PREF_PENDING_INSTALL_APK = "pending_install_apk";
|
||||||
|
private static final int NETWORK_ATTEMPTS = 3;
|
||||||
|
private static final long RETRY_DELAY_MS = 1200L;
|
||||||
|
|
||||||
interface Callback {
|
interface Callback {
|
||||||
void onChecking(boolean checking);
|
void onChecking(boolean checking);
|
||||||
@@ -51,25 +53,85 @@ final class UpdateManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void check(boolean userInitiated) {
|
void check(boolean userInitiated) {
|
||||||
|
checkWithFallback(userInitiated);
|
||||||
|
}
|
||||||
|
|
||||||
|
void checkSelected(boolean userInitiated) {
|
||||||
|
startUpdateCheck(
|
||||||
|
userInitiated,
|
||||||
|
"selected source",
|
||||||
|
new String[]{getUpdateManifestUrl()}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
void checkGitea(boolean userInitiated) {
|
||||||
|
startUpdateCheck(
|
||||||
|
userInitiated,
|
||||||
|
"Gitea",
|
||||||
|
new String[]{BuildConfig.DEFAULT_GITEA_UPDATE_URL}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
void checkGithub(boolean userInitiated) {
|
||||||
|
startUpdateCheck(
|
||||||
|
userInitiated,
|
||||||
|
"GitHub",
|
||||||
|
new String[]{BuildConfig.DEFAULT_GITHUB_UPDATE_URL}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
void checkPreview(boolean userInitiated) {
|
||||||
|
startUpdateCheck(
|
||||||
|
userInitiated,
|
||||||
|
"Preview",
|
||||||
|
new String[]{BuildConfig.DEFAULT_PREVIEW_UPDATE_URL}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
void checkWithFallback(boolean userInitiated) {
|
||||||
|
startUpdateCheck(
|
||||||
|
userInitiated,
|
||||||
|
"Gitea, then GitHub",
|
||||||
|
new String[]{BuildConfig.DEFAULT_GITEA_UPDATE_URL, BuildConfig.DEFAULT_GITHUB_UPDATE_URL}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void startUpdateCheck(boolean userInitiated, String label, String[] manifestUrls) {
|
||||||
if (checkInProgress) {
|
if (checkInProgress) {
|
||||||
postMessage("Update check already running");
|
postMessage("Update check already running");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
String manifestUrl = getUpdateManifestUrl();
|
|
||||||
checkInProgress = true;
|
checkInProgress = true;
|
||||||
callback.onChecking(true);
|
callback.onChecking(true);
|
||||||
postMessage("Checking update from " + hostLabel(manifestUrl) + "...");
|
postMessage("Checking update: " + label + "...");
|
||||||
executor.execute(() -> {
|
executor.execute(() -> {
|
||||||
|
Exception lastError = null;
|
||||||
try {
|
try {
|
||||||
ReleaseInfo info = fetchReleaseInfo(manifestUrl);
|
for (int index = 0; index < manifestUrls.length; index++) {
|
||||||
if (info.versionCode <= BuildConfig.VERSION_CODE) {
|
String manifestUrl = manifestUrls[index];
|
||||||
postMessage("Already up to date: " + BuildConfig.VERSION_NAME);
|
try {
|
||||||
return;
|
postMessage("Checking " + hostLabel(manifestUrl) + "...");
|
||||||
|
ReleaseInfo info = fetchReleaseInfo(manifestUrl);
|
||||||
|
if (info.versionCode <= BuildConfig.VERSION_CODE) {
|
||||||
|
postMessage("Already up to date: " + BuildConfig.VERSION_NAME + " from " + hostLabel(manifestUrl));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
postMessage("Update found: " + info.versionName + " from " + hostLabel(manifestUrl));
|
||||||
|
activity.runOnUiThread(() -> showUpdateDialog(info));
|
||||||
|
return;
|
||||||
|
} catch (Exception error) {
|
||||||
|
lastError = error;
|
||||||
|
if (index + 1 < manifestUrls.length) {
|
||||||
|
postMessage(hostLabel(manifestUrl) + " failed; trying " + hostLabel(manifestUrls[index + 1]) + "...");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
postMessage("Update found: " + info.versionName);
|
if (lastError != null) {
|
||||||
activity.runOnUiThread(() -> showUpdateDialog(info));
|
throw lastError;
|
||||||
} catch (Exception error) {
|
}
|
||||||
postMessage(userInitiated ? "Update check failed: " + error.getMessage() : null);
|
throw new IllegalStateException("No update sources configured");
|
||||||
|
} catch (Exception finalError) {
|
||||||
|
postMessage(userInitiated ? "Update check failed: " + finalError.getMessage() : null);
|
||||||
} finally {
|
} finally {
|
||||||
checkInProgress = false;
|
checkInProgress = false;
|
||||||
activity.runOnUiThread(() -> callback.onChecking(false));
|
activity.runOnUiThread(() -> callback.onChecking(false));
|
||||||
@@ -177,6 +239,22 @@ final class UpdateManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private String readText(String url) throws Exception {
|
private String readText(String url) throws Exception {
|
||||||
|
Exception lastError = null;
|
||||||
|
for (int attempt = 1; attempt <= NETWORK_ATTEMPTS; attempt++) {
|
||||||
|
try {
|
||||||
|
return readTextOnce(url);
|
||||||
|
} catch (Exception error) {
|
||||||
|
lastError = error;
|
||||||
|
if (attempt < NETWORK_ATTEMPTS) {
|
||||||
|
postMessage("Retrying " + hostLabel(url) + " (" + (attempt + 1) + "/" + NETWORK_ATTEMPTS + ")...");
|
||||||
|
waitBeforeRetry();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw lastError == null ? new IllegalStateException("Request failed") : lastError;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String readTextOnce(String url) throws Exception {
|
||||||
HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();
|
HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();
|
||||||
connection.setConnectTimeout(12000);
|
connection.setConnectTimeout(12000);
|
||||||
connection.setReadTimeout(12000);
|
connection.setReadTimeout(12000);
|
||||||
@@ -238,7 +316,36 @@ final class UpdateManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
postMessage("Downloading " + info.versionName + "...");
|
postMessage("Downloading " + info.versionName + "...");
|
||||||
HttpURLConnection connection = (HttpURLConnection) new URL(info.apkUrl).openConnection();
|
File partial = new File(dir, "tmux-android-" + info.versionCode + ".apk.tmp");
|
||||||
|
if (partial.exists()) {
|
||||||
|
partial.delete();
|
||||||
|
}
|
||||||
|
if (apk.exists()) {
|
||||||
|
apk.delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
Exception lastError = null;
|
||||||
|
for (int attempt = 1; attempt <= NETWORK_ATTEMPTS; attempt++) {
|
||||||
|
try {
|
||||||
|
downloadApkOnce(info.apkUrl, partial);
|
||||||
|
if (!partial.renameTo(apk)) {
|
||||||
|
throw new IllegalStateException("Cannot finalize APK download");
|
||||||
|
}
|
||||||
|
return apk;
|
||||||
|
} catch (Exception error) {
|
||||||
|
lastError = error;
|
||||||
|
partial.delete();
|
||||||
|
if (attempt < NETWORK_ATTEMPTS) {
|
||||||
|
postMessage("Retrying APK download (" + (attempt + 1) + "/" + NETWORK_ATTEMPTS + ")...");
|
||||||
|
waitBeforeRetry();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw lastError == null ? new IllegalStateException("APK download failed") : lastError;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void downloadApkOnce(String apkUrl, File apk) throws Exception {
|
||||||
|
HttpURLConnection connection = (HttpURLConnection) new URL(apkUrl).openConnection();
|
||||||
connection.setConnectTimeout(12000);
|
connection.setConnectTimeout(12000);
|
||||||
connection.setReadTimeout(60000);
|
connection.setReadTimeout(60000);
|
||||||
try (InputStream input = new BufferedInputStream(connection.getInputStream());
|
try (InputStream input = new BufferedInputStream(connection.getInputStream());
|
||||||
@@ -251,7 +358,6 @@ final class UpdateManager {
|
|||||||
} finally {
|
} finally {
|
||||||
connection.disconnect();
|
connection.disconnect();
|
||||||
}
|
}
|
||||||
return apk;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean isCachedApkValid(File apk, ReleaseInfo info) throws Exception {
|
private boolean isCachedApkValid(File apk, ReleaseInfo info) throws Exception {
|
||||||
@@ -366,4 +472,8 @@ final class UpdateManager {
|
|||||||
}
|
}
|
||||||
activity.runOnUiThread(() -> callback.onMessage(message));
|
activity.runOnUiThread(() -> callback.onMessage(message));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void waitBeforeRetry() throws InterruptedException {
|
||||||
|
Thread.sleep(RETRY_DELAY_MS);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,12 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<style name="AppTheme" parent="android:style/Theme.Material.Light.NoActionBar">
|
<style name="AppTheme" parent="android:style/Theme.Material.NoActionBar">
|
||||||
<item name="android:fontFamily">sans</item>
|
<item name="android:fontFamily">sans</item>
|
||||||
<item name="android:windowLightStatusBar">false</item>
|
<item name="android:windowLightStatusBar">false</item>
|
||||||
<item name="android:statusBarColor">#111418</item>
|
<item name="android:windowLightNavigationBar">false</item>
|
||||||
<item name="android:navigationBarColor">#111418</item>
|
<item name="android:statusBarColor">#090B0D</item>
|
||||||
|
<item name="android:navigationBarColor">#090B0D</item>
|
||||||
|
<item name="android:windowBackground">#090B0D</item>
|
||||||
<item name="android:windowActionModeOverlay">true</item>
|
<item name="android:windowActionModeOverlay">true</item>
|
||||||
</style>
|
</style>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
||||||
|
|||||||
@@ -87,10 +87,12 @@ Implemented now:
|
|||||||
preview display
|
preview display
|
||||||
- GitHub Actions APK build
|
- GitHub Actions APK build
|
||||||
- release manifest `latest.json`
|
- release manifest `latest.json`
|
||||||
- selected-source update checks; Gitea and GitHub are not probed in the same
|
- Auto/Gitea/GitHub/Selected update checks, with Auto falling back from Gitea
|
||||||
update check
|
to GitHub
|
||||||
- one-download-per-version APK cache, SHA-256 verification, and installer
|
- one-download-per-version APK cache, SHA-256 verification, and installer
|
||||||
handoff
|
handoff
|
||||||
|
- terminal viewport resize derived from the Android text area, including
|
||||||
|
keyboard height changes, to avoid fixed-width tmux output wrapping on phones
|
||||||
- permission/about surfaces for unknown-app install status, notification status,
|
- permission/about surfaces for unknown-app install status, notification status,
|
||||||
app settings, app version/build type, package name, selected update source, and
|
app settings, app version/build type, package name, selected update source, and
|
||||||
HTTP/WebSocket API/protocol summary
|
HTTP/WebSocket API/protocol summary
|
||||||
@@ -101,11 +103,11 @@ The Android app cannot silently replace itself. It may download a newer APK and
|
|||||||
open Android's package installer, but the user must approve the install. On
|
open Android's package installer, but the user must approve the install. On
|
||||||
Android 8+, the user may also need to allow this app to install unknown apps.
|
Android 8+, the user may also need to allow this app to install unknown apps.
|
||||||
|
|
||||||
The app checks exactly one update source per run: the selected manifest/API URL.
|
The app provides explicit update checks for Auto, Gitea, GitHub, and Selected.
|
||||||
Gitea is the default public source because phones may not reach GitHub reliably.
|
Auto checks Gitea first because phones may not reach GitHub reliably, then tries
|
||||||
GitHub is available as an optional public source, but the app does not fall back
|
GitHub only if Gitea cannot be reached. The manual Gitea, GitHub, and Selected
|
||||||
across both providers during a normal check. This keeps update behavior
|
buttons force one source. Transient network failures are retried against the
|
||||||
predictable on mobile networks and avoids duplicate provider checks.
|
current source before a source is considered failed.
|
||||||
|
|
||||||
Downloaded APKs are cached by `versionCode`. If a cached APK exists and its
|
Downloaded APKs are cached by `versionCode`. If a cached APK exists and its
|
||||||
SHA-256 matches the manifest, the app reuses it instead of downloading the same
|
SHA-256 matches the manifest, the app reuses it instead of downloading the same
|
||||||
@@ -119,6 +121,14 @@ runs are for CI artifacts and should be used to validate grouped changes. Do not
|
|||||||
publish a new tag for every small UI copy or layout change; publish when there
|
publish a new tag for every small UI copy or layout change; publish when there
|
||||||
is a useful feature or test batch for phone-side validation.
|
is a useful feature or test batch for phone-side validation.
|
||||||
|
|
||||||
|
Release APKs must be identical across the public GitHub and Gitea download
|
||||||
|
channels. Treat the GitHub Release APK as the canonical build artifact, then
|
||||||
|
mirror that same APK byte-for-byte to the matching Gitea Release. The Gitea
|
||||||
|
`latest.json` should point to the Gitea APK URL, but it must keep the same
|
||||||
|
`versionCode`, `versionName`, and `sha256` as the GitHub manifest. A Gitea-built
|
||||||
|
APK is only a compile check unless its SHA-256 exactly matches the GitHub
|
||||||
|
release APK.
|
||||||
|
|
||||||
## Native Roadmap
|
## Native Roadmap
|
||||||
|
|
||||||
To converge with the upstream mobile design, the next implementation should add
|
To converge with the upstream mobile design, the next implementation should add
|
||||||
|
|||||||
@@ -0,0 +1,41 @@
|
|||||||
|
# Preview APK workflow
|
||||||
|
|
||||||
|
Use this path for fast UI testing before a formal tag/release.
|
||||||
|
|
||||||
|
The preview build is a debug APK with package id `com.neatstudio.tmuxandroid.debug`.
|
||||||
|
It can be installed next to the formal release app, so preview version codes do not
|
||||||
|
block future formal releases.
|
||||||
|
|
||||||
|
## Build locally
|
||||||
|
|
||||||
|
```bash
|
||||||
|
scripts/setup-android-local.sh
|
||||||
|
scripts/build-preview-apk.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
Output:
|
||||||
|
|
||||||
|
- `release/preview/tmux-android-preview.apk`
|
||||||
|
- `release/preview/latest.json`
|
||||||
|
|
||||||
|
## Upload to Gitea preview release
|
||||||
|
|
||||||
|
```bash
|
||||||
|
scripts/upload-gitea-preview.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
The script reads `TMUX_GITEA_TOKEN` or prompts for a hidden token.
|
||||||
|
Before uploading, it deletes existing assets with the same names, so the preview
|
||||||
|
release keeps only one current APK and one current manifest.
|
||||||
|
|
||||||
|
Fixed preview URLs:
|
||||||
|
|
||||||
|
- Manifest: `https://gitea.neatcn.com/tmux/tmux-browser-android/releases/download/preview/latest.json`
|
||||||
|
- APK: `https://gitea.neatcn.com/tmux/tmux-browser-android/releases/download/preview/tmux-android-preview.apk`
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
- Preview APKs are not formal releases and should not be tagged as `v*`.
|
||||||
|
- Preview uses debug signing unless a separate debug signing setup is added.
|
||||||
|
- The installed preview app is separate from the release app because Gradle applies
|
||||||
|
`applicationIdSuffix = ".debug"` for debug builds.
|
||||||
Executable
+46
@@ -0,0 +1,46 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||||||
|
CI_DIR="${ROOT_DIR}/.ci"
|
||||||
|
GRADLE_VERSION="${GRADLE_VERSION:-8.10.2}"
|
||||||
|
GRADLE_HOME="${CI_DIR}/gradle-${GRADLE_VERSION}"
|
||||||
|
ANDROID_HOME="${ANDROID_HOME:-${CI_DIR}/android-sdk}"
|
||||||
|
CMDLINE_TOOLS="${ANDROID_HOME}/cmdline-tools/latest"
|
||||||
|
BUILD_NUMBER="${BUILD_NUMBER:-$(date -u +%m%d%H%M)}"
|
||||||
|
VERSION_CODE="${VERSION_CODE:-$((900000000 + 10#${BUILD_NUMBER}))}"
|
||||||
|
VERSION_NAME="${VERSION_NAME:-preview-${BUILD_NUMBER}}"
|
||||||
|
|
||||||
|
if [ ! -x "${GRADLE_HOME}/bin/gradle" ] || [ ! -x "${CMDLINE_TOOLS}/bin/sdkmanager" ]; then
|
||||||
|
"${ROOT_DIR}/scripts/setup-android-local.sh"
|
||||||
|
fi
|
||||||
|
|
||||||
|
export ANDROID_HOME
|
||||||
|
export ANDROID_SDK_ROOT="${ANDROID_HOME}"
|
||||||
|
export PATH="${GRADLE_HOME}/bin:${CMDLINE_TOOLS}/bin:${ANDROID_HOME}/platform-tools:${PATH}"
|
||||||
|
|
||||||
|
cd "${ROOT_DIR}"
|
||||||
|
gradle :app:assembleDebug \
|
||||||
|
-PversionCode="${VERSION_CODE}" \
|
||||||
|
-PversionName="${VERSION_NAME}" \
|
||||||
|
-PrepoSlug="neatstudio/tmux-browser-android"
|
||||||
|
|
||||||
|
OUT_DIR="${ROOT_DIR}/release/preview"
|
||||||
|
mkdir -p "${OUT_DIR}"
|
||||||
|
APK_PATH="$(find app/build/outputs/apk/debug -name '*.apk' | sort | tail -n 1)"
|
||||||
|
cp "${APK_PATH}" "${OUT_DIR}/tmux-android-preview.apk"
|
||||||
|
SHA256="$(sha256sum "${OUT_DIR}/tmux-android-preview.apk" | cut -d " " -f 1)"
|
||||||
|
|
||||||
|
cat > "${OUT_DIR}/latest.json" <<JSON
|
||||||
|
{
|
||||||
|
"versionCode": ${VERSION_CODE},
|
||||||
|
"versionName": "${VERSION_NAME}",
|
||||||
|
"apkUrl": "https://gitea.neatcn.com/tmux/tmux-browser-android/releases/download/preview/tmux-android-preview.apk",
|
||||||
|
"sha256": "${SHA256}",
|
||||||
|
"releasePageUrl": "https://gitea.neatcn.com/tmux/tmux-browser-android/releases/tag/preview",
|
||||||
|
"minSdk": 26
|
||||||
|
}
|
||||||
|
JSON
|
||||||
|
|
||||||
|
ls -lh "${OUT_DIR}/tmux-android-preview.apk" "${OUT_DIR}/latest.json"
|
||||||
|
sha256sum "${OUT_DIR}/tmux-android-preview.apk"
|
||||||
Executable
+115
@@ -0,0 +1,115 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
cat >&2 <<'EOF'
|
||||||
|
Usage: scripts/mirror-gitea-release.sh TAG APK_PATH [VERSION_CODE] [VERSION_NAME]
|
||||||
|
|
||||||
|
Mirrors an already-built APK to the Gitea release for TAG and uploads a
|
||||||
|
Gitea-specific latest.json.
|
||||||
|
|
||||||
|
Token source:
|
||||||
|
TMUX_GITEA_TOKEN environment variable, or hidden stdin prompt.
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
if [ "${1:-}" = "-h" ] || [ "${1:-}" = "--help" ]; then
|
||||||
|
usage
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$#" -lt 2 ] || [ "$#" -gt 4 ]; then
|
||||||
|
usage
|
||||||
|
exit 2
|
||||||
|
fi
|
||||||
|
|
||||||
|
TAG="$1"
|
||||||
|
APK_PATH="$2"
|
||||||
|
VERSION_NAME="${4:-${TAG#v}}"
|
||||||
|
|
||||||
|
if [ ! -f "$APK_PATH" ]; then
|
||||||
|
echo "APK not found: $APK_PATH" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "${3:-}" ]; then
|
||||||
|
VERSION_CODE="$3"
|
||||||
|
else
|
||||||
|
IFS=. read -r MAJOR MINOR PATCH <<EOF
|
||||||
|
$VERSION_NAME
|
||||||
|
EOF
|
||||||
|
VERSION_CODE=$((MAJOR * 1000000 + MINOR * 1000 + PATCH))
|
||||||
|
fi
|
||||||
|
|
||||||
|
TOKEN="${TMUX_GITEA_TOKEN:-}"
|
||||||
|
if [ -z "$TOKEN" ]; then
|
||||||
|
printf "Gitea token: " >&2
|
||||||
|
IFS= read -rs TOKEN
|
||||||
|
printf "\n" >&2
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$TOKEN" ]; then
|
||||||
|
echo "Missing Gitea token." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
API_ROOT="https://gitea.neatcn.com/api/v1/repos/tmux/tmux-browser-android"
|
||||||
|
RELEASE_PAGE_URL="https://gitea.neatcn.com/tmux/tmux-browser-android/releases/tag/${TAG}"
|
||||||
|
APK_URL="https://gitea.neatcn.com/tmux/tmux-browser-android/releases/download/${TAG}/tmux-android.apk"
|
||||||
|
SHA256="$(sha256sum "$APK_PATH" | cut -d " " -f 1)"
|
||||||
|
WORK_DIR="$(mktemp -d)"
|
||||||
|
trap 'rm -rf "$WORK_DIR"' EXIT
|
||||||
|
|
||||||
|
LATEST_JSON="${WORK_DIR}/latest.json"
|
||||||
|
cat > "$LATEST_JSON" <<JSON
|
||||||
|
{
|
||||||
|
"versionCode": ${VERSION_CODE},
|
||||||
|
"versionName": "${VERSION_NAME}",
|
||||||
|
"apkUrl": "${APK_URL}",
|
||||||
|
"sha256": "${SHA256}",
|
||||||
|
"releasePageUrl": "${RELEASE_PAGE_URL}",
|
||||||
|
"minSdk": 26
|
||||||
|
}
|
||||||
|
JSON
|
||||||
|
|
||||||
|
RELEASE_JSON="${WORK_DIR}/release.json"
|
||||||
|
BODY='{"tag_name":"'"${TAG}"'","target_commitish":"main","name":"tmux Android '"${VERSION_NAME}"'","body":"Android APK for tmux-ui remote testing.","draft":false,"prerelease":false}'
|
||||||
|
|
||||||
|
if ! curl -fsSL \
|
||||||
|
-X POST \
|
||||||
|
-H "Authorization: token ${TOKEN}" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-d "$BODY" \
|
||||||
|
"${API_ROOT}/releases" \
|
||||||
|
-o "$RELEASE_JSON"; then
|
||||||
|
curl -fsSL \
|
||||||
|
-H "Authorization: token ${TOKEN}" \
|
||||||
|
"${API_ROOT}/releases/tags/${TAG}" \
|
||||||
|
-o "$RELEASE_JSON"
|
||||||
|
fi
|
||||||
|
|
||||||
|
RELEASE_ID="$(sed -n 's/^{"id":\([0-9][0-9]*\),.*/\1/p' "$RELEASE_JSON" | head -1)"
|
||||||
|
if [ -z "$RELEASE_ID" ]; then
|
||||||
|
echo "Cannot resolve Gitea release id for ${TAG}." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
upload_asset() {
|
||||||
|
local file="$1"
|
||||||
|
local name="$2"
|
||||||
|
local type="$3"
|
||||||
|
curl -fsSL \
|
||||||
|
-X POST \
|
||||||
|
-H "Authorization: token ${TOKEN}" \
|
||||||
|
-F "attachment=@${file};type=${type}" \
|
||||||
|
"${API_ROOT}/releases/${RELEASE_ID}/assets?name=${name}" \
|
||||||
|
-o "${WORK_DIR}/${name}.asset.json"
|
||||||
|
}
|
||||||
|
|
||||||
|
upload_asset "$APK_PATH" "tmux-android.apk" "application/vnd.android.package-archive"
|
||||||
|
upload_asset "$LATEST_JSON" "latest.json" "application/json"
|
||||||
|
|
||||||
|
echo "Mirrored ${TAG} to Gitea release ${RELEASE_ID}"
|
||||||
|
echo "versionCode=${VERSION_CODE}"
|
||||||
|
echo "versionName=${VERSION_NAME}"
|
||||||
|
echo "sha256=${SHA256}"
|
||||||
Executable
+39
@@ -0,0 +1,39 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||||||
|
CI_DIR="${ROOT_DIR}/.ci"
|
||||||
|
GRADLE_VERSION="${GRADLE_VERSION:-8.10.2}"
|
||||||
|
ANDROID_TOOLS_ZIP="${ANDROID_TOOLS_ZIP:-commandlinetools-linux-11076708_latest.zip}"
|
||||||
|
GRADLE_HOME="${CI_DIR}/gradle-${GRADLE_VERSION}"
|
||||||
|
ANDROID_HOME="${ANDROID_HOME:-${CI_DIR}/android-sdk}"
|
||||||
|
CMDLINE_TOOLS="${ANDROID_HOME}/cmdline-tools/latest"
|
||||||
|
|
||||||
|
mkdir -p "${CI_DIR}"
|
||||||
|
|
||||||
|
if [ ! -x "${GRADLE_HOME}/bin/gradle" ]; then
|
||||||
|
curl -fSL --connect-timeout 20 --retry 3 --retry-delay 2 --max-time 600 \
|
||||||
|
-o "${CI_DIR}/gradle.zip" \
|
||||||
|
"https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-bin.zip"
|
||||||
|
unzip -q "${CI_DIR}/gradle.zip" -d "${CI_DIR}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -x "${CMDLINE_TOOLS}/bin/sdkmanager" ]; then
|
||||||
|
mkdir -p "${ANDROID_HOME}/cmdline-tools"
|
||||||
|
curl -fSL --connect-timeout 20 --retry 3 --retry-delay 2 --max-time 600 \
|
||||||
|
-o "${CI_DIR}/android-tools.zip" \
|
||||||
|
"https://dl.google.com/android/repository/${ANDROID_TOOLS_ZIP}"
|
||||||
|
unzip -q "${CI_DIR}/android-tools.zip" -d "${ANDROID_HOME}/cmdline-tools"
|
||||||
|
rm -rf "${CMDLINE_TOOLS}"
|
||||||
|
mv "${ANDROID_HOME}/cmdline-tools/cmdline-tools" "${CMDLINE_TOOLS}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
export ANDROID_HOME
|
||||||
|
export ANDROID_SDK_ROOT="${ANDROID_HOME}"
|
||||||
|
export PATH="${GRADLE_HOME}/bin:${CMDLINE_TOOLS}/bin:${ANDROID_HOME}/platform-tools:${PATH}"
|
||||||
|
|
||||||
|
yes | sdkmanager --licenses >/dev/null || true
|
||||||
|
sdkmanager "platforms;android-35" "build-tools;35.0.0" "platform-tools"
|
||||||
|
|
||||||
|
echo "ANDROID_HOME=${ANDROID_HOME}"
|
||||||
|
echo "GRADLE_HOME=${GRADLE_HOME}"
|
||||||
Executable
+93
@@ -0,0 +1,93 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||||||
|
APK_PATH="${1:-${ROOT_DIR}/release/preview/tmux-android-preview.apk}"
|
||||||
|
LATEST_JSON="${2:-${ROOT_DIR}/release/preview/latest.json}"
|
||||||
|
TAG="preview"
|
||||||
|
API_ROOT="https://gitea.neatcn.com/api/v1/repos/tmux/tmux-browser-android"
|
||||||
|
|
||||||
|
if [ ! -f "${APK_PATH}" ]; then
|
||||||
|
echo "APK not found: ${APK_PATH}" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if [ ! -f "${LATEST_JSON}" ]; then
|
||||||
|
echo "latest.json not found: ${LATEST_JSON}" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
TOKEN="${TMUX_GITEA_TOKEN:-}"
|
||||||
|
if [ -z "${TOKEN}" ]; then
|
||||||
|
printf "Gitea token: " >&2
|
||||||
|
IFS= read -rs TOKEN
|
||||||
|
printf "\n" >&2
|
||||||
|
fi
|
||||||
|
if [ -z "${TOKEN}" ]; then
|
||||||
|
echo "Missing Gitea token." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
WORK_DIR="$(mktemp -d)"
|
||||||
|
trap 'rm -rf "${WORK_DIR}"' EXIT
|
||||||
|
|
||||||
|
RELEASE_JSON="${WORK_DIR}/release.json"
|
||||||
|
BODY='{"tag_name":"preview","target_commitish":"main","name":"tmux Android Preview","body":"Mutable preview APK for fast UI testing. This is not a formal release.","draft":false,"prerelease":true}'
|
||||||
|
|
||||||
|
if ! curl -fsSL \
|
||||||
|
-X POST \
|
||||||
|
-H "Authorization: token ${TOKEN}" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-d "${BODY}" \
|
||||||
|
"${API_ROOT}/releases" \
|
||||||
|
-o "${RELEASE_JSON}"; then
|
||||||
|
curl -fsSL \
|
||||||
|
-H "Authorization: token ${TOKEN}" \
|
||||||
|
"${API_ROOT}/releases/tags/${TAG}" \
|
||||||
|
-o "${RELEASE_JSON}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
RELEASE_ID="$(sed -n 's/^{"id":\([0-9][0-9]*\),.*/\1/p' "${RELEASE_JSON}" | head -1)"
|
||||||
|
if [ -z "${RELEASE_ID}" ]; then
|
||||||
|
echo "Cannot resolve Gitea release id for preview." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
upload_asset() {
|
||||||
|
local file="$1"
|
||||||
|
local name="$2"
|
||||||
|
local type="$3"
|
||||||
|
local assets_json old_ids old_id
|
||||||
|
assets_json="${WORK_DIR}/assets-${name}.json"
|
||||||
|
curl -fsSL -H "Authorization: token ${TOKEN}" \
|
||||||
|
"${API_ROOT}/releases/${RELEASE_ID}/assets" \
|
||||||
|
-o "${assets_json}"
|
||||||
|
old_ids="$(python3 - "${assets_json}" "${name}" <<'PY'
|
||||||
|
import json
|
||||||
|
import sys
|
||||||
|
|
||||||
|
with open(sys.argv[1], "r", encoding="utf-8") as handle:
|
||||||
|
assets = json.load(handle)
|
||||||
|
for asset in assets:
|
||||||
|
if asset.get("name") == sys.argv[2]:
|
||||||
|
print(asset.get("id"))
|
||||||
|
PY
|
||||||
|
)"
|
||||||
|
for old_id in ${old_ids}; do
|
||||||
|
curl -fsSL -X DELETE -H "Authorization: token ${TOKEN}" \
|
||||||
|
"${API_ROOT}/releases/${RELEASE_ID}/assets/${old_id}" \
|
||||||
|
-o /dev/null
|
||||||
|
done
|
||||||
|
curl -fsSL \
|
||||||
|
-X POST \
|
||||||
|
-H "Authorization: token ${TOKEN}" \
|
||||||
|
-F "attachment=@${file};type=${type}" \
|
||||||
|
"${API_ROOT}/releases/${RELEASE_ID}/assets?name=${name}" \
|
||||||
|
-o "${WORK_DIR}/${name}.asset.json"
|
||||||
|
}
|
||||||
|
|
||||||
|
upload_asset "${APK_PATH}" "tmux-android-preview.apk" "application/vnd.android.package-archive"
|
||||||
|
upload_asset "${LATEST_JSON}" "latest.json" "application/json"
|
||||||
|
|
||||||
|
echo "Uploaded preview release ${RELEASE_ID}"
|
||||||
|
echo "Manifest: https://gitea.neatcn.com/tmux/tmux-browser-android/releases/download/preview/latest.json"
|
||||||
|
echo "APK: https://gitea.neatcn.com/tmux/tmux-browser-android/releases/download/preview/tmux-android-preview.apk"
|
||||||
Reference in New Issue
Block a user