- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们有一个处理不同类型金融交易的 Java 应用程序。这些事务具有不同的流程,为了系统灵 active (尤其是用户),我们引入了一个 xml,用于定义每个事务的流程。步骤是异步执行的xml 看起来像这样
<transaction code="201510" name="deposit">
<step id="1" name="momo.debit" script="step-1" result="0000" nextid="2">
<error code="0104" script="err-0104"/>
<error code="5008" script="$err-0301"/>
<error code="03**" script="err-0300"/>
<error code="50-98" script="err-5000"/>
</step>
<step id="2" name="deposit" script="step-2" result="0000" nextid="3">
<error code="0105" script="err-0105" hook="2" />
<error code="0203" script="$err-5000" hook="2"/>
<error code="0205" script="$err-5000" hook="2"/>
<error code="0206" script="$err-5000" hook="2"/>
<error code="6100" script="err-5100" hook="2"/>
<error code="5001" script="$err-5101" hook="2"/>
<error code="5002" script="$err-5101" hook="2"/>
<error code="5003" script="$err-5101" hook="2"/>
<error code="5004" script="$err-5102" hook="2"/>
<error code="5005" script="$err-5104" hook="2"/>
<error code="5006" script="$err-5105" hook="2"/>
<error code="50-59" script="$err-5107" hook="2"/>
<error code="6000" script="$err-5108" hook="2"/>
<error code="6005" script="$err-5106" hook="2"/>
<error code="60-99" script="$err-5000" hook="2"/>
</step>
<step id="3" name="notify" script="$notify" result="*"/>
</transaction>
剧情简介
每个步骤都包含一个步骤脚本、步骤脚本的预期结果、步骤脚本失败时的纠错脚本,以及称为 Hook 的拦截脚本,这些脚本在执行步骤脚本或错误脚本之前执行一些工作。
当前设计我有以下类(class)
名为 State 的枚举
enum State {
ERROR, HOOK, STEP, REPLAY;
}
包含所有属性的状态节点:
final class StateNode implements Serializable {
private final String id;
private final String name;
private final String code;
private final String hook;
private final String replay;
private final String script;
private final String result;
private final String nextid;
private final String advance;
private final States statename;
private boolean errorExecuted = false;
private boolean hookExecuted = false;
private boolean replayExecuted = false;
private boolean scriptExecuted = false;
public StateNode(States statename, Map<String, String> step) {
this(statename, step.get("id"), step.get("name"), step.get("script"), step.get("result"), step.get("nextid"), step.get("code"), step.get("hook"), step.get("replay"), step.get("advance"));
}
public StateNode(States statename) {
this(statename, "");
}
public StateNode(States statename, String id) {
this(statename, id, "");
}
public StateNode(States statename, String id, String name) {
this(statename, id, name, "");
}
public StateNode(States statename, String id, String name, String script) {
this(statename, id, name, script, "");
}
public StateNode(States statename, String id, String name, String script, String result) {
this(statename, id, name, script, result, "");
}
public StateNode(States statename, String id, String name, String script, String result, String nextid) {
this(statename, id, name, script, result, nextid, "");
}
public StateNode(States statename, String id, String name, String script, String result, String nextid, String code) {
this(statename, id, name, script, result, nextid, code, "");
}
public StateNode(States statename, String id, String name, String script, String result, String nextid, String code, String hook) {
this(statename, id, name, script, result, nextid, code, hook, "");
}
public StateNode(States statename, String id, String name, String script, String result, String nextid, String code, String hook, String replay) {
this(statename, id, name, script, result, nextid, code, hook, replay, "");
}
public StateNode(States statename, String id, String name, String script, String result, String nextid, String code, String hook, String replay, String advance) {
this.id = id;
this.code = code;
this.name = name;
this.hook = hook;
this.nextid = nextid;
this.replay = replay;
this.result = result;
this.script = script;
this.advance = advance;
this.statename = statename;
}
public States getStateName() {
return statename;
}
public String getId() {
return StringUtils.defaultIfEmpty(id, "-1");
}
public String getName() {
return StringUtils.defaultIfEmpty(name, "");
}
public String getScript() {
return StringUtils.defaultIfEmpty(script, "");
}
public String getResult() {
return StringUtils.defaultIfEmpty(result, "*");
}
public String getNextid() {
return StringUtils.defaultIfEmpty(nextid, "-1");
}
public String getCode() {
return StringUtils.defaultIfEmpty(code, "");
}
public String getHook() {
return StringUtils.defaultIfEmpty(hook, "");
}
public String getReplay() {
return StringUtils.defaultIfEmpty(replay, "");
}
public String getAdvance() {
return StringUtils.defaultIfEmpty(advance, "true");
}
public boolean isErrorExecuted() {
return errorExecuted;
}
public void setErrorExecuted(boolean errorExecuted) {
this.errorExecuted = errorExecuted;
}
public boolean isHookExecuted() {
return hookExecuted;
}
public void setHookExecuted(boolean hookExecuted) {
this.hookExecuted = hookExecuted;
}
public boolean isReplayExecuted() {
return replayExecuted;
}
public void setReplayExecuted(boolean replayExecuted) {
this.replayExecuted = replayExecuted;
}
public boolean isScriptExecuted() {
return scriptExecuted;
}
public void setScriptExecuted(boolean scriptExecuted) {
this.scriptExecuted = scriptExecuted;
}
}
状态树,存储系统内正在进行的交易的所有正在执行的步骤(状态节点)
最终类 StateTree 实现可序列化{
private int maxsteps = 0;
private final Map<Integer, StateNode> branches;
public StateTree() {
this.branches = new LinkedHashMap();
}
public int getPoint() {
return branches.size();
}
public State getParentState(int point) {
return branches.get(point - 1).getStateName();
}
public StateNode getCurrentState() {
return branches.get(branches.size());
}
public StateNode getState(int point) {
return branches.get(point);
}
public StateNode[] getStates() {
return branches.values().toArray(new StateNode[branches.size()]);
}
public int getMaximum() {
return maxsteps;
}
public int promote() {
return promote(1);
}
public int promote(int factor) {
for (int i = 0; i < factor; i++) {
branches.remove(branches.size());
}
return branches.size();
}
public StateTree setState(StateNode state) {
branches.put((branches.size() + 1), state);
return this;
}
public void setMaxSteps(int maxsteps) {
this.maxsteps = maxsteps;
}
}
目前如何运作
当请求新事务时,有一个称为事务处理引擎的模块,它使用 xml 和此结构来处理事务。因此,我们会为进入系统的每个事务创建一个新的状态树,并将其保存到数据库中,然后对于执行的每个步骤、错误或钩子(Hook),我们创建一个新的状态节点并将其保存到状态树中。我希望这足够清楚。
实际执行
为了确定执行哪个状态以及在哪个步骤执行,我有一个名为“解析执行”的递归方法。我希望它对读者来说是直观的:
private void resolveExecution(Context ctx, Map<String, String> header, StateTree tree) throws Exception {
StateNode state = tree.getCurrentState();
/**
* Resolves the states priority by doing the following check. if a hook
* exists and has not been executed then change the state to hook and
* then invoke the hook logic else if not check that a replay exists an
* that it has not been executed and if that is met then invoke the
* replay manager and it's logic else invoke the the current state.
*/
State statename = !state.getHook().isEmpty() && !state.isHookExecuted()
? State.HOOK : !state.isScriptExecuted() ? state.getStateName()
: state.getStateName() == State.ERROR && !state.getReplay().isEmpty() && !state.isReplayExecuted()
? State.REPLAY
: state.getStateName();
switch (statename) {
case STEP:
logger.debug(Utility.LOG.transaction(header.get("code"), header.get("type"), header.get("id"), header.get("msisdn"), "Begin resolving execution for step."));
if (state.isScriptExecuted()) {
/**
* Add new state of the next step id and update the state
* map
*/
tree.setState(new StateNode(
State.STEP,
Configurations.HANDLER.getStepConfigurationsFromId(header.get("code"),
state.getNextid())
));
this.resolveAndExecuteScript(ctx, header, tree);
} else {
state.setScriptExecuted(true);
this.resolveAndExecuteScript(ctx, header, tree);
}
logger.debug(Utility.LOG.transaction(header.get("code"), header.get("type"), header.get("id"), header.get("msisdn"), "End of resolving execution for step."));
break;
case ERROR:
logger.debug(Utility.LOG.transaction(header.get("code"), header.get("type"), header.get("id"), header.get("msisdn"), "Begin resolving execution for error."));
if (state.isScriptExecuted()) {
if ("-9".equals(state.getNextid())) {
this.exit(ctx, header);
} else {
tree.promote();
this.resolveExecution(ctx, header, tree);
}
} else {
state.setErrorExecuted(true);
this.resolveAndExecuteScript(ctx, header, tree);
}
logger.debug(Utility.LOG.transaction(header.get("code"), header.get("type"), header.get("id"), header.get("msisdn"), "End of resolving execution for error."));
break;
case HOOK:
logger.debug(Utility.LOG.transaction(header.get("code"), header.get("type"), header.get("id"), header.get("msisdn"), "Begin resolving execution for hook."));
if (state.isScriptExecuted()) {
if ("true".equals(state.getAdvance())) {
tree.promote();
this.resolveExecution(ctx, header, tree);
} else {
this.exit(ctx, header, this.resolveStatus(7));
}
} else {
state.setHookExecuted(true);
Map<String, String> configs = Configurations.HANDLER.getHookConfigurations(state.getHook());
tree.setState(new StateNode(statename,
state.getId(),
configs.get("name"),
configs.get("script"),
configs.get("result"),
state.getNextid(),
state.getCode(),
state.getHook(),
state.getReplay(),
StringUtils.defaultIfEmpty(configs.get("advance"), "true")));
this.resolveAndExecuteScript(ctx, header, tree);
}
logger.debug(Utility.LOG.transaction(header.get("code"), header.get("type"), header.get("id"), header.get("msisdn"), "End of resolving execution for hook."));
break;
case REPLAY:
logger.debug(Utility.LOG.transaction(header.get("code"), header.get("type"), header.get("id"), header.get("msisdn"), "Begin resolving execution for replay."));
state.setReplayExecuted(true);
if (!this.replay(ctx, header, state.getStateName() == State.REPLAY ? tree
: tree.setState(new StateNode(
statename,
state.getId(),
state.getName(),
"?".equals(state.getScript()) ? tree.getState(2).getScript() : state.getScript(),
state.getResult(),
state.getNextid(),
state.getCode(),
state.getHook(),
state.getReplay())))) {
tree.promote();
this.resolveExecution(ctx, header, tree);
}
logger.debug(Utility.LOG.transaction(header.get("code"), header.get("type"), header.get("id"), header.get("msisdn"), "End of resolving execution for replay."));
break;
}
}
问题
我已经有了一个可行的解决方案,但我觉得它不是最好的。现在我们正在进行性能测试,我发现处理速度很慢,我相信它可以做得更好。您建议使用什么数据结构来映射此 xml 和/或设计模式?我希望这不像是一个开放式问题。谢谢
最佳答案
这确实感觉有点像 flavor 问题。
如果我理解正确的话,你有数据驱动流,我的意思是你有一些数据(在本例中以 xml 和脚本的形式)指示将采取什么操作(所以在编译时不知道,但你使用伪语言来描述这个流程)。
我通常的方法是创建一个命令队列并一次填充所有命令,然后执行它,而不是执行命令,加载下一个脚本,执行命令。然而,这涉及到制作你自己的伪语言编译器,可以这么说:)。
如果您的 xml 有点琐碎,您可以轻松摆脱它。
对于您的 xml 示例,命令队列将导致
1 - 2 - 3
因为你没有分支(在我看来,无论如何你都会经历它们)
您必须预加载一些脚本(用于额外优化):
$err-5000
$notify
etc
现在您可以在全局级别决定哪些脚本将被缓存,哪些不会。
关于java - 使用什么数据结构或设计模式来映射定义的步骤序列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28362206/
我是在项目中使用 keras 的新手。我一直在我的模型中使用generator。 我真的很困惑我应该输入什么值 1) In fit_generator : steps_per_epoch & vali
假设我们有如下情况: A has to give $10 to B. B has to give $20 to C. C has to give $10 to D. 现在这种情况可以简化为: A lo
我正在尝试对特定列(在工作表“OA”中)进行相对引用,我需要在 110 的步骤中检索新工作表中的单元格内容 例如, =OA!$AB217 =OA!$AB327 =OA!$AB437 与其在每个单元格中
我的 PowerShell 控制台启动时间很慢(总是等待超过 5 秒),并且希望获得有关故障排除步骤的建议,以找出瓶颈可能在哪里? 我已经阅读了关于运行脚本的内容,-NoProfile防止模块等加载很
我在 NativeScript 应用程序中使用 slider 小部件,我想知道是否有步骤属性。在我的例子中,小部件代表金钱,我希望以 5 美元的增量滑动。 我查看了文档,但找不到任何对这种情况有帮助的
我在 NativeScript 应用程序中使用 slider 小部件,我想知道是否有步骤属性。在我的例子中,小部件代表金钱,我希望以 5 美元的增量滑动。 我查看了文档,但找不到任何对这种情况有帮助的
这是我的code : &n
为什么 (2) c.ERR(模棱两可)?第一个方法参数 - char ('a') 被扩展为 float => 匹配。 如果找到匹配项,是否无需继续执行第 2 步(装箱/拆箱)或第 3 步(尝试可变参数
我有一个函数,它处理一个包含 6100 个列表项的列表。当列表只有 300 个项目时,该代码可以正常工作。但是立即与 6100 崩溃。有没有一种方法可以遍历这 6100 个项目,一次说 30 个,然后
1.制作PHP安装程序的原理 其实PHP程序的安装原理无非就是将数据库结构和内容导入到相应的数据库中,从这个过程中重新配置连接数据库的参数和文件,为了保证不被别人恶意使用安装文件,当安装
我创建了一个类似于 primeNG page 的步骤组件我想把他放在一个 dynamic dialog 里面但在应用它之后,“第 1 步”和“第 2 步”不会呈现。 查看代码,我发现关键部分是我们打开
我在理解描述的 MixColumns 步骤时遇到问题 here . 我知道扩散,这一切都是有道理的,因为它指出每列都被视为多项式并乘以 GF(2^8) 的模。 但是..乘以GF(2 ^ 8)。尽管域仍
根据我对 TeamCity 工作原理的观察,我注意到在所有步骤执行完毕后评估构建失败条件。这很烦人,因为如果满足任何构建失败条件,我不能有一个不会执行的步骤。 我不是指常见的构建失败条件,例如“至少一
基于这篇试图在我的环境中测试管道代码的帖子。但它给出了以下错误消息。如何修复他的管道代码? ERROR: Unable to find project for artifact copy: test
我参与了一个项目,需要向我的一位同事提供生产数据的子集(日期范围),以进行故障排除。我想将经过清理的生产数据子集插入新的数据库表中我的同事可以访问。请提出实现此目标的最佳方法。 最佳答案 最简单的方法
我有这样的场景: 鉴于我去这个页面 当我输入 cucumber 时 然后我点击 然后我应该看到文字 我不应该看到这条线 如果我运行这个场景,它将执行所有 5 个步骤。但是我想跳过第4步(然后我应该看到
是否有任何功能可以避免 m 文件的绘图输出? 我的意思是我在文件的开头放置了一个函数(如 clc),然后所有绘图函数都被阻止。 最佳答案 您可以使用自己的(嵌套在您的函数内或同一目录中)重载内置绘图函
我是小 cucumber 语言的新手,这在我看来是非常基本的问题,但我找不到答案。 我知道可以在 Gherking 中编写多行步骤参数,如下所示: Given a blog post named "R
即使其中一个步骤失败,有没有办法继续执行 Cucumber Steps。在我当前的设置中,当一个步骤失败时, cucumber 会跳过剩余的步骤......我想知道是否有某种方法可以设置 cucumb
start-step-stop 码是一种数据压缩技术,用于压缩相对较小的数字。 该代码的工作原理如下:它具有三个参数,start、step 和 stop。 Start 确定用于计算前几个数字的位数。
我是一名优秀的程序员,十分优秀!