26c1be9938e755fcaea63b92b035c5899f0e43d8
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.enrichment.impl.tosca;
22
23 import org.openecomp.sdc.datatypes.error.ErrorLevel;
24 import org.openecomp.sdc.datatypes.error.ErrorMessage;
25 import org.openecomp.sdc.enrichment.inter.Enricher;
26 import org.openecomp.sdc.tosca.datatypes.ToscaServiceModel;
27
28 import java.util.Arrays;
29 import java.util.HashMap;
30 import java.util.List;
31 import java.util.Map;
32
33 public class ToscaEnricher extends Enricher {
34   @Override
35   public Map<String, List<ErrorMessage>> enrich() {
36     Map<String, List<ErrorMessage>> errors = new HashMap<>();
37     errors.putAll(enrichAbstractSubstitute());
38     errors.putAll(enrichPortMirroring());
39
40     return errors;
41   }
42
43   private Map<String, List<ErrorMessage>> enrichAbstractSubstitute() {
44     Map<String, List<ErrorMessage>> enrichErrors = new HashMap<>();
45
46     ToscaServiceModel toscaModel = (ToscaServiceModel) model;
47     AbstractSubstituteToscaEnricher abstractSubstituteToscaEnricher =
48         new AbstractSubstituteToscaEnricher();
49
50     try {
51       enrichErrors = abstractSubstituteToscaEnricher.enrich(toscaModel, data.getKey(),
52           data.getVersion());
53     }catch (Exception e){
54       enrichErrors.put("Tosca Enrich", Arrays.asList(new ErrorMessage(ErrorLevel.ERROR, e
55           .getMessage())));
56     }
57     return enrichErrors;
58   }
59
60   private Map<String, List<ErrorMessage>> enrichPortMirroring() {
61     Map<String, List<ErrorMessage>> enrichErrors = new HashMap<>();
62     ToscaServiceModel toscaModel = (ToscaServiceModel) model;
63     PortMirroringEnricher portMirroringEnricher = new PortMirroringEnricher();
64
65     try {
66       enrichErrors = portMirroringEnricher.enrich(toscaModel);
67     }catch (Exception e){
68       enrichErrors.put("Tosca Enrich", Arrays.asList(new ErrorMessage(ErrorLevel.ERROR, e
69           .getMessage())));
70     }
71     return enrichErrors;
72   }
73 }