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 org.slf4j.Logger;
19 import org.slf4j.LoggerFactory;
20
21
22
23
24
25
26 public abstract class AbstractViewLifecycleTask implements ViewLifecycleTask {
27
28 private final Logger LOG = LoggerFactory.getLogger(AbstractViewLifecycleTask.class);
29
30 private ViewLifecyclePhase phase;
31
32
33
34
35
36
37 protected AbstractViewLifecycleTask(ViewLifecyclePhase phase) {
38 this.phase = phase;
39 }
40
41
42
43
44 protected abstract void performLifecycleTask();
45
46
47
48
49 void recycle() {
50 this.phase = null;
51 }
52
53
54
55
56
57
58 void setPhase(ViewLifecyclePhase phase) {
59 this.phase = phase;
60 }
61
62
63
64
65 @Override
66 public ViewLifecyclePhase getPhase() {
67 return phase;
68 }
69
70
71
72
73
74
75
76
77
78
79
80 @Override
81 public final void run() {
82 try {
83 if (ViewLifecycle.getPhase() != phase) {
84 throw new IllegalStateException("The phase this task is a part of is not active.");
85 }
86
87 performLifecycleTask();
88
89
90 LifecycleTaskFactory.recycle(this);
91
92 } catch (Throwable t) {
93 LOG.warn("Error in lifecycle phase " + this, t);
94
95 if (t instanceof RuntimeException) {
96 throw (RuntimeException) t;
97 } else if (t instanceof Error) {
98 throw (Error) t;
99 } else {
100 throw new IllegalStateException("Unexpected error in lifecycle phase " + this, t);
101 }
102 }
103 }
104
105
106
107
108 @Override
109 public String toString() {
110 return getClass().getSimpleName()
111 + " " + getPhase().getComponent().getClass().getSimpleName()
112 + " " + getPhase().getComponent().getId();
113 }
114
115 }