aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/northbound/energysavings/provider/src/main/java/org/onap/ccsdk/features/sdnr/northbound/energysavings/EnergysavingsProvider.java
blob: afc22c9fb226de88521a104961656b1f9f2b2469 (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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
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
273
274
275
276
277
278
279
280
281
282
/*-
 * ============LICENSE_START=======================================================
 * ONAP : CCSDK
 * ================================================================================
 * 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.onap.ccsdk.features.sdnr.northbound.energysavings;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Collections;
import java.util.HashMap;
import java.util.Properties;
import java.util.concurrent.Future;
import javax.ws.rs.HttpMethod;
import javax.ws.rs.core.MediaType;
import org.opendaylight.controller.md.sal.binding.api.DataBroker;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.energysavings.rev150105.EnergysavingsService;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.energysavings.rev150105.PayloadInput;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.energysavings.rev150105.PayloadInputBuilder;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.energysavings.rev150105.PayloadOutput;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.energysavings.rev150105.PayloadOutputBuilder;
import org.opendaylight.yangtools.yang.common.RpcResult;
import org.opendaylight.yangtools.yang.common.RpcResultBuilder;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.opendaylight.controller.sal.binding.api.RpcProviderRegistry;
import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RpcRegistration;
import com.google.common.base.Preconditions;
import com.google.common.util.concurrent.Futures;
import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.ClientResponse;
import com.sun.jersey.api.client.WebResource;
import com.sun.jersey.api.client.config.ClientConfig;
import com.sun.jersey.api.client.config.DefaultClientConfig;
import com.sun.jersey.api.client.filter.HTTPBasicAuthFilter;

public class EnergysavingsProvider implements EnergysavingsService {

    private static final Logger LOG = LoggerFactory.getLogger(EnergysavingsProvider.class);

    private final String appName = "EnergySavings";

    private final DataBroker dataBroker;
    private final RpcProviderRegistry rpcProviderRegistry;
    private RpcRegistration<EnergysavingsService> serviceRegistration;

    // Locations and names of the configuration files
    private static final String SDNC_CONFIG_DIR = "SDNC_CONFIG_DIR";
    private static final String PROPERTIES_FILE_NAME = "sdnr-energy-savings.properties";
    private static final String PARSING_ERROR =
            "Could not create the request message to send to the server; no message will be sent";

    /*
     * Use a flag veryFirstTime to ensure that some tasks are done only once. The value is set here and
     * during initialization.
     */
    private Boolean veryFirstTime = true;

    // Parameters for the REST calls

    // to publish SDNR_TO_POLICY DMaaP topic
    private WebResource dmaapSdnrToPolicyWebResource = null;

    // to the Energy Savings server
    private WebResource energySavingsWebResource = null;

    public EnergysavingsProvider(final DataBroker dataBroker, RpcProviderRegistry rpcProviderRegistry) {
        this.dataBroker = dataBroker;
        this.rpcProviderRegistry = rpcProviderRegistry;
    }

    /**
     * Method called when the blueprint container is created.
     */
    public void init() {
        serviceRegistration = rpcProviderRegistry.addRpcImplementation(EnergysavingsService.class, this);

        LOG.debug("Initializing provider for " + appName);

        Preconditions.checkNotNull(dataBroker, "dataBroker must be set");

        // Set the initialization flag so some tasks will be done only once
        veryFirstTime = true;

        // Read parameters from the properties file in SDNC_CONFIG_DIR
        String propDir = System.getenv(SDNC_CONFIG_DIR);
        if (propDir == null) {
            LOG.error("Environment variable SDNC_CONFIG_DIR is not set");
            propDir = "/opt/onap/ccsdk/data/properties/";
        } else if (!propDir.endsWith("/")) {
            propDir = propDir + "/";
        }

        // Get the parameters for the REST calls
        HashMap<String, String> dmaapPolicyHttpParams = new HashMap<String, String>();
        HashMap<String, String> energySavingsServerHttpParams = new HashMap<String, String>();

        try (FileInputStream fileInput = new FileInputStream(propDir + PROPERTIES_FILE_NAME)) {
            Properties properties = new Properties();
            properties.load(fileInput);
            fileInput.close();

            for (String param : new String[] {"url", "httpMethod", "authentication", "user", "password"}) {
                dmaapPolicyHttpParams.put(param, properties.getProperty("dmaapPolicy." + param));
                energySavingsServerHttpParams.put(param, properties.getProperty("energySavingsServer." + param));
            }
        } catch (FileNotFoundException e) {
            LOG.error("Unexpected value for energy savings server authentication: ");
        } catch (IOException e) {
            LOG.error("Unexpected value for energy savings server authentication: ");
        }

        // Create a web resource for the Energy Savings server
        ClientConfig esClientConfig = new DefaultClientConfig();
        // 3 minute read time out
        esClientConfig.getProperties().put(ClientConfig.PROPERTY_READ_TIMEOUT, 180000);
        // 1 minute connect time out
        esClientConfig.getProperties().put(ClientConfig.PROPERTY_CONNECT_TIMEOUT, 60000);
        Client esClient = Client.create(esClientConfig);

        // Authentication for the Energy Savings server
        String authenticationMethod = energySavingsServerHttpParams.get("authentication");

        if (authenticationMethod.equals("basic")) {
            esClient.addFilter(new HTTPBasicAuthFilter(energySavingsServerHttpParams.get("user"),
                    energySavingsServerHttpParams.get("password")));
            energySavingsWebResource = esClient.resource(energySavingsServerHttpParams.get("url"));
        } else if (authenticationMethod.equals("none")) {
            energySavingsWebResource = esClient.resource(energySavingsServerHttpParams.get("url"));
        } else {
            LOG.error("Unexpected value for energy savings server authentication: " + authenticationMethod);
        }

        // Create a web resource for the DMaaP SDNR_TO_POLICY topic
        ClientConfig dmaapClientConfig = new DefaultClientConfig();
        // 3 minute read time out
        dmaapClientConfig.getProperties().put(ClientConfig.PROPERTY_READ_TIMEOUT, 180000);
        // 1 minute connect time out
        dmaapClientConfig.getProperties().put(ClientConfig.PROPERTY_CONNECT_TIMEOUT, 60000);
        Client dmaapClient = Client.create(dmaapClientConfig);

        // Authentication for the DMaaP message router
        authenticationMethod = dmaapPolicyHttpParams.get("authentication");

        if (authenticationMethod.equals("basic")) {
            dmaapClient.addFilter(
                    new HTTPBasicAuthFilter(dmaapPolicyHttpParams.get("user"), dmaapPolicyHttpParams.get("password")));
            dmaapSdnrToPolicyWebResource = dmaapClient.resource(dmaapPolicyHttpParams.get("url"));
        } else if (authenticationMethod.equals("none")) {
            dmaapSdnrToPolicyWebResource = dmaapClient.resource(dmaapPolicyHttpParams.get("url"));
        } else {
            LOG.error("Unexpected value for DMaaP message router authentication: " + authenticationMethod);
        }

        LOG.debug("energySavingsServerHttpParams: " + Collections.singletonList(energySavingsServerHttpParams));
        LOG.debug("dmaapPolicyHttpParams: " + Collections.singletonList(dmaapPolicyHttpParams));
        LOG.debug("Initialization complete for " + appName);
    }

    /**
     * Method called when the blueprint container is destroyed.
     */
    public void close() {
        LOG.debug("EnergysavingsProvider Closed");
    }

    public WebResource getDmaapSdnrToPolicyWebResource() {
        return this.dmaapSdnrToPolicyWebResource;
    }

    public WebResource getEnergySavingsWebResource() {
        return this.energySavingsWebResource;
    }

    @Override
    public Future<RpcResult<PayloadOutput>> payload(PayloadInput input) {

        /*
         * Policy has published a POLICY_TO_SDNR DMaaP topic. Currently, this feature simply forwards the
         * input to the Energy Savings server untouched.
         */

        // Assume success
        Boolean requestSucceeded = true;

        // Build the result now so error messages can be included in the response
        PayloadOutputBuilder resultBuilder = new PayloadOutputBuilder();

        if (input == null) {
            LOG.error("Input is null");
            resultBuilder.setResult("Input is null");
            requestSucceeded = false;
        } else {
            try {
                PayloadInputBuilder inputBuilder = new PayloadInputBuilder(input);
                input = inputBuilder.build();
                LOG.debug("Received payload: " + input.getPayload());
            } catch (Exception e) {
                LOG.error("Cannot build input");
                resultBuilder.setResult(e.toString() + " : " + e.getMessage());
                requestSucceeded = false;
            }
        }

        /*
         * See if the web resources were created during initialization. No use in proceeding if not.
         */
        if (energySavingsWebResource == null) {
            LOG.error("energySavingsWebResouce is null");
            resultBuilder.setResult("energySavingsWebResource is null");
            requestSucceeded = false;
        }

        if (dmaapSdnrToPolicyWebResource == null) {
            LOG.error("dmaapSdnrToPolicyWebResouce is null");
            resultBuilder.setResult("dmaapSdnrToPolicyWebResource is null");
            requestSucceeded = false;
        }

        /*
         * Forward the POLICY_TO_SDNR message to the Energy Savings server
         */

        ClientResponse response = null;
        if (requestSucceeded) {
            try {
                LOG.debug("Sending message to controller: \n" + input.getPayload());
                response = energySavingsWebResource.type(MediaType.APPLICATION_JSON).accept(MediaType.APPLICATION_JSON)
                        .method(HttpMethod.POST, ClientResponse.class, input.getPayload());
                LOG.debug("Received response from Energy Savings server: \n" + response.toString());
            } catch (Exception e) {
                LOG.error("Error while posting POLICY_TO_SDNR input to server:", e);
                resultBuilder.setResult("Error while posting POLICY_TO_SDNR input to server\n" + e.toString());
                requestSucceeded = false;
            }
        }

        /*
         * Return the response from the server to Policy using the SDNR_TO_POLICY topic
         */

        if (requestSucceeded) {
            String esServerResponse = response.getEntity(String.class);
            try {
                LOG.debug("Sending SDNR_TO_POLICY topic: \n" + esServerResponse);
                response =
                        dmaapSdnrToPolicyWebResource.type(MediaType.APPLICATION_JSON).accept(MediaType.APPLICATION_JSON)
                                .method(HttpMethod.POST, ClientResponse.class, esServerResponse);
                LOG.debug("Received response from DMaaP message router: \n" + response.toString());
            } catch (Exception e) {
                LOG.error("Error while posting SDNR_TO_POLICY topic: ", e);
                resultBuilder.setResult("Error while posting SDNR_TO_POLICY topic:\n" + e.toString());
                requestSucceeded = false;
            }
        }

        if (requestSucceeded) {
            return Futures.immediateFuture(
                    RpcResultBuilder.<PayloadOutput>success().withResult(resultBuilder.build()).build());
        } else {
            return Futures.immediateFuture(
                    RpcResultBuilder.<PayloadOutput>failed().withResult(resultBuilder.build()).build());
        }
    }
}