cfc1e1655784c203699f2d4d6b10f71082cf0b39
[utils] / support / general / src / main / java / org / wamblee / conditions / PropertyRegexCondition.java
1 /*
2  * Copyright 2005 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */ 
16
17 package org.wamblee.conditions;
18
19 import java.lang.reflect.InvocationTargetException;
20 import java.util.regex.Matcher;
21 import java.util.regex.Pattern;
22
23 import org.apache.commons.beanutils.PropertyUtils;
24
25 /**
26  * Condition to check whether a given property value matches a certain 
27  * regular expression.
28  *
29  * @author Erik Brakkee
30  */
31 public class PropertyRegexCondition<T> implements Condition<T> {
32     
33     /**
34      * Property name. 
35      */
36     private String property;
37     
38     /**
39      * Regular expression. 
40      */
41     private Pattern regex;
42     
43     /**
44      * Whether or not to convert the value to lowercase before matching. 
45      */
46     private boolean tolower; 
47     
48     /**
49      * Constructs the condition. 
50      * @param aProperty Name of the property to examine. 
51      * @param aRegex Regular expression to use. 
52      * @param aTolower Whether or not to convert the value to lowercase before matching. 
53      */
54     public PropertyRegexCondition(String aProperty, String aRegex, boolean aTolower) {
55         property = aProperty;
56         regex = Pattern.compile(aRegex);
57         tolower = aTolower;
58     }
59
60     /* (non-Javadoc)
61      * @see org.wamblee.conditions.Condition#matches(T)
62      */
63     public boolean matches(T aObject) {
64         try {
65             String value = PropertyUtils.getProperty(aObject, property) + "";
66             if ( tolower ) { 
67                 value = value.toLowerCase(); 
68             }
69             Matcher matcher = regex.matcher(value); 
70             return matcher.matches(); 
71         } catch (IllegalAccessException e) {
72             throw new RuntimeException(e.getMessage(), e);
73         } catch (InvocationTargetException e) {
74             throw new RuntimeException(e.getMessage(), e);
75         } catch (NoSuchMethodException e) {
76             throw new RuntimeException(e.getMessage(), e);
77         }
78     }
79 }