/drools-core/src/main/java/org/drools/workflow/instance/node/ActionNodeInstance.java

https://github.com/bobmcwhirter/drools · Java · 74 lines · 45 code · 9 blank · 20 comment · 3 complexity · 322e0afc9b0440c51a7b8e664f5efb9c MD5 · raw file

  1. package org.drools.workflow.instance.node;
  2. /*
  3. * Copyright 2005 JBoss Inc
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. import org.drools.WorkingMemory;
  18. import org.drools.base.DefaultKnowledgeHelper;
  19. import org.drools.base.SequentialKnowledgeHelper;
  20. import org.drools.common.InternalRuleBase;
  21. import org.drools.spi.Action;
  22. import org.drools.spi.ProcessContext;
  23. import org.drools.spi.KnowledgeHelper;
  24. import org.drools.workflow.core.Node;
  25. import org.drools.workflow.core.node.ActionNode;
  26. import org.drools.workflow.instance.NodeInstance;
  27. import org.drools.workflow.instance.impl.NodeInstanceImpl;
  28. /**
  29. * Runtime counterpart of an action node.
  30. *
  31. * @author <a href="mailto:kris_verlaenen@hotmail.com">Kris Verlaenen</a>
  32. */
  33. public class ActionNodeInstance extends NodeInstanceImpl {
  34. private static final long serialVersionUID = 400L;
  35. protected ActionNode getActionNode() {
  36. return (ActionNode) getNode();
  37. }
  38. public void internalTrigger(final NodeInstance from, String type) {
  39. if (!Node.CONNECTION_DEFAULT_TYPE.equals(type)) {
  40. throw new IllegalArgumentException(
  41. "An ActionNode only accepts default incoming connections!");
  42. }
  43. Action action = (Action) getActionNode().getAction().getMetaData("Action");
  44. try {
  45. KnowledgeHelper knowledgeHelper = createKnowledgeHelper();
  46. ProcessContext context = new ProcessContext();
  47. context.setNodeInstance(this);
  48. action.execute(knowledgeHelper, getProcessInstance().getWorkingMemory(), context);
  49. } catch (Exception e) {
  50. throw new RuntimeException("unable to execute Action", e);
  51. }
  52. triggerCompleted();
  53. }
  54. public void triggerCompleted() {
  55. triggerCompleted(Node.CONNECTION_DEFAULT_TYPE, true);
  56. }
  57. private KnowledgeHelper createKnowledgeHelper() {
  58. WorkingMemory workingMemory = getProcessInstance().getWorkingMemory();
  59. if ( ((InternalRuleBase) workingMemory.getRuleBase()).getConfiguration().isSequential() ) {
  60. return new SequentialKnowledgeHelper( workingMemory );
  61. } else {
  62. return new DefaultKnowledgeHelper( workingMemory );
  63. }
  64. }
  65. }