Decouple config and netconf subsystems.
[controller.git] / opendaylight / netconf / sal-netconf-connector / src / main / java / org / opendaylight / controller / sal / connect / netconf / util / NetconfRpcFutureCallback.java
diff --git a/opendaylight/netconf/sal-netconf-connector/src/main/java/org/opendaylight/controller/sal/connect/netconf/util/NetconfRpcFutureCallback.java b/opendaylight/netconf/sal-netconf-connector/src/main/java/org/opendaylight/controller/sal/connect/netconf/util/NetconfRpcFutureCallback.java
new file mode 100644 (file)
index 0000000..48fd469
--- /dev/null
@@ -0,0 +1,48 @@
+/*
+ * Copyright (c) 2014 Cisco Systems, Inc. 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.controller.sal.connect.netconf.util;
+
+import com.google.common.util.concurrent.FutureCallback;
+import org.opendaylight.controller.md.sal.dom.api.DOMRpcResult;
+import org.opendaylight.controller.sal.connect.util.RemoteDeviceId;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * Simple Netconf rpc logging callback
+ */
+public class NetconfRpcFutureCallback implements FutureCallback<DOMRpcResult> {
+    private static final Logger LOG  = LoggerFactory.getLogger(NetconfRpcFutureCallback.class);
+
+    private final String type;
+    private final RemoteDeviceId id;
+
+    public NetconfRpcFutureCallback(final String prefix, final RemoteDeviceId id) {
+        this.type = prefix;
+        this.id = id;
+    }
+
+    @Override
+    public void onSuccess(final DOMRpcResult result) {
+        if(result.getErrors().isEmpty()) {
+            LOG.trace("{}: {} invoked successfully", id, type);
+        } else {
+            onUnsuccess(result);
+        }
+    }
+
+    protected void onUnsuccess(final DOMRpcResult result) {
+        LOG.warn("{}: {} invoked unsuccessfully: {}", id, type, result.getErrors());
+    }
+
+    @Override
+    public void onFailure(final Throwable t) {
+        LOG.warn("{}: {} failed.", id, type, t);
+    }
+}