blob: d7d26259831b47c0f8df088f8ba76e3f1c661752 [file] [log] [blame]
Sho SHIMIZU91210a72015-04-29 12:54:28 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Sho SHIMIZU91210a72015-04-29 12:54:28 -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;
17
Marc De Leenheer2c305302015-12-07 21:37:44 -080018import com.google.common.collect.ImmutableSet;
Sho SHIMIZU91210a72015-04-29 12:54:28 -070019import org.onlab.util.Frequency;
Marc De Leenheerb0fb41d2015-12-03 22:16:53 -080020import org.onlab.util.Spectrum;
Sho SHIMIZU91210a72015-04-29 12:54:28 -070021
Marc De Leenheer2c305302015-12-07 21:37:44 -080022import java.util.List;
Sho SHIMIZU91210a72015-04-29 12:54:28 -070023import java.util.Objects;
Marc De Leenheer2c305302015-12-07 21:37:44 -080024import java.util.Set;
25import java.util.SortedSet;
Marc De Leenheer2c305302015-12-07 21:37:44 -080026import java.util.stream.Collectors;
27import java.util.stream.IntStream;
Sho SHIMIZU91210a72015-04-29 12:54:28 -070028
29import static com.google.common.base.Preconditions.checkArgument;
30import static com.google.common.base.Preconditions.checkNotNull;
HIGUCHI Yutaca8cb4e2015-12-11 13:57:05 -080031import static org.onosproject.net.ChannelSpacing.CHL_12P5GHZ;
32import static org.onosproject.net.ChannelSpacing.CHL_6P25GHZ;
33import static org.onosproject.net.GridType.DWDM;
34import static org.onosproject.net.GridType.FLEX;
Sho SHIMIZU91210a72015-04-29 12:54:28 -070035
36/**
37 * Implementation of Lambda representing OCh (Optical Channel) Signal.
38 *
39 * <p>
40 * See ITU G.709 "Interfaces for the Optical Transport Network (OTN)".
HIGUCHI Yutaca8cb4e2015-12-11 13:57:05 -080041 * ITU G.694.1 "Spectral grids for WDM applications: DWDM frequency grid".
Sho SHIMIZU91210a72015-04-29 12:54:28 -070042 * </p>
43 */
Sho SHIMIZU91210a72015-04-29 12:54:28 -070044public class OchSignal implements Lambda {
45
Marc De Leenheer2c305302015-12-07 21:37:44 -080046 public static final Set<Integer> FIXED_GRID_SLOT_GRANULARITIES = ImmutableSet.of(1, 2, 4, 8);
Marc De Leenheerc9733082015-06-04 12:22:38 -070047 private static final GridType DEFAULT_OCH_GRIDTYPE = GridType.DWDM;
48 private static final ChannelSpacing DEFAULT_CHANNEL_SPACING = ChannelSpacing.CHL_50GHZ;
49
Sho SHIMIZU91210a72015-04-29 12:54:28 -070050 private final GridType gridType;
51 private final ChannelSpacing channelSpacing;
Marc De Leenheer2c305302015-12-07 21:37:44 -080052 // Nominal central frequency = 193.1 THz + spacingMultiplier * channelSpacing
Sho SHIMIZU91210a72015-04-29 12:54:28 -070053 private final int spacingMultiplier;
54 // Slot width = slotGranularity * 12.5 GHz
55 private final int slotGranularity;
56
57 /**
58 * Creates an instance with the specified arguments.
Sho SHIMIZU4fea4fd2015-05-07 11:50:23 -070059 * It it recommended to use {@link Lambda#ochSignal(GridType, ChannelSpacing, int, int)}
60 * unless you want to use the concrete type, OchSignal, directly.
Sho SHIMIZU91210a72015-04-29 12:54:28 -070061 *
62 * @param gridType grid type
63 * @param channelSpacing channel spacing
64 * @param spacingMultiplier channel spacing multiplier
65 * @param slotGranularity slot width granularity
66 */
Sho SHIMIZU4fea4fd2015-05-07 11:50:23 -070067 public OchSignal(GridType gridType, ChannelSpacing channelSpacing,
Sho SHIMIZU91210a72015-04-29 12:54:28 -070068 int spacingMultiplier, int slotGranularity) {
69 this.gridType = checkNotNull(gridType);
70 this.channelSpacing = checkNotNull(channelSpacing);
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070071 // Negative values are permitted for spacingMultiplier
Sho SHIMIZU91210a72015-04-29 12:54:28 -070072 this.spacingMultiplier = spacingMultiplier;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070073 checkArgument(slotGranularity > 0, "slotGranularity must be larger than 0, received %s", slotGranularity);
Sho SHIMIZU91210a72015-04-29 12:54:28 -070074 this.slotGranularity = slotGranularity;
75 }
76
77 /**
HIGUCHI Yutaca8cb4e2015-12-11 13:57:05 -080078 * Creates an instance of {@link OchSignal} representing a flex grid frequency slot.
79 * @param index slot index (relative to "the center frequency" 193.1THz)
80 * @return FlexGrid {@link OchSignal}
81 */
82 public static OchSignal newFlexGridSlot(int index) {
83 return new OchSignal(FLEX, CHL_6P25GHZ, index, 1);
84 }
85
86 /**
87 * Creates an instance of {@link OchSignal} representing a fixed DWDM frequency slot.
88 * @param spacing channel spacing
89 * @param index slot index (relative to "the center frequency" 193.1THz)
90 * @return DWDM {@link OchSignal}
91 */
92 public static OchSignal newDwdmSlot(ChannelSpacing spacing, int index) {
93 return new OchSignal(DWDM, spacing, index,
94 (int) (spacing.frequency().asHz() / CHL_12P5GHZ.frequency().asHz()));
95 }
96
97 /**
Sho SHIMIZU91210a72015-04-29 12:54:28 -070098 * Returns grid type.
99 *
100 * @return grid type
101 */
102 public GridType gridType() {
103 return gridType;
104 }
105
106 /**
107 * Returns channel spacing.
108 *
109 * @return channel spacing
110 */
111 public ChannelSpacing channelSpacing() {
112 return channelSpacing;
113 }
114
115 /**
116 * Returns spacing multiplier.
117 *
118 * @return spacing multiplier
119 */
120 public int spacingMultiplier() {
121 return spacingMultiplier;
122 }
123
124 /**
Marc De Leenheer2c305302015-12-07 21:37:44 -0800125 * Returns slot width granularity.
Sho SHIMIZU91210a72015-04-29 12:54:28 -0700126 *
Marc De Leenheer2c305302015-12-07 21:37:44 -0800127 * @return slot width granularity
Sho SHIMIZU91210a72015-04-29 12:54:28 -0700128 */
129 public int slotGranularity() {
130 return slotGranularity;
131 }
132
133 /**
134 * Returns central frequency in MHz.
135 *
136 * @return frequency in MHz
137 */
138 public Frequency centralFrequency() {
Marc De Leenheerb0fb41d2015-12-03 22:16:53 -0800139 return Spectrum.CENTER_FREQUENCY.add(channelSpacing().frequency().multiply(spacingMultiplier));
Sho SHIMIZU91210a72015-04-29 12:54:28 -0700140 }
141
142 /**
143 * Returns slot width.
144 *
145 * @return slot width
146 */
147 public Frequency slotWidth() {
Marc De Leenheer2c305302015-12-07 21:37:44 -0800148 return ChannelSpacing.CHL_12P5GHZ.frequency().multiply(slotGranularity);
149 }
150
151 /**
152 * Convert fixed grid OCh signal to sorted set of flex grid slots with 6.25 GHz spacing and 12.5 GHz slot width.
153 *
154 * @param ochSignal fixed grid lambda
155 * @return sorted set of flex grid OCh lambdas
156 */
157 public static SortedSet<OchSignal> toFlexGrid(OchSignal ochSignal) {
HIGUCHI Yutaee66aad2016-04-27 12:14:41 -0700158 checkArgument(ochSignal.gridType() != GridType.FLEX, ochSignal.gridType());
159 checkArgument(ochSignal.channelSpacing() != ChannelSpacing.CHL_6P25GHZ, ochSignal.channelSpacing());
160 checkArgument(FIXED_GRID_SLOT_GRANULARITIES.contains(ochSignal.slotGranularity()), ochSignal.slotGranularity());
Marc De Leenheer2c305302015-12-07 21:37:44 -0800161
162 int startMultiplier = (int) (1 - ochSignal.slotGranularity() +
163 ochSignal.spacingMultiplier() * ochSignal.channelSpacing().frequency().asHz() /
164 ChannelSpacing.CHL_6P25GHZ.frequency().asHz());
165
Marc De Leenheer2c305302015-12-07 21:37:44 -0800166 return IntStream.range(0, ochSignal.slotGranularity())
167 .mapToObj(i -> new OchSignal(GridType.FLEX, ChannelSpacing.CHL_6P25GHZ, startMultiplier + 2 * i, 1))
HIGUCHI Yutaca8cb4e2015-12-11 13:57:05 -0800168 .collect(Collectors.toCollection(DefaultOchSignalComparator::newOchSignalTreeSet));
Marc De Leenheer2c305302015-12-07 21:37:44 -0800169 }
170
171 /**
172 * Convert list of lambdas with flex grid 6.25 GHz spacing and 12.5 GHz width into fixed grid OCh signal.
173 *
174 * @param lambdas list of flex grid lambdas in sorted order
175 * @param spacing desired fixed grid spacing
176 * @return fixed grid lambda
177 */
178 public static OchSignal toFixedGrid(List<OchSignal> lambdas, ChannelSpacing spacing) {
179 // Number of slots of 12.5 GHz that fit into requested spacing
180 int ratio = (int) (spacing.frequency().asHz() / ChannelSpacing.CHL_12P5GHZ.frequency().asHz());
HIGUCHI Yutaee66aad2016-04-27 12:14:41 -0700181 checkArgument(lambdas.size() == ratio, "%s != %s", lambdas.size(), ratio);
182 lambdas.forEach(x -> checkArgument(x.gridType() == GridType.FLEX, x.gridType()));
183 lambdas.forEach(x -> checkArgument(x.channelSpacing() == ChannelSpacing.CHL_6P25GHZ, x.channelSpacing()));
184 lambdas.forEach(x -> checkArgument(x.slotGranularity() == 1, x.slotGranularity()));
Marc De Leenheer2c305302015-12-07 21:37:44 -0800185 // Consecutive lambdas (multiplier increments by 2 because spacing is 6.25 GHz but slot width is 12.5 GHz)
186 IntStream.range(1, lambdas.size())
187 .forEach(i -> checkArgument(
188 lambdas.get(i).spacingMultiplier() == lambdas.get(i - 1).spacingMultiplier() + 2));
Marc De Leenheer2c305302015-12-07 21:37:44 -0800189 // Multiplier sits in middle of given lambdas, then convert from 6.25 to requested spacing
HIGUCHI Yutaca8cb4e2015-12-11 13:57:05 -0800190 int spacingMultiplier = lambdas.stream()
191 .mapToInt(OchSignal::spacingMultiplier)
192 .sum() / lambdas.size()
193 / (int) (spacing.frequency().asHz() / CHL_6P25GHZ.frequency().asHz());
Marc De Leenheer2c305302015-12-07 21:37:44 -0800194
195 return new OchSignal(GridType.DWDM, spacing, spacingMultiplier, lambdas.size());
Sho SHIMIZU91210a72015-04-29 12:54:28 -0700196 }
197
198 @Override
199 public int hashCode() {
200 return Objects.hash(gridType, channelSpacing, spacingMultiplier, slotGranularity);
201 }
202
203 @Override
204 public boolean equals(Object obj) {
205 if (this == obj) {
206 return true;
207 }
208 if (!(obj instanceof OchSignal)) {
209 return false;
210 }
211 final OchSignal other = (OchSignal) obj;
212 return Objects.equals(this.gridType, other.gridType)
213 && Objects.equals(this.channelSpacing, other.channelSpacing)
214 && Objects.equals(this.spacingMultiplier, other.spacingMultiplier)
215 && Objects.equals(this.slotGranularity, other.slotGranularity);
216 }
217
218 @Override
219 public String toString() {
Naoki Shiota0b5ccd22015-12-11 15:47:01 -0800220 return String.format("%s{%+d×%.2fGHz ± %.2fGHz}",
221 this.getClass().getSimpleName(),
222 spacingMultiplier,
Marc De Leenheer6215fbc2016-02-05 16:14:08 -0800223 (double) channelSpacing.frequency().asHz() / Frequency.ofGHz(1).asHz(),
Diego Garciaaab99472019-01-10 13:53:31 +0100224 (double) slotGranularity * channelSpacing.frequency().asHz()
Naoki Shiota0b5ccd22015-12-11 15:47:01 -0800225 / Frequency.ofGHz(1).asHz() / 2.0);
Sho SHIMIZU91210a72015-04-29 12:54:28 -0700226 }
227}