1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kew.engine; |
18 | |
|
19 | |
import org.apache.log4j.MDC; |
20 | |
import org.kuali.rice.kew.actionrequest.ActionRequestValue; |
21 | |
import org.kuali.rice.kew.engine.node.*; |
22 | |
import org.kuali.rice.kew.engine.node.Process; |
23 | |
import org.kuali.rice.kew.engine.node.service.RouteNodeService; |
24 | |
import org.kuali.rice.kew.engine.transition.Transition; |
25 | |
import org.kuali.rice.kew.engine.transition.TransitionEngine; |
26 | |
import org.kuali.rice.kew.engine.transition.TransitionEngineFactory; |
27 | |
import org.kuali.rice.kew.exception.InvalidActionTakenException; |
28 | |
import org.kuali.rice.kew.exception.RouteManagerException; |
29 | |
import org.kuali.rice.kew.exception.WorkflowException; |
30 | |
import org.kuali.rice.kew.postprocessor.*; |
31 | |
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue; |
32 | |
import org.kuali.rice.kew.routeheader.service.RouteHeaderService; |
33 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
34 | |
import org.kuali.rice.kew.util.KEWConstants; |
35 | |
import org.kuali.rice.kew.util.PerformanceLogger; |
36 | |
import org.kuali.rice.kew.util.Utilities; |
37 | |
import org.kuali.rice.kns.util.KNSConstants; |
38 | |
|
39 | |
import java.util.*; |
40 | |
|
41 | |
|
42 | |
|
43 | |
|
44 | |
|
45 | |
|
46 | |
|
47 | |
|
48 | |
|
49 | |
public class StandardWorkflowEngine implements WorkflowEngine { |
50 | |
|
51 | 0 | private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(StandardWorkflowEngine.class); |
52 | |
|
53 | 0 | protected RouteHelper helper = new RouteHelper(); |
54 | 0 | private boolean runPostProcessorLogic = true; |
55 | |
|
56 | 0 | public StandardWorkflowEngine() {} |
57 | |
|
58 | 0 | public StandardWorkflowEngine(boolean runPostProcessorLogic) { |
59 | 0 | setRunPostProcessorLogic(runPostProcessorLogic); |
60 | 0 | } |
61 | |
|
62 | |
public void setRunPostProcessorLogic(boolean runPostProcessorLogic) { |
63 | 0 | this.runPostProcessorLogic = runPostProcessorLogic; |
64 | 0 | } |
65 | |
|
66 | |
public boolean isRunPostProcessorLogic() { |
67 | 0 | return this.runPostProcessorLogic; |
68 | |
} |
69 | |
|
70 | |
public void process(Long documentId, Long nodeInstanceId) throws Exception { |
71 | 0 | if (documentId == null) { |
72 | 0 | throw new IllegalArgumentException("Cannot process a null document id."); |
73 | |
} |
74 | 0 | MDC.put("docId", documentId); |
75 | 0 | boolean success = true; |
76 | 0 | RouteContext context = RouteContext.createNewRouteContext(); |
77 | |
try { |
78 | 0 | if ( LOG.isInfoEnabled() ) { |
79 | 0 | LOG.info("Aquiring lock on document " + documentId); |
80 | |
} |
81 | 0 | KEWServiceLocator.getRouteHeaderService().lockRouteHeader(documentId, true); |
82 | 0 | if ( LOG.isInfoEnabled() ) { |
83 | 0 | LOG.info("Aquired lock on document " + documentId); |
84 | |
} |
85 | |
|
86 | 0 | DocumentRouteHeaderValue document = getRouteHeaderService().getRouteHeader(documentId); |
87 | 0 | context.setDocument(document); |
88 | 0 | lockAdditionalDocuments(document); |
89 | |
|
90 | 0 | if ( LOG.isInfoEnabled() ) { |
91 | 0 | LOG.info("Processing document: " + documentId + " : " + nodeInstanceId); |
92 | |
} |
93 | |
|
94 | |
try { |
95 | 0 | document = notifyPostProcessorBeforeProcess(document, nodeInstanceId); |
96 | 0 | context.setDocument(document); |
97 | 0 | } catch (Exception e) { |
98 | 0 | LOG.warn("Problems contacting PostProcessor before engine process", e); |
99 | 0 | throw new RouteManagerException("Problems contacting PostProcessor: " + e.getMessage()); |
100 | 0 | } |
101 | 0 | if (!document.isRoutable()) { |
102 | 0 | LOG.debug("Document not routable so returning with doing no action"); |
103 | 0 | return; |
104 | |
} |
105 | 0 | List nodeInstancesToProcess = new LinkedList(); |
106 | 0 | if (nodeInstanceId == null) { |
107 | |
|
108 | 0 | nodeInstancesToProcess.addAll(RouteNodeUtils.getActiveNodeInstances(document)); |
109 | |
} else { |
110 | 0 | RouteNodeInstance instanceNode = RouteNodeUtils.findRouteNodeInstanceById(nodeInstanceId,document); |
111 | 0 | if (instanceNode == null) { |
112 | 0 | throw new IllegalArgumentException("Invalid node instance id: " + nodeInstanceId); |
113 | |
} |
114 | 0 | nodeInstancesToProcess.add(instanceNode); |
115 | |
} |
116 | |
|
117 | 0 | context.setEngineState(new EngineState()); |
118 | 0 | ProcessContext processContext = new ProcessContext(true, nodeInstancesToProcess); |
119 | |
try { |
120 | 0 | while (!nodeInstancesToProcess.isEmpty()) { |
121 | 0 | context.setNodeInstance((RouteNodeInstance) nodeInstancesToProcess.remove(0)); |
122 | 0 | processContext = processNodeInstance(context, helper); |
123 | 0 | if (processContext.isComplete() && !processContext.getNextNodeInstances().isEmpty()) { |
124 | 0 | nodeInstancesToProcess.addAll(processContext.getNextNodeInstances()); |
125 | |
} |
126 | |
} |
127 | 0 | context.setDocument(nodePostProcess(context)); |
128 | 0 | } catch (Exception e) { |
129 | 0 | success = false; |
130 | |
|
131 | |
|
132 | 0 | throw new RouteManagerException(e, context); |
133 | 0 | } |
134 | 0 | } finally { |
135 | 0 | if ( LOG.isInfoEnabled() ) { |
136 | 0 | LOG.info((success ? "Successfully processed" : "Failed to process") + " document: " + documentId + " : " + nodeInstanceId); |
137 | |
} |
138 | |
try { |
139 | 0 | notifyPostProcessorAfterProcess(context.getDocument(), nodeInstanceId, success); |
140 | 0 | } catch (Exception e) { |
141 | 0 | LOG.warn("Problems contacting PostProcessor after engine process", e); |
142 | 0 | throw new RouteManagerException("Problems contacting PostProcessor: " + e.getMessage(), context); |
143 | 0 | } |
144 | 0 | RouteContext.clearCurrentRouteContext(); |
145 | 0 | MDC.remove("docId"); |
146 | 0 | } |
147 | 0 | } |
148 | |
|
149 | |
protected ProcessContext processNodeInstance(RouteContext context, RouteHelper helper) throws Exception { |
150 | 0 | RouteNodeInstance nodeInstance = context.getNodeInstance(); |
151 | 0 | if ( LOG.isDebugEnabled() ) { |
152 | 0 | LOG.debug("Processing node instance: " + nodeInstance.getRouteNode().getRouteNodeName()); |
153 | |
} |
154 | 0 | if (checkAssertions(context)) { |
155 | |
|
156 | 0 | return new ProcessContext(); |
157 | |
} |
158 | 0 | TransitionEngine transitionEngine = TransitionEngineFactory.createTransitionEngine(nodeInstance); |
159 | 0 | ProcessResult processResult = transitionEngine.isComplete(context); |
160 | 0 | nodeInstance.setInitial(false); |
161 | |
|
162 | |
|
163 | |
|
164 | 0 | if (processResult.isComplete()) { |
165 | 0 | if ( LOG.isDebugEnabled() ) { |
166 | 0 | LOG.debug("Routing node has completed: " + nodeInstance.getRouteNode().getRouteNodeName()); |
167 | |
} |
168 | |
|
169 | 0 | context.getEngineState().getCompleteNodeInstances().add(nodeInstance.getRouteNodeInstanceId()); |
170 | 0 | List nextNodeCandidates = invokeTransition(context, context.getNodeInstance(), processResult, transitionEngine); |
171 | |
|
172 | |
|
173 | |
|
174 | |
|
175 | |
|
176 | |
|
177 | 0 | List<RouteNodeInstance> nodesToActivate = new ArrayList<RouteNodeInstance>(); |
178 | 0 | if (!nextNodeCandidates.isEmpty()) { |
179 | |
|
180 | |
|
181 | |
|
182 | 0 | ArrayList<RouteNodeInstance> nextNodeInstances = new ArrayList<RouteNodeInstance>(); |
183 | |
|
184 | 0 | for (Iterator nextIt = nextNodeCandidates.iterator(); nextIt.hasNext();) { |
185 | 0 | RouteNodeInstance nextNodeInstance = (RouteNodeInstance) nextIt.next(); |
186 | 0 | transitionEngine = TransitionEngineFactory.createTransitionEngine(nextNodeInstance); |
187 | 0 | RouteNodeInstance currentNextNodeInstance = nextNodeInstance; |
188 | 0 | nextNodeInstance = transitionEngine.transitionTo(nextNodeInstance, context); |
189 | |
|
190 | |
|
191 | 0 | if (!currentNextNodeInstance.equals(nextNodeInstance)) { |
192 | 0 | currentNextNodeInstance.getPreviousNodeInstances().remove(nodeInstance); |
193 | |
} |
194 | |
|
195 | |
|
196 | |
|
197 | |
|
198 | |
|
199 | |
|
200 | |
|
201 | |
|
202 | |
|
203 | 0 | nextNodeInstance.getPreviousNodeInstances().remove(nodeInstance); |
204 | 0 | nextNodeInstances.add(nextNodeInstance); |
205 | 0 | handleBackwardCompatibility(context, nextNodeInstance); |
206 | |
|
207 | 0 | notifyNodeChange(context, nextNodeInstance); |
208 | 0 | nodesToActivate.add(nextNodeInstance); |
209 | |
|
210 | 0 | } |
211 | |
|
212 | 0 | for (RouteNodeInstance nextNodeInstance : nextNodeInstances) { |
213 | 0 | nodeInstance.addNextNodeInstance(nextNodeInstance); |
214 | |
} |
215 | |
} |
216 | |
|
217 | |
|
218 | 0 | nodeInstance.setComplete(true); |
219 | 0 | nodeInstance.setActive(false); |
220 | |
|
221 | 0 | for (RouteNodeInstance nodeToActivate : nodesToActivate) { |
222 | 0 | nodeToActivate.setActive(true); |
223 | |
} |
224 | 0 | } else { |
225 | 0 | nodeInstance.setComplete(false); |
226 | |
} |
227 | |
|
228 | 0 | saveNode(context, nodeInstance); |
229 | 0 | return new ProcessContext(nodeInstance.isComplete(), nodeInstance.getNextNodeInstances()); |
230 | |
} |
231 | |
|
232 | |
|
233 | |
|
234 | |
|
235 | |
|
236 | |
|
237 | |
|
238 | |
|
239 | |
private boolean checkAssertions(RouteContext context) throws Exception { |
240 | 0 | if (context.getNodeInstance().isComplete()) { |
241 | 0 | if ( LOG.isDebugEnabled() ) { |
242 | 0 | LOG.debug("The node has already been completed: " + context.getNodeInstance().getRouteNode().getRouteNodeName()); |
243 | |
} |
244 | 0 | return true; |
245 | |
} |
246 | 0 | if (isRunawayProcessDetected(context.getEngineState())) { |
247 | |
|
248 | 0 | throw new WorkflowException("Detected runaway process."); |
249 | |
} |
250 | 0 | return false; |
251 | |
} |
252 | |
|
253 | |
|
254 | |
|
255 | |
|
256 | |
|
257 | |
|
258 | |
|
259 | |
|
260 | |
|
261 | |
|
262 | |
|
263 | |
|
264 | |
|
265 | |
|
266 | |
|
267 | |
|
268 | |
|
269 | |
|
270 | |
|
271 | |
|
272 | |
|
273 | |
|
274 | |
|
275 | |
|
276 | |
|
277 | |
|
278 | |
|
279 | |
|
280 | |
private List invokeTransition(RouteContext context, RouteNodeInstance nodeInstance, ProcessResult processResult, TransitionEngine transitionEngine) throws Exception { |
281 | 0 | List nextNodeInstances = nodeInstance.getNextNodeInstances(); |
282 | 0 | if (nextNodeInstances.isEmpty()) { |
283 | 0 | Transition result = transitionEngine.transitionFrom(context, processResult); |
284 | 0 | nextNodeInstances = result.getNextNodeInstances(); |
285 | 0 | if (nextNodeInstances.isEmpty() && nodeInstance.isInProcess()) { |
286 | 0 | transitionEngine = TransitionEngineFactory.createTransitionEngine(nodeInstance.getProcess()); |
287 | 0 | context.setNodeInstance(nodeInstance); |
288 | 0 | nextNodeInstances = invokeTransition(context, nodeInstance.getProcess(), processResult, transitionEngine); |
289 | |
} |
290 | |
} |
291 | 0 | return nextNodeInstances; |
292 | |
} |
293 | |
|
294 | |
|
295 | |
|
296 | |
|
297 | |
|
298 | |
|
299 | |
|
300 | |
|
301 | |
|
302 | |
|
303 | |
|
304 | |
|
305 | |
|
306 | |
|
307 | |
|
308 | |
|
309 | |
private void notifyNodeChange(RouteContext context, RouteNodeInstance nextNodeInstance) throws Exception { |
310 | 0 | if (!context.isSimulation()) { |
311 | 0 | RouteNodeInstance nodeInstance = context.getNodeInstance(); |
312 | |
|
313 | 0 | String nextStatus = nodeInstance.getRouteNode().getNextDocStatus(); |
314 | 0 | if (nextStatus != null && nextStatus.length() > 0){ |
315 | 0 | context.getDocument().updateAppDocStatus(nextStatus); |
316 | |
} |
317 | |
|
318 | 0 | DocumentRouteLevelChange event = new DocumentRouteLevelChange(context.getDocument().getRouteHeaderId(), context.getDocument().getAppDocId(), CompatUtils.getLevelForNode(context.getDocument().getDocumentType(), context.getNodeInstance() |
319 | |
.getRouteNode().getRouteNodeName()), CompatUtils.getLevelForNode(context.getDocument().getDocumentType(), nextNodeInstance.getRouteNode().getRouteNodeName()), nodeInstance.getRouteNode().getRouteNodeName(), nextNodeInstance |
320 | |
.getRouteNode().getRouteNodeName(), nodeInstance.getRouteNodeInstanceId(), nextNodeInstance.getRouteNodeInstanceId()); |
321 | 0 | context.setDocument(notifyPostProcessor(context.getDocument(), nodeInstance, event)); |
322 | |
} |
323 | 0 | } |
324 | |
|
325 | |
private void handleBackwardCompatibility(RouteContext context, RouteNodeInstance nextNodeInstance) { |
326 | 0 | context.getDocument().setDocRouteLevel(new Integer(context.getDocument().getDocRouteLevel().intValue() + 1)); |
327 | |
|
328 | |
|
329 | |
|
330 | |
|
331 | |
|
332 | 0 | saveDocument(context); |
333 | 0 | } |
334 | |
|
335 | |
private void saveDocument(RouteContext context) { |
336 | 0 | if (!context.isSimulation()) { |
337 | 0 | getRouteHeaderService().saveRouteHeader(context.getDocument()); |
338 | |
} |
339 | 0 | } |
340 | |
|
341 | |
private void saveBranch(RouteContext context, Branch branch) { |
342 | 0 | if (!context.isSimulation()) { |
343 | 0 | KEWServiceLocator.getRouteNodeService().save(branch); |
344 | |
} |
345 | 0 | } |
346 | |
|
347 | |
protected void saveNode(RouteContext context, RouteNodeInstance nodeInstance) { |
348 | 0 | if (!context.isSimulation()) { |
349 | 0 | getRouteNodeService().save(nodeInstance); |
350 | |
} else { |
351 | |
|
352 | |
|
353 | 0 | for (Iterator<RouteNodeInstance> iterator = nodeInstance.getNextNodeInstances().iterator(); iterator.hasNext();) { |
354 | 0 | RouteNodeInstance routeNodeInstance = (RouteNodeInstance) iterator.next(); |
355 | 0 | if (routeNodeInstance.getRouteNodeInstanceId() == null) { |
356 | 0 | routeNodeInstance.setRouteNodeInstanceId(context.getEngineState().getNextSimulationId()); |
357 | |
} |
358 | 0 | } |
359 | 0 | if (nodeInstance.getProcess() != null && nodeInstance.getProcess().getRouteNodeInstanceId() == null) { |
360 | 0 | nodeInstance.getProcess().setRouteNodeInstanceId(context.getEngineState().getNextSimulationId()); |
361 | |
} |
362 | 0 | if (nodeInstance.getBranch() != null && nodeInstance.getBranch().getBranchId() == null) { |
363 | 0 | nodeInstance.getBranch().setBranchId(context.getEngineState().getNextSimulationId()); |
364 | |
} |
365 | |
} |
366 | 0 | } |
367 | |
|
368 | |
|
369 | |
|
370 | |
protected DocumentRouteHeaderValue nodePostProcess(RouteContext context) throws InvalidActionTakenException { |
371 | 0 | DocumentRouteHeaderValue document = context.getDocument(); |
372 | 0 | Collection<RouteNodeInstance> activeNodes = getRouteNodeService().getActiveNodeInstances(document.getRouteHeaderId()); |
373 | 0 | boolean moreNodes = false; |
374 | 0 | for (Iterator<RouteNodeInstance> iterator = activeNodes.iterator(); iterator.hasNext();) { |
375 | 0 | RouteNodeInstance nodeInstance = (RouteNodeInstance) iterator.next(); |
376 | 0 | moreNodes = moreNodes || !nodeInstance.isComplete(); |
377 | 0 | } |
378 | 0 | List pendingRequests = KEWServiceLocator.getActionRequestService().findPendingByDoc(document.getRouteHeaderId()); |
379 | 0 | boolean activeApproveRequests = false; |
380 | 0 | boolean activeAckRequests = false; |
381 | 0 | for (Iterator iterator = pendingRequests.iterator(); iterator.hasNext();) { |
382 | 0 | ActionRequestValue request = (ActionRequestValue) iterator.next(); |
383 | 0 | activeApproveRequests = request.isApproveOrCompleteRequest() || activeApproveRequests; |
384 | 0 | activeAckRequests = request.isAcknowledgeRequest() || activeAckRequests; |
385 | 0 | } |
386 | |
|
387 | 0 | if (!document.isProcessed() && (!moreNodes || !activeApproveRequests)) { |
388 | 0 | if ( LOG.isDebugEnabled() ) { |
389 | 0 | LOG.debug("No more nodes for this document " + document.getRouteHeaderId()); |
390 | |
} |
391 | |
|
392 | 0 | checkDefaultApprovalPolicy(document); |
393 | 0 | LOG.debug("Marking document approved"); |
394 | |
|
395 | 0 | DocumentRouteStatusChange event = new DocumentRouteStatusChange(document.getRouteHeaderId(), document.getAppDocId(), document.getDocRouteStatus(), KEWConstants.ROUTE_HEADER_APPROVED_CD); |
396 | 0 | document.markDocumentApproved(); |
397 | |
|
398 | 0 | notifyPostProcessor(context, event); |
399 | |
|
400 | 0 | LOG.debug("Marking document processed"); |
401 | 0 | event = new DocumentRouteStatusChange(document.getRouteHeaderId(), document.getAppDocId(), document.getDocRouteStatus(), KEWConstants.ROUTE_HEADER_PROCESSED_CD); |
402 | 0 | document.markDocumentProcessed(); |
403 | |
|
404 | 0 | notifyPostProcessor(context, event); |
405 | |
} |
406 | |
|
407 | |
|
408 | |
|
409 | 0 | if (document.isProcessed()) { |
410 | 0 | DocumentRouteStatusChange event = new DocumentRouteStatusChange(document.getRouteHeaderId(), document.getAppDocId(), document.getDocRouteStatus(), KEWConstants.ROUTE_HEADER_FINAL_CD); |
411 | 0 | List actionRequests = KEWServiceLocator.getActionRequestService().findPendingByDoc(document.getRouteHeaderId()); |
412 | 0 | if (actionRequests.isEmpty()) { |
413 | 0 | document.markDocumentFinalized(); |
414 | |
|
415 | 0 | notifyPostProcessor(context, event); |
416 | |
} else { |
417 | 0 | boolean markFinalized = true; |
418 | 0 | for (Iterator iter = actionRequests.iterator(); iter.hasNext();) { |
419 | 0 | ActionRequestValue actionRequest = (ActionRequestValue) iter.next(); |
420 | 0 | if (KEWConstants.ACTION_REQUEST_ACKNOWLEDGE_REQ.equals(actionRequest.getActionRequested())) { |
421 | 0 | markFinalized = false; |
422 | |
} |
423 | 0 | } |
424 | 0 | if (markFinalized) { |
425 | 0 | document.markDocumentFinalized(); |
426 | |
|
427 | 0 | this.notifyPostProcessor(context, event); |
428 | |
} |
429 | |
} |
430 | |
} |
431 | 0 | saveDocument(context); |
432 | 0 | return document; |
433 | |
} |
434 | |
|
435 | |
|
436 | |
|
437 | |
|
438 | |
|
439 | |
|
440 | |
|
441 | |
|
442 | |
|
443 | |
|
444 | |
|
445 | |
|
446 | |
|
447 | |
private void checkDefaultApprovalPolicy(DocumentRouteHeaderValue document) throws RouteManagerException { |
448 | 0 | if (!document.getDocumentType().getDefaultApprovePolicy().getPolicyValue().booleanValue()) { |
449 | 0 | LOG.debug("Checking if any requests have been generated for the document"); |
450 | 0 | List requests = KEWServiceLocator.getActionRequestService().findAllActionRequestsByRouteHeaderId(document.getRouteHeaderId()); |
451 | 0 | boolean approved = false; |
452 | 0 | for (Iterator iter = requests.iterator(); iter.hasNext();) { |
453 | 0 | ActionRequestValue actionRequest = (ActionRequestValue) iter.next(); |
454 | 0 | if (actionRequest.isApproveOrCompleteRequest() && actionRequest.isDone()) { |
455 | |
|
456 | |
|
457 | |
|
458 | |
|
459 | |
|
460 | |
|
461 | 0 | LOG.debug("Found at least one processed approve request so document can be approved"); |
462 | 0 | approved = true; |
463 | 0 | break; |
464 | |
} |
465 | 0 | } |
466 | 0 | if (!approved) { |
467 | 0 | LOG.debug("Document requires at least one request and none are present"); |
468 | |
|
469 | 0 | throw new RouteManagerException("Document should have generated at least one approval request."); |
470 | |
} |
471 | |
} |
472 | 0 | } |
473 | |
|
474 | |
private DocumentRouteHeaderValue notifyPostProcessor(RouteContext context, DocumentRouteStatusChange event) { |
475 | 0 | DocumentRouteHeaderValue document = context.getDocument(); |
476 | 0 | if (context.isSimulation()) { |
477 | 0 | return document; |
478 | |
} |
479 | 0 | if (hasContactedPostProcessor(context, event)) { |
480 | 0 | return document; |
481 | |
} |
482 | 0 | Long routeHeaderId = event.getRouteHeaderId(); |
483 | 0 | PerformanceLogger performanceLogger = new PerformanceLogger(routeHeaderId); |
484 | 0 | ProcessDocReport processReport = null; |
485 | 0 | PostProcessor postProc = null; |
486 | |
try { |
487 | |
|
488 | 0 | if (!isRunPostProcessorLogic()) { |
489 | 0 | postProc = new DefaultPostProcessor(); |
490 | |
} else { |
491 | 0 | postProc = document.getDocumentType().getPostProcessor(); |
492 | |
} |
493 | 0 | } catch (Exception e) { |
494 | 0 | LOG.error("Error retrieving PostProcessor for document " + document.getRouteHeaderId(), e); |
495 | 0 | throw new RouteManagerException("Error retrieving PostProcessor for document " + document.getRouteHeaderId(), e); |
496 | 0 | } |
497 | |
try { |
498 | 0 | processReport = postProc.doRouteStatusChange(event); |
499 | 0 | } catch (Exception e) { |
500 | 0 | LOG.error("Error notifying post processor", e); |
501 | 0 | throw new RouteManagerException(KEWConstants.POST_PROCESSOR_FAILURE_MESSAGE, e); |
502 | |
} finally { |
503 | 0 | performanceLogger.log("Time to notifyPostProcessor of event " + event.getDocumentEventCode() + "."); |
504 | 0 | } |
505 | |
|
506 | 0 | if (!processReport.isSuccess()) { |
507 | 0 | LOG.warn("PostProcessor failed to process document: " + processReport.getMessage()); |
508 | 0 | throw new RouteManagerException(KEWConstants.POST_PROCESSOR_FAILURE_MESSAGE + processReport.getMessage()); |
509 | |
} |
510 | 0 | return document; |
511 | |
} |
512 | |
|
513 | |
|
514 | |
|
515 | |
|
516 | |
|
517 | |
|
518 | |
|
519 | |
|
520 | |
|
521 | |
|
522 | |
|
523 | |
private boolean hasContactedPostProcessor(RouteContext context, DocumentRouteStatusChange event) { |
524 | |
|
525 | |
|
526 | 0 | Branch rootBranch = context.getDocument().getRootBranch(); |
527 | 0 | String key = null; |
528 | 0 | if (KEWConstants.ROUTE_HEADER_PROCESSED_CD.equals(event.getNewRouteStatus())) { |
529 | 0 | key = KEWConstants.POST_PROCESSOR_PROCESSED_KEY; |
530 | 0 | } else if (KEWConstants.ROUTE_HEADER_FINAL_CD.equals(event.getNewRouteStatus())) { |
531 | 0 | key = KEWConstants.POST_PROCESSOR_FINAL_KEY; |
532 | |
} else { |
533 | 0 | return false; |
534 | |
} |
535 | 0 | BranchState branchState = null; |
536 | 0 | if (rootBranch != null) { |
537 | 0 | branchState = rootBranch.getBranchState(key); |
538 | |
} else { |
539 | 0 | return false; |
540 | |
} |
541 | 0 | if (branchState == null) { |
542 | 0 | branchState = new BranchState(key, "true"); |
543 | 0 | rootBranch.addBranchState(branchState); |
544 | 0 | saveBranch(context, rootBranch); |
545 | 0 | return false; |
546 | |
} |
547 | 0 | return "true".equals(branchState.getValue()); |
548 | |
} |
549 | |
|
550 | |
|
551 | |
|
552 | |
|
553 | |
|
554 | |
|
555 | |
|
556 | |
|
557 | |
private DocumentRouteHeaderValue notifyPostProcessor(DocumentRouteHeaderValue document, RouteNodeInstance nodeInstance, DocumentRouteLevelChange event) { |
558 | 0 | getRouteHeaderService().saveRouteHeader(document); |
559 | 0 | ProcessDocReport report = null; |
560 | |
try { |
561 | 0 | PostProcessor postProcessor = null; |
562 | |
|
563 | 0 | if (!isRunPostProcessorLogic()) { |
564 | 0 | postProcessor = new DefaultPostProcessor(); |
565 | |
} else { |
566 | 0 | postProcessor = document.getDocumentType().getPostProcessor(); |
567 | |
} |
568 | 0 | report = postProcessor.doRouteLevelChange(event); |
569 | 0 | } catch (Exception e) { |
570 | 0 | LOG.warn("Problems contacting PostProcessor", e); |
571 | 0 | throw new RouteManagerException("Problems contacting PostProcessor: " + e.getMessage()); |
572 | 0 | } |
573 | 0 | document = getRouteHeaderService().getRouteHeader(document.getRouteHeaderId()); |
574 | 0 | if (!report.isSuccess()) { |
575 | 0 | LOG.error("PostProcessor rejected route level change::" + report.getMessage(), report.getProcessException()); |
576 | 0 | throw new RouteManagerException("Route Level change failed in post processor::" + report.getMessage()); |
577 | |
} |
578 | 0 | return document; |
579 | |
} |
580 | |
|
581 | |
|
582 | |
|
583 | |
|
584 | |
|
585 | |
private DocumentRouteHeaderValue notifyPostProcessorBeforeProcess(DocumentRouteHeaderValue document, Long nodeInstanceId) { |
586 | 0 | return notifyPostProcessorBeforeProcess(document, nodeInstanceId, new BeforeProcessEvent(document.getRouteHeaderId(),document.getAppDocId(),nodeInstanceId)); |
587 | |
} |
588 | |
|
589 | |
|
590 | |
|
591 | |
|
592 | |
|
593 | |
private DocumentRouteHeaderValue notifyPostProcessorBeforeProcess(DocumentRouteHeaderValue document, Long nodeInstanceId, BeforeProcessEvent event) { |
594 | 0 | ProcessDocReport report = null; |
595 | |
try { |
596 | 0 | PostProcessor postProcessor = null; |
597 | |
|
598 | 0 | if (!isRunPostProcessorLogic()) { |
599 | 0 | postProcessor = new DefaultPostProcessor(); |
600 | |
} else { |
601 | 0 | postProcessor = document.getDocumentType().getPostProcessor(); |
602 | |
} |
603 | 0 | report = postProcessor.beforeProcess(event); |
604 | 0 | } catch (Exception e) { |
605 | 0 | LOG.warn("Problems contacting PostProcessor", e); |
606 | 0 | throw new RouteManagerException("Problems contacting PostProcessor: " + e.getMessage()); |
607 | 0 | } |
608 | 0 | document = getRouteHeaderService().getRouteHeader(document.getRouteHeaderId()); |
609 | 0 | if (!report.isSuccess()) { |
610 | 0 | LOG.error("PostProcessor rejected route level change::" + report.getMessage(), report.getProcessException()); |
611 | 0 | throw new RouteManagerException("Route Level change failed in post processor::" + report.getMessage()); |
612 | |
} |
613 | 0 | return document; |
614 | |
} |
615 | |
|
616 | |
protected void lockAdditionalDocuments(DocumentRouteHeaderValue document) throws Exception { |
617 | 0 | DocumentLockingEvent lockingEvent = new DocumentLockingEvent(document.getRouteHeaderId(), document.getAppDocId()); |
618 | |
|
619 | 0 | PostProcessor postProcessor = null; |
620 | |
|
621 | 0 | if (!isRunPostProcessorLogic()) { |
622 | 0 | postProcessor = new DefaultPostProcessor(); |
623 | |
} else { |
624 | 0 | postProcessor = document.getDocumentType().getPostProcessor(); |
625 | |
} |
626 | 0 | List<Long> documentIdsToLock = postProcessor.getDocumentIdsToLock(lockingEvent); |
627 | 0 | if (documentIdsToLock != null && !documentIdsToLock.isEmpty()) { |
628 | 0 | for (Long documentId : documentIdsToLock) { |
629 | 0 | if ( LOG.isInfoEnabled() ) { |
630 | 0 | LOG.info("Aquiring additional lock on document " + documentId); |
631 | |
} |
632 | 0 | getRouteHeaderService().lockRouteHeader(documentId, true); |
633 | 0 | if ( LOG.isInfoEnabled() ) { |
634 | 0 | LOG.info("Aquired lock on document " + documentId); |
635 | |
} |
636 | |
} |
637 | |
} |
638 | 0 | } |
639 | |
|
640 | |
|
641 | |
|
642 | |
|
643 | |
|
644 | |
private DocumentRouteHeaderValue notifyPostProcessorAfterProcess(DocumentRouteHeaderValue document, Long nodeInstanceId, boolean successfullyProcessed) { |
645 | 0 | if (document == null) { |
646 | |
|
647 | 0 | return null; |
648 | |
} |
649 | 0 | return notifyPostProcessorAfterProcess(document, nodeInstanceId, new AfterProcessEvent(document.getRouteHeaderId(),document.getAppDocId(),nodeInstanceId,successfullyProcessed)); |
650 | |
} |
651 | |
|
652 | |
|
653 | |
|
654 | |
|
655 | |
|
656 | |
private DocumentRouteHeaderValue notifyPostProcessorAfterProcess(DocumentRouteHeaderValue document, Long nodeInstanceId, AfterProcessEvent event) { |
657 | 0 | ProcessDocReport report = null; |
658 | |
try { |
659 | 0 | PostProcessor postProcessor = null; |
660 | |
|
661 | 0 | if (!isRunPostProcessorLogic()) { |
662 | 0 | postProcessor = new DefaultPostProcessor(); |
663 | |
} else { |
664 | 0 | postProcessor = document.getDocumentType().getPostProcessor(); |
665 | |
} |
666 | 0 | report = postProcessor.afterProcess(event); |
667 | 0 | } catch (Exception e) { |
668 | 0 | LOG.warn("Problems contacting PostProcessor", e); |
669 | 0 | throw new RouteManagerException("Problems contacting PostProcessor: " + e.getMessage()); |
670 | 0 | } |
671 | 0 | document = getRouteHeaderService().getRouteHeader(document.getRouteHeaderId()); |
672 | 0 | if (!report.isSuccess()) { |
673 | 0 | LOG.error("PostProcessor rejected route level change::" + report.getMessage(), report.getProcessException()); |
674 | 0 | throw new RouteManagerException("Route Level change failed in post processor::" + report.getMessage()); |
675 | |
} |
676 | 0 | return document; |
677 | |
} |
678 | |
|
679 | |
|
680 | |
|
681 | |
|
682 | |
|
683 | |
public void initializeDocument(DocumentRouteHeaderValue document) { |
684 | |
|
685 | |
|
686 | |
|
687 | |
|
688 | |
|
689 | |
|
690 | 0 | RouteContext context = new RouteContext(); |
691 | 0 | context.setDocument(document); |
692 | 0 | if (context.getEngineState() == null) { |
693 | 0 | context.setEngineState(new EngineState()); |
694 | |
} |
695 | 0 | Process process = document.getDocumentType().getPrimaryProcess(); |
696 | 0 | if (process == null || process.getInitialRouteNode() == null) { |
697 | 0 | if (process == null) { |
698 | 0 | throw new IllegalArgumentException("DocumentType '" + document.getDocumentType().getName() + "' has no primary process configured!"); |
699 | |
} |
700 | 0 | return; |
701 | |
} |
702 | 0 | RouteNodeInstance nodeInstance = helper.getNodeFactory().createRouteNodeInstance(document.getRouteHeaderId(), process.getInitialRouteNode()); |
703 | 0 | nodeInstance.setActive(true); |
704 | 0 | helper.getNodeFactory().createBranch(KEWConstants.PRIMARY_BRANCH_NAME, null, nodeInstance); |
705 | 0 | document.getInitialRouteNodeInstances().add(nodeInstance); |
706 | 0 | saveNode(context, nodeInstance); |
707 | 0 | } |
708 | |
|
709 | |
protected RouteNodeService getRouteNodeService() { |
710 | 0 | return KEWServiceLocator.getRouteNodeService(); |
711 | |
} |
712 | |
|
713 | |
private boolean isRunawayProcessDetected(EngineState engineState) throws NumberFormatException { |
714 | 0 | String maxNodesConstant = Utilities.getKNSParameterValue(KEWConstants.KEW_NAMESPACE, KNSConstants.DetailTypes.ALL_DETAIL_TYPE, KEWConstants.MAX_NODES_BEFORE_RUNAWAY_PROCESS); |
715 | 0 | int maxNodes = (Utilities.isEmpty(maxNodesConstant)) ? 50 : Integer.valueOf(maxNodesConstant); |
716 | 0 | return engineState.getCompleteNodeInstances().size() > maxNodes; |
717 | |
} |
718 | |
|
719 | |
protected RouteHeaderService getRouteHeaderService() { |
720 | 0 | return KEWServiceLocator.getRouteHeaderService(); |
721 | |
} |
722 | |
|
723 | |
} |