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

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.net;
  19. /** A base class that implements interface Node
  20.  * 
  21.  */
  22. public class NodeBase implements Node {
  23.   public final static char PATH_SEPARATOR = '/';
  24.   public final static String PATH_SEPARATOR_STR = "/";
  25.   public final static String ROOT = ""; // string representation of root
  26.   
  27.   protected String name; //host:port#
  28.   protected String location; //string representation of this node's location
  29.   protected int level; //which level of the tree the node resides
  30.   protected Node parent; //its parent
  31.   
  32.   /** Default constructor */
  33.   public NodeBase() {
  34.   }
  35.   
  36.   /** Construct a node from its path
  37.    * @param path 
  38.    *   a concatenation of this node's location, the path seperator, and its name 
  39.    */
  40.   public NodeBase(String path) {
  41.     path = normalize(path);
  42.     int index = path.lastIndexOf(PATH_SEPARATOR);
  43.     if (index== -1) {
  44.       set(ROOT, path);
  45.     } else {
  46.       set(path.substring(index+1), path.substring(0, index));
  47.     }
  48.   }
  49.   
  50.   /** Construct a node from its name and its location
  51.    * @param name this node's name 
  52.    * @param location this node's location 
  53.    */
  54.   public NodeBase(String name, String location) {
  55.     set(name, normalize(location));
  56.   }
  57.   
  58.   /** Construct a node from its name and its location
  59.    * @param name this node's name 
  60.    * @param location this node's location 
  61.    * @param parent this node's parent node
  62.    * @param level this node's level in the tree
  63.    */
  64.   public NodeBase(String name, String location, Node parent, int level) {
  65.     set(name, normalize(location));
  66.     this.parent = parent;
  67.     this.level = level;
  68.   }
  69.   /* set this node's name and location */
  70.   private void set(String name, String location) {
  71.     if (name != null && name.contains(PATH_SEPARATOR_STR))
  72.       throw new IllegalArgumentException(
  73.                                          "Network location name contains /: "+name);
  74.     this.name = (name==null)?"":name;
  75.     this.location = location;      
  76.   }
  77.   
  78.   /** Return this node's name */
  79.   public String getName() { return name; }
  80.   
  81.   /** Return this node's network location */
  82.   public String getNetworkLocation() { return location; }
  83.   
  84.   /** Set this node's network location */
  85.   public void setNetworkLocation(String location) { this.location = location; }
  86.   
  87.   /** Return this node's path */
  88.   public static String getPath(Node node) {
  89.     return node.getNetworkLocation()+PATH_SEPARATOR_STR+node.getName();
  90.   }
  91.   
  92.   /** Return this node's string representation */
  93.   public String toString() {
  94.     return getPath(this);
  95.   }
  96.   /** Normalize a path */
  97.   static public String normalize(String path) {
  98.     if (path == null || path.length() == 0) return ROOT;
  99.     
  100.     if (path.charAt(0) != PATH_SEPARATOR) {
  101.       throw new IllegalArgumentException(
  102.                                          "Network Location path does not start with "
  103.                                          +PATH_SEPARATOR_STR+ ": "+path);
  104.     }
  105.     
  106.     int len = path.length();
  107.     if (path.charAt(len-1) == PATH_SEPARATOR) {
  108.       return path.substring(0, len-1);
  109.     }
  110.     return path;
  111.   }
  112.   
  113.   /** Return this node's parent */
  114.   public Node getParent() { return parent; }
  115.   
  116.   /** Set this node's parent */
  117.   public void setParent(Node parent) {
  118.     this.parent = parent;
  119.   }
  120.   
  121.   /** Return this node's level in the tree.
  122.    * E.g. the root of a tree returns 0 and its children return 1
  123.    */
  124.   public int getLevel() { return level; }
  125.   
  126.   /** Set this node's level in the tree */
  127.   public void setLevel(int level) {
  128.     this.level = level;
  129.   }
  130. }