blob: 42c0d7cadef8dad01b334a9a51a82fc05bea983a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.lib.terminalemulator;
import java.awt.event.KeyEvent;
import java.util.Stack;
/**
* Input stream interpreter
* Decodes incoming characters into cursor motion etc.
*/
public class InterpDumb extends AbstractInterp {
protected static class InterpTypeDumb {
public final State st_base = new State("base"); // NOI18N
protected final Actor act_nop = new ACT_NOP();
protected final Actor act_pause = new ACT_PAUSE();
protected final Actor act_err = new ACT_ERR();
protected final Actor act_regular = new ACT_REGULAR();
protected final Actor act_cr = new ACT_CR();
protected final Actor act_lf = new ACT_LF();
protected final Actor act_bs = new ACT_BS();
protected final Actor act_tab = new ACT_TAB();
protected final Actor act_beL = new ACT_BEL();
protected InterpTypeDumb() {
st_base.setRegular(st_base, act_regular);
for (char c = 0; c < 128; c++) {
st_base.setAction(c, st_base, act_regular);
}
st_base.setAction((char) 0, st_base, act_pause);
st_base.setAction('\r', st_base, act_cr);
st_base.setAction('\n', st_base, act_lf);
st_base.setAction('\b', st_base, act_bs);
st_base.setAction('\t', st_base, act_tab);
st_base.setAction((char) 7, st_base, act_beL);
}
private static final class ACT_NOP implements Actor {
@Override
public String action(AbstractInterp ai, char c) {
return null;
}
};
private static final class ACT_PAUSE implements Actor {
@Override
public String action(AbstractInterp ai, char c) {
ai.ops.op_pause();
return null;
}
};
private static final class ACT_ERR implements Actor {
@Override
public String action(AbstractInterp ai, char c) {
return "ACT ERROR"; // NOI18N
}
};
private static final class ACT_REGULAR implements Actor {
@Override
public String action(AbstractInterp ai, char c) {
ai.ops.op_char(c);
return null;
}
};
private static final class ACT_CR implements Actor {
@Override
public String action(AbstractInterp ai, char c) {
ai.ops.op_carriage_return();
return null;
}
};
private static final class ACT_LF implements Actor {
@Override
public String action(AbstractInterp ai, char c) {
ai.ops.op_line_feed();
return null;
}
};
private static final class ACT_BS implements Actor {
@Override
public String action(AbstractInterp ai, char c) {
ai.ops.op_back_space();
return null;
}
};
private static final class ACT_TAB implements Actor {
@Override
public String action(AbstractInterp ai, char c) {
ai.ops.op_tab();
return null;
}
};
private static final class ACT_BEL implements Actor {
@Override
public String action(AbstractInterp ai, char c) {
ai.ops.op_bel();
return null;
}
}
}
/*
* A stack for State
*/
private final Stack<State> stack = new Stack<>();
protected void push_state(State s) {
stack.push(s);
}
protected State pop_state() {
return stack.pop();
}
protected void pop_all_states() {
while (!stack.empty()) {
stack.pop();
}
}
private StringBuilder ctlSequence;
private final InterpTypeDumb type;
private static final InterpTypeDumb type_singleton = new InterpTypeDumb();
public InterpDumb(Ops ops) {
super(ops);
this.type = type_singleton;
setup();
ctlSequence = new StringBuilder();
}
protected InterpDumb(Ops ops, InterpTypeDumb type) {
super(ops);
this.type = type;
setup();
ctlSequence = new StringBuilder();
}
@Override
public String name() {
return "dumb"; // NOI18N
}
@Override
public void reset() {
super.reset();
pop_all_states();
state = type.st_base;
ctlSequence = new StringBuilder();
}
private void setup() {
state = type.st_base;
}
private void reset_state_bad() {
reset();
}
@Override
public void processChar(char c) {
ctlSequence.append(c);
try {
State.Action a = state.getAction(c);
/* DEBUG
if (a == null) {
System.out.println("null action in state " + state.name() + // NOI18N
" for char " + c + " = " + (int) c); // NOI18N
}
if (a.actor == null) {
System.out.println("null a.actor in state " + state.name() + // NOI18N
" for char " + c + " = " + (int) c); // NOI18N
}
*/
String err_str = a.actor.action(this, c);
/* DEBUG
// String newName = (a.new_state) == null ? "null" : a.new_state.name(); //NOI18N
// System.out.println(c + " " +(int)c + " " + a.actor.getClass().getSimpleName() + " " + state.name() + " " + newName); //NOI18N
*/
if (err_str != null) {
ops.logUnrecognizedSequence(ctlSequence.toString());
reset_state_bad();
return;
}
if (a.new_state != null) {
state = a.new_state;
} else {
// must be set by action, usually using pop_state()
}
} finally {
if (state == type.st_base) {
ops.logCompletedSequence(ctlSequence.toString());
ctlSequence = new StringBuilder();
}
}
}
/**
* {@inheritDoc}
*/
@Override
public void keyPressed(KeyEvent e) {
}
/**
* {@inheritDoc}
*/
@Override
public char mapACS(char inChar) {
return '\0';
}
@Override
public void softReset() {
}
}