Renderer and OLM update
[transportpce.git] / renderer / src / main / java / org / opendaylight / transportpce / renderer / provisiondevice / tasks / OlmPowerSetupTask.java
diff --git a/renderer/src/main/java/org/opendaylight/transportpce/renderer/provisiondevice/tasks/OlmPowerSetupTask.java b/renderer/src/main/java/org/opendaylight/transportpce/renderer/provisiondevice/tasks/OlmPowerSetupTask.java
new file mode 100644 (file)
index 0000000..aaf54a9
--- /dev/null
@@ -0,0 +1,52 @@
+/*
+ * Copyright © 2017 AT&T and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+package org.opendaylight.transportpce.renderer.provisiondevice.tasks;
+
+import java.util.concurrent.Callable;
+import java.util.concurrent.Future;
+
+import org.opendaylight.transportpce.renderer.provisiondevice.OLMRenderingResult;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.olm.rev170418.OlmService;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.olm.rev170418.ServicePowerSetupInput;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.olm.rev170418.ServicePowerSetupOutput;
+import org.opendaylight.yangtools.yang.common.RpcResult;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class OlmPowerSetupTask implements Callable<OLMRenderingResult> {
+
+    private static final Logger LOG = LoggerFactory.getLogger(OlmPowerSetupTask.class);
+
+    private final OlmService olmService;
+    private final ServicePowerSetupInput input;
+
+    public OlmPowerSetupTask(OlmService olmService, ServicePowerSetupInput input) {
+        this.olmService = olmService;
+        this.input = input;
+    }
+
+    @Override
+    public OLMRenderingResult call() throws Exception {
+        Future<RpcResult<ServicePowerSetupOutput>> fr = this.olmService.servicePowerSetup(this.input);
+        RpcResult<ServicePowerSetupOutput> result = fr.get();
+        if (result == null) {
+            LOG.warn("Result is NULL");
+            return OLMRenderingResult.failed("Operation Failed");
+        }
+
+        LOG.debug("Result: {}", result.getResult());
+        if (result.isSuccessful()) {
+            LOG.info("OLM power setup finished successfully");
+            return OLMRenderingResult.ok();
+        } else {
+            LOG.warn("OLM power setup not successfully finished");
+            return OLMRenderingResult.failed("Operation Failed");
+        }
+    }
+
+}