mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 04:11:03 +00:00
75513575be
* store dependency's in git * since we vendor ... rm tech-depts * aad make target 'vendor' to update vendor folder (manual task)
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
|
|
}
|