Move netconf-console to apps/
[netconf.git] / apps / netconf-console / src / main / java / org / opendaylight / netconf / console / commands / NetconfCommandUtils.java
1 /*
2  * Copyright (c) 2016 Inocybe Technologies and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.netconf.console.commands;
10
11 import com.google.common.base.Strings;
12 import java.util.regex.Matcher;
13 import java.util.regex.Pattern;
14
15 public final class NetconfCommandUtils {
16
17     private static final Pattern IP_PATTERN = Pattern.compile(
18             "^([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\."
19                     + "([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\."
20                     + "([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\."
21                     + "([01]?\\d\\d?|2[0-4]\\d|25[0-5])$");
22
23     private NetconfCommandUtils() {
24
25     }
26
27     public static boolean isPortValid(final String devicePort) {
28         if (Strings.isNullOrEmpty(devicePort)) {
29             return false;
30         }
31         Integer port;
32         try {
33             port = Integer.parseInt(devicePort);
34         } catch (NumberFormatException e) {
35             return false;
36         }
37         return port >= 0 && port <= 65535;
38     }
39
40     public static boolean isIpValid(final String deviceIp) {
41         if (Strings.isNullOrEmpty(deviceIp)) {
42             return false;
43         }
44         Matcher matcher = IP_PATTERN.matcher(deviceIp);
45         return matcher.matches();
46     }
47 }