blob: ff74dbde22c34e44cd1a607a116521832dea2585 [file] [log] [blame]
Ayaka Koshibecc260d22015-08-04 17:13:38 -07001/*
2 * Copyright 2014-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.link.impl;
17
18import static org.slf4j.LoggerFactory.getLogger;
Ayaka Koshibe2c59acf2015-09-08 15:37:47 -070019import static com.google.common.base.Preconditions.checkNotNull;
Ayaka Koshibecc260d22015-08-04 17:13:38 -070020
21import java.time.Duration;
22
23import org.onosproject.net.AnnotationKeys;
Ray Milkeya4122362015-08-18 15:19:08 -070024import org.onosproject.net.config.ConfigOperator;
Thomas Vachuska4998caa2015-08-26 13:28:38 -070025import org.onosproject.net.config.basics.BasicLinkConfig;
Ayaka Koshibe2c59acf2015-09-08 15:37:47 -070026import org.onosproject.net.ConnectPoint;
Ayaka Koshibecc260d22015-08-04 17:13:38 -070027import org.onosproject.net.DefaultAnnotations;
28import org.onosproject.net.Link;
29import org.onosproject.net.SparseAnnotations;
30import org.onosproject.net.link.DefaultLinkDescription;
31import org.onosproject.net.link.LinkDescription;
32import org.slf4j.Logger;
33
34/**
35 * Implementations of merge policies for various sources of link configuration
36 * information. This includes applications, provides, and network configurations.
37 */
Ayaka Koshibe5373e762015-08-06 12:31:44 -070038public final class BasicLinkOperator implements ConfigOperator {
Ayaka Koshibecc260d22015-08-04 17:13:38 -070039
Ayaka Koshibe5373e762015-08-06 12:31:44 -070040 private static final long DEF_BANDWIDTH = -1L;
Thomas Vachuska41fe1ec2015-12-03 23:17:02 -080041 private static final double DEF_METRIC = -1;
Ayaka Koshibe5373e762015-08-06 12:31:44 -070042 private static final Duration DEF_DURATION = Duration.ofNanos(-1L);
Ayaka Koshibecc260d22015-08-04 17:13:38 -070043 private static final Logger log = getLogger(BasicLinkOperator.class);
44
45 private BasicLinkOperator() {
46 }
47
48 /**
49 * Generates a LinkDescription containing fields from a LinkDescription and
50 * a LinkConfig.
51 *
52 * @param cfg the link config entity from network config
53 * @param descr a LinkDescription
54 * @return LinkDescription based on both sources
55 */
56 public static LinkDescription combine(BasicLinkConfig cfg, LinkDescription descr) {
57 if (cfg == null) {
58 return descr;
59 }
60
61 // cfg.type() defaults to DIRECT, so there is a risk of unwanted override.
62 // do we want this behavior?
63 Link.Type type = descr.type();
64 if (cfg.type() != type) {
65 type = cfg.type();
66 }
67
68 SparseAnnotations sa = combine(cfg, descr.annotations());
69 return new DefaultLinkDescription(descr.src(), descr.dst(), type, sa);
70 }
71
72 /**
73 * Generates an annotation from an existing annotation and LinkConfig.
74 *
75 * @param cfg the link config entity from network config
76 * @param an the annotation
77 * @return annotation combining both sources
78 */
79 public static SparseAnnotations combine(BasicLinkConfig cfg, SparseAnnotations an) {
80 DefaultAnnotations.Builder b = DefaultAnnotations.builder();
Thomas Vachuska41fe1ec2015-12-03 23:17:02 -080081 if (cfg.metric() != DEF_METRIC) {
82 b.set(AnnotationKeys.METRIC, String.valueOf(cfg.metric()));
83 }
Ayaka Koshibe5373e762015-08-06 12:31:44 -070084 if (cfg.latency() != DEF_DURATION) {
Ayaka Koshibecc260d22015-08-04 17:13:38 -070085 b.set(AnnotationKeys.LATENCY, cfg.latency().toString());
86 }
Ayaka Koshibe5373e762015-08-06 12:31:44 -070087 if (cfg.bandwidth() != DEF_BANDWIDTH) {
Ayaka Koshibecc260d22015-08-04 17:13:38 -070088 b.set(AnnotationKeys.BANDWIDTH, String.valueOf(cfg.bandwidth()));
89 }
Ayaka Koshibe2c59acf2015-09-08 15:37:47 -070090 if (cfg.isDurable() != null) {
91 b.set(AnnotationKeys.DURABLE, String.valueOf(cfg.isDurable()));
92 }
Ayaka Koshibecc260d22015-08-04 17:13:38 -070093 return DefaultAnnotations.union(an, b.build());
94 }
Ayaka Koshibe2c59acf2015-09-08 15:37:47 -070095
96 /**
97 * Generates a link description from a link description entity. The endpoints
98 * must be specified to indicate directionality.
99 *
100 * @param src the source ConnectPoint
101 * @param dst the destination ConnectPoint
102 * @param link the link config entity
103 * @return a linkDescription based on the config
104 */
105 public static LinkDescription descriptionOf(
106 ConnectPoint src, ConnectPoint dst, Link link) {
107 checkNotNull(src, "Must supply a source endpoint");
108 checkNotNull(dst, "Must supply a destination endpoint");
109 checkNotNull(link, "Must supply a link");
110 return new DefaultLinkDescription(
111 src, dst, link.type(), (SparseAnnotations) link.annotations());
112 }
113
114 /**
115 * Generates a link description from a link config entity. This is for
116 * links that cannot be discovered and has to be injected. The endpoints
117 * must be specified to indicate directionality.
118 *
119 * @param src the source ConnectPoint
120 * @param dst the destination ConnectPoint
121 * @param link the link config entity
122 * @return a linkDescription based on the config
123 */
124 public static LinkDescription descriptionOf(
125 ConnectPoint src, ConnectPoint dst, BasicLinkConfig link) {
126 checkNotNull(src, "Must supply a source endpoint");
127 checkNotNull(dst, "Must supply a destination endpoint");
128 checkNotNull(link, "Must supply a link config");
129 return new DefaultLinkDescription(
130 src, dst, link.type(), combine(link, DefaultAnnotations.EMPTY));
131 }
Ayaka Koshibecc260d22015-08-04 17:13:38 -0700132}