ca01c43481e2ee64768f2b310e896de16eeb64a5
[onosfw.git] /
1 /*
2  * Copyright 2015 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  */
16 package org.onosproject.vtnrsc.flowClassifier.impl;
17
18 import org.apache.felix.scr.annotations.Activate;
19 import org.apache.felix.scr.annotations.Component;
20 import org.apache.felix.scr.annotations.Deactivate;
21 import org.apache.felix.scr.annotations.Reference;
22 import org.apache.felix.scr.annotations.ReferenceCardinality;
23 import org.apache.felix.scr.annotations.Service;
24 import org.onlab.util.KryoNamespace;
25 import org.onosproject.store.serializers.KryoNamespaces;
26 import org.onosproject.store.service.EventuallyConsistentMap;
27 import org.onosproject.store.service.MultiValuedTimestamp;
28 import org.onosproject.store.service.StorageService;
29 import org.onosproject.store.service.WallClockTimestamp;
30 import org.onosproject.vtnrsc.FlowClassifierId;
31 import org.onosproject.vtnrsc.FlowClassifier;
32 import org.onosproject.vtnrsc.flowClassifier.FlowClassifierService;
33 import org.slf4j.Logger;
34
35 import static org.slf4j.LoggerFactory.getLogger;
36 import static com.google.common.base.Preconditions.checkNotNull;
37
38 import com.google.common.collect.ImmutableList;
39
40 /**
41  * Provides implementation of the Flow Classifier Service.
42  */
43 @Component(immediate = true)
44 @Service
45 public class FlowClassifierManager implements FlowClassifierService {
46
47     private final Logger log = getLogger(FlowClassifierManager.class);
48
49     private static final String FLOW_CLASSIFIER_NOT_NULL = "Flow Classifier cannot be null";
50     private static final String FLOW_CLASSIFIER_ID_NOT_NULL = "Flow Classifier Id cannot be null";
51
52     private EventuallyConsistentMap<FlowClassifierId, FlowClassifier> flowClassifierStore;
53     @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
54     protected StorageService storageService;
55
56     @Activate
57     private void activate() {
58         KryoNamespace.Builder serializer = KryoNamespace.newBuilder()
59                 .register(KryoNamespaces.API)
60                 .register(MultiValuedTimestamp.class)
61                 .register(FlowClassifier.class);
62         flowClassifierStore = storageService
63                 .<FlowClassifierId, FlowClassifier>eventuallyConsistentMapBuilder()
64                 .withName("flowclassifierstore").withSerializer(serializer)
65                 .withTimestampProvider((k, v) -> new WallClockTimestamp()).build();
66         log.info("Flow Classifier service activated");
67     }
68
69     @Deactivate
70     private void deactivate() {
71         flowClassifierStore.destroy();
72         log.info("Flow Classifier service deactivated");
73     }
74
75     @Override
76     public boolean createFlowClassifier(FlowClassifier flowClassifier) {
77         log.debug("createFlowClassifier");
78         checkNotNull(flowClassifier, FLOW_CLASSIFIER_NOT_NULL);
79         FlowClassifierId id = flowClassifier.flowClassifierId();
80
81         flowClassifierStore.put(id, flowClassifier);
82         if (!flowClassifierStore.containsKey(id)) {
83             log.debug("Flow Classifier creation is failed whose identifier is {}.", id.toString());
84             return false;
85         }
86         return true;
87     }
88
89     @Override
90     public Iterable<FlowClassifier> getFlowClassifiers() {
91         return ImmutableList.copyOf(flowClassifierStore.values());
92     }
93
94     @Override
95     public boolean hasFlowClassifier(FlowClassifierId id) {
96         checkNotNull(id, FLOW_CLASSIFIER_ID_NOT_NULL);
97         return flowClassifierStore.containsKey(id);
98     }
99
100     @Override
101     public FlowClassifier getFlowClassifier(FlowClassifierId id) {
102         checkNotNull(id, FLOW_CLASSIFIER_ID_NOT_NULL);
103         return flowClassifierStore.get(id);
104     }
105
106     @Override
107     public boolean updateFlowClassifier(FlowClassifier flowClassifier) {
108         checkNotNull(flowClassifier, FLOW_CLASSIFIER_NOT_NULL);
109         FlowClassifierId id = flowClassifier.flowClassifierId();
110         flowClassifierStore.put(id, flowClassifier);
111         return true;
112     }
113
114     @Override
115     public boolean removeFlowClassifier(FlowClassifierId id) {
116         checkNotNull(id, FLOW_CLASSIFIER_ID_NOT_NULL);
117         flowClassifierStore.remove(id);
118         if (flowClassifierStore.containsKey(id)) {
119             log.debug("The Flow Classifier removal is failed whose identifier is {}", id.toString());
120             return false;
121         }
122         return true;
123     }
124 }