Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
K
koko
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
koko
Commits
12609824
Unverified
Commit
12609824
authored
Oct 09, 2019
by
Eric_Lee
Committed by
GitHub
Oct 09, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[bugfix] cat二进制文件 界面卡顿 (#96)
parent
b1b0545a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
18 deletions
+34
-18
parsercmd.go
pkg/proxy/parsercmd.go
+32
-18
terminal.go
pkg/utils/terminal.go
+2
-0
No files found.
pkg/proxy/parsercmd.go
View file @
12609824
...
@@ -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
}
}
pkg/utils/terminal.go
View file @
12609824
...
@@ -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
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment