Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 package org.chromium.net; | |
| 5 | |
| 6 import java.util.regex.Pattern; | |
| 7 | |
| 8 /** | |
| 9 * A set of generic utility methods. | |
| 10 */ | |
| 11 class CronetUtil { | |
| 12 private static final String VALID_IP_EXPR = "^(([0-9]|[1-9][0-9]|1[0-9]{2}|2 [0-4][0-9]|25[0-5])" | |
|
mef
2015/11/09 16:59:28
I'm very skeptical about this.
kapishnikov
2015/11/09 19:14:20
I can add more tests to https://codereview.chromiu
| |
| 13 + "\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$"; | |
| 14 private static final String VALID_HOST_EXPR = "^(([a-zA-Z0-9]|[a-zA-Z0-9][a- zA-Z0-9\\-]*" | |
| 15 + "[a-zA-Z0-9])\\.)*([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\-]*[a-zA-Z0- 9])$"; | |
| 16 private static final Pattern VALID_IP_PATTERN = Pattern.compile(VALID_IP_EXP R); | |
| 17 private static final Pattern VALID_HOST_PATTERN = Pattern.compile(VALID_HOST _EXPR); | |
| 18 | |
| 19 private CronetUtil() {} | |
| 20 | |
| 21 /** | |
| 22 * Checks whether a given string that represents a host name is valid. | |
| 23 * | |
| 24 * @param hostName host name to check. | |
| 25 * @return true if the string is a valid host name. | |
| 26 */ | |
| 27 static boolean isValidHostName(String hostName) { | |
| 28 return VALID_HOST_PATTERN.matcher(hostName).matches(); | |
| 29 } | |
| 30 | |
| 31 /** | |
| 32 * Checks whether a given string that represents an IPv4 address is valid. | |
| 33 * | |
| 34 * @param addr IPv4 address to check. | |
| 35 * @return true if the string is a valid IPv4 address. | |
| 36 */ | |
| 37 static boolean isValidIPv4(String addr) { | |
| 38 return VALID_IP_PATTERN.matcher(addr).matches(); | |
| 39 } | |
| 40 } | |
| OLD | NEW |