summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openecomp/modelloader/service/ModelLoaderService.java
blob: 16aba7e43e4b7e7509c1b69765ca529733d7e7aa (plain)
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
/*-
 * ============LICENSE_START=======================================================
 * MODEL LOADER SERVICE
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.modelloader.service;

import org.openecomp.sdc.api.IDistributionClient;
import org.openecomp.sdc.api.results.IDistributionClientResult;
import org.openecomp.sdc.impl.DistributionClientFactory;
import org.openecomp.sdc.utils.DistributionActionResultEnum;

import org.openecomp.cl.api.Logger;
import org.openecomp.cl.eelf.LoggerFactory;
import org.openecomp.modelloader.config.ModelLoaderConfig;
import org.openecomp.modelloader.entity.model.ModelArtifactHandler;
import org.openecomp.modelloader.notification.EventCallback;

import java.io.IOException;
import java.util.Properties;

import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
import javax.servlet.http.HttpServletRequest;
import javax.ws.rs.core.Response;

/**
 * Service class in charge of managing the negotiating model loading
 * capabilities between AAI and an ASDC.
 */
public class ModelLoaderService implements ModelLoaderInterface {

  protected static String CONFIG_FILE = "model-loader.properties";

  private IDistributionClient client;
  private ModelLoaderConfig config;

  static Logger logger = LoggerFactory.getInstance().getLogger(ModelLoaderService.class.getName());

  /**
   * Responsible for loading configuration files and calling initialization.
   */
  @PostConstruct
  protected void start() {
    // Load model loader system configuration
    logger.info(ModelLoaderMsgs.LOADING_CONFIGURATION);
    Properties configProperties = new Properties();
    try {
      configProperties.load(this.getClass().getClassLoader().getResourceAsStream(CONFIG_FILE));
    } catch (IOException e) {
      String errorMsg = "Failed to load configuration: " + e.getMessage();
      logger.error(ModelLoaderMsgs.ASDC_CONNECTION_ERROR, errorMsg);
      shutdown();
    }
    
    config = new ModelLoaderConfig(configProperties);
    init();
  }

  /**
   * Responsible for stopping the connection to the distribution client before
   * the resource is destroyed.
   */
  @PreDestroy
  protected void preShutdownOperations() {
    logger.info(ModelLoaderMsgs.STOPPING_CLIENT);
    if (client != null) {
      client.stop();
    }
  }

  /**
   * Responsible for loading configuration files, initializing model
   * distribution clients, and starting them.
   */
  protected void init() {
    // Initialize distribution client
    logger.debug(ModelLoaderMsgs.INITIALIZING, "Initializing distribution client...");
    client = DistributionClientFactory.createDistributionClient();
    IDistributionClientResult initResult = client.init(config, new EventCallback(client, config));
    if (initResult.getDistributionActionResult() != DistributionActionResultEnum.SUCCESS) {
      String errorMsg = "Failed to initialize distribution client: "
          + initResult.getDistributionMessageResult();
      logger.error(ModelLoaderMsgs.ASDC_CONNECTION_ERROR, errorMsg);
      shutdown();
    }

    // Start distribution client
    logger.debug(ModelLoaderMsgs.INITIALIZING, "Starting distribution client...");
    IDistributionClientResult startResult = client.start();
    if (startResult.getDistributionActionResult() != DistributionActionResultEnum.SUCCESS) {
      String errorMsg = "Failed to start distribution client: "
          + startResult.getDistributionMessageResult();
      logger.error(ModelLoaderMsgs.ASDC_CONNECTION_ERROR, errorMsg);
      shutdown();
    }

    logger.debug(ModelLoaderMsgs.INITIALIZING,
        "Succcessfully loaded service: " + this.getClass().getSimpleName());
  }

  /**
   * Shut down the process.
   */
  private void shutdown() {
    preShutdownOperations();

    // TODO: Find a better way to shut down the model loader.
    try {
      // Give logs time to write to file
      Thread.sleep(2000);
    } catch (InterruptedException e) {
      // Nothing we can do at this point
    }

    Runtime.getRuntime().halt(1);
  }

  /** (non-Javadoc)
   * @see org.openecomp.modelloader.service.ModelLoaderInterface#loadModel(java.lang.String)
   */
  @Override
  public Response loadModel(String modelid) {
    Response response = Response.ok("{\"model_loaded\":\"" + modelid + "\"}").build();

    return response;
  }

  /** (non-Javadoc)
   * @see org.openecomp.modelloader.service.ModelLoaderInterface#saveModel(java.lang.String, java.lang.String)
   */
  @Override
  public Response saveModel(String modelid, String modelname) {
    Response response = Response.ok("{\"model_saved\":\"" + modelid + "-" + modelname + "\"}")
        .build();

    return response;
  }

  @Override
  public Response ingestModel(String modelid, HttpServletRequest req, String payload)
      throws IOException {
    Response response;

    if (config.getIngestSimulatorEnabled()) {
      logger.info(ModelLoaderMsgs.DISTRIBUTION_EVENT, "Received test artifact");

      ModelArtifactHandler handler = new ModelArtifactHandler(config);
      handler.loadModelTest(payload.getBytes());

      response = Response.ok().build();
    } else {
      logger.debug("Simulation interface disabled");
      response = Response.serverError().build();
    }

    return response;
  }
}