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
63ef02f5
Commit
63ef02f5
authored
Jul 12, 2019
by
Eric
Committed by
Eric_Lee
Jul 12, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug;命令无法记录问题
parent
82dd5009
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
parser.go
pkg/proxy/parser.go
+9
-0
No files found.
pkg/proxy/parser.go
View file @
63ef02f5
...
@@ -112,6 +112,13 @@ func (p *Parser) parseInputState(b []byte) []byte {
...
@@ -112,6 +112,13 @@ func (p *Parser) parseInputState(b []byte) []byte {
}
}
p
.
inputPreState
=
p
.
inputState
p
.
inputPreState
=
p
.
inputState
if
bytes
.
Contains
(
b
,
charEnter
)
{
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
.
inputState
=
false
p
.
inputState
=
false
// 用户输入了Enter,开始结算命令
// 用户输入了Enter,开始结算命令
p
.
parseCmdInput
()
p
.
parseCmdInput
()
...
@@ -127,6 +134,8 @@ func (p *Parser) parseInputState(b []byte) []byte {
...
@@ -127,6 +134,8 @@ func (p *Parser) parseInputState(b []byte) []byte {
if
!
p
.
inputPreState
{
if
!
p
.
inputPreState
{
p
.
parseCmdOutput
()
p
.
parseCmdOutput
()
p
.
cmdRecordChan
<-
[
2
]
string
{
p
.
command
,
p
.
output
}
p
.
cmdRecordChan
<-
[
2
]
string
{
p
.
command
,
p
.
output
}
p
.
command
=
""
p
.
output
=
""
}
}
}
}
return
b
return
b
...
...
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