mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
2b946fbc70
Re-vendor go-ansiterm to d6e3b3328b783f23731bc4d058875b0371ff8109 in order to get the newly added console mode constants. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
38 lines
854 B
Go
38 lines
854 B
Go
package ansiterm
|
|
|
|
type csiParamState struct {
|
|
baseState
|
|
}
|
|
|
|
func (csiState csiParamState) Handle(b byte) (s state, e error) {
|
|
csiState.parser.logf("CsiParam::Handle %#x", b)
|
|
|
|
nextState, err := csiState.baseState.Handle(b)
|
|
if nextState != nil || err != nil {
|
|
return nextState, err
|
|
}
|
|
|
|
switch {
|
|
case sliceContains(alphabetics, b):
|
|
return csiState.parser.ground, nil
|
|
case sliceContains(csiCollectables, b):
|
|
csiState.parser.collectParam()
|
|
return csiState, nil
|
|
case sliceContains(executors, b):
|
|
return csiState, csiState.parser.execute()
|
|
}
|
|
|
|
return csiState, nil
|
|
}
|
|
|
|
func (csiState csiParamState) Transition(s state) error {
|
|
csiState.parser.logf("CsiParam::Transition %s --> %s", csiState.Name(), s.Name())
|
|
csiState.baseState.Transition(s)
|
|
|
|
switch s {
|
|
case csiState.parser.ground:
|
|
return csiState.parser.csiDispatch()
|
|
}
|
|
|
|
return nil
|
|
}
|