1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kew.engine.node; |
17 | |
|
18 | |
import org.apache.commons.lang.StringUtils; |
19 | |
import org.kuali.rice.core.exception.RiceRuntimeException; |
20 | |
import org.kuali.rice.kew.doctype.bo.DocumentType; |
21 | |
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue; |
22 | |
import org.kuali.rice.kew.rule.xmlrouting.XPathHelper; |
23 | |
import org.w3c.dom.Document; |
24 | |
import org.xml.sax.InputSource; |
25 | |
|
26 | |
import javax.xml.parsers.DocumentBuilder; |
27 | |
import javax.xml.parsers.DocumentBuilderFactory; |
28 | |
import java.io.StringReader; |
29 | |
import java.util.*; |
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | 0 | public class RouteNodeUtils { |
39 | |
|
40 | |
|
41 | |
|
42 | |
|
43 | |
|
44 | |
|
45 | |
|
46 | |
|
47 | |
|
48 | |
|
49 | |
|
50 | |
|
51 | |
|
52 | |
|
53 | |
|
54 | |
|
55 | |
|
56 | |
|
57 | |
|
58 | |
|
59 | |
public static String getValueOfCustomProperty(RouteNode routeNode, String propertyName) { |
60 | 0 | String contentFragment = routeNode.getContentFragment(); |
61 | 0 | String elementValue = null; |
62 | 0 | if (!StringUtils.isBlank(contentFragment)) { |
63 | |
try { |
64 | 0 | DocumentBuilder db = DocumentBuilderFactory.newInstance().newDocumentBuilder(); |
65 | 0 | Document document = db.parse(new InputSource(new StringReader(contentFragment))); |
66 | 0 | elementValue = XPathHelper.newXPath().evaluate("//" + propertyName, document); |
67 | 0 | } catch (Exception e) { |
68 | 0 | throw new RiceRuntimeException("Error when attempting to parse Document Type content fragment for property name: " + propertyName, e); |
69 | 0 | } |
70 | |
} |
71 | 0 | return elementValue; |
72 | |
} |
73 | |
|
74 | |
public static List<RouteNodeInstance> getFlattenedNodeInstances(DocumentRouteHeaderValue document, boolean includeProcesses) { |
75 | 0 | List<RouteNodeInstance> nodeInstances = new ArrayList<RouteNodeInstance>(); |
76 | 0 | Set<Long> visitedNodeInstanceIds = new HashSet<Long>(); |
77 | 0 | for (RouteNodeInstance initialNodeInstance : document.getInitialRouteNodeInstances()) |
78 | |
{ |
79 | 0 | flattenNodeInstanceGraph(nodeInstances, visitedNodeInstanceIds, initialNodeInstance, includeProcesses); |
80 | |
} |
81 | 0 | return nodeInstances; |
82 | |
} |
83 | |
|
84 | |
private static void flattenNodeInstanceGraph(List<RouteNodeInstance> nodeInstances, Set<Long> visitedNodeInstanceIds, RouteNodeInstance nodeInstance, boolean includeProcesses) { |
85 | 0 | if (visitedNodeInstanceIds.contains(nodeInstance.getRouteNodeInstanceId())) { |
86 | 0 | return; |
87 | |
} |
88 | 0 | if (includeProcesses && nodeInstance.getProcess() != null) { |
89 | 0 | flattenNodeInstanceGraph(nodeInstances, visitedNodeInstanceIds, nodeInstance.getProcess(), includeProcesses); |
90 | |
} |
91 | 0 | visitedNodeInstanceIds.add(nodeInstance.getRouteNodeInstanceId()); |
92 | 0 | nodeInstances.add(nodeInstance); |
93 | 0 | for (RouteNodeInstance nextNodeInstance : nodeInstance.getNextNodeInstances()) |
94 | |
{ |
95 | 0 | flattenNodeInstanceGraph(nodeInstances, visitedNodeInstanceIds, nextNodeInstance, includeProcesses); |
96 | |
} |
97 | 0 | } |
98 | |
|
99 | |
public static List<RouteNode> getFlattenedNodes(DocumentType documentType, boolean climbHierarchy) { |
100 | 0 | List<RouteNode> nodes = new ArrayList<RouteNode>(); |
101 | 0 | if (!documentType.isRouteInherited() || climbHierarchy) { |
102 | 0 | for (Object o : documentType.getProcesses()) |
103 | |
{ |
104 | 0 | Process process = (Process) o; |
105 | 0 | nodes.addAll(getFlattenedNodes(process)); |
106 | 0 | } |
107 | |
} |
108 | 0 | Collections.sort(nodes, new RouteNodeSorter()); |
109 | 0 | return nodes; |
110 | |
} |
111 | |
|
112 | |
public static List<RouteNode> getFlattenedNodes(Process process) { |
113 | 0 | Map<String, RouteNode> nodesMap = new HashMap<String, RouteNode>(); |
114 | 0 | if (process.getInitialRouteNode() != null) { |
115 | 0 | flattenNodeGraph(nodesMap, process.getInitialRouteNode()); |
116 | 0 | List<RouteNode> nodes = new ArrayList<RouteNode>(nodesMap.values()); |
117 | 0 | Collections.sort(nodes, new RouteNodeSorter()); |
118 | 0 | return nodes; |
119 | |
} else { |
120 | 0 | List<RouteNode> nodes = new ArrayList<RouteNode>(); |
121 | 0 | nodes.add(new RouteNode()); |
122 | 0 | return nodes; |
123 | |
} |
124 | |
|
125 | |
} |
126 | |
|
127 | |
|
128 | |
|
129 | |
|
130 | |
|
131 | |
|
132 | |
|
133 | |
private static void flattenNodeGraph(Map<String, RouteNode> nodes, RouteNode node) { |
134 | 0 | if (node != null) { |
135 | 0 | if (nodes.containsKey(node.getRouteNodeName())) { |
136 | 0 | return; |
137 | |
} |
138 | 0 | nodes.put(node.getRouteNodeName(), node); |
139 | 0 | for (RouteNode nextNode : node.getNextNodes()) |
140 | |
{ |
141 | 0 | flattenNodeGraph(nodes, nextNode); |
142 | |
} |
143 | |
} else { |
144 | 0 | return; |
145 | |
} |
146 | 0 | } |
147 | |
|
148 | |
|
149 | |
|
150 | |
|
151 | |
|
152 | |
|
153 | |
|
154 | 0 | private static class RouteNodeSorter implements Comparator { |
155 | |
public int compare(Object arg0, Object arg1) { |
156 | 0 | RouteNode rn1 = (RouteNode)arg0; |
157 | 0 | RouteNode rn2 = (RouteNode)arg1; |
158 | 0 | return rn1.getRouteNodeId().compareTo(rn2.getRouteNodeId()); |
159 | |
} |
160 | |
} |
161 | |
|
162 | |
public static List<RouteNodeInstance> getActiveNodeInstances(DocumentRouteHeaderValue document) { |
163 | 0 | List<RouteNodeInstance> flattenedNodeInstances = getFlattenedNodeInstances(document, true); |
164 | 0 | List<RouteNodeInstance> activeNodeInstances = new ArrayList<RouteNodeInstance>(); |
165 | 0 | for (RouteNodeInstance nodeInstance : flattenedNodeInstances) |
166 | |
{ |
167 | 0 | if (nodeInstance.isActive()) |
168 | |
{ |
169 | 0 | activeNodeInstances.add(nodeInstance); |
170 | |
} |
171 | |
} |
172 | 0 | return activeNodeInstances; |
173 | |
} |
174 | |
|
175 | |
public static RouteNodeInstance findRouteNodeInstanceById(Long nodeInstanceId, DocumentRouteHeaderValue document) { |
176 | 0 | List<RouteNodeInstance> flattenedNodeInstances = getFlattenedNodeInstances(document, true); |
177 | 0 | RouteNodeInstance niRet = null; |
178 | 0 | for (RouteNodeInstance nodeInstance : flattenedNodeInstances) |
179 | |
{ |
180 | 0 | if (nodeInstanceId.equals(nodeInstance.getRouteNodeInstanceId())) |
181 | |
{ |
182 | 0 | niRet = nodeInstance; |
183 | 0 | break; |
184 | |
} |
185 | |
} |
186 | 0 | return niRet; |
187 | |
} |
188 | |
|
189 | |
|
190 | |
|
191 | |
} |