ConfProp.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.eclipse.server;
  19. import java.util.HashMap;
  20. import java.util.Map;
  21. import org.apache.hadoop.conf.Configuration;
  22. public enum ConfProp {
  23.   /**
  24.    * Property name for the Hadoop location name
  25.    */
  26.   PI_LOCATION_NAME(true, "location.name", "New Hadoop location"),
  27.   /**
  28.    * Property name for the master host name (the Job tracker)
  29.    */
  30.   PI_JOB_TRACKER_HOST(true, "jobtracker.host", "localhost"),
  31.   /**
  32.    * Property name for the DFS master host name (the Name node)
  33.    */
  34.   PI_NAME_NODE_HOST(true, "namenode.host", "localhost"),
  35.   /**
  36.    * Property name for the installation directory on the master node
  37.    */
  38.   // PI_INSTALL_DIR(true, "install.dir", "/dir/hadoop-version/"),
  39.   /**
  40.    * User name to use for Hadoop operations
  41.    */
  42.   PI_USER_NAME(true, "user.name", System.getProperty("user.name",
  43.       "who are you?")),
  44.   /**
  45.    * Property name for SOCKS proxy activation
  46.    */
  47.   PI_SOCKS_PROXY_ENABLE(true, "socks.proxy.enable", "no"),
  48.   /**
  49.    * Property name for the SOCKS proxy host
  50.    */
  51.   PI_SOCKS_PROXY_HOST(true, "socks.proxy.host", "host"),
  52.   /**
  53.    * Property name for the SOCKS proxy port
  54.    */
  55.   PI_SOCKS_PROXY_PORT(true, "socks.proxy.port", "1080"),
  56.   /**
  57.    * TCP port number for the name node
  58.    */
  59.   PI_NAME_NODE_PORT(true, "namenode.port", "50040"),
  60.   /**
  61.    * TCP port number for the job tracker
  62.    */
  63.   PI_JOB_TRACKER_PORT(true, "jobtracker.port", "50020"),
  64.   /**
  65.    * Are the Map/Reduce and the Distributed FS masters hosted on the same
  66.    * machine?
  67.    */
  68.   PI_COLOCATE_MASTERS(true, "masters.colocate", "yes"),
  69.   /**
  70.    * Property name for naming the job tracker (URI). This property is related
  71.    * to {@link #PI_MASTER_HOST_NAME}
  72.    */
  73.   JOB_TRACKER_URI(false, "mapred.job.tracker", "localhost:50020"),
  74.   /**
  75.    * Property name for naming the default file system (URI).
  76.    */
  77.   FS_DEFAULT_URI(false, "fs.default.name", "hdfs://localhost:50040/"),
  78.   /**
  79.    * Property name for the default socket factory:
  80.    */
  81.   SOCKET_FACTORY_DEFAULT(false, "hadoop.rpc.socket.factory.class.default",
  82.       "org.apache.hadoop.net.StandardSocketFactory"),
  83.   /**
  84.    * Property name for the SOCKS server URI.
  85.    */
  86.   SOCKS_SERVER(false, "hadoop.socks.server", "host:1080"),
  87.   ;
  88.   /**
  89.    * Map <property name> -> ConfProp
  90.    */
  91.   private static Map<String, ConfProp> map;
  92.   private static synchronized void registerProperty(String name,
  93.       ConfProp prop) {
  94.     if (ConfProp.map == null)
  95.       ConfProp.map = new HashMap<String, ConfProp>();
  96.     ConfProp.map.put(name, prop);
  97.   }
  98.   public static ConfProp getByName(String propName) {
  99.     return map.get(propName);
  100.   }
  101.   public final String name;
  102.   public final String defVal;
  103.   ConfProp(boolean internal, String name, String defVal) {
  104.     if (internal)
  105.       name = "eclipse.plug-in." + name;
  106.     this.name = name;
  107.     this.defVal = defVal;
  108.     ConfProp.registerProperty(name, this);
  109.   }
  110.   String get(Configuration conf) {
  111.     return conf.get(name);
  112.   }
  113.   void set(Configuration conf, String value) {
  114.     assert value != null;
  115.     conf.set(name, value);
  116.   }
  117. }