1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
|
/*
* Sonar, open source software quality management tool.
* Copyright (C) 2009 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
* Sonar is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* Sonar is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Sonar; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.api.qualitymodel;
import com.google.common.collect.Lists;
import org.apache.commons.lang.ObjectUtils;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;
import org.sonar.api.rules.Rule;
import javax.persistence.*;
import java.util.List;
/**
* @since 2.3
*/
@Entity
@Table(name = "quality_models")
public final class Model implements Comparable<Model> {
@Id
@Column(name = "id")
@GeneratedValue
private Integer id;
@Column(name = "name", nullable = false, unique = true, length = 100)
private String name;
@OneToMany(mappedBy = "model", cascade = CascadeType.ALL, fetch = FetchType.LAZY)
private List<Characteristic> characteristics = Lists.newArrayList();
/**
* Use the factory method <code>Model</code>
*/
Model() {
}
public static Model create() {
return new Model();
}
public static Model createByName(String s) {
return new Model().setName(s);
}
public Characteristic createCharacteristicByName(String name) {
Characteristic c = new Characteristic().setName(name, true);
return addCharacteristic(c);
}
public Characteristic createCharacteristicByKey(String key, String name) {
Characteristic c = new Characteristic().setKey(key).setName(name, false);
return addCharacteristic(c);
}
public Characteristic createCharacteristicByRule(Rule rule) {
Characteristic c = new Characteristic().setRule(rule);
return addCharacteristic(c);
}
public Integer getId() {
return id;
}
Model setId(Integer id) {
this.id = id;
return this;
}
public String getName() {
return name;
}
public List<Characteristic> getRootCharacteristics() {
return getCharacteristicsByDepth(Characteristic.ROOT_DEPTH);
}
public Model setName(String name) {
this.name = StringUtils.trim(name);
return this;
}
public Characteristic addCharacteristic(Characteristic c) {
c.setModel(this);
c.setOrder(characteristics.size() + 1);
characteristics.add(c);
return c;
}
/**
* @return enabled characteristics
*/
public List<Characteristic> getCharacteristics() {
return getCharacteristics(true);
}
public List<Characteristic> getCharacteristics(boolean onlyEnabled) {
if (!onlyEnabled) {
return characteristics;
}
List<Characteristic> result = Lists.newArrayList();
for (Characteristic characteristic : characteristics) {
if (characteristic.getEnabled()) {
result.add(characteristic);
}
}
return result;
}
/**
* Search for an ENABLED characteristic by its key.
*/
public Characteristic getCharacteristicByKey(String key) {
for (Characteristic characteristic : characteristics) {
if (characteristic.getEnabled() && StringUtils.equals(key, characteristic.getKey())) {
return characteristic;
}
}
return null;
}
/**
* Search for an ENABLED characteristic with the specified rule.
*/
public Characteristic getCharacteristicByRule(Rule rule) {
if (rule != null) {
for (Characteristic characteristic : characteristics) {
if (characteristic.getEnabled() && ObjectUtils.equals(rule, characteristic.getRule())) {
return characteristic;
}
}
}
return null;
}
/**
* Search for ENABLED characteristics by their depth.
*/
public List<Characteristic> getCharacteristicsByDepth(int depth) {
List<Characteristic> result = Lists.newArrayList();
for (Characteristic c : characteristics) {
if (c.getEnabled() && c.getDepth() == depth) {
result.add(c);
}
}
return result;
}
/**
* Search for an ENABLED characteristic by its name.
*/
public Characteristic getCharacteristicByName(String name) {
for (Characteristic characteristic : characteristics) {
if (characteristic.getEnabled() && StringUtils.equals(name, characteristic.getName())) {
return characteristic;
}
}
return null;
}
public Model removeCharacteristic(Characteristic characteristic) {
characteristic.setEnabled(false);
for (Characteristic child : characteristic.getChildren()) {
removeCharacteristic(child);
}
return this;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Model model = (Model) o;
if (name != null ? !name.equals(model.name) : model.name != null) {
return false;
}
return true;
}
@Override
public int hashCode() {
return name != null ? name.hashCode() : 0;
}
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE)
.append("id", id)
.append("name", name)
.toString();
}
public int compareTo(Model o) {
return getName().compareTo(o.getName());
}
}
|