1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.common.util.base;
17
18 import static com.google.common.base.Preconditions.checkArgument;
19 import static org.apache.commons.lang3.StringUtils.isNotBlank;
20
21 import java.io.File;
22
23 import com.google.common.base.Optional;
24 import com.google.common.base.Preconditions;
25
26
27
28
29
30
31
32
33
34
35
36
37
38 public class Precondition {
39
40 private static final String NOT_NULL_MSG = "'%s' cannot be null";
41 private static final String EXISTS_MSG = "[%s] does not exist";
42 private static final String IS_DIR_MSG = "[%s] is not an existing directory";
43 private static final String IS_FILE_MSG = "[%s] is not an existing file";
44 private static final String NOT_BLANK_MSG = "'%s' cannot be blank";
45 private static final String MIN_MSG = "%s not allowed. '%s' must be greater than or equal to %s";
46 private static final String MAX_MSG = "%s not allowed. '%s' must be less than or equal to %s";
47 private static final String EQUALS_MSG = "[%s] not allowed. '%s' must be equal to [%s]";
48 private static final String ARG_NAME = "argName";
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65 public static File checkExists(File arg, String argName) {
66 checkNotBlank(argName, ARG_NAME);
67 checkNotNull(arg, argName);
68 checkArgument(arg.exists(), EXISTS_MSG, arg);
69 return arg;
70 }
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87 public static File checkIsDir(File arg, String argName) {
88 checkArgument(checkExists(arg, argName).isDirectory(), IS_DIR_MSG, arg);
89 return arg;
90 }
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107 public static File checkIsFile(File arg, String argName) {
108 checkArgument(checkExists(arg, argName).isFile(), IS_FILE_MSG, arg);
109 return arg;
110 }
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127 public static <T> T checkNotNull(T arg, String argName) {
128 return Preconditions.checkNotNull(arg, NOT_NULL_MSG, checkNotBlank(argName, ARG_NAME));
129 }
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146 public static String checkNotBlank(String arg, String argName) {
147 checkArgument(isNotBlank(argName), NOT_BLANK_MSG, ARG_NAME);
148 checkArgument(isNotBlank(arg), NOT_BLANK_MSG, argName);
149 return arg;
150 }
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167 public static Optional<String> checkNotBlank(Optional<String> arg, String argName) {
168 if (arg.isPresent()) {
169 checkNotBlank(arg.get(), argName);
170 }
171 return arg;
172 }
173
174
175
176
177 public static Optional<Integer> checkMin(Optional<Integer> arg, int min, String argName) {
178 if (arg.isPresent()) {
179 checkMin(arg.get(), min, argName);
180 }
181 return arg;
182 }
183
184
185
186
187 public static Optional<Long> checkMin(Optional<Long> arg, long min, String argName) {
188 if (arg.isPresent()) {
189 checkMin(arg.get(), min, argName);
190 }
191 return arg;
192 }
193
194
195
196
197 public static int checkMax(int arg, int max, String argName) {
198 checkNotBlank(argName, ARG_NAME);
199 checkArgument(arg <= max, MAX_MSG, arg, argName, max);
200 return arg;
201 }
202
203
204
205
206 public static long checkMax(long arg, long max, String argName) {
207 checkNotBlank(argName, ARG_NAME);
208 checkArgument(arg <= max, MAX_MSG, arg, argName, max);
209 return arg;
210 }
211
212
213
214
215 public static int checkMin(int arg, int min, String argName) {
216 checkNotBlank(argName, ARG_NAME);
217 checkArgument(arg >= min, MIN_MSG, arg, argName, min);
218 return arg;
219 }
220
221
222
223
224 public static long checkMin(long arg, long min, String argName) {
225 checkNotBlank(argName, ARG_NAME);
226 checkArgument(arg >= min, MIN_MSG, arg, argName, min);
227 return arg;
228 }
229
230 public static void checkEquals(Object arg, Object expected, String argName) {
231 checkNotNull(arg, checkNotBlank(argName, ARG_NAME));
232 checkNotNull(expected, "expected");
233 checkArgument(arg.equals(expected), EQUALS_MSG, argName, arg, expected);
234 }
235 }