2015-04-16 17:01:37 -04:00
|
|
|
package ansiterm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (ap *AnsiParser) collectParam() error {
|
|
|
|
currChar := ap.context.currentChar
|
|
|
|
logger.Infof("collectParam %#x", currChar)
|
|
|
|
ap.context.paramBuffer = append(ap.context.paramBuffer, currChar)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ap *AnsiParser) collectInter() error {
|
|
|
|
currChar := ap.context.currentChar
|
|
|
|
logger.Infof("collectInter %#x", currChar)
|
|
|
|
ap.context.paramBuffer = append(ap.context.interBuffer, currChar)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ap *AnsiParser) escDispatch() error {
|
|
|
|
cmd, _ := parseCmd(*ap.context)
|
|
|
|
intermeds := ap.context.interBuffer
|
|
|
|
logger.Infof("escDispatch currentChar: %#x", ap.context.currentChar)
|
|
|
|
logger.Infof("escDispatch: %v(%v)", cmd, intermeds)
|
|
|
|
|
|
|
|
switch cmd {
|
2015-08-06 23:38:56 -04:00
|
|
|
case "D": // IND
|
|
|
|
return ap.eventHandler.IND()
|
|
|
|
case "E": // NEL, equivalent to CRLF
|
|
|
|
err := ap.eventHandler.Execute(ANSI_CARRIAGE_RETURN)
|
|
|
|
if err == nil {
|
|
|
|
err = ap.eventHandler.Execute(ANSI_LINE_FEED)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
case "M": // RI
|
2015-04-16 17:01:37 -04:00
|
|
|
return ap.eventHandler.RI()
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ap *AnsiParser) csiDispatch() error {
|
|
|
|
cmd, _ := parseCmd(*ap.context)
|
|
|
|
params, _ := parseParams(ap.context.paramBuffer)
|
|
|
|
|
|
|
|
logger.Infof("csiDispatch: %v(%v)", cmd, params)
|
|
|
|
|
|
|
|
switch cmd {
|
2015-08-06 23:38:56 -04:00
|
|
|
case "@":
|
|
|
|
return ap.eventHandler.ICH(getInt(params, 1))
|
2015-04-16 17:01:37 -04:00
|
|
|
case "A":
|
|
|
|
return ap.eventHandler.CUU(getInt(params, 1))
|
|
|
|
case "B":
|
|
|
|
return ap.eventHandler.CUD(getInt(params, 1))
|
|
|
|
case "C":
|
|
|
|
return ap.eventHandler.CUF(getInt(params, 1))
|
|
|
|
case "D":
|
|
|
|
return ap.eventHandler.CUB(getInt(params, 1))
|
|
|
|
case "E":
|
|
|
|
return ap.eventHandler.CNL(getInt(params, 1))
|
|
|
|
case "F":
|
|
|
|
return ap.eventHandler.CPL(getInt(params, 1))
|
|
|
|
case "G":
|
|
|
|
return ap.eventHandler.CHA(getInt(params, 1))
|
|
|
|
case "H":
|
|
|
|
ints := getInts(params, 2, 1)
|
|
|
|
x, y := ints[0], ints[1]
|
|
|
|
return ap.eventHandler.CUP(x, y)
|
|
|
|
case "J":
|
|
|
|
param := getEraseParam(params)
|
|
|
|
return ap.eventHandler.ED(param)
|
|
|
|
case "K":
|
|
|
|
param := getEraseParam(params)
|
|
|
|
return ap.eventHandler.EL(param)
|
|
|
|
case "L":
|
|
|
|
return ap.eventHandler.IL(getInt(params, 1))
|
|
|
|
case "M":
|
|
|
|
return ap.eventHandler.DL(getInt(params, 1))
|
2015-08-06 23:38:56 -04:00
|
|
|
case "P":
|
|
|
|
return ap.eventHandler.DCH(getInt(params, 1))
|
2015-04-16 17:01:37 -04:00
|
|
|
case "S":
|
|
|
|
return ap.eventHandler.SU(getInt(params, 1))
|
|
|
|
case "T":
|
|
|
|
return ap.eventHandler.SD(getInt(params, 1))
|
|
|
|
case "c":
|
|
|
|
return ap.eventHandler.DA(params)
|
2015-08-06 23:38:56 -04:00
|
|
|
case "d":
|
|
|
|
return ap.eventHandler.VPA(getInt(params, 1))
|
2015-04-16 17:01:37 -04:00
|
|
|
case "f":
|
|
|
|
ints := getInts(params, 2, 1)
|
|
|
|
x, y := ints[0], ints[1]
|
|
|
|
return ap.eventHandler.HVP(x, y)
|
|
|
|
case "h":
|
|
|
|
return ap.hDispatch(params)
|
|
|
|
case "l":
|
|
|
|
return ap.lDispatch(params)
|
|
|
|
case "m":
|
|
|
|
return ap.eventHandler.SGR(getInts(params, 1, 0))
|
|
|
|
case "r":
|
|
|
|
ints := getInts(params, 2, 1)
|
|
|
|
top, bottom := ints[0], ints[1]
|
|
|
|
return ap.eventHandler.DECSTBM(top, bottom)
|
|
|
|
default:
|
|
|
|
logger.Errorf(fmt.Sprintf("Unsupported CSI command: '%s', with full context: %v", cmd, ap.context))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ap *AnsiParser) print() error {
|
|
|
|
return ap.eventHandler.Print(ap.context.currentChar)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ap *AnsiParser) clear() error {
|
2016-04-25 18:55:12 -04:00
|
|
|
ap.context = &ansiContext{}
|
2015-04-16 17:01:37 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ap *AnsiParser) execute() error {
|
|
|
|
return ap.eventHandler.Execute(ap.context.currentChar)
|
|
|
|
}
|