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
91e1fd66
Commit
91e1fd66
authored
Sep 18, 2019
by
Eric_Lee
Committed by
Eric
Sep 18, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复最后一个命令记录问题 (#85)
parent
028425c0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
10 deletions
+14
-10
parser.go
pkg/proxy/parser.go
+14
-10
No files found.
pkg/proxy/parser.go
View file @
91e1fd66
...
...
@@ -74,6 +74,8 @@ func (p *Parser) ParseStream(userInChan, srvInChan <-chan []byte) (userOut, srvO
go
func
()
{
defer
func
()
{
// 会话结束,结算命令结果
p
.
sendCommandRecord
()
close
(
p
.
cmdRecordChan
)
close
(
p
.
userOutputChan
)
close
(
p
.
srvOutputChan
)
...
...
@@ -113,12 +115,8 @@ func (p *Parser) parseInputState(b []byte) []byte {
p
.
inputPreState
=
p
.
inputState
if
bytes
.
Contains
(
b
,
charEnter
)
{
// 连续输入enter key, 结算上一条可能存在的命令结果
if
p
.
command
!=
""
{
p
.
parseCmdOutput
()
p
.
cmdRecordChan
<-
[
2
]
string
{
p
.
command
,
p
.
output
}
p
.
command
=
""
p
.
output
=
""
}
p
.
sendCommandRecord
()
p
.
inputState
=
false
// 用户输入了Enter,开始结算命令
p
.
parseCmdInput
()
...
...
@@ -132,10 +130,7 @@ func (p *Parser) parseInputState(b []byte) []byte {
p
.
inputState
=
true
// 用户又开始输入,并上次不处于输入状态,开始结算上次命令的结果
if
!
p
.
inputPreState
{
p
.
parseCmdOutput
()
p
.
cmdRecordChan
<-
[
2
]
string
{
p
.
command
,
p
.
output
}
p
.
command
=
""
p
.
output
=
""
p
.
sendCommandRecord
()
}
}
return
b
...
...
@@ -258,3 +253,12 @@ func (p *Parser) Close() {
}
}
func
(
p
*
Parser
)
sendCommandRecord
()
{
if
p
.
command
!=
""
{
p
.
parseCmdOutput
()
p
.
cmdRecordChan
<-
[
2
]
string
{
p
.
command
,
p
.
output
}
p
.
command
=
""
p
.
output
=
""
}
}
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