blob: eb60c7f0a7c6c832b7f6a05df5500a58f9579042 [file] [log] [blame]
Amit Ghosh47243cb2017-07-26 05:08:53 +01001/*
Brian O'Connor10570622017-08-03 22:45:53 -07002 * Copyright 2017-present Open Networking Foundation
Amit Ghosh47243cb2017-07-26 05:08:53 +01003 *
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.opencord.dhcpl2relay;
17
Amit Ghosh8951f042017-08-10 13:48:10 +010018import com.fasterxml.jackson.databind.JsonNode;
19import com.fasterxml.jackson.databind.node.ArrayNode;
20
21import com.google.common.collect.ImmutableSet;
22
Amit Ghosh47243cb2017-07-26 05:08:53 +010023import org.onosproject.core.ApplicationId;
24import org.onosproject.net.ConnectPoint;
25import org.onosproject.net.config.Config;
26
Amit Ghosh8951f042017-08-10 13:48:10 +010027import java.util.HashSet;
28import java.util.Set;
29
Amit Ghosh47243cb2017-07-26 05:08:53 +010030
31/**
32 * DHCP Relay Config class.
33 */
34public class DhcpL2RelayConfig extends Config<ApplicationId> {
35
Amit Ghosh8951f042017-08-10 13:48:10 +010036 private static final String DHCP_CONNECT_POINTS = "dhcpServerConnectPoints";
Amit Ghosh47243cb2017-07-26 05:08:53 +010037
38 @Override
39 public boolean isValid() {
40
Amit Ghosh8951f042017-08-10 13:48:10 +010041 return hasOnlyFields(DHCP_CONNECT_POINTS);
Amit Ghosh47243cb2017-07-26 05:08:53 +010042 }
43
44 /**
Amit Ghosh8951f042017-08-10 13:48:10 +010045 * Returns the dhcp server connect points.
Amit Ghosh47243cb2017-07-26 05:08:53 +010046 *
Amit Ghosh8951f042017-08-10 13:48:10 +010047 * @return dhcp server connect points
Amit Ghosh47243cb2017-07-26 05:08:53 +010048 */
Amit Ghosh8951f042017-08-10 13:48:10 +010049 public Set<ConnectPoint> getDhcpServerConnectPoint() {
50 if (object == null) {
51 return new HashSet<ConnectPoint>();
52 }
53
54 if (!object.has(DHCP_CONNECT_POINTS)) {
55 return ImmutableSet.of();
56 }
57
58 ImmutableSet.Builder<ConnectPoint> builder = ImmutableSet.builder();
59 ArrayNode arrayNode = (ArrayNode) object.path(DHCP_CONNECT_POINTS);
60 for (JsonNode jsonNode : arrayNode) {
61 String portName = jsonNode.asText(null);
62 if (portName == null) {
63 return null;
64 }
65 try {
66 builder.add(ConnectPoint.deviceConnectPoint(portName));
67 } catch (IllegalArgumentException e) {
68 return null;
69 }
70 }
71 return builder.build();
Amit Ghosh47243cb2017-07-26 05:08:53 +010072 }
73}