1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krms.impl.repository;
17
18 import org.apache.commons.lang.StringUtils;
19 import org.kuali.rice.core.api.exception.RiceIllegalArgumentException;
20 import org.kuali.rice.krad.data.DataObjectService;
21 import org.kuali.rice.krad.data.PersistenceOption;
22 import org.kuali.rice.krms.api.repository.language.NaturalLanguageUsage;
23
24 import java.util.Collection;
25 import java.util.Collections;
26 import java.util.HashMap;
27 import java.util.LinkedList;
28 import java.util.List;
29 import java.util.Map;
30
31 import static org.kuali.rice.krms.impl.repository.BusinessObjectServiceMigrationUtils.findMatching;
32 import static org.kuali.rice.krms.impl.repository.BusinessObjectServiceMigrationUtils.findSingleMatching;
33
34
35
36
37
38
39
40 public class NaturalLanguageUsageBoServiceImpl implements NaturalLanguageUsageBoService {
41
42 private DataObjectService dataObjectService;
43 private KrmsAttributeDefinitionService attributeDefinitionService;
44
45
46
47
48
49
50
51 public void setDataObjectService(DataObjectService dataObjectService) {
52 this.dataObjectService = dataObjectService;
53 }
54
55 public void setAttributeDefinitionService(KrmsAttributeDefinitionService attributeDefinitionService) {
56 this.attributeDefinitionService = attributeDefinitionService;
57 }
58
59 public KrmsAttributeDefinitionService getAttributeDefinitionService() {
60 if (attributeDefinitionService == null) {
61 attributeDefinitionService = KrmsRepositoryServiceLocator.getKrmsAttributeDefinitionService();
62 }
63
64 return attributeDefinitionService;
65 }
66
67 @Override
68 public NaturalLanguageUsage createNaturalLanguageUsage(NaturalLanguageUsage naturalLanguageUsage) {
69 incomingParamCheck(naturalLanguageUsage , "naturalLanguageUsage");
70 if (StringUtils.isNotEmpty(naturalLanguageUsage.getId())) {
71 final String naturalLanguageUsageIdKey = naturalLanguageUsage.getId();
72 final NaturalLanguageUsage existing = getNaturalLanguageUsage(naturalLanguageUsageIdKey);
73
74 if (existing != null) {
75 throw new IllegalStateException("the NaturalLanguageUsage to create already exists: " + naturalLanguageUsage);
76 }
77 } else {
78 final NaturalLanguageUsage existing =
79 getNaturalLanguageUsageByName(naturalLanguageUsage.getNamespace(), naturalLanguageUsage.getName());
80
81 if (existing != null) {
82 throw new IllegalStateException("the NaturalLanguageUsage to create already exists: " + naturalLanguageUsage);
83 }
84 }
85
86 NaturalLanguageUsageBo bo = dataObjectService.save(from(naturalLanguageUsage), PersistenceOption.FLUSH);
87
88 return NaturalLanguageUsageBo.to(bo);
89 }
90
91 @Override
92 public NaturalLanguageUsage getNaturalLanguageUsage(String naturalLanguageUsageId) {
93 incomingParamCheck(naturalLanguageUsageId , "naturalLanguageUsageId");
94 NaturalLanguageUsageBo bo = dataObjectService.find(NaturalLanguageUsageBo.class, naturalLanguageUsageId);
95
96 return NaturalLanguageUsageBo.to(bo);
97 }
98
99 @Override
100 public NaturalLanguageUsage getNaturalLanguageUsageByName(String namespace, String name) {
101 if (StringUtils.isBlank(namespace)) {
102 throw new RiceIllegalArgumentException("namespace was a null or blank value");
103 }
104
105 if (StringUtils.isBlank(name)) {
106 throw new RiceIllegalArgumentException("name was a null or blank value");
107 }
108
109 final Map<String, Object> map = new HashMap<String, Object>();
110 map.put("namespace", namespace);
111 map.put("name", name);
112
113 NaturalLanguageUsageBo usageBo = findSingleMatching(dataObjectService, NaturalLanguageUsageBo.class, map);
114
115 return NaturalLanguageUsageBo.to(usageBo);
116 }
117
118 @Override
119 public void updateNaturalLanguageUsage(NaturalLanguageUsage naturalLanguageUsage) {
120 incomingParamCheck(naturalLanguageUsage , "naturalLanguageUsage");
121 final NaturalLanguageUsage existing = getNaturalLanguageUsage(naturalLanguageUsage.getId());
122
123 if (existing == null) {
124 throw new IllegalStateException("the NaturalLanguageUsage to update does not exists: " + naturalLanguageUsage);
125 }
126
127 final NaturalLanguageUsage toUpdate;
128
129 if (!existing.getId().equals(naturalLanguageUsage.getId())) {
130
131 final NaturalLanguageUsage.Builder builder = NaturalLanguageUsage.Builder.create(naturalLanguageUsage);
132 builder.setId(existing.getId());
133 toUpdate = builder.build();
134 } else {
135 toUpdate = naturalLanguageUsage;
136 }
137
138
139 NaturalLanguageUsageBo boToUpdate = from(toUpdate);
140
141
142 dataObjectService.save(boToUpdate, PersistenceOption.FLUSH);
143 }
144
145 @Override
146 public void deleteNaturalLanguageUsage(String naturalLanguageUsageId) {
147 incomingParamCheck(naturalLanguageUsageId , "naturalLanguageUsageId");
148 final NaturalLanguageUsage existing = getNaturalLanguageUsage(naturalLanguageUsageId);
149
150 if (existing == null) {
151 throw new IllegalStateException("the NaturalLanguageUsage to delete does not exists: " + naturalLanguageUsageId);
152 }
153
154 dataObjectService.delete(from(existing));
155 }
156
157 @Override
158 public List<NaturalLanguageUsage> findNaturalLanguageUsagesByName(String name) {
159 if (org.apache.commons.lang.StringUtils.isBlank(name)) {
160 throw new IllegalArgumentException("name is null or blank");
161 }
162
163 final Map<String, Object> map = new HashMap<String, Object>();
164 map.put("name", name);
165 List<NaturalLanguageUsageBo> bos = findMatching(dataObjectService, NaturalLanguageUsageBo.class, map);
166
167 return convertBosToImmutables(bos);
168 }
169
170 @Override
171 public List<NaturalLanguageUsage> findNaturalLanguageUsagesByDescription(String description) {
172 if (org.apache.commons.lang.StringUtils.isBlank(description)) {
173 throw new IllegalArgumentException("description is null or blank");
174 }
175
176 final Map<String, Object> map = new HashMap<String, Object>();
177 map.put("description", description);
178 List<NaturalLanguageUsageBo> bos = findMatching(dataObjectService, NaturalLanguageUsageBo.class, map);
179
180 return convertBosToImmutables(bos);
181 }
182
183 @Override
184 public List<NaturalLanguageUsage> findNaturalLanguageUsagesByNamespace(String namespace) {
185 if (org.apache.commons.lang.StringUtils.isBlank(namespace)) {
186 throw new IllegalArgumentException("namespace is null or blank");
187 }
188
189 final Map<String, Object> map = new HashMap<String, Object>();
190 map.put("namespace", namespace);
191 List<NaturalLanguageUsageBo> bos = findMatching(dataObjectService, NaturalLanguageUsageBo.class, map);
192
193 return convertBosToImmutables(bos);
194 }
195
196 public List<NaturalLanguageUsage> convertBosToImmutables(final Collection<NaturalLanguageUsageBo> naturalLanguageUsageBos) {
197 List<NaturalLanguageUsage> immutables = new LinkedList<NaturalLanguageUsage>();
198
199 if (naturalLanguageUsageBos != null) {
200 NaturalLanguageUsage immutable = null;
201 for (NaturalLanguageUsageBo bo : naturalLanguageUsageBos ) {
202 immutable = to(bo);
203 immutables.add(immutable);
204 }
205 }
206
207 return Collections.unmodifiableList(immutables);
208 }
209
210 @Override
211 public NaturalLanguageUsage to(NaturalLanguageUsageBo naturalLanguageUsageBo) {
212 return NaturalLanguageUsageBo.to(naturalLanguageUsageBo);
213 }
214
215 public NaturalLanguageUsageBo from(NaturalLanguageUsage naturalLanguageUsage) {
216 return NaturalLanguageUsageBo.from(naturalLanguageUsage);
217 }
218
219 private void incomingParamCheck(Object object, String name) {
220 if (object == null) {
221 throw new IllegalArgumentException(name + " was null");
222 } else if (object instanceof String
223 && StringUtils.isBlank((String)object)) {
224 throw new IllegalArgumentException(name + " was blank");
225 }
226 }
227 }