📄 simpleerrorreporter.java
字号:
/*
* 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.apache.commons.scxml.env;
import java.io.Serializable;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.commons.scxml.ErrorReporter;
import org.apache.commons.scxml.model.SCXML;
import org.apache.commons.scxml.model.State;
import org.apache.commons.scxml.model.TransitionTarget;
import org.apache.commons.scxml.semantics.ErrorConstants;
/**
* Custom error reporter that log execution errors.
*/
public class SimpleErrorReporter implements ErrorReporter, Serializable {
/** Serial version UID. */
private static final long serialVersionUID = 1L;
/** Log. */
private Log log = LogFactory.getLog(getClass());
/**
* Constructor.
*/
public SimpleErrorReporter() {
super();
}
/**
* @see ErrorReporter#onError(String, String, Object)
*/
public void onError(final String errorCode, final String errDetail,
final Object errCtx) {
//Note: the if-then-else below is based on the actual usage
// (codebase search), it has to be kept up-to-date as the code changes
String errCode = errorCode.intern();
StringBuffer msg = new StringBuffer();
msg.append(errCode).append(" (");
msg.append(errDetail).append("): ");
if (errCode == ErrorConstants.NO_INITIAL) {
if (errCtx instanceof SCXML) {
//determineInitialStates
msg.append("<SCXML>");
} else if (errCtx instanceof State) {
//determineInitialStates
//determineTargetStates
msg.append("State " + LogUtils.getTTPath((State) errCtx));
}
} else if (errCode == ErrorConstants.UNKNOWN_ACTION) {
//executeActionList
msg.append("Action: " + errCtx.getClass().getName());
} else if (errCode == ErrorConstants.ILLEGAL_CONFIG) {
//isLegalConfig
if (errCtx instanceof Map.Entry) {
TransitionTarget tt = (TransitionTarget)
(((Map.Entry) errCtx).getKey());
Set vals = (Set) (((Map.Entry) errCtx).getValue());
msg.append(LogUtils.getTTPath(tt) + " : [");
for (Iterator i = vals.iterator(); i.hasNext();) {
TransitionTarget tx = (TransitionTarget) i.next();
msg.append(LogUtils.getTTPath(tx));
if (i.hasNext()) {
msg.append(", ");
}
}
msg.append(']');
} else if (errCtx instanceof Set) {
Set vals = (Set) errCtx;
msg.append("<SCXML> : [");
for (Iterator i = vals.iterator(); i.hasNext();) {
TransitionTarget tx = (TransitionTarget) i.next();
msg.append(LogUtils.getTTPath(tx));
if (i.hasNext()) {
msg.append(", ");
}
}
msg.append(']');
}
}
if (log.isWarnEnabled()) {
log.warn(msg.toString());
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -