/src/java/com/opensymphony/workflow/loader/ConditionalResultDescriptor.java

https://bitbucket.org/opensymphony/osworkflow · Java · 152 lines · 99 code · 37 blank · 16 comment · 32 complexity · e7e90441790d8feebfd25b8fc7d849b1 MD5 · raw file

  1. /*
  2. * Copyright (c) 2002-2003 by OpenSymphony
  3. * All rights reserved.
  4. */
  5. package com.opensymphony.workflow.loader;
  6. import com.opensymphony.workflow.InvalidWorkflowDescriptorException;
  7. import org.w3c.dom.Element;
  8. import java.io.PrintWriter;
  9. import java.util.ArrayList;
  10. import java.util.List;
  11. /**
  12. * @author <a href="mailto:plightbo@hotmail.com">Pat Lightbody</a>
  13. */
  14. public class ConditionalResultDescriptor extends ResultDescriptor {
  15. //~ Instance fields ////////////////////////////////////////////////////////
  16. protected List conditions = new ArrayList();
  17. //~ Constructors ///////////////////////////////////////////////////////////
  18. /**
  19. * @deprecated use {@link DescriptorFactory} instead
  20. */
  21. ConditionalResultDescriptor() {
  22. }
  23. /**
  24. * @deprecated use {@link DescriptorFactory} instead
  25. */
  26. ConditionalResultDescriptor(Element conditionalResult) {
  27. init(conditionalResult);
  28. }
  29. //~ Methods ////////////////////////////////////////////////////////////////
  30. public List getConditions() {
  31. return conditions;
  32. }
  33. public String getDestination() {
  34. WorkflowDescriptor desc = null;
  35. String sName = "";
  36. AbstractDescriptor actionDesc = getParent().getParent();
  37. if (actionDesc != null) {
  38. desc = (WorkflowDescriptor) actionDesc.getParent();
  39. }
  40. if (join != 0) {
  41. return "join #" + join;
  42. } else if (split != 0) {
  43. return "split #" + split;
  44. } else {
  45. if (desc != null) {
  46. sName = desc.getStep(step).getName();
  47. }
  48. return "step #" + step + " [" + sName + "]";
  49. }
  50. }
  51. public void validate() throws InvalidWorkflowDescriptorException {
  52. super.validate();
  53. if (conditions.size() == 0) {
  54. throw new InvalidWorkflowDescriptorException("Conditional result from " + ((ActionDescriptor) getParent()).getName() + " to " + getDestination() + " must have at least one condition");
  55. }
  56. ValidationHelper.validate(conditions);
  57. }
  58. public void writeXML(PrintWriter out, int indent) {
  59. XMLUtil.printIndent(out, indent++);
  60. StringBuffer buf = new StringBuffer();
  61. buf.append("<result");
  62. if (hasId()) {
  63. buf.append(" id=\"").append(getId()).append('\"');
  64. }
  65. if ((dueDate != null) && (dueDate.length() > 0)) {
  66. buf.append(" due-date=\"").append(getDueDate()).append('\"');
  67. }
  68. buf.append(" old-status=\"").append(oldStatus).append('\"');
  69. if (join != 0) {
  70. buf.append(" join=\"").append(join).append('\"');
  71. } else if (split != 0) {
  72. buf.append(" split=\"").append(split).append('\"');
  73. } else {
  74. buf.append(" status=\"").append(status).append('\"');
  75. buf.append(" step=\"").append(step).append('\"');
  76. if ((owner != null) && (owner.length() > 0)) {
  77. buf.append(" owner=\"").append(owner).append('\"');
  78. }
  79. if ((displayName != null) && (displayName.length() > 0)) {
  80. buf.append(" display-name=\"").append(displayName).append('\"');
  81. }
  82. }
  83. buf.append('>');
  84. out.println(buf);
  85. for (int i = 0; i < conditions.size(); i++) {
  86. ConditionsDescriptor condition = (ConditionsDescriptor) conditions.get(i);
  87. condition.writeXML(out, indent);
  88. }
  89. if (validators.size() > 0) {
  90. XMLUtil.printIndent(out, indent++);
  91. out.println("<validators>");
  92. for (int i = 0; i < validators.size(); i++) {
  93. ValidatorDescriptor validator = (ValidatorDescriptor) validators.get(i);
  94. validator.writeXML(out, indent);
  95. }
  96. XMLUtil.printIndent(out, --indent);
  97. out.println("</validators>");
  98. }
  99. printPreFunctions(out, indent);
  100. printPostFunctions(out, indent);
  101. XMLUtil.printIndent(out, --indent);
  102. out.println("</result>");
  103. }
  104. protected void init(Element conditionalResult) {
  105. super.init(conditionalResult);
  106. List conditionNodes = XMLUtil.getChildElements(conditionalResult, "conditions");
  107. int length = conditionNodes.size();
  108. for (int i = 0; i < length; i++) {
  109. Element condition = (Element) conditionNodes.get(i);
  110. ConditionsDescriptor conditionDescriptor = DescriptorFactory.getFactory().createConditionsDescriptor(condition);
  111. conditionDescriptor.setParent(this);
  112. this.conditions.add(conditionDescriptor);
  113. }
  114. }
  115. }