1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.uif.lifecycle;
17
18 import java.util.Deque;
19 import java.util.LinkedList;
20
21 import org.kuali.rice.krad.uif.freemarker.LifecycleRenderingContext;
22
23
24
25
26
27
28 public class SynchronousViewLifecycleProcessor extends ViewLifecycleProcessorBase {
29
30
31
32
33 private final Deque<ViewLifecyclePhase> pendingPhases = new LinkedList<ViewLifecyclePhase>();
34
35
36
37
38 private ViewLifecyclePhase activePhase;
39
40
41
42
43 private LifecycleRenderingContext renderingContext;
44
45
46
47
48
49
50 public SynchronousViewLifecycleProcessor(ViewLifecycle lifecycle) {
51 super(lifecycle);
52 }
53
54
55
56
57 public LifecycleRenderingContext getRenderingContext() {
58 if (renderingContext == null && ViewLifecycle.isRenderInLifecycle()) {
59 ViewLifecycle lifecycle = getLifecycle();
60 this.renderingContext = new LifecycleRenderingContext(
61 lifecycle.model, lifecycle.request, lifecycle.response);
62 }
63
64 return this.renderingContext;
65 }
66
67
68
69
70 @Override
71 public ViewLifecyclePhase getActivePhase() {
72 return activePhase;
73 }
74
75
76
77
78 @Override
79 void setActivePhase(ViewLifecyclePhase phase) {
80 if (activePhase != null && phase != null) {
81 throw new IllegalStateException("Another phase is already active on this lifecycle thread " + activePhase);
82 }
83
84 activePhase = phase;
85 }
86
87
88
89
90 @Override
91 public void offerPendingPhase(ViewLifecyclePhase pendingPhase) {
92 pendingPhases.offer(pendingPhase);
93 }
94
95
96
97
98 @Override
99 public void pushPendingPhase(ViewLifecyclePhase phase) {
100 pendingPhases.push(phase);
101 }
102
103
104
105
106 @Override
107 public void performPhase(ViewLifecyclePhase initialPhase) {
108 offerPendingPhase(initialPhase);
109 while (!pendingPhases.isEmpty()) {
110 pendingPhases.poll().run();
111 }
112 }
113
114 }