blob: 7795f771de598d1134057642cc928a6fba76b45c [file] [log] [blame]
Ayaka Koshibecc260d22015-08-04 17:13:38 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Ayaka Koshibecc260d22015-08-04 17:13:38 -07003 *
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 }
Yuta HIGUCHIf92598b2017-02-17 11:26:17 -080084 if (!cfg.latency().equals(DEF_DURATION)) {
dingdamud3a0b212017-05-16 11:18:27 +020085 //Convert the latency from Duration to long,
86 //so that it's computable in the latencyConstraint.
87 b.set(AnnotationKeys.LATENCY, String.valueOf(cfg.latency().toNanos()));
Ayaka Koshibecc260d22015-08-04 17:13:38 -070088 }
Ayaka Koshibe5373e762015-08-06 12:31:44 -070089 if (cfg.bandwidth() != DEF_BANDWIDTH) {
Ayaka Koshibecc260d22015-08-04 17:13:38 -070090 b.set(AnnotationKeys.BANDWIDTH, String.valueOf(cfg.bandwidth()));
91 }
Ayaka Koshibe2c59acf2015-09-08 15:37:47 -070092 if (cfg.isDurable() != null) {
93 b.set(AnnotationKeys.DURABLE, String.valueOf(cfg.isDurable()));
94 }
Ayaka Koshibecc260d22015-08-04 17:13:38 -070095 return DefaultAnnotations.union(an, b.build());
96 }
Ayaka Koshibe2c59acf2015-09-08 15:37:47 -070097
98 /**
99 * Generates a link description from a link description entity. The endpoints
100 * must be specified to indicate directionality.
101 *
102 * @param src the source ConnectPoint
103 * @param dst the destination ConnectPoint
104 * @param link the link config entity
105 * @return a linkDescription based on the config
106 */
107 public static LinkDescription descriptionOf(
108 ConnectPoint src, ConnectPoint dst, Link link) {
109 checkNotNull(src, "Must supply a source endpoint");
110 checkNotNull(dst, "Must supply a destination endpoint");
111 checkNotNull(link, "Must supply a link");
112 return new DefaultLinkDescription(
Yuta HIGUCHI0f4d63a2017-03-06 14:21:03 -0800113 src, dst, link.type(),
114 link.isExpected(),
115 (SparseAnnotations) link.annotations());
Ayaka Koshibe2c59acf2015-09-08 15:37:47 -0700116 }
117
118 /**
119 * Generates a link description from a link config entity. This is for
120 * links that cannot be discovered and has to be injected. The endpoints
121 * must be specified to indicate directionality.
122 *
123 * @param src the source ConnectPoint
124 * @param dst the destination ConnectPoint
125 * @param link the link config entity
126 * @return a linkDescription based on the config
127 */
128 public static LinkDescription descriptionOf(
129 ConnectPoint src, ConnectPoint dst, BasicLinkConfig link) {
130 checkNotNull(src, "Must supply a source endpoint");
131 checkNotNull(dst, "Must supply a destination endpoint");
132 checkNotNull(link, "Must supply a link config");
Yuta HIGUCHI0f4d63a2017-03-06 14:21:03 -0800133 // Only allowed link is expected link
134 boolean expected = link.isAllowed();
Ayaka Koshibe2c59acf2015-09-08 15:37:47 -0700135 return new DefaultLinkDescription(
Yuta HIGUCHI0f4d63a2017-03-06 14:21:03 -0800136 src, dst, link.type(),
137 expected,
138 combine(link, DefaultAnnotations.EMPTY));
Ayaka Koshibe2c59acf2015-09-08 15:37:47 -0700139 }
Ayaka Koshibecc260d22015-08-04 17:13:38 -0700140}