Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
974abed278 | ||
|
|
47af792d62 | ||
|
|
0c7dba0ef1 | ||
|
|
f1eb30cea0 | ||
|
|
a25a2d16b6 | ||
|
|
a88b6cf98d | ||
|
|
41e50322be | ||
|
|
f1db46ecbe | ||
|
|
c0904e6aaa | ||
|
|
1d9492aff5 | ||
|
|
9416fa6518 | ||
|
|
360e2f3af0 | ||
|
|
0119c7cb0e | ||
|
|
daf2990b15 | ||
|
|
96fe5ecb8f |
@@ -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
@@ -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);
|
||||
}
|
||||
@@ -37,9 +46,6 @@ final class TerminalScreenBuffer {
|
||||
void resize(int nextCols, int nextRows) {
|
||||
nextCols = Math.max(1, nextCols);
|
||||
nextRows = Math.max(1, nextRows);
|
||||
Cell[][] previous = cells;
|
||||
int previousRows = rows;
|
||||
int previousCols = cols;
|
||||
cols = nextCols;
|
||||
rows = nextRows;
|
||||
cells = new Cell[rows][cols];
|
||||
@@ -48,21 +54,11 @@ final class TerminalScreenBuffer {
|
||||
cells[row][col] = new Cell();
|
||||
}
|
||||
}
|
||||
if (previous != null) {
|
||||
int copyRows = Math.min(previousRows, rows);
|
||||
int copyCols = Math.min(previousCols, cols);
|
||||
int previousStart = Math.max(0, previousRows - copyRows);
|
||||
int nextStart = Math.max(0, rows - copyRows);
|
||||
for (int row = 0; row < copyRows; row++) {
|
||||
for (int col = 0; col < copyCols; col++) {
|
||||
cells[nextStart + row][col].copyFrom(previous[previousStart + row][col]);
|
||||
}
|
||||
}
|
||||
}
|
||||
cursorRow = clamp(cursorRow, 0, rows - 1);
|
||||
cursorCol = clamp(cursorCol, 0, cols - 1);
|
||||
savedRow = clamp(savedRow, 0, rows - 1);
|
||||
savedCol = clamp(savedCol, 0, cols - 1);
|
||||
cursorRow = 0;
|
||||
cursorCol = 0;
|
||||
savedRow = 0;
|
||||
savedCol = 0;
|
||||
wrapPending = false;
|
||||
}
|
||||
|
||||
void clear() {
|
||||
@@ -134,6 +130,178 @@ final class TerminalScreenBuffer {
|
||||
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;
|
||||
@@ -309,14 +477,34 @@ final class TerminalScreenBuffer {
|
||||
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 (cursorCol == cols - 1) {
|
||||
if (width == 2) {
|
||||
cells[cursorRow][cursorCol + 1].setContinuation(fg, bg, bold, dim);
|
||||
}
|
||||
if (cursorCol + width >= cols) {
|
||||
cursorCol = cols - 1;
|
||||
wrapPending = true;
|
||||
} else {
|
||||
cursorCol++;
|
||||
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++;
|
||||
@@ -453,20 +641,26 @@ final class TerminalScreenBuffer {
|
||||
}
|
||||
|
||||
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 < cols) {
|
||||
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 < cols) {
|
||||
while (col < limit) {
|
||||
Cell cell = cells[row][col];
|
||||
if (cell.fg != fgColor || cell.bg != bgColor || cell.bold != isBold || cell.dim != isDim) {
|
||||
break;
|
||||
}
|
||||
output.append(cell.value);
|
||||
if (!cell.continuation) {
|
||||
output.append(cell.value);
|
||||
}
|
||||
col++;
|
||||
}
|
||||
int end = output.length();
|
||||
@@ -483,6 +677,17 @@ final class TerminalScreenBuffer {
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
@@ -643,6 +848,7 @@ final class TerminalScreenBuffer {
|
||||
int bg = DEFAULT_BG;
|
||||
boolean bold;
|
||||
boolean dim;
|
||||
boolean continuation;
|
||||
|
||||
void clear() {
|
||||
value = ' ';
|
||||
@@ -650,6 +856,7 @@ final class TerminalScreenBuffer {
|
||||
bg = DEFAULT_BG;
|
||||
bold = false;
|
||||
dim = false;
|
||||
continuation = false;
|
||||
}
|
||||
|
||||
void set(char nextValue, int nextFg, int nextBg, boolean nextBold, boolean nextDim) {
|
||||
@@ -658,6 +865,16 @@ final class TerminalScreenBuffer {
|
||||
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) {
|
||||
@@ -666,6 +883,7 @@ final class TerminalScreenBuffer {
|
||||
bg = other.bg;
|
||||
bold = other.bold;
|
||||
dim = other.dim;
|
||||
continuation = other.continuation;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user