Bug 2366 - Effective statments impl merge, retest & bugfix
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / type / PatternConstraintEffectiveImpl.java
1 /**
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.type;
9
10 import org.opendaylight.yangtools.yang.model.api.type.PatternConstraint;
11
12 import com.google.common.base.Optional;
13 import com.google.common.base.Preconditions;
14
15 public class PatternConstraintEffectiveImpl implements PatternConstraint {
16
17     private final String regEx;
18     private final String description;
19     private final String reference;
20
21     private final String errorAppTag;
22     private final String errorMessage;
23
24     public PatternConstraintEffectiveImpl(final String regex, final Optional<String> description,
25             final Optional<String> reference) {
26
27         super();
28
29         this.regEx = Preconditions.checkNotNull(regex, "regex must not be null.");
30         this.description = description.orNull();
31         this.reference = reference.orNull();
32
33         errorAppTag = "invalid-regular-expression";
34         errorMessage = String.format("String %s is not valid regular expression.", regex);
35     }
36
37     @Override
38     public String getRegularExpression() {
39         return regEx;
40     }
41
42     @Override
43     public String getDescription() {
44         return description;
45     }
46
47     @Override
48     public String getErrorAppTag() {
49         return errorAppTag;
50     }
51
52     @Override
53     public String getErrorMessage() {
54         return errorMessage;
55     }
56
57     @Override
58     public String getReference() {
59         return reference;
60     }
61
62     @Override
63     public int hashCode() {
64         final int prime = 31;
65         int result = 1;
66         result = prime * result + ((description == null) ? 0 : description.hashCode());
67         result = prime * result + ((errorAppTag == null) ? 0 : errorAppTag.hashCode());
68         result = prime * result + ((errorMessage == null) ? 0 : errorMessage.hashCode());
69         result = prime * result + ((reference == null) ? 0 : reference.hashCode());
70         result = prime * result + regEx.hashCode();
71         return result;
72     }
73
74     @Override
75     public boolean equals(final Object obj) {
76         if (this == obj) {
77             return true;
78         }
79         if (obj == null) {
80             return false;
81         }
82         if (getClass() != obj.getClass()) {
83             return false;
84         }
85         final PatternConstraintEffectiveImpl other = (PatternConstraintEffectiveImpl) obj;
86         if (description == null) {
87             if (other.description != null) {
88                 return false;
89             }
90         } else if (!description.equals(other.description)) {
91             return false;
92         }
93         if (errorAppTag == null) {
94             if (other.errorAppTag != null) {
95                 return false;
96             }
97         } else if (!errorAppTag.equals(other.errorAppTag)) {
98             return false;
99         }
100         if (errorMessage == null) {
101             if (other.errorMessage != null) {
102                 return false;
103             }
104         } else if (!errorMessage.equals(other.errorMessage)) {
105             return false;
106         }
107         if (reference == null) {
108             if (other.reference != null) {
109                 return false;
110             }
111         } else if (!reference.equals(other.reference)) {
112             return false;
113         }
114         if (regEx == null) {
115             if (other.regEx != null) {
116                 return false;
117             }
118         } else if (!regEx.equals(other.regEx)) {
119             return false;
120         }
121         return true;
122     }
123
124     @Override
125     public String toString() {
126         StringBuilder builder = new StringBuilder();
127         builder.append(PatternConstraintEffectiveImpl.class.getSimpleName());
128         builder.append(" [regex=");
129         builder.append(regEx);
130         builder.append(", description=");
131         builder.append(description);
132         builder.append(", reference=");
133         builder.append(reference);
134         builder.append(", errorAppTag=");
135         builder.append(errorAppTag);
136         builder.append(", errorMessage=");
137         builder.append(errorMessage);
138         builder.append("]");
139         return builder.toString();
140     }
141 }