Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f1db46ecbe | ||
|
|
c0904e6aaa | ||
|
|
1d9492aff5 | ||
|
|
9416fa6518 | ||
|
|
360e2f3af0 | ||
|
|
0119c7cb0e |
@@ -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);
|
||||
}
|
||||
}
|
||||
@@ -71,6 +71,8 @@ public final class MainActivity extends Activity {
|
||||
private static final int STATUS_BUSY = 1;
|
||||
private static final int STATUS_SUCCESS = 2;
|
||||
private static final int STATUS_ERROR = 3;
|
||||
private static final int TERMINAL_VIEW_CHAT = 0;
|
||||
private static final int TERMINAL_VIEW_FULL = 1;
|
||||
private static final long TERMINAL_RENDER_INTERVAL_MS = 80L;
|
||||
private static final long[] SOCKET_RECONNECT_DELAYS_MS = {1000L, 2000L, 4000L, 8000L, 15000L};
|
||||
private static final int COLOR_APP_BG = Color.rgb(18, 20, 24);
|
||||
@@ -127,6 +129,9 @@ public final class MainActivity extends Activity {
|
||||
private TextView terminalConnectionText;
|
||||
private Button terminalReadingButton;
|
||||
private ScrollView terminalScroll;
|
||||
private LinearLayout terminalChatList;
|
||||
private TextView terminalLiveStatusText;
|
||||
private TextView terminalLiveOutputText;
|
||||
private EditText inputField;
|
||||
private final Button[] terminalAccessoryTabButtons = new Button[4];
|
||||
private View terminalAccessoryBar;
|
||||
@@ -146,12 +151,14 @@ public final class MainActivity extends Activity {
|
||||
private int lastActiveSessionCount = -1;
|
||||
private TerminalScreenBuffer terminalScreen = new TerminalScreenBuffer(DEFAULT_TERMINAL_COLS, DEFAULT_TERMINAL_ROWS);
|
||||
private final StringBuilder queuedTerminalInput = new StringBuilder();
|
||||
private final Set<String> terminalExpandedMessages = new HashSet<>();
|
||||
private final List<ConversationMessage> terminalConversationMessages = new ArrayList<>();
|
||||
private boolean terminalConnected;
|
||||
private boolean terminalConnecting;
|
||||
private boolean terminalRenderPending;
|
||||
private boolean terminalSelectionEnabled;
|
||||
private boolean terminalFollowOutput = true;
|
||||
private boolean terminalReadingMode = true;
|
||||
private int terminalViewMode = TERMINAL_VIEW_CHAT;
|
||||
private int terminalKeyPage;
|
||||
private int terminalReconnectAttempt;
|
||||
private int terminalConnectionGeneration;
|
||||
@@ -1603,6 +1610,10 @@ public final class MainActivity extends Activity {
|
||||
terminalSelectionEnabled = false;
|
||||
terminalFollowOutput = true;
|
||||
terminalKeyPage = 0;
|
||||
terminalExpandedMessages.clear();
|
||||
terminalConversationMessages.clear();
|
||||
terminalLiveStatusText = null;
|
||||
terminalLiveOutputText = null;
|
||||
terminalImagePath = "";
|
||||
terminalImagePreviewBar = null;
|
||||
terminalImagePreview = null;
|
||||
@@ -1628,16 +1639,17 @@ public final class MainActivity extends Activity {
|
||||
terminalText.setTextSize(11);
|
||||
terminalText.setTypeface(Typeface.MONOSPACE);
|
||||
terminalText.setIncludeFontPadding(false);
|
||||
terminalText.setHorizontallyScrolling(!terminalReadingMode);
|
||||
terminalText.setHorizontallyScrolling(true);
|
||||
terminalText.setLineSpacing(0, 1.05f);
|
||||
terminalText.setGravity(Gravity.BOTTOM | Gravity.START);
|
||||
terminalText.setTextIsSelectable(terminalSelectionEnabled);
|
||||
terminalText.setPadding(dp(2), dp(8), dp(2), dp(8));
|
||||
terminalText.setBackgroundColor(COLOR_TERMINAL_BG);
|
||||
terminalScroll.addView(terminalText, new ScrollView.LayoutParams(
|
||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||
ViewGroup.LayoutParams.WRAP_CONTENT
|
||||
));
|
||||
terminalChatList = new LinearLayout(this);
|
||||
terminalChatList.setOrientation(LinearLayout.VERTICAL);
|
||||
terminalChatList.setPadding(dp(10), dp(12), dp(10), dp(18));
|
||||
terminalChatList.addView(projectStateText("Loading conversation..."), matchWrap());
|
||||
showTerminalView(terminalViewMode, false);
|
||||
terminalScroll.addOnLayoutChangeListener((view, left, top, right, bottom, oldLeft, oldTop, oldRight, oldBottom) ->
|
||||
resizeTerminalToViewport(false));
|
||||
terminalScroll.setOnScrollChangeListener((view, scrollX, scrollY, oldScrollX, oldScrollY) ->
|
||||
@@ -1659,6 +1671,7 @@ public final class MainActivity extends Activity {
|
||||
connectTerminal(sessionName);
|
||||
refreshTerminalGroupSessions(sessionName);
|
||||
refreshTerminalSessionMeta(sessionName);
|
||||
refreshTerminalConversation(sessionName);
|
||||
});
|
||||
inputField.post(() -> {
|
||||
inputField.requestFocus();
|
||||
@@ -1717,41 +1730,86 @@ public final class MainActivity extends Activity {
|
||||
terminalMetaText.setIncludeFontPadding(false);
|
||||
updateTerminalMeta();
|
||||
|
||||
TextView version = new TextView(this);
|
||||
version.setText("v" + BuildConfig.VERSION_NAME + " (" + BuildConfig.VERSION_CODE + ")");
|
||||
version.setTextColor(COLOR_TEXT_DIM);
|
||||
version.setTextSize(8);
|
||||
version.setTypeface(Typeface.MONOSPACE);
|
||||
version.setSingleLine(true);
|
||||
version.setIncludeFontPadding(false);
|
||||
|
||||
LinearLayout metaRow = new LinearLayout(this);
|
||||
metaRow.setOrientation(LinearLayout.HORIZONTAL);
|
||||
metaRow.setGravity(Gravity.CENTER_VERTICAL);
|
||||
metaRow.addView(terminalMetaText, new LinearLayout.LayoutParams(
|
||||
0,
|
||||
dp(13),
|
||||
1
|
||||
));
|
||||
LinearLayout.LayoutParams versionParams = new LinearLayout.LayoutParams(
|
||||
ViewGroup.LayoutParams.WRAP_CONTENT,
|
||||
dp(13)
|
||||
);
|
||||
versionParams.leftMargin = dp(6);
|
||||
metaRow.addView(version, versionParams);
|
||||
|
||||
titleBlock.addView(titleRow, new LinearLayout.LayoutParams(
|
||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||
dp(17)
|
||||
));
|
||||
titleBlock.addView(terminalMetaText, new LinearLayout.LayoutParams(
|
||||
titleBlock.addView(metaRow, new LinearLayout.LayoutParams(
|
||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||
dp(13)
|
||||
));
|
||||
bar.addView(titleBlock, new LinearLayout.LayoutParams(0, dp(32), 1));
|
||||
terminalReadingButton = terminalToolButton("读", view ->
|
||||
setTerminalReadingMode(!terminalReadingMode));
|
||||
terminalReadingButton.setContentDescription("Toggle Chinese reading mode");
|
||||
terminalReadingButton = terminalToolButton("聊", view -> showTerminalView(
|
||||
terminalViewMode == TERMINAL_VIEW_CHAT ? TERMINAL_VIEW_FULL : TERMINAL_VIEW_CHAT,
|
||||
true
|
||||
));
|
||||
terminalReadingButton.setContentDescription("Toggle chat and terminal view");
|
||||
styleTerminalReadingButton();
|
||||
bar.addView(terminalReadingButton);
|
||||
bar.addView(terminalToolButton("☰", view -> showTerminalActions(sessionName)));
|
||||
return bar;
|
||||
}
|
||||
|
||||
private void setTerminalReadingMode(boolean reading) {
|
||||
terminalReadingMode = reading;
|
||||
if (terminalText != null) {
|
||||
terminalText.setHorizontallyScrolling(!reading);
|
||||
private void showTerminalView(int mode, boolean announce) {
|
||||
terminalViewMode = mode;
|
||||
if (terminalScroll == null || terminalText == null || terminalChatList == null) {
|
||||
styleTerminalReadingButton();
|
||||
return;
|
||||
}
|
||||
terminalScroll.removeAllViews();
|
||||
if (mode == TERMINAL_VIEW_CHAT) {
|
||||
terminalScroll.addView(terminalChatList, new ScrollView.LayoutParams(
|
||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||
ViewGroup.LayoutParams.WRAP_CONTENT
|
||||
));
|
||||
renderTerminalConversation();
|
||||
} else {
|
||||
terminalText.setHorizontallyScrolling(true);
|
||||
terminalText.setGravity(Gravity.BOTTOM | Gravity.START);
|
||||
terminalText.setMovementMethod(null);
|
||||
terminalScroll.addView(terminalText, new ScrollView.LayoutParams(
|
||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||
ViewGroup.LayoutParams.WRAP_CONTENT
|
||||
));
|
||||
renderTerminalNow();
|
||||
}
|
||||
styleTerminalReadingButton();
|
||||
renderTerminalNow();
|
||||
setStatus(reading ? "Chinese reading mode" : "Full terminal mode");
|
||||
if (announce) {
|
||||
setStatus(mode == TERMINAL_VIEW_CHAT ? "Chat view" : "Full terminal mode");
|
||||
}
|
||||
}
|
||||
|
||||
private void styleTerminalReadingButton() {
|
||||
if (terminalReadingButton == null) {
|
||||
return;
|
||||
}
|
||||
terminalReadingButton.setText(terminalReadingMode ? "读" : "终");
|
||||
terminalReadingButton.setTextColor(terminalReadingMode ? Color.rgb(14, 38, 24) : COLOR_TEXT_MUTED);
|
||||
terminalReadingButton.setBackground(terminalReadingMode
|
||||
terminalReadingButton.setText(terminalViewMode == TERMINAL_VIEW_CHAT ? "聊" : "终");
|
||||
terminalReadingButton.setTextColor(terminalViewMode == TERMINAL_VIEW_CHAT
|
||||
? Color.rgb(14, 38, 24) : COLOR_TEXT_MUTED);
|
||||
terminalReadingButton.setBackground(terminalViewMode == TERMINAL_VIEW_CHAT
|
||||
? rounded(COLOR_ACCENT, 7, COLOR_ACCENT, 1)
|
||||
: buttonBackground());
|
||||
}
|
||||
@@ -1820,6 +1878,242 @@ public final class MainActivity extends Activity {
|
||||
});
|
||||
}
|
||||
|
||||
private void refreshTerminalConversation(String sessionName) {
|
||||
executor.execute(() -> {
|
||||
try {
|
||||
JSONObject rootObject = new JSONObject(api.timeline(200));
|
||||
JSONArray events = rootObject.optJSONArray("events");
|
||||
List<ConversationMessage> loaded = new ArrayList<>();
|
||||
for (int index = 0; events != null && index < events.length(); index++) {
|
||||
JSONObject event = events.optJSONObject(index);
|
||||
if (event != null
|
||||
&& "conversation-message".equals(event.optString("type"))
|
||||
&& sessionName.equals(event.optString("sessionName"))) {
|
||||
loaded.add(ConversationMessage.fromJson(event));
|
||||
}
|
||||
}
|
||||
Collections.sort(loaded, (left, right) -> left.createdAt.compareTo(right.createdAt));
|
||||
runOnUiThread(() -> {
|
||||
if (!sessionName.equals(activeSessionName)) {
|
||||
return;
|
||||
}
|
||||
terminalConversationMessages.clear();
|
||||
terminalConversationMessages.addAll(loaded);
|
||||
renderTerminalConversation();
|
||||
});
|
||||
} catch (Exception error) {
|
||||
runOnUiThread(() -> {
|
||||
if (sessionName.equals(activeSessionName) && terminalChatList != null) {
|
||||
terminalChatList.removeAllViews();
|
||||
terminalChatList.addView(projectStateText(
|
||||
"Conversation unavailable\n" + error.getMessage()), matchWrap());
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private void upsertConversationMessage(ConversationMessage message) {
|
||||
if (message.sessionName.isEmpty() || !message.sessionName.equals(activeSessionName)) {
|
||||
return;
|
||||
}
|
||||
if (!message.local && "user".equals(message.role)) {
|
||||
for (int index = terminalConversationMessages.size() - 1; index >= 0; index--) {
|
||||
ConversationMessage existing = terminalConversationMessages.get(index);
|
||||
if (existing.local && existing.content.equals(message.content)) {
|
||||
terminalConversationMessages.remove(index);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
for (int index = 0; index < terminalConversationMessages.size(); index++) {
|
||||
if (terminalConversationMessages.get(index).messageId.equals(message.messageId)) {
|
||||
terminalConversationMessages.set(index, message);
|
||||
renderTerminalConversation();
|
||||
return;
|
||||
}
|
||||
}
|
||||
terminalConversationMessages.add(message);
|
||||
Collections.sort(terminalConversationMessages,
|
||||
(left, right) -> left.createdAt.compareTo(right.createdAt));
|
||||
renderTerminalConversation();
|
||||
}
|
||||
|
||||
private void renderTerminalConversation() {
|
||||
if (terminalChatList == null) {
|
||||
return;
|
||||
}
|
||||
terminalChatList.removeAllViews();
|
||||
if (terminalConversationMessages.isEmpty()) {
|
||||
TextView empty = bodyText("No structured messages yet");
|
||||
empty.setGravity(Gravity.CENTER);
|
||||
empty.setPadding(dp(12), dp(24), dp(12), dp(24));
|
||||
terminalChatList.addView(empty, matchWrap());
|
||||
} else {
|
||||
for (ConversationMessage message : terminalConversationMessages) {
|
||||
terminalChatList.addView(conversationMessageRow(message));
|
||||
}
|
||||
}
|
||||
terminalChatList.addView(conversationLiveTerminalPanel(), matchWrap());
|
||||
updateTerminalLivePanel();
|
||||
if (terminalViewMode == TERMINAL_VIEW_CHAT && terminalFollowOutput && terminalScroll != null) {
|
||||
terminalScroll.post(() -> terminalScroll.fullScroll(View.FOCUS_DOWN));
|
||||
}
|
||||
}
|
||||
|
||||
private View conversationMessageRow(ConversationMessage message) {
|
||||
boolean user = "user".equals(message.role);
|
||||
boolean tool = message.isTool();
|
||||
LinearLayout row = new LinearLayout(this);
|
||||
row.setOrientation(LinearLayout.HORIZONTAL);
|
||||
row.setGravity(user ? Gravity.END : Gravity.START);
|
||||
|
||||
LinearLayout bubble = new LinearLayout(this);
|
||||
bubble.setOrientation(LinearLayout.VERTICAL);
|
||||
bubble.setPadding(dp(12), dp(9), dp(12), dp(10));
|
||||
bubble.setBackground(tool
|
||||
? rounded(COLOR_PANEL, 8, COLOR_BORDER, 1)
|
||||
: user
|
||||
? rounded(COLOR_ACCENT_DARK, 8, COLOR_ACCENT, 1)
|
||||
: rounded(COLOR_CARD, 8, COLOR_BORDER_SOFT, 1));
|
||||
|
||||
TextView meta = new TextView(this);
|
||||
meta.setTextColor(user ? COLOR_ACCENT : tool ? COLOR_ACCENT_WARM : COLOR_TEXT_MUTED);
|
||||
meta.setTextSize(9);
|
||||
meta.setTypeface(Typeface.MONOSPACE, Typeface.BOLD);
|
||||
meta.setSingleLine(true);
|
||||
meta.setEllipsize(TextUtils.TruncateAt.END);
|
||||
meta.setText(tool
|
||||
? conversationToolTitle(message)
|
||||
: (user ? "You" : "Assistant") + conversationStatusPart(message));
|
||||
bubble.addView(meta, matchWrap());
|
||||
|
||||
boolean expanded = terminalExpandedMessages.contains(message.messageId);
|
||||
if (!tool || expanded) {
|
||||
bubble.addView(conversationContent(message, tool), matchWrap());
|
||||
} else {
|
||||
TextView collapsed = bodyText("Tap to show " + message.content.length() + " characters");
|
||||
collapsed.setTextSize(10);
|
||||
collapsed.setPadding(0, dp(5), 0, 0);
|
||||
bubble.addView(collapsed, matchWrap());
|
||||
}
|
||||
if (tool) {
|
||||
bubble.setOnClickListener(view -> {
|
||||
if (!terminalExpandedMessages.add(message.messageId)) {
|
||||
terminalExpandedMessages.remove(message.messageId);
|
||||
}
|
||||
renderTerminalConversation();
|
||||
});
|
||||
}
|
||||
|
||||
LinearLayout.LayoutParams bubbleParams = new LinearLayout.LayoutParams(
|
||||
0,
|
||||
ViewGroup.LayoutParams.WRAP_CONTENT,
|
||||
tool ? 1f : 0.82f
|
||||
);
|
||||
if (!tool) {
|
||||
View spacer = new View(this);
|
||||
LinearLayout.LayoutParams spacerParams = new LinearLayout.LayoutParams(
|
||||
0,
|
||||
1,
|
||||
0.18f
|
||||
);
|
||||
if (user) {
|
||||
row.addView(spacer, spacerParams);
|
||||
row.addView(bubble, bubbleParams);
|
||||
} else {
|
||||
row.addView(bubble, bubbleParams);
|
||||
row.addView(spacer, spacerParams);
|
||||
}
|
||||
} else {
|
||||
row.addView(bubble, bubbleParams);
|
||||
}
|
||||
LinearLayout.LayoutParams rowParams = new LinearLayout.LayoutParams(
|
||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||
ViewGroup.LayoutParams.WRAP_CONTENT
|
||||
);
|
||||
rowParams.bottomMargin = dp(9);
|
||||
row.setLayoutParams(rowParams);
|
||||
return row;
|
||||
}
|
||||
|
||||
private TextView conversationContent(ConversationMessage message, boolean tool) {
|
||||
TextView content = new TextView(this);
|
||||
content.setText(message.content.isEmpty() ? "(empty)" : message.content);
|
||||
content.setTextColor(COLOR_TEXT);
|
||||
content.setTextSize(tool ? 11 : 14);
|
||||
content.setTypeface(tool ? Typeface.MONOSPACE : Typeface.DEFAULT);
|
||||
content.setTextIsSelectable(true);
|
||||
content.setLineSpacing(dp(2), 1f);
|
||||
content.setPadding(0, dp(6), 0, 0);
|
||||
return content;
|
||||
}
|
||||
|
||||
private String conversationToolTitle(ConversationMessage message) {
|
||||
String name = defaultValue(message.toolName, message.contentType);
|
||||
return defaultValue(name, "Tool output") + conversationStatusPart(message);
|
||||
}
|
||||
|
||||
private String conversationStatusPart(ConversationMessage message) {
|
||||
String status = message.status.trim();
|
||||
return status.isEmpty() ? "" : " · " + status;
|
||||
}
|
||||
|
||||
private View conversationLiveTerminalPanel() {
|
||||
LinearLayout panel = new LinearLayout(this);
|
||||
panel.setOrientation(LinearLayout.VERTICAL);
|
||||
panel.setPadding(dp(12), dp(9), dp(12), dp(10));
|
||||
panel.setBackground(rounded(COLOR_FIELD, 8, COLOR_BORDER, 1));
|
||||
panel.setOnClickListener(view -> showTerminalView(TERMINAL_VIEW_FULL, true));
|
||||
|
||||
LinearLayout heading = new LinearLayout(this);
|
||||
heading.setOrientation(LinearLayout.HORIZONTAL);
|
||||
heading.setGravity(Gravity.CENTER_VERTICAL);
|
||||
TextView title = new TextView(this);
|
||||
title.setText("Live terminal");
|
||||
title.setTextColor(COLOR_TEXT);
|
||||
title.setTextSize(11);
|
||||
title.setTypeface(Typeface.DEFAULT_BOLD);
|
||||
heading.addView(title, new LinearLayout.LayoutParams(0, dp(22), 1));
|
||||
terminalLiveStatusText = new TextView(this);
|
||||
terminalLiveStatusText.setTextSize(9);
|
||||
terminalLiveStatusText.setTypeface(Typeface.MONOSPACE);
|
||||
terminalLiveStatusText.setSingleLine(true);
|
||||
heading.addView(terminalLiveStatusText, new LinearLayout.LayoutParams(
|
||||
ViewGroup.LayoutParams.WRAP_CONTENT,
|
||||
dp(22)
|
||||
));
|
||||
panel.addView(heading, matchWrap());
|
||||
|
||||
terminalLiveOutputText = new TextView(this);
|
||||
terminalLiveOutputText.setTextColor(COLOR_TEXT_MUTED);
|
||||
terminalLiveOutputText.setTextSize(10);
|
||||
terminalLiveOutputText.setTypeface(Typeface.MONOSPACE);
|
||||
terminalLiveOutputText.setMaxLines(6);
|
||||
terminalLiveOutputText.setEllipsize(TextUtils.TruncateAt.END);
|
||||
terminalLiveOutputText.setPadding(0, dp(5), 0, 0);
|
||||
panel.addView(terminalLiveOutputText, matchWrap());
|
||||
|
||||
TextView hint = bodyText("Tap for full terminal");
|
||||
hint.setTextSize(9);
|
||||
hint.setTextColor(COLOR_TEXT_DIM);
|
||||
hint.setPadding(0, dp(6), 0, 0);
|
||||
panel.addView(hint, matchWrap());
|
||||
return panel;
|
||||
}
|
||||
|
||||
private void updateTerminalLivePanel() {
|
||||
if (terminalLiveStatusText == null || terminalLiveOutputText == null) {
|
||||
return;
|
||||
}
|
||||
String socket = terminalSocketStatus.toLowerCase(java.util.Locale.ROOT);
|
||||
boolean connected = socket.contains("connected") && !socket.contains("disconnected");
|
||||
terminalLiveStatusText.setText(connected ? "● connected" : "● " + defaultValue(socket, "connecting"));
|
||||
terminalLiveStatusText.setTextColor(connected ? COLOR_SUCCESS
|
||||
: socket.contains("error") || socket.contains("disconnected") ? COLOR_DANGER : COLOR_ACCENT_WARM);
|
||||
terminalLiveOutputText.setText(terminalScreen.renderTail(6));
|
||||
}
|
||||
|
||||
private void updateTerminalMeta() {
|
||||
if (terminalMetaText == null || terminalConnectionText == null) {
|
||||
return;
|
||||
@@ -1836,6 +2130,7 @@ public final class MainActivity extends Activity {
|
||||
terminalConnectionText.setText("● connecting");
|
||||
terminalConnectionText.setTextColor(COLOR_ACCENT_WARM);
|
||||
}
|
||||
updateTerminalLivePanel();
|
||||
}
|
||||
|
||||
private String compactTerminalPath(String path) {
|
||||
@@ -3115,6 +3410,9 @@ public final class MainActivity extends Activity {
|
||||
normalized = normalized + TERMINAL_ENTER;
|
||||
}
|
||||
terminalFollowOutput = true;
|
||||
if (activeSessionName != null) {
|
||||
upsertConversationMessage(ConversationMessage.localUser(activeSessionName, text));
|
||||
}
|
||||
sendTerminalInput(normalized);
|
||||
inputField.setText("");
|
||||
setStatus("Sent " + text.length() + " chars");
|
||||
@@ -3282,7 +3580,7 @@ public final class MainActivity extends Activity {
|
||||
terminalRenderPending = true;
|
||||
long now = System.currentTimeMillis();
|
||||
long delay = Math.max(0L, TERMINAL_RENDER_INTERVAL_MS - (now - lastTerminalRenderMs));
|
||||
terminalText.postDelayed(() -> {
|
||||
mainHandler.postDelayed(() -> {
|
||||
terminalRenderPending = false;
|
||||
renderTerminalNow();
|
||||
}, delay);
|
||||
@@ -3293,10 +3591,10 @@ public final class MainActivity extends Activity {
|
||||
return;
|
||||
}
|
||||
lastTerminalRenderMs = System.currentTimeMillis();
|
||||
terminalText.setText(terminalReadingMode
|
||||
? terminalScreen.renderFocused()
|
||||
: terminalScreen.render());
|
||||
if (terminalFollowOutput) {
|
||||
terminalText.setMovementMethod(null);
|
||||
terminalText.setText(terminalScreen.render());
|
||||
updateTerminalLivePanel();
|
||||
if (terminalViewMode != TERMINAL_VIEW_CHAT && terminalFollowOutput) {
|
||||
terminalScroll.post(() -> terminalScroll.fullScroll(View.FOCUS_DOWN));
|
||||
}
|
||||
}
|
||||
@@ -3832,6 +4130,12 @@ public final class MainActivity extends Activity {
|
||||
}
|
||||
return;
|
||||
}
|
||||
if ("conversation-message".equals(type)) {
|
||||
upsertConversationMessage(ConversationMessage.fromJson(event));
|
||||
terminalEventStatus = "message received";
|
||||
updateTerminalMeta();
|
||||
return;
|
||||
}
|
||||
if ("hook-event".equals(type)) {
|
||||
terminalEventStatus = "hook event";
|
||||
updateTerminalMeta();
|
||||
|
||||
@@ -4,12 +4,17 @@ 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;
|
||||
@@ -30,6 +35,10 @@ final class TerminalScreenBuffer {
|
||||
private boolean bold;
|
||||
private boolean dim;
|
||||
|
||||
interface FocusToggle {
|
||||
void toggle(String key);
|
||||
}
|
||||
|
||||
TerminalScreenBuffer(int cols, int rows) {
|
||||
resize(cols, rows);
|
||||
}
|
||||
@@ -121,42 +130,120 @@ final class TerminalScreenBuffer {
|
||||
return output;
|
||||
}
|
||||
|
||||
CharSequence renderFocused() {
|
||||
String renderTail(int maxRows) {
|
||||
List<String> visible = new ArrayList<>();
|
||||
int hiddenRows = 0;
|
||||
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();
|
||||
List<String> hiddenRows = new ArrayList<>();
|
||||
int hiddenStart = -1;
|
||||
for (int row = 0; row < rows; row++) {
|
||||
String text = rowText(row).trim();
|
||||
if (containsHan(text)) {
|
||||
if (hiddenRows > 0) {
|
||||
visible.add("... 已折叠 " + hiddenRows + " 行终端内容 ...");
|
||||
hiddenRows = 0;
|
||||
if (!hiddenRows.isEmpty()) {
|
||||
appendFocusBlock(output, hiddenRows, hiddenStart, row - 1, expandedBlocks, toggle);
|
||||
hiddenRows.clear();
|
||||
hiddenStart = -1;
|
||||
}
|
||||
visible.add(text);
|
||||
appendLine(output, text);
|
||||
} else if (!text.isEmpty()) {
|
||||
hiddenRows++;
|
||||
}
|
||||
}
|
||||
if (hiddenRows > 0) {
|
||||
visible.add("... 已折叠 " + hiddenRows + " 行终端内容 ...");
|
||||
}
|
||||
if (visible.isEmpty()) {
|
||||
for (int row = Math.max(0, rows - 4); row < rows; row++) {
|
||||
String text = rowText(row).trim();
|
||||
if (!text.isEmpty()) {
|
||||
visible.add(text);
|
||||
if (hiddenStart < 0) {
|
||||
hiddenStart = row;
|
||||
}
|
||||
hiddenRows.add(text);
|
||||
}
|
||||
}
|
||||
StringBuilder output = new StringBuilder();
|
||||
for (int index = 0; index < visible.size(); index++) {
|
||||
if (index > 0) {
|
||||
output.append('\n');
|
||||
}
|
||||
output.append(visible.get(index));
|
||||
if (!hiddenRows.isEmpty()) {
|
||||
appendFocusBlock(output, hiddenRows, hiddenStart, rows - 1, expandedBlocks, toggle);
|
||||
}
|
||||
if (output.length() == 0) {
|
||||
output.append("暂无可读内容");
|
||||
}
|
||||
return output;
|
||||
}
|
||||
|
||||
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 joined = String.join(" ", lines).toLowerCase(Locale.ROOT);
|
||||
String type;
|
||||
if (joined.contains("error") || joined.contains("failed") || joined.contains("exception")) {
|
||||
type = "错误输出";
|
||||
} else if (joined.contains("working") || joined.contains("running")
|
||||
|| joined.contains("waiting") || joined.contains("interrupt")) {
|
||||
type = "运行状态";
|
||||
} else if (joined.contains("test") || joined.contains("build") || joined.contains("compile")
|
||||
|| joined.contains("gradle") || joined.contains("webpack") || joined.contains("npm")) {
|
||||
type = "构建/测试";
|
||||
} else if (joined.contains("git ") || joined.contains("commit") || joined.contains("push")) {
|
||||
type = "Git 操作";
|
||||
} else if (lines.get(0).startsWith(">") || lines.get(0).startsWith("$")
|
||||
|| lines.get(0).startsWith("!")) {
|
||||
type = "命令与输出";
|
||||
} else {
|
||||
type = "终端细节";
|
||||
}
|
||||
return type + " · " + lines.size() + " 行 · " + compactSummary(lines.get(0), 42);
|
||||
}
|
||||
|
||||
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 int handleEscape(String text, int index) {
|
||||
if (index + 1 >= text.length()) {
|
||||
return -1;
|
||||
|
||||
Reference in New Issue
Block a user