2 * Copyright 2016 Huawei Technologies Co., Ltd.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package org.onap.vfc.nfvo.resmanagement.service.adapter.impl;
19 import java.io.BufferedInputStream;
20 import java.io.FileInputStream;
21 import java.io.FileNotFoundException;
22 import java.io.IOException;
23 import java.io.InputStream;
24 import java.util.HashMap;
26 import java.util.concurrent.Executors;
28 import org.onap.vfc.nfvo.resmanagement.common.constant.Constant;
29 import org.onap.vfc.nfvo.resmanagement.common.constant.HttpConstant;
30 import org.onap.vfc.nfvo.resmanagement.common.constant.ParamConstant;
31 import org.onap.vfc.nfvo.resmanagement.common.constant.UrlConstant;
32 import org.onap.vfc.nfvo.resmanagement.common.util.restclient.SystemEnvVariablesFactory;
33 import org.onap.vfc.nfvo.resmanagement.service.adapter.inf.IResmgrAdapter2MSBManager;
34 import org.onap.vfc.nfvo.resmanagement.service.adapter.inf.IResmgrAdapterMgrService;
35 import org.slf4j.Logger;
36 import org.slf4j.LoggerFactory;
38 import net.sf.json.JSONObject;
46 * @version VFC 1.0 Sep 22, 2016
48 public class ResmgrAdapterMgrService implements IResmgrAdapterMgrService {
50 private static final Logger LOG = LoggerFactory.getLogger(ResmgrAdapterMgrService.class);
52 public static final String RESMGRADAPTERINFO = "resmgradapterinfo.json";
55 public void register() {
56 // set BUS URL and mothedtype
57 Map<String, String> paramsMap = new HashMap<>();
58 paramsMap.put("url", UrlConstant.REST_MSB_REGISTER);
59 paramsMap.put("methodType", ParamConstant.PARAM_POST);
61 // get resmgr info and raise registration
63 String resmgrInfo = readVimAdapterInfoFromJson();
64 if(!"".equals(resmgrInfo)) {
65 JSONObject adapterObject = JSONObject.fromObject(resmgrInfo);
66 RegisterResmgrThread resmgrThread = new RegisterResmgrThread(paramsMap, adapterObject);
67 Executors.newSingleThreadExecutor().submit(resmgrThread);
69 LOG.error("Resmgr info is null,please check!");
72 } catch(IOException e) {
73 LOG.error("Failed to read Resmgr info! " + e.getMessage(), e);
79 * Retrieve VIM driver information.
84 public static String readVimAdapterInfoFromJson() throws IOException {
85 String fileContent = "";
87 String fileName = SystemEnvVariablesFactory.getInstance().getAppRoot() + System.getProperty("file.separator")
88 + "etc" + System.getProperty("file.separator") + "adapterInfo" + System.getProperty("file.separator")
91 try (InputStream ins = new FileInputStream(fileName)) {
92 try(BufferedInputStream bins = new BufferedInputStream(ins)) {
93 byte[] contentByte = new byte[ins.available()];
94 int num = bins.read(contentByte);
97 fileContent = new String(contentByte);
100 } catch(FileNotFoundException e) {
101 LOG.error(fileName + "is not found!", e);
107 private static class RegisterResmgrThread implements Runnable {
109 // Thread lock Object
110 private final Object lockObject = new Object();
112 private IResmgrAdapter2MSBManager adapter2MSBMgr = new ResmgrAdapter2MSBManager();
114 // url and mothedtype
115 private Map<String, String> paramsMap;
118 private JSONObject adapterInfo;
120 public RegisterResmgrThread(Map<String, String> paramsMap, JSONObject adapterInfo) {
121 this.paramsMap = paramsMap;
122 this.adapterInfo = adapterInfo;
127 LOG.info("start register resmgr", RegisterResmgrThread.class);
129 if(paramsMap == null || adapterInfo == null) {
130 LOG.error("parameter is null,please check!", RegisterResmgrThread.class);
134 // catch Runtime Exception
136 sendRequest(paramsMap, adapterInfo);
137 } catch(RuntimeException e) {
138 LOG.error(e.getMessage(), e);
143 private void sendRequest(Map<String, String> paramsMap, JSONObject driverInfo) {
144 JSONObject resultObj = adapter2MSBMgr.registerResmgr(paramsMap, driverInfo);
146 if(Integer.valueOf(resultObj.get("retCode").toString()) == HttpConstant.HTTP_CREATED) {
147 LOG.info("Resmgr has now Successfully Registered to the Microservice BUS!");
149 LOG.error("Resmgr failed to Register to the Microservice BUS! Reason:"
150 + resultObj.get("reason").toString() + " retCode:" + resultObj.get("retCode").toString());
152 // if registration fails,wait one minute and try again
154 synchronized(lockObject) {
155 lockObject.wait(Constant.REPEAT_REG_TIME);
157 } catch(InterruptedException e) {
158 LOG.error(e.getMessage(), e);
159 // Restore interrupted state...
160 Thread.currentThread().interrupt();
163 sendRequest(this.paramsMap, this.adapterInfo);
171 public void unregister() {