1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.core.statement.service.impl; |
17 | |
|
18 | |
import java.util.ArrayList; |
19 | |
import java.util.HashMap; |
20 | |
import java.util.HashSet; |
21 | |
import java.util.Iterator; |
22 | |
import java.util.List; |
23 | |
import java.util.Map; |
24 | |
import java.util.Set; |
25 | |
|
26 | |
import javax.jws.WebService; |
27 | |
|
28 | |
import org.kuali.student.common.dictionary.dto.ObjectStructureDefinition; |
29 | |
import org.kuali.student.common.dictionary.service.DictionaryService; |
30 | |
import org.kuali.student.common.dto.StatusInfo; |
31 | |
import org.kuali.student.common.exceptions.AlreadyExistsException; |
32 | |
import org.kuali.student.common.exceptions.CircularReferenceException; |
33 | |
import org.kuali.student.common.exceptions.DataValidationErrorException; |
34 | |
import org.kuali.student.common.exceptions.DoesNotExistException; |
35 | |
import org.kuali.student.common.exceptions.InvalidParameterException; |
36 | |
import org.kuali.student.common.exceptions.MissingParameterException; |
37 | |
import org.kuali.student.common.exceptions.OperationFailedException; |
38 | |
import org.kuali.student.common.exceptions.PermissionDeniedException; |
39 | |
import org.kuali.student.common.exceptions.VersionMismatchException; |
40 | |
import org.kuali.student.common.search.dto.SearchCriteriaTypeInfo; |
41 | |
import org.kuali.student.common.search.dto.SearchParam; |
42 | |
import org.kuali.student.common.search.dto.SearchRequest; |
43 | |
import org.kuali.student.common.search.dto.SearchResult; |
44 | |
import org.kuali.student.common.search.dto.SearchResultRow; |
45 | |
import org.kuali.student.common.search.dto.SearchResultTypeInfo; |
46 | |
import org.kuali.student.common.search.dto.SearchTypeInfo; |
47 | |
import org.kuali.student.common.search.service.SearchManager; |
48 | |
import org.kuali.student.common.validation.dto.ValidationResultInfo; |
49 | |
import org.kuali.student.common.validator.Validator; |
50 | |
import org.kuali.student.common.validator.ValidatorFactory; |
51 | |
import org.kuali.student.core.statement.dao.StatementDao; |
52 | |
import org.kuali.student.core.statement.dto.NlUsageTypeInfo; |
53 | |
import org.kuali.student.core.statement.dto.RefStatementRelationInfo; |
54 | |
import org.kuali.student.core.statement.dto.RefStatementRelationTypeInfo; |
55 | |
import org.kuali.student.core.statement.dto.ReqComponentInfo; |
56 | |
import org.kuali.student.core.statement.dto.ReqComponentTypeInfo; |
57 | |
import org.kuali.student.core.statement.dto.StatementInfo; |
58 | |
import org.kuali.student.core.statement.dto.StatementTreeViewInfo; |
59 | |
import org.kuali.student.core.statement.dto.StatementTypeInfo; |
60 | |
import org.kuali.student.core.statement.entity.NlUsageType; |
61 | |
import org.kuali.student.core.statement.entity.ObjectType; |
62 | |
import org.kuali.student.core.statement.entity.RefStatementRelation; |
63 | |
import org.kuali.student.core.statement.entity.RefStatementRelationAttribute; |
64 | |
import org.kuali.student.core.statement.entity.RefStatementRelationType; |
65 | |
import org.kuali.student.core.statement.entity.ReqComponent; |
66 | |
import org.kuali.student.core.statement.entity.ReqComponentType; |
67 | |
import org.kuali.student.core.statement.entity.Statement; |
68 | |
import org.kuali.student.core.statement.entity.StatementType; |
69 | |
import org.kuali.student.core.statement.naturallanguage.NaturalLanguageTranslator; |
70 | |
import org.kuali.student.core.statement.naturallanguage.translators.ReqComponentTranslator; |
71 | |
import org.kuali.student.core.statement.service.StatementService; |
72 | |
import org.slf4j.Logger; |
73 | |
import org.slf4j.LoggerFactory; |
74 | |
import org.springframework.beans.BeanUtils; |
75 | |
import org.springframework.transaction.annotation.Transactional; |
76 | |
|
77 | |
@WebService(endpointInterface = "org.kuali.student.core.statement.service.StatementService", serviceName = "StatementService", portName = "StatementService", targetNamespace = "http://student.kuali.org/wsdl/statement") |
78 | |
@Transactional(readOnly=true,noRollbackFor={DoesNotExistException.class},rollbackFor={Throwable.class}) |
79 | 4 | public class StatementServiceImpl implements StatementService { |
80 | |
|
81 | 1 | private final static Logger logger = LoggerFactory.getLogger(ReqComponentTranslator.class); |
82 | |
|
83 | |
private static final String SEARCH_KEY_DEPENDENCY_ANALYSIS = "stmt.search.dependencyAnalysis"; |
84 | |
|
85 | |
private StatementDao statementDao; |
86 | |
private NaturalLanguageTranslator naturalLanguageTranslator; |
87 | |
private SearchManager searchManager; |
88 | |
private DictionaryService dictionaryServiceDelegate; |
89 | |
private StatementAssembler statementAssembler; |
90 | |
private ValidatorFactory validatorFactory; |
91 | |
|
92 | |
|
93 | |
public void setStatementAssembler(StatementAssembler statementAssembler) { |
94 | 2 | this.statementAssembler = statementAssembler; |
95 | 2 | } |
96 | |
|
97 | |
public SearchManager getSearchManager() { |
98 | 0 | return searchManager; |
99 | |
} |
100 | |
|
101 | |
public void setSearchManager(final SearchManager searchManager) { |
102 | 2 | this.searchManager = searchManager; |
103 | 2 | } |
104 | |
|
105 | |
public DictionaryService getDictionaryServiceDelegate() { |
106 | 0 | return dictionaryServiceDelegate; |
107 | |
} |
108 | |
|
109 | |
public void setDictionaryServiceDelegate(final DictionaryService dictionaryServiceDelegate) { |
110 | 2 | this.dictionaryServiceDelegate = dictionaryServiceDelegate; |
111 | 2 | } |
112 | |
|
113 | |
public StatementDao getStatementDao() { |
114 | 0 | return statementDao; |
115 | |
} |
116 | |
|
117 | |
public void setStatementDao(final StatementDao statementDao) { |
118 | 2 | this.statementDao = statementDao; |
119 | 2 | } |
120 | |
|
121 | |
public NaturalLanguageTranslator getNaturalLanguageTranslator() { |
122 | 0 | return naturalLanguageTranslator; |
123 | |
} |
124 | |
|
125 | |
public void setNaturalLanguageTranslator(final NaturalLanguageTranslator translator) { |
126 | 2 | this.naturalLanguageTranslator = translator; |
127 | 2 | } |
128 | |
|
129 | |
public NlUsageTypeInfo getNlUsageType(final String nlUsageTypeKey) |
130 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
131 | |
|
132 | 11 | checkForNullOrEmptyParameter(nlUsageTypeKey, "nlUsageTypeKey"); |
133 | 11 | checkForEmptyParameter(nlUsageTypeKey, "nlUsageTypeKey"); |
134 | |
|
135 | 11 | NlUsageType entity = this.statementDao.fetch(NlUsageType.class, nlUsageTypeKey); |
136 | 9 | NlUsageTypeInfo info = StatementAssembler.toNlUsageTypeInfo(entity); |
137 | 9 | return info; |
138 | |
} |
139 | |
|
140 | |
public List<NlUsageTypeInfo> getNlUsageTypes() |
141 | |
throws OperationFailedException { |
142 | |
|
143 | 1 | List<NlUsageType> entities = this.statementDao.find(NlUsageType.class); |
144 | 1 | List<NlUsageTypeInfo> infos = StatementAssembler.toNlUsageTypeInfos(entities); |
145 | 1 | return infos; |
146 | |
} |
147 | |
|
148 | |
public List<String> getRefObjectTypes() throws OperationFailedException { |
149 | 1 | List<ObjectType> objectTypes = this.statementDao.find(ObjectType.class); |
150 | 1 | List<String> ids = new ArrayList<String>(); |
151 | 1 | for(ObjectType objectType : objectTypes) { |
152 | 1 | ids.add(objectType.getId()); |
153 | |
} |
154 | 1 | return ids; |
155 | |
} |
156 | |
|
157 | |
public List<String> getRefObjectSubTypes(final String objectTypeKey) |
158 | |
throws DoesNotExistException, |
159 | |
InvalidParameterException, MissingParameterException, |
160 | |
OperationFailedException { |
161 | |
|
162 | 1 | checkForNullOrEmptyParameter(objectTypeKey, "objectTypeKey"); |
163 | 1 | checkForEmptyParameter(objectTypeKey, "objectTypeKey"); |
164 | |
|
165 | 1 | ObjectType objectType = this.statementDao.fetch(ObjectType.class, objectTypeKey); |
166 | 1 | List<String> ids = StatementAssembler.toRefObjectSubTypeIds(objectType); |
167 | 1 | return ids; |
168 | |
} |
169 | |
|
170 | |
public RefStatementRelationInfo getRefStatementRelation(final String refStatementRelationId) |
171 | |
throws DoesNotExistException, InvalidParameterException, |
172 | |
MissingParameterException, OperationFailedException { |
173 | |
|
174 | 1 | checkForNullOrEmptyParameter(refStatementRelationId, "refStatementRelationId"); |
175 | 1 | checkForEmptyParameter(refStatementRelationId, "refStatementRelationId"); |
176 | |
|
177 | 1 | RefStatementRelation entity = this.statementDao.fetch(RefStatementRelation.class, refStatementRelationId); |
178 | 1 | RefStatementRelationInfo dto = StatementAssembler.toRefStatementRelationInfo(entity); |
179 | 1 | return dto; |
180 | |
} |
181 | |
|
182 | |
public List<RefStatementRelationInfo> getRefStatementRelationsByRef(final String refObjectTypeKey, final String refObjectId) |
183 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
184 | 0 | checkForNullOrEmptyParameter(refObjectTypeKey, "refObjectTypeKey"); |
185 | 0 | checkForEmptyParameter(refObjectId, "refObjectId"); |
186 | |
|
187 | 0 | List<RefStatementRelation> references = this.statementDao.getRefStatementRelations( |
188 | |
refObjectTypeKey, refObjectId); |
189 | 0 | List<RefStatementRelationInfo> referenceInfos = null; |
190 | 0 | if (references != null) { |
191 | 0 | for (RefStatementRelation reference : references) { |
192 | 0 | RefStatementRelationInfo dto = StatementAssembler.toRefStatementRelationInfo(reference); |
193 | 0 | referenceInfos = (referenceInfos == null)? new ArrayList<RefStatementRelationInfo>(7) : referenceInfos; |
194 | 0 | referenceInfos.add(dto); |
195 | 0 | } |
196 | |
} |
197 | 0 | return referenceInfos; |
198 | |
} |
199 | |
|
200 | |
public List<RefStatementRelationInfo> getRefStatementRelationsByStatement(final String statementId) |
201 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
202 | |
|
203 | 3 | checkForNullOrEmptyParameter(statementId, "statementId"); |
204 | |
|
205 | 1 | Statement statement = this.statementDao.fetch(Statement.class, statementId); |
206 | 1 | List<RefStatementRelation> entities = statement.getRefStatementRelations(); |
207 | 1 | List<RefStatementRelationInfo> dtoList = StatementAssembler.toRefStatementRelationInfos(entities); |
208 | 1 | return dtoList; |
209 | |
} |
210 | |
|
211 | |
|
212 | |
|
213 | |
|
214 | |
|
215 | |
|
216 | |
|
217 | |
|
218 | |
|
219 | |
|
220 | |
|
221 | |
|
222 | |
|
223 | |
|
224 | |
|
225 | |
|
226 | |
public String getNaturalLanguageForReqComponent(final String reqComponentId, final String nlUsageTypeKey, final String language) |
227 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
228 | |
|
229 | 8 | checkForNullOrEmptyParameter(reqComponentId, "reqComponentId"); |
230 | 8 | checkForNullOrEmptyParameter(nlUsageTypeKey, "nlUsageTypeKey"); |
231 | 8 | checkForEmptyParameter(language, "language"); |
232 | |
|
233 | |
|
234 | 8 | getNlUsageType(nlUsageTypeKey); |
235 | |
|
236 | 7 | ReqComponent reqComponent = this.statementDao.fetch(ReqComponent.class, reqComponentId); |
237 | 7 | String nl = this.naturalLanguageTranslator.translateReqComponent(reqComponent, nlUsageTypeKey, language); |
238 | |
|
239 | 7 | if(logger.isInfoEnabled()) { |
240 | 0 | logger.info("reqComponentId="+reqComponentId); |
241 | 0 | logger.info("nlUsageTypeKey="+nlUsageTypeKey); |
242 | 0 | logger.info("language="+language); |
243 | 0 | logger.info("ReqComponent translation="+nl); |
244 | |
} |
245 | |
|
246 | 7 | return nl; |
247 | |
} |
248 | |
|
249 | |
|
250 | |
|
251 | |
|
252 | |
|
253 | |
|
254 | |
|
255 | |
|
256 | |
|
257 | |
|
258 | |
|
259 | |
|
260 | |
|
261 | |
|
262 | |
|
263 | |
|
264 | |
|
265 | |
|
266 | |
|
267 | |
|
268 | |
|
269 | |
|
270 | |
|
271 | |
|
272 | |
public String getNaturalLanguageForStatement(final String statementId, final String nlUsageTypeKey, final String language) |
273 | |
throws DoesNotExistException, InvalidParameterException, |
274 | |
MissingParameterException, OperationFailedException { |
275 | |
|
276 | 1 | checkForNullOrEmptyParameter(statementId, "statementId"); |
277 | 1 | checkForNullOrEmptyParameter(nlUsageTypeKey, "nlUsageTypeKey"); |
278 | 1 | checkForEmptyParameter(language, "language"); |
279 | |
|
280 | 1 | Statement statement = this.statementDao.fetch(Statement.class, statementId); |
281 | 1 | String nl = this.naturalLanguageTranslator.translateStatement(statement, nlUsageTypeKey, language); |
282 | |
|
283 | 1 | if(logger.isInfoEnabled()) { |
284 | 0 | logger.info("statementId="+statementId); |
285 | 0 | logger.info("nlUsageTypeKey="+nlUsageTypeKey); |
286 | 0 | logger.info("language="+language); |
287 | 0 | logger.info("Statement translation="+nl); |
288 | |
} |
289 | |
|
290 | 1 | return nl; |
291 | |
} |
292 | |
|
293 | |
public String getNaturalLanguageForRefStatementRelation(final String refStatementRelationId, final String nlUsageTypeKey, final String language) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
294 | 1 | checkForNullOrEmptyParameter(refStatementRelationId, "refStatementRelationId"); |
295 | 1 | checkForNullOrEmptyParameter(nlUsageTypeKey, "nlUsageTypeKey"); |
296 | 1 | checkForEmptyParameter(language, "language"); |
297 | |
|
298 | 1 | RefStatementRelation refStatementRelation = this.statementDao.fetch(RefStatementRelation.class, refStatementRelationId); |
299 | 1 | Statement statement = refStatementRelation.getStatement(); |
300 | 1 | String nl = this.naturalLanguageTranslator.translateStatement(statement, nlUsageTypeKey, language); |
301 | |
|
302 | 1 | if(logger.isInfoEnabled()) { |
303 | 0 | logger.info("refStatementRelationId="+refStatementRelationId); |
304 | 0 | logger.info("nlUsageTypeKey="+nlUsageTypeKey); |
305 | 0 | logger.info("language="+language); |
306 | 0 | logger.info("Statement translation="+nl); |
307 | |
} |
308 | |
|
309 | 1 | return nl; |
310 | |
} |
311 | |
|
312 | |
@Override |
313 | |
public String translateReqComponentToNL(final ReqComponentInfo reqComponentInfo, final String nlUsageTypeKey, final String language) |
314 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException { |
315 | 1 | checkForMissingParameter(reqComponentInfo, "reqComponentInfo"); |
316 | 1 | checkForNullOrEmptyParameter(nlUsageTypeKey, "nlUsageTypeKey"); |
317 | 1 | checkForEmptyParameter(language, "language"); |
318 | |
|
319 | |
try { |
320 | |
|
321 | 1 | getNlUsageType(nlUsageTypeKey); |
322 | 1 | ReqComponent req = statementAssembler.toReqComponentRelation(false, reqComponentInfo); |
323 | 1 | String nl = this.naturalLanguageTranslator.translateReqComponent(req, nlUsageTypeKey, language); |
324 | |
|
325 | 1 | if(logger.isInfoEnabled()) { |
326 | 0 | logger.info("ReqComponent translation="+nl); |
327 | |
} |
328 | |
|
329 | 1 | return nl; |
330 | 0 | } catch (DoesNotExistException e) { |
331 | 0 | throw new OperationFailedException("Requirement component translation failed: " + e.getMessage()); |
332 | 0 | } catch (VersionMismatchException e) { |
333 | 0 | throw new OperationFailedException("Requirement component translation failed: " + e.getMessage()); |
334 | |
} |
335 | |
} |
336 | |
|
337 | |
@Override |
338 | |
public String translateStatementTreeViewToNL(final StatementTreeViewInfo statementTreeViewInfo, final String nlUsageTypeKey, final String language) |
339 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException { |
340 | 0 | checkForMissingParameter(statementTreeViewInfo, "statementTreeViewInfo"); |
341 | 0 | checkForNullOrEmptyParameter(nlUsageTypeKey, "nlUsageTypeKey"); |
342 | 0 | checkForEmptyParameter(language, "language"); |
343 | |
|
344 | |
try { |
345 | 0 | Statement statement = statementAssembler.toStatement(statementTreeViewInfo); |
346 | |
|
347 | 0 | String nl = this.naturalLanguageTranslator.translateStatement(statement, nlUsageTypeKey, language); |
348 | |
|
349 | 0 | if(logger.isInfoEnabled()) { |
350 | 0 | logger.info("StatementTreeView translation="+nl); |
351 | |
} |
352 | |
|
353 | 0 | return nl; |
354 | 0 | } catch (DoesNotExistException e) { |
355 | 0 | throw new OperationFailedException("Statement tree view translation failed: " + e.getMessage()); |
356 | 0 | } catch (VersionMismatchException e) { |
357 | 0 | throw new OperationFailedException("Statement tree view translation failed: " + e.getMessage()); |
358 | |
} |
359 | |
} |
360 | |
|
361 | |
|
362 | |
|
363 | |
|
364 | |
|
365 | |
|
366 | |
|
367 | |
|
368 | |
private void checkForMissingParameter(Object param, String paramName) |
369 | |
throws MissingParameterException { |
370 | 83 | if (param == null) { |
371 | 0 | throw new MissingParameterException(paramName + " can not be null"); |
372 | |
} |
373 | 83 | } |
374 | |
|
375 | |
|
376 | |
|
377 | |
|
378 | |
|
379 | |
|
380 | |
|
381 | |
|
382 | |
|
383 | |
private void checkForNullOrEmptyParameter(String param, String paramName) |
384 | |
throws MissingParameterException, InvalidParameterException { |
385 | 58 | if (param == null) { |
386 | 2 | throw new MissingParameterException(paramName + " can not be null"); |
387 | 56 | } else if (param.trim().isEmpty()) { |
388 | 2 | throw new InvalidParameterException(paramName + " can not be empty"); |
389 | |
} |
390 | 54 | } |
391 | |
|
392 | |
|
393 | |
|
394 | |
|
395 | |
|
396 | |
|
397 | |
|
398 | |
|
399 | |
private void checkForEmptyParameter(String param, String paramName) |
400 | |
throws MissingParameterException, InvalidParameterException { |
401 | 24 | if (param != null && param.trim().isEmpty()) { |
402 | 0 | throw new InvalidParameterException(paramName + " can not be empty"); |
403 | |
} |
404 | 24 | } |
405 | |
|
406 | |
@Override |
407 | |
@Transactional(readOnly=false) |
408 | |
public ReqComponentInfo createReqComponent(final String reqComponentType, final ReqComponentInfo reqComponentInfo) throws AlreadyExistsException, DataValidationErrorException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
409 | 5 | checkForMissingParameter(reqComponentType, "reqComponentType"); |
410 | 5 | checkForMissingParameter(reqComponentInfo, "reqComponentInfo"); |
411 | |
|
412 | 5 | ReqComponent reqComp = null; |
413 | |
|
414 | |
try { |
415 | 5 | reqComp = statementAssembler.toReqComponentRelation(false, reqComponentInfo); |
416 | 0 | } catch (VersionMismatchException e) { |
417 | 0 | throw new OperationFailedException("Version Mismatch.", e); |
418 | 5 | } |
419 | |
|
420 | 5 | reqComp = statementDao.create(reqComp); |
421 | |
|
422 | 5 | return statementAssembler.toReqComponentInfo(reqComp, null, null); |
423 | |
} |
424 | |
|
425 | |
@Override |
426 | |
@Transactional(readOnly=false) |
427 | |
public StatementInfo createStatement(final String statementType, final StatementInfo statementInfo) throws AlreadyExistsException, DataValidationErrorException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
428 | 4 | checkForMissingParameter(statementType, "statementType"); |
429 | 4 | checkForMissingParameter(statementInfo, "statementInfo"); |
430 | |
|
431 | 4 | Statement statement = null; |
432 | |
|
433 | |
try { |
434 | 4 | statement = statementAssembler.toStatementRelation(false, statementInfo); |
435 | 0 | } catch (VersionMismatchException e) { |
436 | 0 | throw new OperationFailedException("Version Mismatch.", e); |
437 | 4 | } |
438 | |
|
439 | 4 | statementDao.create(statement); |
440 | |
|
441 | 4 | StatementInfo info = StatementAssembler.toStatementInfo(statement); |
442 | |
|
443 | 4 | return info; |
444 | |
} |
445 | |
|
446 | |
@Override |
447 | |
@Transactional(readOnly=false) |
448 | |
public StatementTreeViewInfo createStatementTreeView(final StatementTreeViewInfo statementTreeViewInfo) throws AlreadyExistsException, DataValidationErrorException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException, CircularReferenceException { |
449 | |
try { |
450 | |
|
451 | 1 | updateSTVHelperCreateStatements(statementTreeViewInfo); |
452 | |
|
453 | 1 | updateStatementTreeViewHelper(statementTreeViewInfo); |
454 | 1 | StatementTreeViewInfo test = getStatementTreeView(statementTreeViewInfo.getId()); |
455 | |
|
456 | 1 | return test; |
457 | 0 | } catch (VersionMismatchException e) { |
458 | 0 | throw new OperationFailedException("Create failed.", e); |
459 | |
} |
460 | |
} |
461 | |
|
462 | |
|
463 | |
@Override |
464 | |
@Transactional(readOnly=false) |
465 | |
public StatusInfo deleteReqComponent(final String reqComponentId) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
466 | 1 | checkForMissingParameter(reqComponentId, "reqComponentId"); |
467 | |
|
468 | 1 | ReqComponent reqComp = statementDao.fetch(ReqComponent.class, reqComponentId); |
469 | |
|
470 | 1 | if(reqComp==null){ |
471 | 0 | throw new DoesNotExistException("ReqComponent does not exist for id: "+reqComponentId); |
472 | |
} |
473 | |
|
474 | 1 | statementDao.delete(reqComp); |
475 | |
|
476 | 1 | StatusInfo statusInfo = new StatusInfo(); |
477 | 1 | statusInfo.setSuccess(true); |
478 | 1 | statusInfo.setMessage("Requirement component successfully deleted"); |
479 | 1 | return statusInfo; |
480 | |
} |
481 | |
|
482 | |
@Override |
483 | |
@Transactional(readOnly=false) |
484 | |
public StatusInfo deleteStatement(final String statementId) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
485 | 1 | checkForMissingParameter(statementId, "statementId"); |
486 | |
|
487 | 1 | Statement stmt = statementDao.fetch(Statement.class, statementId); |
488 | 1 | if(stmt==null){ |
489 | 0 | throw new DoesNotExistException("Statement does not exist for id: "+statementId); |
490 | |
} |
491 | |
|
492 | |
|
493 | |
try { |
494 | 1 | Statement parent = statementDao.getParentStatement(statementId); |
495 | 1 | List<Statement> children = parent.getChildren(); |
496 | 1 | for (int i = 0; i < children.size(); i++) { |
497 | 1 | if (children.get(i).getId().equals(statementId)) { |
498 | 1 | children.remove(i); |
499 | 1 | break; |
500 | |
} |
501 | |
} |
502 | 1 | statementDao.update(parent); |
503 | 0 | } catch (DoesNotExistException e) { |
504 | |
|
505 | 1 | } |
506 | |
|
507 | 1 | statementDao.delete(stmt); |
508 | |
|
509 | 1 | StatusInfo statusInfo = new StatusInfo(); |
510 | 1 | statusInfo.setSuccess(true); |
511 | 1 | statusInfo.setMessage("Statement successfully deleted"); |
512 | 1 | return statusInfo; |
513 | |
} |
514 | |
|
515 | |
@Override |
516 | |
@Transactional(readOnly=false) |
517 | |
public StatusInfo deleteStatementTreeView(final String statementId) throws DoesNotExistException{ |
518 | 1 | Statement stmt = statementDao.fetch(Statement.class, statementId); |
519 | |
|
520 | |
try{ |
521 | 1 | Statement parent = statementDao.getParentStatement(statementId); |
522 | |
|
523 | |
|
524 | 0 | if(parent.getChildren()!=null){ |
525 | 0 | for(Iterator<Statement> iter = parent.getChildren().iterator();iter.hasNext();){ |
526 | 0 | Statement childStmt = iter.next(); |
527 | 0 | if(stmt.getId().equals(childStmt.getId())){ |
528 | 0 | iter.remove(); |
529 | 0 | break; |
530 | |
} |
531 | 0 | } |
532 | |
} |
533 | 0 | statementDao.update(parent); |
534 | 1 | }catch(DoesNotExistException e){ |
535 | |
|
536 | 0 | } |
537 | |
|
538 | |
|
539 | 1 | deleteRecursively(stmt); |
540 | |
|
541 | 1 | StatusInfo statusInfo = new StatusInfo(); |
542 | 1 | statusInfo.setSuccess(true); |
543 | 1 | statusInfo.setMessage("Statement Tree successfully deleted"); |
544 | 1 | return statusInfo; |
545 | |
} |
546 | |
|
547 | |
private void deleteRecursively(Statement stmt) { |
548 | 3 | if(stmt.getChildren()!=null){ |
549 | 3 | List<Statement> childStmts = new ArrayList<Statement>(stmt.getChildren()); |
550 | 3 | stmt.getChildren().clear(); |
551 | 3 | stmt = statementDao.update(stmt); |
552 | 3 | for(Statement childStmt:childStmts){ |
553 | 2 | deleteRecursively(childStmt); |
554 | |
} |
555 | |
} |
556 | 3 | statementDao.delete(stmt); |
557 | 3 | } |
558 | |
|
559 | |
@Override |
560 | |
public ReqComponentInfo getReqComponent(final String reqComponentId) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
561 | 10 | return statementAssembler.toReqComponentInfo(statementDao.fetch(ReqComponent.class, reqComponentId), null, null); |
562 | |
} |
563 | |
|
564 | |
@Override |
565 | |
public List<ReqComponentInfo> getReqComponentsByType(final String reqComponentTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
566 | 2 | checkForMissingParameter(reqComponentTypeKey, "reqComponentTypeKey"); |
567 | |
|
568 | 2 | List<ReqComponent> reqComponents = statementDao.getReqComponentsByType(reqComponentTypeKey); |
569 | 2 | return statementAssembler.toReqComponentInfos(reqComponents, null, null); |
570 | |
} |
571 | |
|
572 | |
@Override |
573 | |
public StatementInfo getStatement(final String statementId) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
574 | 17 | StatementInfo statementInfo = null; |
575 | 17 | checkForMissingParameter(statementId, "statementId"); |
576 | 17 | statementInfo = StatementAssembler.toStatementInfo(statementDao.fetch(Statement.class, statementId)); |
577 | 12 | return statementInfo; |
578 | |
} |
579 | |
|
580 | |
@Override |
581 | |
public List<StatementInfo> getStatementsByType(final String statementTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
582 | 2 | checkForMissingParameter(statementTypeKey, "statementTypeKey"); |
583 | |
|
584 | 2 | List<Statement> statements = statementDao.getStatementsForStatementType(statementTypeKey); |
585 | 2 | return StatementAssembler.toStatementInfos(statements); |
586 | |
} |
587 | |
|
588 | |
@Override |
589 | |
public List<StatementInfo> getStatementsUsingReqComponent(final String reqComponentId) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
590 | 1 | checkForNullOrEmptyParameter(reqComponentId, "reqComponentId"); |
591 | |
|
592 | 1 | List<Statement> list = statementDao.getStatementsForReqComponent(reqComponentId); |
593 | 1 | return StatementAssembler.toStatementInfos(list); |
594 | |
} |
595 | |
|
596 | |
|
597 | |
|
598 | |
|
599 | |
|
600 | |
|
601 | |
|
602 | |
|
603 | |
|
604 | |
|
605 | |
|
606 | |
public List<StatementInfo> getStatementsUsingStatement(final String statementId) |
607 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
608 | 1 | checkForNullOrEmptyParameter(statementId, "statementId"); |
609 | |
|
610 | 1 | Statement statement = statementDao.fetch(Statement.class, statementId); |
611 | 1 | List<StatementInfo> list = StatementAssembler.toStatementInfos(statement.getChildren()); |
612 | 1 | return list; |
613 | |
} |
614 | |
|
615 | |
@Override |
616 | |
@Transactional(readOnly=false) |
617 | |
public StatementInfo updateStatement(final String statementId, final StatementInfo statementInfo) throws CircularReferenceException, DataValidationErrorException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException, VersionMismatchException { |
618 | |
|
619 | 5 | checkForMissingParameter(statementId, "statementId"); |
620 | 5 | checkForMissingParameter(statementInfo, "statementInfo"); |
621 | |
|
622 | |
|
623 | 5 | statementInfo.setId(statementId); |
624 | |
|
625 | |
|
626 | 5 | Statement stmt = statementAssembler.toStatementRelation(true, statementInfo); |
627 | |
|
628 | |
|
629 | 4 | Statement updatedStmt = statementDao.update(stmt); |
630 | |
|
631 | |
|
632 | 4 | StatementInfo updStatementInfo = StatementAssembler.toStatementInfo(updatedStmt); |
633 | 4 | return updStatementInfo; |
634 | |
} |
635 | |
|
636 | |
@Override |
637 | |
public List<ValidationResultInfo> validateReqComponent(final String validationType, final ReqComponentInfo reqComponentInfo) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
638 | 3 | checkForMissingParameter(validationType, "validationType"); |
639 | 3 | checkForMissingParameter(reqComponentInfo, "reqComponentInfo"); |
640 | |
|
641 | 3 | ObjectStructureDefinition objStructure = this.getObjectStructure(ReqComponentInfo.class.getName()); |
642 | 3 | Validator defaultValidator = validatorFactory.getValidator(); |
643 | 3 | List<ValidationResultInfo> validationResults = defaultValidator.validateObject(reqComponentInfo, objStructure); |
644 | |
|
645 | 3 | return validationResults; |
646 | |
} |
647 | |
|
648 | |
@Override |
649 | |
public List<ValidationResultInfo> validateStatement(final String validationType, final StatementInfo statementInfo) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
650 | 0 | checkForMissingParameter(validationType, "validationType"); |
651 | 0 | checkForMissingParameter(statementInfo, "statementInfo"); |
652 | |
|
653 | 0 | ObjectStructureDefinition objStructure = this.getObjectStructure(StatementInfo.class.getName()); |
654 | 0 | Validator defaultValidator = validatorFactory.getValidator(); |
655 | 0 | List<ValidationResultInfo> validationResults = defaultValidator.validateObject(statementInfo, objStructure); |
656 | |
|
657 | 0 | return validationResults; |
658 | |
} |
659 | |
|
660 | |
@Override |
661 | |
public ObjectStructureDefinition getObjectStructure(String objectTypeKey) { |
662 | 8 | return dictionaryServiceDelegate.getObjectStructure(objectTypeKey); |
663 | |
} |
664 | |
|
665 | |
@Override |
666 | |
public SearchCriteriaTypeInfo getSearchCriteriaType(final String searchCriteriaTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
667 | 0 | return searchManager.getSearchCriteriaType(searchCriteriaTypeKey); |
668 | |
} |
669 | |
|
670 | |
@Override |
671 | |
public List<SearchCriteriaTypeInfo> getSearchCriteriaTypes() throws OperationFailedException { |
672 | 0 | return searchManager.getSearchCriteriaTypes(); |
673 | |
} |
674 | |
|
675 | |
@Override |
676 | |
public SearchResultTypeInfo getSearchResultType(final String searchResultTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
677 | 0 | checkForMissingParameter(searchResultTypeKey, "searchResultTypeKey"); |
678 | 0 | return searchManager.getSearchResultType(searchResultTypeKey); |
679 | |
} |
680 | |
|
681 | |
@Override |
682 | |
public List<SearchResultTypeInfo> getSearchResultTypes() throws OperationFailedException { |
683 | 0 | return searchManager.getSearchResultTypes(); |
684 | |
} |
685 | |
|
686 | |
@Override |
687 | |
public SearchTypeInfo getSearchType(final String searchTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
688 | 0 | checkForMissingParameter(searchTypeKey, "searchTypeKey"); |
689 | 0 | return searchManager.getSearchType(searchTypeKey); |
690 | |
} |
691 | |
|
692 | |
@Override |
693 | |
public List<SearchTypeInfo> getSearchTypes() throws OperationFailedException { |
694 | 0 | return searchManager.getSearchTypes(); |
695 | |
} |
696 | |
|
697 | |
@Override |
698 | |
public List<SearchTypeInfo> getSearchTypesByCriteria(final String searchCriteriaTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
699 | 0 | checkForMissingParameter(searchCriteriaTypeKey, "searchCriteriaTypeKey"); |
700 | 0 | return searchManager.getSearchTypesByCriteria(searchCriteriaTypeKey); |
701 | |
} |
702 | |
|
703 | |
@Override |
704 | |
public List<SearchTypeInfo> getSearchTypesByResult(final String searchResultTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
705 | 0 | checkForMissingParameter(searchResultTypeKey, "searchResultTypeKey"); |
706 | 0 | return searchManager.getSearchTypesByResult(searchResultTypeKey); |
707 | |
} |
708 | |
|
709 | |
@Override |
710 | |
public SearchResult search(final SearchRequest searchRequest) throws MissingParameterException { |
711 | 1 | checkForMissingParameter(searchRequest, "searchRequest"); |
712 | 1 | if(SEARCH_KEY_DEPENDENCY_ANALYSIS.equals(searchRequest.getSearchKey())){ |
713 | |
|
714 | |
|
715 | 0 | List<String> cluVersionIndIds = new ArrayList<String>(); |
716 | 0 | List<String> cluSetIds = new ArrayList<String>(); |
717 | 0 | for(SearchParam param:searchRequest.getParams()){ |
718 | 0 | if("stmt.queryParam.cluSetIds".equals(param.getKey())){ |
719 | 0 | cluSetIds.addAll((List<String>)param.getValue()); |
720 | 0 | continue; |
721 | 0 | }else if("stmt.queryParam.cluVersionIndIds".equals(param.getKey())){ |
722 | 0 | cluVersionIndIds.addAll((List<String>)param.getValue()); |
723 | |
} |
724 | |
} |
725 | 0 | if(cluVersionIndIds.isEmpty()){ |
726 | 0 | cluVersionIndIds.add(""); |
727 | |
} |
728 | 0 | if(cluSetIds.isEmpty()){ |
729 | 0 | cluSetIds.add(""); |
730 | |
} |
731 | 0 | return doDependencyAnalysisSearch(cluVersionIndIds,cluSetIds); |
732 | |
} |
733 | |
|
734 | 1 | return searchManager.search(searchRequest, statementDao); |
735 | |
} |
736 | |
|
737 | |
private SearchResult doDependencyAnalysisSearch( |
738 | |
List<String> cluVersionIndIds, List<String> cluSetIds) { |
739 | |
|
740 | |
|
741 | 0 | List<Object[]> results = statementDao.getStatementsWithDependencies(cluVersionIndIds,cluSetIds); |
742 | |
|
743 | |
|
744 | |
|
745 | |
|
746 | 0 | Map<String,String> statementToResultComponentIds = new HashMap<String,String>(); |
747 | 0 | Map<String, Statement> statements = new HashMap<String,Statement>(); |
748 | 0 | for(Object[] result:results){ |
749 | 0 | Statement statement = (Statement) result[0]; |
750 | 0 | statements.put(statement.getId(),statement); |
751 | 0 | String resultComponentIds = statementToResultComponentIds.get(statement.getId()); |
752 | 0 | if(resultComponentIds == null){ |
753 | 0 | resultComponentIds = (String)result[1]; |
754 | |
}else{ |
755 | 0 | resultComponentIds+="," + (String)result[1]; |
756 | |
} |
757 | 0 | statementToResultComponentIds.put(statement.getId(), resultComponentIds); |
758 | 0 | } |
759 | |
|
760 | |
|
761 | |
|
762 | 0 | Map<String,Statement> rootStatements = new HashMap<String,Statement>(); |
763 | |
|
764 | 0 | Map<String,String> rootToRequirementComponentList = new HashMap<String,String>(); |
765 | |
|
766 | |
|
767 | 0 | for(Statement statement:statements.values()){ |
768 | 0 | Statement child = statement; |
769 | 0 | Statement parent = child; |
770 | 0 | while(parent!=null){ |
771 | |
try{ |
772 | |
|
773 | 0 | parent = statementDao.getParentStatement(child.getId()); |
774 | 0 | child = parent; |
775 | 0 | }catch(DoesNotExistException e){ |
776 | |
|
777 | 0 | rootStatements.put(child.getId(), child); |
778 | |
|
779 | |
|
780 | |
|
781 | 0 | String childStatementList = rootToRequirementComponentList.get(child.getId()); |
782 | 0 | if(childStatementList==null){ |
783 | 0 | childStatementList = statementToResultComponentIds.get(statement.getId()); |
784 | |
}else{ |
785 | 0 | childStatementList += ","+statementToResultComponentIds.get(statement.getId()); |
786 | |
} |
787 | 0 | rootToRequirementComponentList.put(child.getId(), childStatementList); |
788 | |
|
789 | |
|
790 | 0 | parent = null; |
791 | 0 | } |
792 | |
} |
793 | 0 | } |
794 | |
|
795 | 0 | SearchResult searchResult = new SearchResult(); |
796 | |
|
797 | |
|
798 | |
|
799 | 0 | Set<String> processed = new HashSet<String>(); |
800 | 0 | for(Statement statement:rootStatements.values()){ |
801 | 0 | for(RefStatementRelation relation:statement.getRefStatementRelations()){ |
802 | 0 | String rowId = relation.getRefObjectId()+"|"+relation.getRefObjectTypeKey(); |
803 | 0 | if(!processed.contains(rowId)){ |
804 | |
|
805 | 0 | processed.add(rowId); |
806 | 0 | SearchResultRow row = new SearchResultRow(); |
807 | 0 | row.addCell("stmt.resultColumn.refObjId",relation.getRefObjectId()); |
808 | 0 | row.addCell("stmt.resultColumn.rootId",statement.getId()); |
809 | 0 | row.addCell("stmt.resultColumn.requirementComponentIds",rootToRequirementComponentList.get(statement.getId())); |
810 | 0 | row.addCell("stmt.resultColumn.statementTypeId",statement.getStatementType().getId()); |
811 | 0 | row.addCell("stmt.resultColumn.statementTypeName",statement.getStatementType().getName()); |
812 | 0 | searchResult.getRows().add(row); |
813 | |
} |
814 | 0 | } |
815 | |
} |
816 | |
|
817 | 0 | return searchResult; |
818 | |
} |
819 | |
|
820 | |
@Override |
821 | |
public List<String> getObjectTypes() { |
822 | 0 | return dictionaryServiceDelegate.getObjectTypes(); |
823 | |
} |
824 | |
|
825 | |
@Override |
826 | |
public StatementTypeInfo getStatementType(final String statementTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
827 | 1 | return StatementAssembler.toStatementTypeInfo(statementDao.fetch(StatementType.class, statementTypeKey)); |
828 | |
} |
829 | |
|
830 | |
@Override |
831 | |
public List<StatementTypeInfo> getStatementTypes() throws OperationFailedException { |
832 | 1 | return StatementAssembler.toStatementTypeInfos(statementDao.find(StatementType.class)); |
833 | |
} |
834 | |
|
835 | |
public List<String> getStatementTypesForStatementType(final String statementTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
836 | 1 | StatementTypeInfo type = StatementAssembler.toStatementTypeInfo(statementDao.fetch(StatementType.class, statementTypeKey)); |
837 | 1 | return type.getAllowedStatementTypes(); |
838 | |
} |
839 | |
|
840 | |
@Override |
841 | |
public List<ReqComponentTypeInfo> getReqComponentTypes() throws OperationFailedException { |
842 | 1 | return StatementAssembler.toReqComponentTypeInfos(statementDao.find(ReqComponentType.class)); |
843 | |
} |
844 | |
|
845 | |
@Override |
846 | |
public ReqComponentTypeInfo getReqComponentType(final String reqComponentTypeKey) |
847 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
848 | 3 | return StatementAssembler.toReqComponentTypeInfo(statementDao.fetch(ReqComponentType.class, reqComponentTypeKey)); |
849 | |
} |
850 | |
|
851 | |
@Override |
852 | |
public List<ReqComponentTypeInfo> getReqComponentTypesForStatementType(final String statementTypeKey) |
853 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
854 | 1 | checkForMissingParameter(statementTypeKey, "statementTypeKey"); |
855 | |
|
856 | 1 | StatementType stmtType = statementDao.fetch(StatementType.class, statementTypeKey); |
857 | 1 | if(null == stmtType) { |
858 | 0 | throw new DoesNotExistException("Statement Type: " + statementTypeKey + " does not exist."); |
859 | |
} |
860 | |
|
861 | 1 | return StatementAssembler.toReqComponentTypeInfosOrdered( stmtType.getAllowedReqComponentTypes() ); |
862 | |
} |
863 | |
|
864 | |
@Override |
865 | |
@Transactional(readOnly=false) |
866 | |
public ReqComponentInfo updateReqComponent(final String reqComponentId, final ReqComponentInfo reqComponentInfo) |
867 | |
throws DataValidationErrorException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException, VersionMismatchException { |
868 | |
|
869 | 7 | checkForMissingParameter(reqComponentId, "reqComponentId"); |
870 | 7 | checkForMissingParameter(reqComponentInfo, "reqComponentInfo"); |
871 | |
|
872 | |
|
873 | 7 | reqComponentInfo.setId(reqComponentId); |
874 | |
|
875 | 7 | ReqComponent reqComp = null; |
876 | |
|
877 | |
|
878 | 7 | reqComp = statementAssembler.toReqComponentRelation(true, reqComponentInfo); |
879 | |
|
880 | |
|
881 | 6 | ReqComponent updatedReqComp = statementDao.update(reqComp); |
882 | |
|
883 | |
|
884 | 6 | ReqComponentInfo updReqCompInfo = StatementAssembler.toReqComponentInfo(updatedReqComp); |
885 | 6 | return updReqCompInfo; |
886 | |
} |
887 | |
|
888 | |
@Transactional(readOnly=false) |
889 | |
public RefStatementRelationInfo createRefStatementRelation(final RefStatementRelationInfo refStatementRelationInfo) |
890 | |
throws AlreadyExistsException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
891 | 6 | checkForMissingParameter(refStatementRelationInfo, "refStatementRelationInfo"); |
892 | |
|
893 | 6 | Statement statement = this.statementDao.fetch(Statement.class, refStatementRelationInfo.getStatementId()); |
894 | 6 | RefStatementRelationType type = this.statementDao.fetch(RefStatementRelationType.class, refStatementRelationInfo.getType()); |
895 | |
|
896 | |
|
897 | 6 | this.statementDao.fetch(ObjectType.class, refStatementRelationInfo.getRefObjectTypeKey()); |
898 | |
|
899 | 6 | RefStatementRelation entity = new RefStatementRelation(); |
900 | |
|
901 | 6 | BeanUtils.copyProperties(refStatementRelationInfo, entity, new String[] { |
902 | |
"statementId", "attributes", "metaInfo", "type", "id"}); |
903 | |
|
904 | 6 | entity.setRefStatementRelationType(type); |
905 | 6 | entity.setStatement(statement); |
906 | |
|
907 | 6 | List<RefStatementRelationAttribute> attributes = StatementAssembler.toGenericAttributes(RefStatementRelationAttribute.class, refStatementRelationInfo.getAttributes(), entity, this.statementDao); |
908 | 6 | entity.setAttributes(attributes); |
909 | |
|
910 | 6 | RefStatementRelation newEntity = this.statementDao.create(entity); |
911 | |
|
912 | 6 | RefStatementRelationInfo newDto = StatementAssembler.toRefStatementRelationInfo(newEntity); |
913 | |
|
914 | 6 | return newDto; |
915 | |
} |
916 | |
|
917 | |
@Override |
918 | |
@Transactional(readOnly=false) |
919 | |
public RefStatementRelationInfo updateRefStatementRelation(final String refStatementRelationId, final RefStatementRelationInfo refStatementRelationInfo) |
920 | |
throws DataValidationErrorException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException, VersionMismatchException { |
921 | 3 | checkForNullOrEmptyParameter(refStatementRelationId, "refStatementRelationId"); |
922 | 3 | checkForMissingParameter(refStatementRelationInfo, "refStatementRelationInfo"); |
923 | |
|
924 | 3 | refStatementRelationInfo.setId(refStatementRelationId); |
925 | 3 | RefStatementRelation refStatementRel = statementAssembler.toRefStatementRelation(true, refStatementRelationInfo); |
926 | 1 | RefStatementRelation updatedRefStatementRel = statementDao.update(refStatementRel); |
927 | |
|
928 | 1 | RefStatementRelationInfo dto = StatementAssembler.toRefStatementRelationInfo(updatedRefStatementRel); |
929 | 1 | return dto; |
930 | |
} |
931 | |
|
932 | |
@Override |
933 | |
@Transactional(readOnly=false) |
934 | |
public StatusInfo deleteRefStatementRelation(final String refStatementRelationId) |
935 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
936 | 10 | checkForNullOrEmptyParameter(refStatementRelationId, "refStatementRelationId"); |
937 | 8 | this.statementDao.delete(RefStatementRelation.class, refStatementRelationId); |
938 | |
|
939 | 6 | StatusInfo statusInfo = new StatusInfo(); |
940 | 6 | statusInfo.setSuccess(true); |
941 | 6 | statusInfo.setMessage("Reference statement relation successfully deleted"); |
942 | 6 | return statusInfo; |
943 | |
} |
944 | |
|
945 | |
@Override |
946 | |
public List<ValidationResultInfo> validateRefStatementRelation(final String validationType, RefStatementRelationInfo refStatementRelationInfo) |
947 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
948 | 1 | ObjectStructureDefinition objStructure = this.getObjectStructure(RefStatementRelationInfo.class.getName()); |
949 | 1 | Validator defaultValidator = validatorFactory.getValidator(); |
950 | 1 | List<ValidationResultInfo> validationResults = defaultValidator.validateObject(refStatementRelationInfo, objStructure); |
951 | |
|
952 | 1 | return validationResults; |
953 | |
} |
954 | |
|
955 | |
@Override |
956 | |
public StatementTreeViewInfo getStatementTreeView(final String statementId) |
957 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
958 | 5 | checkForNullOrEmptyParameter("statementId", statementId); |
959 | |
|
960 | 5 | return getStatementTreeView(statementId, null, null); |
961 | |
} |
962 | |
|
963 | |
@Override |
964 | |
public StatementTreeViewInfo getStatementTreeViewForNlUsageType(final String statementId, final String nlUsageTypeKey, final String language) |
965 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
966 | 0 | checkForNullOrEmptyParameter("statementId", statementId); |
967 | 0 | checkForNullOrEmptyParameter("nlUsageTypeKey", nlUsageTypeKey); |
968 | 0 | checkForNullOrEmptyParameter("language", language); |
969 | |
|
970 | 0 | return getStatementTreeView(statementId, nlUsageTypeKey, language); |
971 | |
} |
972 | |
|
973 | |
private StatementTreeViewInfo getStatementTreeView(final String statementId, final String nlUsageTypeKey, final String language) |
974 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
975 | 5 | StatementTreeViewInfo statementTreeViewInfo = null; |
976 | 5 | StatementInfo statementInfo = getStatement(statementId); |
977 | 2 | if (statementInfo == null) return null; |
978 | 2 | statementTreeViewInfo = new StatementTreeViewInfo(); |
979 | 2 | getStatementTreeViewHelper(statementInfo, statementTreeViewInfo, nlUsageTypeKey, language); |
980 | 2 | return statementTreeViewInfo; |
981 | |
|
982 | |
|
983 | |
|
984 | |
|
985 | |
|
986 | |
|
987 | |
|
988 | |
|
989 | |
|
990 | |
|
991 | |
|
992 | |
|
993 | |
|
994 | |
|
995 | |
} |
996 | |
|
997 | |
|
998 | |
|
999 | |
|
1000 | |
|
1001 | |
|
1002 | |
|
1003 | |
|
1004 | |
|
1005 | |
|
1006 | |
|
1007 | |
private List<ReqComponentInfo> getReqComponentInfos(final StatementInfo statementInfo, final String nlUsageTypeKey, final String language) |
1008 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
1009 | 6 | List<ReqComponentInfo> reqComponentInfos = new ArrayList<ReqComponentInfo>(); |
1010 | 6 | if (statementInfo == null) return null; |
1011 | 6 | if (statementInfo.getReqComponentIds() != null) { |
1012 | 6 | for (String reqComponentId : statementInfo.getReqComponentIds()) { |
1013 | |
|
1014 | 8 | ReqComponentInfo reqCompInfo = statementAssembler.toReqComponentInfo(statementDao.fetch(ReqComponent.class, reqComponentId), nlUsageTypeKey, language); |
1015 | 8 | reqComponentInfos.add(reqCompInfo); |
1016 | 8 | } |
1017 | |
} |
1018 | 6 | return reqComponentInfos; |
1019 | |
} |
1020 | |
|
1021 | |
|
1022 | |
|
1023 | |
|
1024 | |
|
1025 | |
|
1026 | |
|
1027 | |
|
1028 | |
|
1029 | |
|
1030 | |
|
1031 | |
|
1032 | |
|
1033 | |
private void getStatementTreeViewHelper(final StatementInfo statementInfo, final StatementTreeViewInfo statementTreeViewInfo, |
1034 | |
final String nlUsageTypeKey, final String language) |
1035 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
1036 | 6 | if (statementInfo == null) return; |
1037 | |
|
1038 | 6 | statementAssembler.copyValues(statementTreeViewInfo, statementInfo); |
1039 | 6 | statementTreeViewInfo.setReqComponents(getReqComponentInfos(statementInfo, nlUsageTypeKey, language)); |
1040 | |
|
1041 | 6 | if (statementInfo.getStatementIds() != null) { |
1042 | 6 | for (String statementId : statementInfo.getStatementIds()) { |
1043 | 4 | StatementInfo subStatement = getStatement(statementId); |
1044 | |
|
1045 | 4 | List<StatementTreeViewInfo> statements = |
1046 | |
(statementTreeViewInfo.getStatements() == null) ? new ArrayList<StatementTreeViewInfo>() : statementTreeViewInfo.getStatements(); |
1047 | 4 | StatementTreeViewInfo subStatementTreeViewInfo = new StatementTreeViewInfo(); |
1048 | |
|
1049 | |
|
1050 | 4 | getStatementTreeViewHelper(subStatement, subStatementTreeViewInfo, nlUsageTypeKey, language); |
1051 | 4 | statements.add(subStatementTreeViewInfo); |
1052 | 4 | statementTreeViewInfo.setStatements(statements); |
1053 | 4 | } |
1054 | |
} |
1055 | 6 | } |
1056 | |
|
1057 | |
@Override |
1058 | |
@Transactional(readOnly=false) |
1059 | |
public StatementTreeViewInfo updateStatementTreeView(final String statementId, final StatementTreeViewInfo statementTreeViewInfo) |
1060 | |
throws CircularReferenceException, DataValidationErrorException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException, VersionMismatchException { |
1061 | |
|
1062 | 0 | Statement stmt = this.statementDao.fetch(Statement.class, statementTreeViewInfo.getId()); |
1063 | 0 | if (stmt == null) { |
1064 | 0 | throw new DoesNotExistException("Statement does not exist for id: " + statementTreeViewInfo.getId()); |
1065 | |
} |
1066 | 0 | if (!String.valueOf(stmt.getVersionNumber()).equals(statementTreeViewInfo.getMetaInfo().getVersionInd())) { |
1067 | 0 | throw new VersionMismatchException("Statement to be updated is not the current version"); |
1068 | |
} |
1069 | |
|
1070 | 0 | Set<String> statementIdsToDelete = new HashSet<String>(); |
1071 | 0 | List<ReqComponent> requirementComponentsToCreate = new ArrayList<ReqComponent>(); |
1072 | 0 | List<Statement> statmentsToUpdate = new ArrayList<Statement>(); |
1073 | |
|
1074 | |
|
1075 | 0 | stmt = statementAssembler.toStatementFromTree(stmt, statementTreeViewInfo, statementIdsToDelete, statmentsToUpdate, requirementComponentsToCreate); |
1076 | |
|
1077 | |
|
1078 | 0 | for(ReqComponent reqComponent:requirementComponentsToCreate){ |
1079 | 0 | statementDao.create(reqComponent); |
1080 | |
} |
1081 | |
|
1082 | |
|
1083 | 0 | stmt = statementDao.update(stmt); |
1084 | |
|
1085 | |
|
1086 | |
|
1087 | |
|
1088 | 0 | for(String statementIdToDelete:statementIdsToDelete){ |
1089 | 0 | statementDao.delete(Statement.class, statementIdToDelete); |
1090 | |
} |
1091 | |
|
1092 | |
|
1093 | 0 | StatementTreeViewInfo result = statementAssembler.toStatementTreeViewInfo(stmt); |
1094 | |
|
1095 | 0 | return result; |
1096 | |
|
1097 | |
|
1098 | |
} |
1099 | |
|
1100 | |
|
1101 | |
|
1102 | |
|
1103 | |
|
1104 | |
|
1105 | |
|
1106 | |
|
1107 | |
|
1108 | |
|
1109 | |
|
1110 | |
|
1111 | |
|
1112 | |
|
1113 | |
|
1114 | |
|
1115 | |
|
1116 | |
|
1117 | |
|
1118 | |
|
1119 | |
|
1120 | |
|
1121 | |
|
1122 | |
|
1123 | |
|
1124 | |
|
1125 | |
|
1126 | |
|
1127 | |
|
1128 | |
|
1129 | |
|
1130 | |
|
1131 | |
|
1132 | |
|
1133 | |
|
1134 | |
|
1135 | |
private void updateStatementTreeViewHelper(StatementTreeViewInfo statementTreeViewInfo) throws CircularReferenceException, DataValidationErrorException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException, VersionMismatchException { |
1136 | 3 | if (statementTreeViewInfo.getStatements() != null) { |
1137 | 3 | for (StatementTreeViewInfo subStatement : statementTreeViewInfo.getStatements()) { |
1138 | 2 | updateStatementTreeViewHelper(subStatement); |
1139 | |
} |
1140 | |
} |
1141 | 3 | if (statementTreeViewInfo.getReqComponents() != null) { |
1142 | 3 | List<ReqComponentInfo> updatedReqComponentInfos = new ArrayList<ReqComponentInfo>(7); |
1143 | 3 | for (ReqComponentInfo reqComponentInfo : statementTreeViewInfo.getReqComponents()) { |
1144 | 4 | ReqComponentInfo updatedReqComponentInfo = updateReqComponent(reqComponentInfo.getId(), reqComponentInfo); |
1145 | 4 | updatedReqComponentInfos.add(updatedReqComponentInfo); |
1146 | 4 | } |
1147 | 3 | statementTreeViewInfo.setReqComponents(updatedReqComponentInfos); |
1148 | |
} |
1149 | 3 | StatementInfo updatedStatementInfo = updateStatement(statementTreeViewInfo.getId(), statementAssembler.toStatementInfo( |
1150 | |
statementTreeViewInfo)); |
1151 | 3 | statementAssembler.copyValues(statementTreeViewInfo, updatedStatementInfo); |
1152 | 3 | } |
1153 | |
|
1154 | |
private void updateSTVHelperCreateStatements(StatementTreeViewInfo statementTreeViewInfo) throws CircularReferenceException, DataValidationErrorException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException, VersionMismatchException { |
1155 | 3 | String statementId = null; |
1156 | 3 | StatementInfo origStatementInfo = null; |
1157 | 3 | StatementInfo newStatementInfo = null; |
1158 | 3 | if (statementTreeViewInfo.getStatements() != null) { |
1159 | 3 | for (StatementTreeViewInfo subTreeInfo : statementTreeViewInfo.getStatements()) { |
1160 | 2 | updateSTVHelperCreateStatements(subTreeInfo); |
1161 | |
} |
1162 | |
} |
1163 | 3 | if (statementTreeViewInfo.getReqComponents() != null) { |
1164 | 3 | List<ReqComponentInfo> rcsAfterInserts = new ArrayList<ReqComponentInfo>(7); |
1165 | 3 | for (ReqComponentInfo reqComponentInfo : statementTreeViewInfo.getReqComponents()) { |
1166 | 4 | String reqComponentId = reqComponentInfo.getId(); |
1167 | 4 | ReqComponentInfo origReqComponentInfo = null; |
1168 | 4 | ReqComponentInfo rcAfterInsert = null; |
1169 | |
|
1170 | 4 | if (reqComponentId != null) { |
1171 | |
try { |
1172 | 0 | origReqComponentInfo = getReqComponent(reqComponentId); |
1173 | 0 | } catch (DoesNotExistException dnee) { |
1174 | 0 | origReqComponentInfo = null; |
1175 | 0 | } |
1176 | |
} |
1177 | 4 | if (origReqComponentInfo == null) { |
1178 | |
|
1179 | |
|
1180 | |
|
1181 | 4 | reqComponentInfo.setId(null); |
1182 | |
try { |
1183 | 4 | rcAfterInsert = createReqComponent(reqComponentInfo.getType(), reqComponentInfo); |
1184 | 0 | } catch (AlreadyExistsException e) { |
1185 | |
|
1186 | |
|
1187 | 0 | throw new OperationFailedException("Tried to create a reqComponent that already exists"); |
1188 | 4 | } |
1189 | |
} else { |
1190 | 0 | rcAfterInsert = reqComponentInfo; |
1191 | |
} |
1192 | 4 | rcsAfterInserts.add(rcAfterInsert); |
1193 | 4 | } |
1194 | 3 | statementTreeViewInfo.setReqComponents(rcsAfterInserts); |
1195 | |
} |
1196 | |
|
1197 | 3 | statementId = statementTreeViewInfo.getId(); |
1198 | 3 | if (statementId != null) { |
1199 | |
try { |
1200 | 0 | origStatementInfo = getStatement(statementId); |
1201 | 0 | } catch(DoesNotExistException dnee) { |
1202 | 0 | origStatementInfo = null; |
1203 | 0 | } |
1204 | |
} |
1205 | 3 | if (origStatementInfo == null) { |
1206 | |
|
1207 | |
|
1208 | |
|
1209 | 3 | newStatementInfo = statementAssembler.toStatementInfo(statementTreeViewInfo); |
1210 | |
try { |
1211 | 3 | newStatementInfo = createStatement(newStatementInfo.getType(), newStatementInfo); |
1212 | 0 | } catch (AlreadyExistsException e) { |
1213 | |
|
1214 | |
|
1215 | 0 | throw new OperationFailedException("Tried to create a statement that already exists"); |
1216 | 3 | } |
1217 | 3 | statementAssembler.copyValues(statementTreeViewInfo, newStatementInfo); |
1218 | |
} |
1219 | 3 | } |
1220 | |
|
1221 | |
|
1222 | |
|
1223 | |
|
1224 | |
|
1225 | |
@Override |
1226 | |
public RefStatementRelationTypeInfo getRefStatementRelationType(final String refStatementRelationTypeKey) |
1227 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
1228 | 1 | checkForNullOrEmptyParameter(refStatementRelationTypeKey, "refStatementRelationTypeKey"); |
1229 | |
|
1230 | 1 | RefStatementRelationType type = this.statementDao.fetch(RefStatementRelationType.class, refStatementRelationTypeKey); |
1231 | |
|
1232 | 1 | return StatementAssembler.toRefStatementRelationTypeInfo(type); |
1233 | |
} |
1234 | |
|
1235 | |
@Override |
1236 | |
public List<RefStatementRelationTypeInfo> getRefStatementRelationTypes() |
1237 | |
throws OperationFailedException { |
1238 | 1 | List<RefStatementRelationType> entities = this.statementDao.find(RefStatementRelationType.class); |
1239 | 1 | return StatementAssembler.toRefStatementRelationTypeInfos(entities); |
1240 | |
} |
1241 | |
|
1242 | |
@Override |
1243 | |
public List<String> getRefStatementRelationTypesForRefObjectSubType(final String refSubTypeKey) |
1244 | |
throws DoesNotExistException,InvalidParameterException, MissingParameterException, OperationFailedException { |
1245 | 0 | throw new UnsupportedOperationException("Method not yet implemented!"); |
1246 | |
} |
1247 | |
|
1248 | |
@Override |
1249 | |
public List<String> getStatementTypesForRefStatementRelationType(final String refStatementRelationTypeKey) |
1250 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
1251 | 0 | throw new UnsupportedOperationException("Method not yet implemented!"); |
1252 | |
} |
1253 | |
|
1254 | |
public void setValidatorFactory(ValidatorFactory validatorFactory) { |
1255 | 2 | this.validatorFactory = validatorFactory; |
1256 | 2 | } |
1257 | |
} |