blob: e7ba259e1a4a4ae1f495d5877ce2b460d504c855 [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() {
alshabibed0951f2015-10-02 21:39:27 +020058 eventDispatcher.addSink(McastEvent.class, listenerRegistry);
alshabib79e52872015-12-07 16:01:01 -080059 store.setDelegate(delegate);
alshabibed0951f2015-10-02 21:39:27 +020060
61 log.info("Started");
62 }
63
64 @Deactivate
65 public void deactivate() {
66 log.info("Stopped");
67 }
68
69 @Override
70 public void add(McastRoute route) {
alshabib79e52872015-12-07 16:01:01 -080071 checkNotNull(route, "Route cannot be null");
72 store.storeRoute(route, McastStore.Type.ADD);
alshabibed0951f2015-10-02 21:39:27 +020073 }
74
75 @Override
76 public void remove(McastRoute route) {
alshabib79e52872015-12-07 16:01:01 -080077 checkNotNull(route, "Route cannot be null");
78 store.storeRoute(route, McastStore.Type.REMOVE);
alshabibed0951f2015-10-02 21:39:27 +020079 }
80
81 @Override
Jonathan Hart07eb0412016-02-08 16:42:29 -080082 public Set<McastRoute> getRoutes() {
83 return store.getRoutes();
84 }
85
86 @Override
alshabibed0951f2015-10-02 21:39:27 +020087 public void addSource(McastRoute route, ConnectPoint connectPoint) {
alshabib79e52872015-12-07 16:01:01 -080088 checkNotNull(route, "Route cannot be null");
89 checkNotNull(connectPoint, "Source cannot be null");
90 store.storeSource(route, connectPoint);
alshabibed0951f2015-10-02 21:39:27 +020091 }
92
93 @Override
94 public void addSink(McastRoute route, ConnectPoint connectPoint) {
alshabib79e52872015-12-07 16:01:01 -080095 checkNotNull(route, "Route cannot be null");
96 checkNotNull(connectPoint, "Sink cannot be null");
97 store.storeSink(route, connectPoint, McastStore.Type.ADD);
alshabibc6b60802015-10-06 11:42:50 +020098
alshabibed0951f2015-10-02 21:39:27 +020099 }
100
alshabibed0951f2015-10-02 21:39:27 +0200101 @Override
102 public void removeSink(McastRoute route, ConnectPoint connectPoint) {
alshabibc6b60802015-10-06 11:42:50 +0200103
alshabib79e52872015-12-07 16:01:01 -0800104 checkNotNull(route, "Route cannot be null");
105 checkNotNull(connectPoint, "Sink cannot be null");
106
107 store.storeSink(route, connectPoint, McastStore.Type.REMOVE);
alshabibed0951f2015-10-02 21:39:27 +0200108 }
109
110 @Override
111 public ConnectPoint fetchSource(McastRoute route) {
alshabib79e52872015-12-07 16:01:01 -0800112 return store.sourceFor(route);
alshabibed0951f2015-10-02 21:39:27 +0200113 }
114
115 @Override
alshabib79e52872015-12-07 16:01:01 -0800116 public Set<ConnectPoint> fetchSinks(McastRoute route) {
117 return store.sinksFor(route);
118 }
119
120 private class InternalMcastStoreDelegate implements McastStoreDelegate {
121 @Override
122 public void notify(McastEvent event) {
123 post(event);
124 }
alshabibed0951f2015-10-02 21:39:27 +0200125 }
126}