blob: fe235051296b991f5d5c23d709ac031d8aa3f97a [file] [log] [blame]
alshabibed0951f2015-10-02 21:39:27 +02001/*
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 */
16package org.onosproject.incubator.net.mcast.impl;
17
18import org.apache.felix.scr.annotations.Activate;
19import org.apache.felix.scr.annotations.Component;
20import org.apache.felix.scr.annotations.Deactivate;
21import org.apache.felix.scr.annotations.Reference;
22import org.apache.felix.scr.annotations.ReferenceCardinality;
23import org.apache.felix.scr.annotations.Service;
alshabibed0951f2015-10-02 21:39:27 +020024import org.onosproject.event.AbstractListenerManager;
25import org.onosproject.net.ConnectPoint;
26import org.onosproject.net.mcast.McastEvent;
27import org.onosproject.net.mcast.McastListener;
28import org.onosproject.net.mcast.McastRoute;
alshabib79e52872015-12-07 16:01:01 -080029import org.onosproject.net.mcast.McastStore;
30import org.onosproject.net.mcast.McastStoreDelegate;
alshabibed0951f2015-10-02 21:39:27 +020031import org.onosproject.net.mcast.MulticastRouteService;
alshabibed0951f2015-10-02 21:39:27 +020032import org.slf4j.Logger;
33
alshabib79e52872015-12-07 16:01:01 -080034import java.util.Set;
alshabibed0951f2015-10-02 21:39:27 +020035
alshabib79e52872015-12-07 16:01:01 -080036import static com.google.common.base.Preconditions.checkNotNull;
alshabibed0951f2015-10-02 21:39:27 +020037import static org.slf4j.LoggerFactory.getLogger;
38
39/**
40 * An implementation of a multicast route table.
41 */
42@Component(immediate = true)
43@Service
44public class MulticastRouteManager
45 extends AbstractListenerManager<McastEvent, McastListener>
46 implements MulticastRouteService {
47 //TODO: add MulticastRouteAdminService
48
alshabibed0951f2015-10-02 21:39:27 +020049 private Logger log = getLogger(getClass());
50
alshabib79e52872015-12-07 16:01:01 -080051 private final McastStoreDelegate delegate = new InternalMcastStoreDelegate();
alshabibed0951f2015-10-02 21:39:27 +020052
53 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
alshabib79e52872015-12-07 16:01:01 -080054 protected McastStore store;
alshabibed0951f2015-10-02 21:39:27 +020055
56 @Activate
57 public void activate() {
58
59 eventDispatcher.addSink(McastEvent.class, listenerRegistry);
alshabib79e52872015-12-07 16:01:01 -080060 store.setDelegate(delegate);
alshabibed0951f2015-10-02 21:39:27 +020061
62 log.info("Started");
63 }
64
65 @Deactivate
66 public void deactivate() {
67 log.info("Stopped");
68 }
69
70 @Override
71 public void add(McastRoute route) {
alshabib79e52872015-12-07 16:01:01 -080072 checkNotNull(route, "Route cannot be null");
73 store.storeRoute(route, McastStore.Type.ADD);
alshabibed0951f2015-10-02 21:39:27 +020074 }
75
76 @Override
77 public void remove(McastRoute route) {
alshabib79e52872015-12-07 16:01:01 -080078 checkNotNull(route, "Route cannot be null");
79 store.storeRoute(route, McastStore.Type.REMOVE);
alshabibed0951f2015-10-02 21:39:27 +020080 }
81
82 @Override
83 public void addSource(McastRoute route, ConnectPoint connectPoint) {
alshabib79e52872015-12-07 16:01:01 -080084 checkNotNull(route, "Route cannot be null");
85 checkNotNull(connectPoint, "Source cannot be null");
86 store.storeSource(route, connectPoint);
alshabibed0951f2015-10-02 21:39:27 +020087 }
88
89 @Override
90 public void addSink(McastRoute route, ConnectPoint connectPoint) {
alshabib79e52872015-12-07 16:01:01 -080091 checkNotNull(route, "Route cannot be null");
92 checkNotNull(connectPoint, "Sink cannot be null");
93 store.storeSink(route, connectPoint, McastStore.Type.ADD);
alshabibc6b60802015-10-06 11:42:50 +020094
alshabibed0951f2015-10-02 21:39:27 +020095 }
96
97
98 @Override
99 public void removeSink(McastRoute route, ConnectPoint connectPoint) {
alshabibc6b60802015-10-06 11:42:50 +0200100
alshabib79e52872015-12-07 16:01:01 -0800101 checkNotNull(route, "Route cannot be null");
102 checkNotNull(connectPoint, "Sink cannot be null");
103
104 store.storeSink(route, connectPoint, McastStore.Type.REMOVE);
alshabibed0951f2015-10-02 21:39:27 +0200105 }
106
107 @Override
108 public ConnectPoint fetchSource(McastRoute route) {
alshabib79e52872015-12-07 16:01:01 -0800109 return store.sourceFor(route);
alshabibed0951f2015-10-02 21:39:27 +0200110 }
111
112 @Override
alshabib79e52872015-12-07 16:01:01 -0800113 public Set<ConnectPoint> fetchSinks(McastRoute route) {
114 return store.sinksFor(route);
115 }
116
117 private class InternalMcastStoreDelegate implements McastStoreDelegate {
118 @Override
119 public void notify(McastEvent event) {
120 post(event);
121 }
alshabibed0951f2015-10-02 21:39:27 +0200122 }
123}