Chromium Code Reviews| Index: components/cronet/android/api/src/org/chromium/net/CronetUtil.java |
| diff --git a/components/cronet/android/api/src/org/chromium/net/CronetUtil.java b/components/cronet/android/api/src/org/chromium/net/CronetUtil.java |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1ca0af86508ce08f5bc9c810b981856937d7c5a9 |
| --- /dev/null |
| +++ b/components/cronet/android/api/src/org/chromium/net/CronetUtil.java |
| @@ -0,0 +1,42 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| +package org.chromium.net; |
| + |
| +import java.net.IDN; |
| +import java.util.regex.Pattern; |
| + |
| +/** |
| + * A set of generic utility methods. |
| + */ |
| +class CronetUtil { |
| + 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])" |
| + + "\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$"; |
| + private static final String VALID_HOST_EXPR = "^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\-]*" |
| + + "[a-zA-Z0-9])\\.)*([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\-]*[a-zA-Z0-9])$"; |
|
pauljensen
2015/11/17 19:01:23
Let's not reinvent the wheel. Please use either s
kapishnikov
2015/11/18 00:10:31
Calling native implementation would eliminate the
mef
2015/11/18 22:41:38
We've chatted with Andrei about it, and another op
pauljensen
2015/11/19 04:07:43
I looked around and I don't think we have any nati
pauljensen
2015/11/19 04:07:43
For IPv4 validation, you can use Os.inet_pton():
h
kapishnikov
2015/11/19 15:12:29
It looks that the Os class was added in Android 21
|
| + private static final Pattern VALID_IP_PATTERN = Pattern.compile(VALID_IP_EXPR); |
| + private static final Pattern VALID_HOST_PATTERN = Pattern.compile(VALID_HOST_EXPR); |
| + |
| + private CronetUtil() {} |
| + |
| + /** |
| + * Checks whether a given string that represents a host name is valid. |
| + * |
| + * @param hostName host name to check. |
| + * @return true if the string is a valid host name. |
| + */ |
| + static boolean isValidHostName(String hostName) { |
| + String ascii = IDN.toASCII(hostName); |
| + return VALID_HOST_PATTERN.matcher(ascii).matches(); |
| + } |
| + |
| + /** |
| + * Checks whether a given string that represents an IPv4 address is valid. |
| + * |
| + * @param addr IPv4 address to check. |
| + * @return true if the string is a valid IPv4 address. |
| + */ |
| + static boolean isValidIPv4(String addr) { |
| + return VALID_IP_PATTERN.matcher(addr).matches(); |
| + } |
| +} |