blob: 1b4ac2bfdb22a21d292ab8bb60a32b81b9e294f1 [file] [log] [blame]
Sho SHIMIZU47e7b802015-08-18 08:54:30 -07001/*
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.net.newresource.impl;
17
18import com.google.common.annotations.Beta;
19import org.apache.felix.scr.annotations.Activate;
20import org.apache.felix.scr.annotations.Component;
21import org.apache.felix.scr.annotations.Deactivate;
22import org.apache.felix.scr.annotations.Reference;
23import org.apache.felix.scr.annotations.ReferenceCardinality;
24import org.onosproject.net.link.LinkListener;
25import org.onosproject.net.link.LinkService;
26import org.onosproject.net.newresource.ResourceAdminService;
27
28import java.util.concurrent.ExecutorService;
29import java.util.concurrent.Executors;
30
31import static org.onlab.util.Tools.groupedThreads;
32
33/**
34 * A class registering resources when they are detected.
35 */
36@Component(immediate = true, enabled = false)
37@Beta
38public final class ResourceRegistrar {
39
40 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
41 protected ResourceAdminService adminService;
42
43 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
44 protected LinkService linkService;
45
46 private LinkListener linkListener;
47 private final ExecutorService executor =
48 Executors.newSingleThreadExecutor(groupedThreads("onos/resource", "registrar"));
49
50 @Activate
51 public void activate() {
52 linkListener = new ResourceLinkListener(adminService, executor);
53 linkService.addListener(linkListener);
54 }
55
56 @Deactivate
57 public void deactivate() {
58 linkService.removeListener(linkListener);
59 }
60}