Unverified Commit 12609824 authored by Eric_Lee's avatar Eric_Lee Committed by GitHub

[bugfix] cat二进制文件 界面卡顿 (#96)

parent b1b0545a
...@@ -19,56 +19,70 @@ func NewCmdParser() *CmdParser { ...@@ -19,56 +19,70 @@ func NewCmdParser() *CmdParser {
} }
type CmdParser struct { type CmdParser struct {
term *utils.Terminal term *utils.Terminal
reader io.ReadCloser reader io.ReadCloser
writer io.WriteCloser writer io.WriteCloser
currentLines []string currentLines []string
lock *sync.Mutex lock *sync.Mutex
maxLength int maxLength int
currentLength int currentLength int
closed chan struct{}
} }
func (cp *CmdParser) WriteData(p []byte) (int,error){ func (cp *CmdParser) WriteData(p []byte) (int, error) {
return cp.writer.Write(p) return cp.writer.Write(p)
} }
func (cp *CmdParser) Write (p []byte) (int,error){ func (cp *CmdParser) Write(p []byte) (int, error) {
return len(p),nil return len(p), nil
} }
func (cp *CmdParser) Read(p []byte)(int,error){ func (cp *CmdParser) Read(p []byte) (int, error) {
return cp.reader.Read(p) return cp.reader.Read(p)
} }
func (cp *CmdParser) Close() error{ func (cp *CmdParser) Close() error {
select {
case <-cp.closed:
return nil
default:
close(cp.closed)
}
return cp.writer.Close() return cp.writer.Close()
} }
func (cp *CmdParser) initial() { func (cp *CmdParser) initial() {
cp.reader,cp.writer = io.Pipe() cp.reader, cp.writer = io.Pipe()
cp.currentLines = make([]string,0) cp.currentLines = make([]string, 0)
cp.lock = new(sync.Mutex) cp.lock = new(sync.Mutex)
cp.maxLength = 1024 cp.maxLength = 1024
cp.currentLength = 0 cp.currentLength = 0
cp.closed = make(chan struct{})
cp.term = utils.NewTerminal(cp, "") cp.term = utils.NewTerminal(cp, "")
cp.term.SetEcho(false) cp.term.SetEcho(false)
go func() { go func() {
logger.Debug("command Parser start") logger.Debug("command Parser start")
defer logger.Debug("command Parser close") defer logger.Debug("command Parser close")
inloop:
for { for {
line, err := cp.term.ReadLine() line, err := cp.term.ReadLine()
if err != nil{ if err != nil {
break select {
case <-cp.closed:
goto outloop
default:
}
goto inloop
} }
cp.lock.Lock() cp.lock.Lock()
cp.currentLength += len(line) cp.currentLength += len(line)
if cp.currentLength < cp.maxLength { if cp.currentLength < cp.maxLength {
cp.currentLines = append(cp.currentLines,line) cp.currentLines = append(cp.currentLines, line)
} }
cp.lock.Unlock() cp.lock.Unlock()
} }
outloop:
}() }()
} }
...@@ -83,7 +97,7 @@ func (cp *CmdParser) Parse() string { ...@@ -83,7 +97,7 @@ func (cp *CmdParser) Parse() string {
defer cp.lock.Unlock() defer cp.lock.Unlock()
output := strings.TrimSpace(strings.Join(cp.currentLines, "\r\n")) output := strings.TrimSpace(strings.Join(cp.currentLines, "\r\n"))
output = cp.parsePS1(output) output = cp.parsePS1(output)
cp.currentLines = make([]string,0) cp.currentLines = make([]string, 0)
cp.currentLength = 0 cp.currentLength = 0
return output return output
} }
...@@ -801,6 +801,8 @@ func (t *Terminal) readLine() (line string, err error) { ...@@ -801,6 +801,8 @@ func (t *Terminal) readLine() (line string, err error) {
if !t.pasteActive { if !t.pasteActive {
if key == keyCtrlD { if key == keyCtrlD {
if len(t.line) == 0 { if len(t.line) == 0 {
// as key has already handled, we need update remainder data,
t.remainder = rest
return "", io.EOF return "", io.EOF
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment