[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / common / openecomp-sdc-artifact-generator-lib / openecomp-sdc-artifact-generator-api / src / main / java / org / openecomp / sdc / generator / service / ArtifactGenerationService.java
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.generator.service;
22
23 import static org.openecomp.sdc.generator.data.GeneratorConstants.ERROR_CATEGORY;
24 import static org.openecomp.sdc.generator.data.GeneratorConstants.ERROR_CODE;
25 import static org.openecomp.sdc.generator.data.GeneratorConstants.ERROR_DESCRIPTION;
26 import static org.openecomp.sdc.generator.data.GeneratorConstants.GENERATOR_ERROR_CODE;
27 import static org.openecomp.sdc.generator.data.GeneratorConstants.GENERATOR_ERROR_SERVICE_INSTANTIATION_FAILED;
28 import static org.openecomp.sdc.generator.data.GeneratorConstants.GENERATOR_PARTNER_NAME;
29 import static org.openecomp.sdc.generator.data.GeneratorConstants.PARTNER_NAME;
30
31 import org.openecomp.core.logging.api.Logger;
32 import org.openecomp.core.logging.api.LoggerFactory;
33 import org.openecomp.sdc.generator.data.Artifact;
34 import org.openecomp.sdc.generator.data.GenerationData;
35 import org.openecomp.sdc.generator.logging.CategoryLogLevel;
36 import org.slf4j.MDC;
37
38 import java.io.PrintWriter;
39 import java.io.StringWriter;
40 import java.util.Arrays;
41 import java.util.List;
42 import java.util.Map;
43
44
45 /**
46  * Artifact Generation Service interface.
47  */
48 public interface ArtifactGenerationService {
49
50
51   /**
52    * Method to get artifact generation service implementation.
53    *
54    * @return Artifact generation implementation instance
55    */
56   public static ArtifactGenerationService lookup() {
57
58     Logger log = LoggerFactory.getLogger(ArtifactGenerationService.class.getName());
59     log.debug("Instantiating Artifact Generation Service");
60     try {
61       return ArtifactGenerationService.class.cast(
62           Class.forName("org.openecomp.sdc.generator.impl.ArtifactGenerationServiceImpl")
63               .newInstance());
64     } catch (Exception exception) {
65       MDC.put(PARTNER_NAME, GENERATOR_PARTNER_NAME);
66       MDC.put(ERROR_CATEGORY, CategoryLogLevel.ERROR.name());
67       MDC.put(ERROR_CODE, GENERATOR_ERROR_CODE);
68       MDC.put(ERROR_DESCRIPTION, GENERATOR_ERROR_SERVICE_INSTANTIATION_FAILED);
69       StringWriter sw = new StringWriter();
70       exception.printStackTrace(new PrintWriter(sw));
71       log.error(sw.toString());
72     }
73     log.debug(GENERATOR_ERROR_SERVICE_INSTANTIATION_FAILED);
74     return null;
75   }
76
77   public GenerationData generateArtifact(List<Artifact> input, String overridingConfiguration,
78                                          Map<String, String> additionalParams);
79
80 }