blob: cbc046f97dab0398da32ddb9beb7412ba4e549a1 [file] [log] [blame]
Ayaka Koshibecc260d22015-08-04 17:13:38 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
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
Ayaka Koshibecc260d22015-08-04 17:13:38 -070061 Link.Type type = descr.type();
Yuta HIGUCHI3142f642017-06-07 11:12:45 -070062 if (cfg.isTypeConfigured()) {
63 if (cfg.type() != type) {
64 type = cfg.type();
65 }
Ayaka Koshibecc260d22015-08-04 17:13:38 -070066 }
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();
Yuta HIGUCHI9eed0b12017-06-07 11:59:18 -070081 b.putAll(an);
Thomas Vachuska41fe1ec2015-12-03 23:17:02 -080082 if (cfg.metric() != DEF_METRIC) {
83 b.set(AnnotationKeys.METRIC, String.valueOf(cfg.metric()));
84 }
Yuta HIGUCHIf92598b2017-02-17 11:26:17 -080085 if (!cfg.latency().equals(DEF_DURATION)) {
dingdamud3a0b212017-05-16 11:18:27 +020086 //Convert the latency from Duration to long,
87 //so that it's computable in the latencyConstraint.
88 b.set(AnnotationKeys.LATENCY, String.valueOf(cfg.latency().toNanos()));
Ayaka Koshibecc260d22015-08-04 17:13:38 -070089 }
Ayaka Koshibe5373e762015-08-06 12:31:44 -070090 if (cfg.bandwidth() != DEF_BANDWIDTH) {
Ayaka Koshibecc260d22015-08-04 17:13:38 -070091 b.set(AnnotationKeys.BANDWIDTH, String.valueOf(cfg.bandwidth()));
92 }
Ayaka Koshibe2c59acf2015-09-08 15:37:47 -070093 if (cfg.isDurable() != null) {
94 b.set(AnnotationKeys.DURABLE, String.valueOf(cfg.isDurable()));
95 }
Yuta HIGUCHI9eed0b12017-06-07 11:59:18 -070096 return b.build();
Ayaka Koshibecc260d22015-08-04 17:13:38 -070097 }
Ayaka Koshibe2c59acf2015-09-08 15:37:47 -070098
99 /**
100 * Generates a link description from a link description entity. The endpoints
101 * must be specified to indicate directionality.
102 *
103 * @param src the source ConnectPoint
104 * @param dst the destination ConnectPoint
105 * @param link the link config entity
106 * @return a linkDescription based on the config
107 */
108 public static LinkDescription descriptionOf(
109 ConnectPoint src, ConnectPoint dst, Link link) {
110 checkNotNull(src, "Must supply a source endpoint");
111 checkNotNull(dst, "Must supply a destination endpoint");
112 checkNotNull(link, "Must supply a link");
113 return new DefaultLinkDescription(
Yuta HIGUCHI0f4d63a2017-03-06 14:21:03 -0800114 src, dst, link.type(),
115 link.isExpected(),
116 (SparseAnnotations) link.annotations());
Ayaka Koshibe2c59acf2015-09-08 15:37:47 -0700117 }
118
119 /**
120 * Generates a link description from a link config entity. This is for
121 * links that cannot be discovered and has to be injected. The endpoints
122 * must be specified to indicate directionality.
123 *
124 * @param src the source ConnectPoint
125 * @param dst the destination ConnectPoint
126 * @param link the link config entity
127 * @return a linkDescription based on the config
128 */
129 public static LinkDescription descriptionOf(
130 ConnectPoint src, ConnectPoint dst, BasicLinkConfig link) {
131 checkNotNull(src, "Must supply a source endpoint");
132 checkNotNull(dst, "Must supply a destination endpoint");
133 checkNotNull(link, "Must supply a link config");
Yuta HIGUCHI0f4d63a2017-03-06 14:21:03 -0800134 // Only allowed link is expected link
135 boolean expected = link.isAllowed();
Ayaka Koshibe2c59acf2015-09-08 15:37:47 -0700136 return new DefaultLinkDescription(
Yuta HIGUCHI0f4d63a2017-03-06 14:21:03 -0800137 src, dst, link.type(),
138 expected,
139 combine(link, DefaultAnnotations.EMPTY));
Ayaka Koshibe2c59acf2015-09-08 15:37:47 -0700140 }
Ayaka Koshibecc260d22015-08-04 17:13:38 -0700141}