blob: 41cdf7cf7ace92396fc7a539b3fcd0ef73a8956a [file] [log] [blame]
Madan Jampani15b8ef52016-02-02 17:35:05 -08001/*
2 * Copyright 2016 Open Networking Laboratory
3 *
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
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
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.
15 */
16package org.onosproject.store.primitives.impl;
17
18import io.atomix.catalyst.serializer.Serializer;
19import io.atomix.catalyst.transport.Address;
20import io.atomix.resource.ResourceType;
21import io.atomix.variables.DistributedLong;
22
23import java.io.File;
24import java.util.Collection;
25import java.util.Optional;
26import java.util.concurrent.CompletableFuture;
27import java.util.concurrent.atomic.AtomicBoolean;
28
29import org.onosproject.cluster.ClusterService;
30import org.onosproject.cluster.ControllerNode;
31import org.onosproject.cluster.DefaultPartition;
32import org.onosproject.cluster.NodeId;
33import org.onosproject.cluster.Partition;
34import org.onosproject.store.cluster.messaging.MessagingService;
35import org.onosproject.store.primitives.resources.impl.AtomixConsistentMap;
Madan Jampani39fff102016-02-14 13:17:28 -080036import org.onosproject.store.primitives.resources.impl.AtomixLeaderElector;
Madan Jampanie14a09c2016-02-11 10:43:21 -080037import org.onosproject.store.service.PartitionInfo;
Madan Jampani15b8ef52016-02-02 17:35:05 -080038
39import com.google.common.collect.Collections2;
40import com.google.common.collect.ImmutableSet;
41
42/**
43 * Storage partition.
44 */
45public class StoragePartition extends DefaultPartition implements Managed<StoragePartition> {
46
47 private final AtomicBoolean isOpened = new AtomicBoolean(false);
48 private final AtomicBoolean isClosed = new AtomicBoolean(false);
49 private final Serializer serializer;
50 private final MessagingService messagingService;
51 private final ClusterService clusterService;
52 private final File logFolder;
53 private static final Collection<ResourceType> RESOURCE_TYPES = ImmutableSet.of(
54 new ResourceType(DistributedLong.class),
Madan Jampani39fff102016-02-14 13:17:28 -080055 new ResourceType(AtomixLeaderElector.class),
Madan Jampani15b8ef52016-02-02 17:35:05 -080056 new ResourceType(AtomixConsistentMap.class));
57
58 private NodeId localNodeId;
59 private Optional<StoragePartitionServer> server = Optional.empty();
60 private StoragePartitionClient client;
61
62 public StoragePartition(Partition partition,
63 MessagingService messagingService,
64 ClusterService clusterService,
65 Serializer serializer,
66 File logFolder) {
67 super(partition);
68 this.messagingService = messagingService;
69 this.clusterService = clusterService;
70 this.localNodeId = clusterService.getLocalNode().id();
71 this.serializer = serializer;
72 this.logFolder = logFolder;
73 }
74
75 public StoragePartitionClient client() {
76 return client;
77 }
78
79 @Override
80 public CompletableFuture<Void> open() {
Madan Jampani1c9b4e92016-02-17 18:33:11 -080081 return openServer().thenAccept(s -> server = Optional.ofNullable(s))
Madan Jampani15b8ef52016-02-02 17:35:05 -080082 .thenCompose(v-> openClient())
83 .thenAccept(v -> isOpened.set(true))
84 .thenApply(v -> null);
85 }
86
87 @Override
88 public CompletableFuture<Void> close() {
89 return closeClient().thenCompose(v -> closeServer())
90 .thenAccept(v -> isClosed.set(true))
91 .thenApply(v -> null);
92 }
93
94 public Collection<Address> getMemberAddresses() {
95 return Collections2.transform(getMembers(), this::toAddress);
96 }
97
98 private CompletableFuture<StoragePartitionServer> openServer() {
99 if (!getMembers().contains(localNodeId)) {
100 return CompletableFuture.completedFuture(null);
101 }
102 StoragePartitionServer server = new StoragePartitionServer(toAddress(localNodeId),
103 this,
104 serializer,
105 () -> new CopycatTransport(CopycatTransport.Mode.SERVER,
106 getId(),
107 messagingService),
108 RESOURCE_TYPES,
109 logFolder);
110 return server.open().thenApply(v -> server);
111 }
112
113 private CompletableFuture<StoragePartitionClient> openClient() {
114 client = new StoragePartitionClient(this,
115 serializer,
116 new CopycatTransport(CopycatTransport.Mode.CLIENT,
117 getId(),
118 messagingService),
119 RESOURCE_TYPES);
120 return client.open().thenApply(v -> client);
121 }
122
123 private CompletableFuture<Void> closeServer() {
Sho SHIMIZUef7e2902016-02-12 18:38:29 -0800124 return server.map(StoragePartitionServer::close)
125 .orElse(CompletableFuture.completedFuture(null));
Madan Jampani15b8ef52016-02-02 17:35:05 -0800126 }
127
128 private CompletableFuture<Void> closeClient() {
129 if (client != null) {
130 return client.close();
131 }
132 return CompletableFuture.completedFuture(null);
133 }
134
135 private Address toAddress(NodeId nodeId) {
136 ControllerNode node = clusterService.getNode(nodeId);
137 return new Address(node.ip().toString(), node.tcpPort());
138 }
139
140 @Override
141 public boolean isOpen() {
142 return !isClosed.get() && isOpened.get();
143 }
144
145 @Override
146 public boolean isClosed() {
147 return isOpened.get() && isClosed.get();
148 }
Madan Jampanie14a09c2016-02-11 10:43:21 -0800149
150 /**
151 * Returns the partition information if this partition is locally managed i.e.
152 * this node is a active member of the partition.
153 * @return partition info
154 */
155 public Optional<PartitionInfo> info() {
156 return server.map(StoragePartitionServer::info);
157 }
Madan Jampani15b8ef52016-02-02 17:35:05 -0800158}