Added support to update flows for induvidual security rule add/remove ,
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / src / main / java / org / opendaylight / ovsdb / hwvtepsouthbound / HwvtepConnectionInstance.java
1 /*
2  * Copyright (c) 2015 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.ovsdb.hwvtepsouthbound;
10
11 import java.util.HashMap;
12 import java.util.List;
13 import java.util.Map;
14 import java.util.Set;
15 import java.util.concurrent.ExecutionException;
16
17 import javax.annotation.Nonnull;
18
19 import org.opendaylight.controller.md.sal.common.api.clustering.Entity;
20 import org.opendaylight.controller.md.sal.common.api.clustering.EntityOwnershipCandidateRegistration;
21 import org.opendaylight.ovsdb.hwvtepsouthbound.transact.TransactCommand;
22 import org.opendaylight.ovsdb.hwvtepsouthbound.transact.TransactInvoker;
23 import org.opendaylight.ovsdb.hwvtepsouthbound.transact.TransactInvokerImpl;
24 import org.opendaylight.ovsdb.hwvtepsouthbound.transactions.md.TransactionInvoker;
25 import org.opendaylight.ovsdb.lib.EchoServiceCallbackFilters;
26 import org.opendaylight.ovsdb.lib.LockAquisitionCallback;
27 import org.opendaylight.ovsdb.lib.LockStolenCallback;
28 import org.opendaylight.ovsdb.lib.MonitorCallBack;
29 import org.opendaylight.ovsdb.lib.MonitorHandle;
30 import org.opendaylight.ovsdb.lib.OvsdbClient;
31 import org.opendaylight.ovsdb.lib.OvsdbConnectionInfo;
32 import org.opendaylight.ovsdb.lib.message.MonitorRequest;
33 import org.opendaylight.ovsdb.lib.message.MonitorRequestBuilder;
34 import org.opendaylight.ovsdb.lib.message.MonitorSelect;
35 import org.opendaylight.ovsdb.lib.message.TableUpdates;
36 import org.opendaylight.ovsdb.lib.notation.Row;
37 import org.opendaylight.ovsdb.lib.operations.Operation;
38 import org.opendaylight.ovsdb.lib.operations.OperationResult;
39 import org.opendaylight.ovsdb.lib.operations.TransactionBuilder;
40 import org.opendaylight.ovsdb.lib.schema.DatabaseSchema;
41 import org.opendaylight.ovsdb.lib.schema.GenericTableSchema;
42 import org.opendaylight.ovsdb.lib.schema.TableSchema;
43 import org.opendaylight.ovsdb.lib.schema.typed.TypedBaseTable;
44 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ovsdb.hwvtep.rev150901.HwvtepGlobalAugmentation;
45 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ovsdb.hwvtep.rev150901.hwvtep.global.attributes.ConnectionInfo;
46 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId;
47 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.Node;
48 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.NodeKey;
49 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
50 import org.slf4j.Logger;
51 import org.slf4j.LoggerFactory;
52
53 import com.google.common.collect.Lists;
54 import com.google.common.util.concurrent.ListenableFuture;
55
56 public class HwvtepConnectionInstance implements OvsdbClient{
57     private static final Logger LOG = LoggerFactory.getLogger(HwvtepConnectionInstance.class);
58     private ConnectionInfo connectionInfo;
59     private OvsdbClient client;
60     private InstanceIdentifier<Node> instanceIdentifier;
61     private TransactionInvoker txInvoker;
62     private Map<DatabaseSchema,TransactInvoker> transactInvokers;
63     private MonitorCallBack callback;
64     private volatile boolean hasDeviceOwnership = false;
65     private Entity connectedEntity;
66     private EntityOwnershipCandidateRegistration deviceOwnershipCandidateRegistration;
67     private HwvtepGlobalAugmentation initialCreatedData = null;
68
69
70     HwvtepConnectionInstance (ConnectionInfo key,OvsdbClient client,
71                     InstanceIdentifier<Node> iid, TransactionInvoker txInvoker) {
72         this.connectionInfo = key;
73         this.client = client;
74         this.instanceIdentifier = iid;
75         this.txInvoker = txInvoker;
76     }
77
78     public void transact(TransactCommand command) {
79         for (TransactInvoker transactInvoker: transactInvokers.values()) {
80             transactInvoker.invoke(command);
81         }
82     }
83
84     public void registerCallbacks() {
85         if ( this.callback == null) {
86             if(this.initialCreatedData != null) {
87                 this.updateConnectionAttributes();
88             }
89
90             try {
91                 List<String> databases = getDatabases().get();
92                 this.callback = new HwvtepMonitorCallback(this,txInvoker);
93                 for (String database : databases) {
94                     DatabaseSchema dbSchema = getSchema(database).get();
95                     if (dbSchema != null) {
96                         monitorAllTables(database, dbSchema, HwvtepSchemaConstants.databaseName);
97                     } else {
98                         LOG.warn("No schema reported for database {} for key {}",database,connectionInfo);
99                     }
100                 }
101             } catch (InterruptedException | ExecutionException e) {
102                 LOG.warn("Exception attempting to registerCallbacks {}: {}",connectionInfo,e);
103             }
104         }
105     }
106
107     public void createTransactInvokers() {
108         if (transactInvokers == null) {
109             try {
110                 transactInvokers = new HashMap<>();
111                 List<String> databases = getDatabases().get();
112                 for (String database : databases) {
113                     DatabaseSchema dbSchema = getSchema(database).get();
114                     if (dbSchema != null) {
115                         transactInvokers.put(dbSchema, new TransactInvokerImpl(this,dbSchema));
116                     }
117                 }
118             } catch (InterruptedException | ExecutionException e) {
119                 LOG.warn("Exception attempting to createTransactionInvokers {}: {}",connectionInfo,e);
120             }
121         }
122     }
123
124     private void monitorAllTables(String database, DatabaseSchema dbSchema, String filter) {
125         if((filter != null) && (!dbSchema.getName().equals(filter))) {
126             LOG.debug("Not monitoring tables in {}, filter: {}", dbSchema.getName(), filter);
127             return;
128         }
129         Set<String> tables = dbSchema.getTables();
130         if (tables != null) {
131             List<MonitorRequest> monitorRequests = Lists.newArrayList();
132             for (String tableName : tables) {
133                 LOG.debug("HwvtepSouthbound monitoring table {} in {}", tableName, dbSchema.getName());
134                 GenericTableSchema tableSchema = dbSchema.table(tableName, GenericTableSchema.class);
135                 Set<String> columns = tableSchema.getColumns();
136                 MonitorRequestBuilder<GenericTableSchema> monitorBuilder = MonitorRequestBuilder.builder(tableSchema);
137                 for (String column : columns) {
138                     monitorBuilder.addColumn(column);
139                 }
140                 monitorRequests.add(monitorBuilder.with(new MonitorSelect(true, true, true, true)).build());
141             }
142             this.callback.update(monitor(dbSchema, monitorRequests, callback),dbSchema);
143         } else {
144             LOG.warn("No tables for schema {} for database {} for key {}",dbSchema,database,connectionInfo);
145         }
146     }
147
148     private void updateConnectionAttributes() {
149         LOG.debug("Update attributes of ovsdb node ip: {} port: {}",
150                     this.initialCreatedData.getConnectionInfo().getRemoteIp(),
151                     this.initialCreatedData.getConnectionInfo().getRemotePort());
152         /*
153          * TODO: Do we have anything to update?
154          * Hwvtep doesn't have other_config or external_ids like
155          * Open_vSwitch. What else will be needed?
156          */
157     }
158
159     public ListenableFuture<List<String>> getDatabases() {
160         return client.getDatabases();
161     }
162
163     public ListenableFuture<DatabaseSchema> getSchema(String database) {
164         return client.getSchema(database);
165     }
166
167     public TransactionBuilder transactBuilder(DatabaseSchema dbSchema) {
168         return client.transactBuilder(dbSchema);
169     }
170
171     public ListenableFuture<List<OperationResult>> transact(DatabaseSchema dbSchema, List<Operation> operations) {
172         return client.transact(dbSchema, operations);
173     }
174
175     public <E extends TableSchema<E>> TableUpdates monitor(DatabaseSchema schema,
176                     List<MonitorRequest> monitorRequests, MonitorCallBack callback) {
177         return client.monitor(schema, monitorRequests, callback);
178     }
179
180     @Override
181     public <E extends TableSchema<E>> TableUpdates monitor(DatabaseSchema schema,
182                     List<MonitorRequest> monitorRequests, MonitorHandle monitorHandle, MonitorCallBack callback) {
183         return null;
184     }
185
186     public void cancelMonitor(MonitorHandle handler) {
187         client.cancelMonitor(handler);
188     }
189
190     public void lock(String lockId, LockAquisitionCallback lockedCallBack, LockStolenCallback stolenCallback) {
191         client.lock(lockId, lockedCallBack, stolenCallback);
192     }
193
194     public ListenableFuture<Boolean> steal(String lockId) {
195         return client.steal(lockId);
196     }
197
198     public ListenableFuture<Boolean> unLock(String lockId) {
199         return client.unLock(lockId);
200     }
201
202     public void startEchoService(EchoServiceCallbackFilters callbackFilters) {
203         client.startEchoService(callbackFilters);
204     }
205
206     public void stopEchoService() {
207         client.stopEchoService();
208     }
209
210     public OvsdbConnectionInfo getConnectionInfo() {
211         return client.getConnectionInfo();
212     }
213
214     public boolean isActive() {
215         return client.isActive();
216     }
217
218     public void disconnect() {
219         client.disconnect();
220     }
221
222     public DatabaseSchema getDatabaseSchema(String dbName) {
223         return client.getDatabaseSchema(dbName);
224     }
225
226     public <T extends TypedBaseTable<?>> T createTypedRowWrapper(Class<T> klazz) {
227         return client.createTypedRowWrapper(klazz);
228     }
229
230     public <T extends TypedBaseTable<?>> T createTypedRowWrapper(DatabaseSchema dbSchema, Class<T> klazz) {
231         return client.createTypedRowWrapper(dbSchema, klazz);
232     }
233
234     public <T extends TypedBaseTable<?>> T getTypedRowWrapper(Class<T> klazz, Row<GenericTableSchema> row) {
235         return client.getTypedRowWrapper(klazz, row);
236     }
237
238     public ConnectionInfo getMDConnectionInfo() {
239         return connectionInfo;
240     }
241
242     public void setMDConnectionInfo(ConnectionInfo key) {
243         this.connectionInfo = key;
244     }
245
246     public InstanceIdentifier<Node> getInstanceIdentifier() {
247         return instanceIdentifier;
248     }
249
250     public NodeKey getNodeKey() {
251         //TODO: What is the alternative here?
252         return getInstanceIdentifier().firstKeyOf(Node.class, NodeKey.class);
253     }
254
255     public NodeId getNodeId() {
256         return getNodeKey().getNodeId();
257     }
258
259     public void setInstanceIdentifier(InstanceIdentifier<Node> iid) {
260         this.instanceIdentifier = iid;
261     }
262
263     public Entity getConnectedEntity() {
264         return this.connectedEntity;
265     }
266
267     public void setConnectedEntity(Entity entity ) {
268         this.connectedEntity = entity;
269     }
270
271     public Boolean hasOvsdbClient(OvsdbClient otherClient) {
272         return client.equals(otherClient);
273     }
274
275     public Boolean getHasDeviceOwnership() {
276         return hasDeviceOwnership;
277     }
278
279     public void setHasDeviceOwnership(Boolean hasDeviceOwnership) {
280         if (hasDeviceOwnership != null) {
281             this.hasDeviceOwnership = hasDeviceOwnership;
282         }
283     }
284
285     public void setDeviceOwnershipCandidateRegistration(@Nonnull EntityOwnershipCandidateRegistration registration) {
286         this.deviceOwnershipCandidateRegistration = registration;
287     }
288
289     public void closeDeviceOwnershipCandidateRegistration() {
290         if (deviceOwnershipCandidateRegistration != null) {
291             this.deviceOwnershipCandidateRegistration.close();
292             setHasDeviceOwnership(Boolean.FALSE);
293         }
294     }
295
296     public void setHwvtepGlobalAugmentation(HwvtepGlobalAugmentation hwvtepGlobalData) {
297         this.initialCreatedData = hwvtepGlobalData;
298     }
299 }