Util.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  1. /*
  2.  * Util.java
  3.  *
  4.  * Licensed to the Apache Software Foundation (ASF) under one
  5.  * or more contributor license agreements.  See the NOTICE file
  6.  * distributed with this work for additional information
  7.  * regarding copyright ownership.  The ASF licenses this file
  8.  * to you under the Apache License, Version 2.0 (the
  9.  * "License"); you may not use this file except in compliance
  10.  * with the License.  You may obtain a copy of the License at
  11.  *
  12.  *     http://www.apache.org/licenses/LICENSE-2.0
  13.  *
  14.  * Unless required by applicable law or agreed to in writing, software
  15.  * distributed under the License is distributed on an "AS IS" BASIS,
  16.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17.  * See the License for the specific language governing permissions and
  18.  * limitations under the License.
  19.  */
  20. package org.apache.hadoop.metrics.spi;
  21. import java.net.InetSocketAddress;
  22. import java.net.SocketAddress;
  23. import java.util.ArrayList;
  24. import java.util.List;
  25. /**
  26.  * Static utility methods
  27.  */
  28. public class Util {
  29.     
  30.   /**
  31.    * This class is not intended to be instantiated
  32.    */
  33.   private Util() {}
  34.     
  35.   /**
  36.    * Parses a space and/or comma separated sequence of server specifications
  37.    * of the form <i>hostname</i> or <i>hostname:port</i>.  If 
  38.    * the specs string is null, defaults to localhost:defaultPort.
  39.    * 
  40.    * @return a list of InetSocketAddress objects.
  41.    */
  42.   public static List<InetSocketAddress> parse(String specs, int defaultPort) {
  43.     List<InetSocketAddress> result = new ArrayList<InetSocketAddress>(1);
  44.     if (specs == null) {
  45.       result.add(new InetSocketAddress("localhost", defaultPort));
  46.     }
  47.     else {
  48.       String[] specStrings = specs.split("[ ,]+");
  49.       for (String specString : specStrings) {
  50.         int colon = specString.indexOf(':');
  51.         if (colon < 0 || colon == specString.length() - 1) {
  52.           result.add(new InetSocketAddress(specString, defaultPort));
  53.         } else {
  54.           String hostname = specString.substring(0, colon);
  55.           int port = Integer.parseInt(specString.substring(colon+1));
  56.           result.add(new InetSocketAddress(hostname, port));
  57.         }
  58.       }
  59.     }
  60.     return result;
  61.   }
  62.     
  63. }