Make terminal content view selective
This commit is contained in:
@@ -25,6 +25,7 @@ import android.os.Looper;
|
|||||||
import android.provider.Settings;
|
import android.provider.Settings;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
import android.text.InputType;
|
import android.text.InputType;
|
||||||
|
import android.text.method.LinkMovementMethod;
|
||||||
import android.view.Gravity;
|
import android.view.Gravity;
|
||||||
import android.view.HapticFeedbackConstants;
|
import android.view.HapticFeedbackConstants;
|
||||||
import android.view.KeyEvent;
|
import android.view.KeyEvent;
|
||||||
@@ -154,6 +155,7 @@ public final class MainActivity extends Activity {
|
|||||||
private int lastActiveSessionCount = -1;
|
private int lastActiveSessionCount = -1;
|
||||||
private TerminalScreenBuffer terminalScreen = new TerminalScreenBuffer(DEFAULT_TERMINAL_COLS, DEFAULT_TERMINAL_ROWS);
|
private TerminalScreenBuffer terminalScreen = new TerminalScreenBuffer(DEFAULT_TERMINAL_COLS, DEFAULT_TERMINAL_ROWS);
|
||||||
private final StringBuilder queuedTerminalInput = new StringBuilder();
|
private final StringBuilder queuedTerminalInput = new StringBuilder();
|
||||||
|
private final Set<String> terminalExpandedBlocks = new HashSet<>();
|
||||||
private final Set<String> terminalExpandedMessages = new HashSet<>();
|
private final Set<String> terminalExpandedMessages = new HashSet<>();
|
||||||
private final List<ConversationMessage> terminalConversationMessages = new ArrayList<>();
|
private final List<ConversationMessage> terminalConversationMessages = new ArrayList<>();
|
||||||
private boolean terminalConnected;
|
private boolean terminalConnected;
|
||||||
@@ -1696,6 +1698,7 @@ public final class MainActivity extends Activity {
|
|||||||
terminalSelectionEnabled = false;
|
terminalSelectionEnabled = false;
|
||||||
terminalFollowOutput = true;
|
terminalFollowOutput = true;
|
||||||
terminalKeyPage = 0;
|
terminalKeyPage = 0;
|
||||||
|
terminalExpandedBlocks.clear();
|
||||||
terminalExpandedMessages.clear();
|
terminalExpandedMessages.clear();
|
||||||
terminalConversationMessages.clear();
|
terminalConversationMessages.clear();
|
||||||
terminalLiveStatusText = null;
|
terminalLiveStatusText = null;
|
||||||
@@ -1746,7 +1749,6 @@ public final class MainActivity extends Activity {
|
|||||||
1
|
1
|
||||||
));
|
));
|
||||||
terminalAccessoryBar = createAccessoryBar();
|
terminalAccessoryBar = createAccessoryBar();
|
||||||
terminalAccessoryBar.setVisibility(terminalViewMode == TERMINAL_VIEW_CHAT ? View.GONE : View.VISIBLE);
|
|
||||||
root.addView(terminalAccessoryBar, new LinearLayout.LayoutParams(
|
root.addView(terminalAccessoryBar, new LinearLayout.LayoutParams(
|
||||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||||
dp(TERMINAL_KEYS_HEIGHT_DP)
|
dp(TERMINAL_KEYS_HEIGHT_DP)
|
||||||
@@ -1860,33 +1862,30 @@ public final class MainActivity extends Activity {
|
|||||||
}
|
}
|
||||||
terminalScroll.removeAllViews();
|
terminalScroll.removeAllViews();
|
||||||
if (mode == TERMINAL_VIEW_CHAT) {
|
if (mode == TERMINAL_VIEW_CHAT) {
|
||||||
terminalScroll.addView(terminalChatList, new ScrollView.LayoutParams(
|
terminalText.setHorizontallyScrolling(false);
|
||||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
terminalText.setMovementMethod(LinkMovementMethod.getInstance());
|
||||||
ViewGroup.LayoutParams.WRAP_CONTENT
|
terminalText.setHighlightColor(Color.TRANSPARENT);
|
||||||
));
|
|
||||||
renderTerminalConversation();
|
|
||||||
} else {
|
} else {
|
||||||
terminalText.setHorizontallyScrolling(true);
|
terminalText.setHorizontallyScrolling(true);
|
||||||
terminalText.setGravity(Gravity.BOTTOM | Gravity.START);
|
|
||||||
terminalText.setMovementMethod(null);
|
terminalText.setMovementMethod(null);
|
||||||
terminalScroll.addView(terminalText, new ScrollView.LayoutParams(
|
|
||||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
|
||||||
ViewGroup.LayoutParams.WRAP_CONTENT
|
|
||||||
));
|
|
||||||
renderTerminalNow();
|
|
||||||
}
|
}
|
||||||
boolean chat = mode == TERMINAL_VIEW_CHAT;
|
terminalText.setGravity(Gravity.BOTTOM | Gravity.START);
|
||||||
|
terminalScroll.addView(terminalText, new ScrollView.LayoutParams(
|
||||||
|
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||||
|
ViewGroup.LayoutParams.WRAP_CONTENT
|
||||||
|
));
|
||||||
|
renderTerminalNow();
|
||||||
if (terminalAccessoryBar != null) {
|
if (terminalAccessoryBar != null) {
|
||||||
terminalAccessoryBar.setVisibility(chat ? View.GONE : View.VISIBLE);
|
terminalAccessoryBar.setVisibility(View.VISIBLE);
|
||||||
}
|
}
|
||||||
if (terminalComposerTabs != null) {
|
if (terminalComposerTabs != null) {
|
||||||
terminalComposerTabs.setVisibility(chat ? View.GONE : View.VISIBLE);
|
terminalComposerTabs.setVisibility(View.VISIBLE);
|
||||||
}
|
}
|
||||||
if (inputField != null) {
|
if (inputField != null) {
|
||||||
inputField.setHint(chat ? "Message" : "type command or text");
|
inputField.setHint(mode == TERMINAL_VIEW_CHAT ? "message or command" : "type command or text");
|
||||||
}
|
}
|
||||||
if (announce) {
|
if (announce) {
|
||||||
setStatus(mode == TERMINAL_VIEW_CHAT ? "Chat view" : "Full terminal mode");
|
setStatus(mode == TERMINAL_VIEW_CHAT ? "Content view" : "Raw terminal mode");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2588,7 +2587,6 @@ public final class MainActivity extends Activity {
|
|||||||
LinearLayout tabGrid = new LinearLayout(this);
|
LinearLayout tabGrid = new LinearLayout(this);
|
||||||
tabGrid.setOrientation(LinearLayout.VERTICAL);
|
tabGrid.setOrientation(LinearLayout.VERTICAL);
|
||||||
terminalComposerTabs = tabGrid;
|
terminalComposerTabs = tabGrid;
|
||||||
tabGrid.setVisibility(terminalViewMode == TERMINAL_VIEW_CHAT ? View.GONE : View.VISIBLE);
|
|
||||||
LinearLayout firstTabRow = terminalKeyRow();
|
LinearLayout firstTabRow = terminalKeyRow();
|
||||||
LinearLayout secondTabRow = terminalKeyRow();
|
LinearLayout secondTabRow = terminalKeyRow();
|
||||||
addAccessoryTab(firstTabRow, "Edit", 0);
|
addAccessoryTab(firstTabRow, "Edit", 0);
|
||||||
@@ -3827,10 +3825,21 @@ public final class MainActivity extends Activity {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
lastTerminalRenderMs = System.currentTimeMillis();
|
lastTerminalRenderMs = System.currentTimeMillis();
|
||||||
terminalText.setMovementMethod(null);
|
if (terminalViewMode == TERMINAL_VIEW_CHAT) {
|
||||||
terminalText.setText(terminalScreen.render());
|
terminalText.setMovementMethod(LinkMovementMethod.getInstance());
|
||||||
|
terminalText.setHighlightColor(Color.TRANSPARENT);
|
||||||
|
terminalText.setText(terminalScreen.renderFocused(terminalExpandedBlocks, key -> {
|
||||||
|
if (!terminalExpandedBlocks.add(key)) {
|
||||||
|
terminalExpandedBlocks.remove(key);
|
||||||
|
}
|
||||||
|
renderTerminalNow();
|
||||||
|
}));
|
||||||
|
} else {
|
||||||
|
terminalText.setMovementMethod(null);
|
||||||
|
terminalText.setText(terminalScreen.render());
|
||||||
|
}
|
||||||
updateTerminalLivePanel();
|
updateTerminalLivePanel();
|
||||||
if (terminalViewMode != TERMINAL_VIEW_CHAT && terminalFollowOutput) {
|
if (terminalFollowOutput) {
|
||||||
terminalScroll.post(() -> terminalScroll.fullScroll(View.FOCUS_DOWN));
|
terminalScroll.post(() -> terminalScroll.fullScroll(View.FOCUS_DOWN));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -146,33 +146,82 @@ final class TerminalScreenBuffer {
|
|||||||
|
|
||||||
CharSequence renderFocused(Set<String> expandedBlocks, FocusToggle toggle) {
|
CharSequence renderFocused(Set<String> expandedBlocks, FocusToggle toggle) {
|
||||||
SpannableStringBuilder output = new SpannableStringBuilder();
|
SpannableStringBuilder output = new SpannableStringBuilder();
|
||||||
List<String> hiddenRows = new ArrayList<>();
|
int row = 0;
|
||||||
int hiddenStart = -1;
|
while (row < rows) {
|
||||||
for (int row = 0; row < rows; row++) {
|
|
||||||
String text = rowText(row).trim();
|
String text = rowText(row).trim();
|
||||||
if (containsHan(text)) {
|
if (!isCollapsibleHeader(text)) {
|
||||||
if (!hiddenRows.isEmpty()) {
|
if (text.isEmpty()) {
|
||||||
appendFocusBlock(output, hiddenRows, hiddenStart, row - 1, expandedBlocks, toggle);
|
if (output.length() > 0) {
|
||||||
hiddenRows.clear();
|
output.append('\n');
|
||||||
hiddenStart = -1;
|
}
|
||||||
|
} else {
|
||||||
|
appendStyledRow(output, row);
|
||||||
}
|
}
|
||||||
appendLine(output, text);
|
row++;
|
||||||
} else if (!text.isEmpty()) {
|
continue;
|
||||||
if (hiddenStart < 0) {
|
|
||||||
hiddenStart = row;
|
|
||||||
}
|
|
||||||
hiddenRows.add(text);
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
if (!hiddenRows.isEmpty()) {
|
int startRow = row;
|
||||||
appendFocusBlock(output, hiddenRows, hiddenStart, rows - 1, expandedBlocks, toggle);
|
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) {
|
if (output.length() == 0) {
|
||||||
output.append("暂无可读内容");
|
output.append("Waiting for terminal output");
|
||||||
}
|
}
|
||||||
return 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(
|
private void appendFocusBlock(
|
||||||
SpannableStringBuilder output,
|
SpannableStringBuilder output,
|
||||||
List<String> lines,
|
List<String> lines,
|
||||||
@@ -208,25 +257,22 @@ final class TerminalScreenBuffer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private String focusSummary(List<String> lines) {
|
private String focusSummary(List<String> lines) {
|
||||||
|
String first = stripActivityMarker(lines.get(0));
|
||||||
String joined = String.join(" ", lines).toLowerCase(Locale.ROOT);
|
String joined = String.join(" ", lines).toLowerCase(Locale.ROOT);
|
||||||
String type;
|
String type;
|
||||||
if (joined.contains("error") || joined.contains("failed") || joined.contains("exception")) {
|
if (first.startsWith("Explored") || first.startsWith("Searched")
|
||||||
type = "错误输出";
|
|| first.startsWith("Read ") || first.startsWith("List ")
|
||||||
} else if (joined.contains("working") || joined.contains("running")
|
|| first.startsWith("Viewed ") || first.startsWith("Inspected ")) {
|
||||||
|| joined.contains("waiting") || joined.contains("interrupt")) {
|
type = "Explored";
|
||||||
type = "运行状态";
|
} else if (first.startsWith("Working") || first.startsWith("Stop hook")
|
||||||
} else if (joined.contains("test") || joined.contains("build") || joined.contains("compile")
|
|| first.startsWith("─ Worked for ")) {
|
||||||
|| joined.contains("gradle") || joined.contains("webpack") || joined.contains("npm")) {
|
type = "Status";
|
||||||
type = "构建/测试";
|
} else if (joined.contains("error") || joined.contains("failed") || joined.contains("exception")) {
|
||||||
} else if (joined.contains("git ") || joined.contains("commit") || joined.contains("push")) {
|
type = "Command failed";
|
||||||
type = "Git 操作";
|
|
||||||
} else if (lines.get(0).startsWith(">") || lines.get(0).startsWith("$")
|
|
||||||
|| lines.get(0).startsWith("!")) {
|
|
||||||
type = "命令与输出";
|
|
||||||
} else {
|
} else {
|
||||||
type = "终端细节";
|
type = "Command output";
|
||||||
}
|
}
|
||||||
return type + " · " + lines.size() + " 行 · " + compactSummary(lines.get(0), 42);
|
return type + " · " + lines.size() + " lines · " + compactSummary(first, 48);
|
||||||
}
|
}
|
||||||
|
|
||||||
private String compactSummary(String text, int maxChars) {
|
private String compactSummary(String text, int maxChars) {
|
||||||
@@ -244,6 +290,18 @@ final class TerminalScreenBuffer {
|
|||||||
output.append(text);
|
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) {
|
private int handleEscape(String text, int index) {
|
||||||
if (index + 1 >= text.length()) {
|
if (index + 1 >= text.length()) {
|
||||||
return -1;
|
return -1;
|
||||||
@@ -583,15 +641,19 @@ final class TerminalScreenBuffer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void appendRow(SpannableStringBuilder output, int row) {
|
private void appendRow(SpannableStringBuilder output, int row) {
|
||||||
|
appendRow(output, row, cols);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void appendRow(SpannableStringBuilder output, int row, int limit) {
|
||||||
int col = 0;
|
int col = 0;
|
||||||
while (col < cols) {
|
while (col < limit) {
|
||||||
Cell first = cells[row][col];
|
Cell first = cells[row][col];
|
||||||
int start = output.length();
|
int start = output.length();
|
||||||
int fgColor = first.fg;
|
int fgColor = first.fg;
|
||||||
int bgColor = first.bg;
|
int bgColor = first.bg;
|
||||||
boolean isBold = first.bold;
|
boolean isBold = first.bold;
|
||||||
boolean isDim = first.dim;
|
boolean isDim = first.dim;
|
||||||
while (col < cols) {
|
while (col < limit) {
|
||||||
Cell cell = cells[row][col];
|
Cell cell = cells[row][col];
|
||||||
if (cell.fg != fgColor || cell.bg != bgColor || cell.bold != isBold || cell.dim != isDim) {
|
if (cell.fg != fgColor || cell.bg != bgColor || cell.bold != isBold || cell.dim != isDim) {
|
||||||
break;
|
break;
|
||||||
@@ -626,18 +688,6 @@ final class TerminalScreenBuffer {
|
|||||||
return text.toString();
|
return text.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean containsHan(String text) {
|
|
||||||
for (int index = 0; index < text.length(); index++) {
|
|
||||||
Character.UnicodeBlock block = Character.UnicodeBlock.of(text.charAt(index));
|
|
||||||
if (block == Character.UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS
|
|
||||||
|| block == Character.UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A
|
|
||||||
|| block == Character.UnicodeBlock.CJK_COMPATIBILITY_IDEOGRAPHS) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void saveCursor() {
|
private void saveCursor() {
|
||||||
savedRow = cursorRow;
|
savedRow = cursorRow;
|
||||||
savedCol = cursorCol;
|
savedCol = cursorCol;
|
||||||
|
|||||||
Reference in New Issue
Block a user