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

网格计算

开发平台:

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.mapred;
  19. import java.io.DataInput;
  20. import java.io.DataOutput;
  21. import java.io.IOException;
  22. import org.apache.hadoop.io.Text;
  23. import org.apache.hadoop.io.Writable;
  24. /**
  25.  * Class that contains the information regarding the Job Queues which are 
  26.  * maintained by the Hadoop Map/Reduce framework.
  27.  * 
  28.  */
  29. public class JobQueueInfo implements Writable {
  30.   private String queueName = "";
  31.   //The scheduling Information object is read back as String.
  32.   //Once the scheduling information is set there is no way to recover it.
  33.   private String schedulingInfo; 
  34.   
  35.   
  36.   /**
  37.    * Default constructor for Job Queue Info.
  38.    * 
  39.    */
  40.   public JobQueueInfo() {
  41.     
  42.   }
  43.   /**
  44.    * Construct a new JobQueueInfo object using the queue name and the
  45.    * scheduling information passed.
  46.    * 
  47.    * @param queueName Name of the job queue
  48.    * @param schedulingInfo Scheduling Information associated with the job
  49.    * queue
  50.    */
  51.   public JobQueueInfo(String queueName, String schedulingInfo) {
  52.     this.queueName = queueName;
  53.     this.schedulingInfo = schedulingInfo;
  54.   }
  55.   
  56.   
  57.   /**
  58.    * Set the queue name of the JobQueueInfo
  59.    * 
  60.    * @param queueName Name of the job queue.
  61.    */
  62.   public void setQueueName(String queueName) {
  63.     this.queueName = queueName;
  64.   }
  65.   /**
  66.    * Get the queue name from JobQueueInfo
  67.    * 
  68.    * @return queue name
  69.    */
  70.   public String getQueueName() {
  71.     return queueName;
  72.   }
  73.   /**
  74.    * Set the scheduling information associated to particular job queue
  75.    * 
  76.    * @param schedulingInfo
  77.    */
  78.   public void setSchedulingInfo(String schedulingInfo) {
  79.     this.schedulingInfo = schedulingInfo;
  80.   }
  81.   /**
  82.    * Gets the scheduling information associated to particular job queue.
  83.    * If nothing is set would return <b>"N/A"</b>
  84.    * 
  85.    * @return Scheduling information associated to particular Job Queue
  86.    */
  87.   public String getSchedulingInfo() {
  88.     if(schedulingInfo != null) {
  89.       return schedulingInfo;
  90.     }else {
  91.       return "N/A";
  92.     }
  93.   }
  94.   
  95.   @Override
  96.   public void readFields(DataInput in) throws IOException {
  97.     queueName = Text.readString(in);
  98.     schedulingInfo = Text.readString(in);
  99.   }
  100.   @Override
  101.   public void write(DataOutput out) throws IOException {
  102.     Text.writeString(out, queueName);
  103.     if(schedulingInfo!= null) {
  104.       Text.writeString(out, schedulingInfo);
  105.     }else {
  106.       Text.writeString(out, "N/A");
  107.     }
  108.   }
  109. }