New partitions cli option for displaying client information

Change-Id: Iba0a9f7ea809368bf0965b44d8ff60e7486ee3d8
diff --git a/core/api/src/main/java/org/onosproject/store/primitives/PartitionAdminService.java b/core/api/src/main/java/org/onosproject/store/primitives/PartitionAdminService.java
index d911bdb..3ee929e 100644
--- a/core/api/src/main/java/org/onosproject/store/primitives/PartitionAdminService.java
+++ b/core/api/src/main/java/org/onosproject/store/primitives/PartitionAdminService.java
@@ -17,6 +17,7 @@
 
 import java.util.List;
 
+import org.onosproject.store.service.PartitionClientInfo;
 import org.onosproject.store.service.PartitionInfo;
 
 /**
@@ -29,4 +30,10 @@
      * @return list of {@code PartitionInfo}
      */
     List<PartitionInfo> partitionInfo();
+
+    /**
+     * Returns the {@link PartitionClientInfo information} for partition clients.
+     * @return list of {@code PartitionClientInfo}
+     */
+    List<PartitionClientInfo> partitionClientInfo();
 }
\ No newline at end of file
diff --git a/core/api/src/main/java/org/onosproject/store/service/PartitionClientInfo.java b/core/api/src/main/java/org/onosproject/store/service/PartitionClientInfo.java
new file mode 100644
index 0000000..8f4dab3
--- /dev/null
+++ b/core/api/src/main/java/org/onosproject/store/service/PartitionClientInfo.java
@@ -0,0 +1,77 @@
+/*
+ * Copyright 2016-present Open Networking Laboratory
+ *
+ * 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.
+ */
+package org.onosproject.store.service;
+
+import java.util.Collection;
+
+import org.onosproject.cluster.NodeId;
+import org.onosproject.cluster.PartitionId;
+import org.onosproject.store.service.DistributedPrimitive.Status;
+
+import com.google.common.collect.ImmutableList;
+
+import static com.google.common.base.Preconditions.checkNotNull;
+
+/**
+ * Contains information about a database partition client.
+ */
+public class PartitionClientInfo {
+    private final PartitionId partitionId;
+    private final Status status;
+    private final Collection<NodeId> servers;
+    private final long sessionId;
+
+    public PartitionClientInfo(PartitionId partitionId, Collection<NodeId> servers, long sessionId, Status status) {
+        this.partitionId = checkNotNull(partitionId);
+        this.servers = ImmutableList.copyOf(checkNotNull(servers));
+        this.sessionId = sessionId;
+        this.status = checkNotNull(status);
+    }
+
+    /**
+     * Returns the identifier for the partition.
+     *
+     * @return partition id
+     */
+    public PartitionId partitionId() {
+        return partitionId;
+    }
+
+    /**
+     * Returns the collection of servers that are members of the partition.
+     *
+     * @return active members of the partition
+     */
+    public Collection<NodeId> servers() {
+        return servers;
+    }
+
+    /**
+     * Return the sessionId for the partition client.
+     * @return session id
+     */
+    public long sessionId() {
+        return sessionId;
+    }
+
+    /**
+     * Returns the current status for the client session.
+     * @return status
+     */
+    public Status status() {
+        return status;
+    }
+}
diff --git a/core/store/primitives/src/main/java/org/onosproject/store/primitives/impl/PartitionManager.java b/core/store/primitives/src/main/java/org/onosproject/store/primitives/impl/PartitionManager.java
index ebb8bc7..f67405c 100644
--- a/core/store/primitives/src/main/java/org/onosproject/store/primitives/impl/PartitionManager.java
+++ b/core/store/primitives/src/main/java/org/onosproject/store/primitives/impl/PartitionManager.java
@@ -49,6 +49,7 @@
 import org.onosproject.store.primitives.PartitionEvent;
 import org.onosproject.store.primitives.PartitionEventListener;
 import org.onosproject.store.primitives.PartitionService;
+import org.onosproject.store.service.PartitionClientInfo;
 import org.onosproject.store.service.PartitionInfo;
 import org.slf4j.Logger;
 
@@ -176,4 +177,13 @@
             processMetadataUpdate(event.subject());
         }
     }
+
+    @Override
+    public List<PartitionClientInfo> partitionClientInfo() {
+        return partitions.values()
+                         .stream()
+                         .map(StoragePartition::client)
+                         .map(StoragePartitionClient::clientInfo)
+                         .collect(Collectors.toList());
+    }
 }
diff --git a/core/store/primitives/src/main/java/org/onosproject/store/primitives/impl/StoragePartitionClient.java b/core/store/primitives/src/main/java/org/onosproject/store/primitives/impl/StoragePartitionClient.java
index f2aa0a8..e1086cf 100644
--- a/core/store/primitives/src/main/java/org/onosproject/store/primitives/impl/StoragePartitionClient.java
+++ b/core/store/primitives/src/main/java/org/onosproject/store/primitives/impl/StoragePartitionClient.java
@@ -53,6 +53,7 @@
 import org.onosproject.store.service.AsyncLeaderElector;
 import org.onosproject.store.service.DistributedPrimitive.Status;
 import org.onosproject.store.service.DistributedQueue;
+import org.onosproject.store.service.PartitionClientInfo;
 import org.onosproject.store.service.Serializer;
 import org.slf4j.Logger;
 
@@ -190,6 +191,17 @@
         return client.isOpen();
     }
 
+    /**
+     * Returns the {@link PartitionClientInfo information} for this client.
+     * @return partition client information
+     */
+    public PartitionClientInfo clientInfo() {
+        return new PartitionClientInfo(partition.getId(),
+                partition.getMembers(),
+                copycatClient.session().id(),
+                mapper.apply(copycatClient.state()));
+    }
+
     private CopycatClient newCopycatClient(Collection<Address> members,
                                            Transport transport,
                                            io.atomix.catalyst.serializer.Serializer serializer,