ConnectionHeader.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.ipc;
  19. import java.io.DataInput;
  20. import java.io.DataOutput;
  21. import java.io.IOException;
  22. import org.apache.commons.logging.Log;
  23. import org.apache.commons.logging.LogFactory;
  24. import org.apache.hadoop.io.Text;
  25. import org.apache.hadoop.io.Writable;
  26. import org.apache.hadoop.security.UnixUserGroupInformation;
  27. import org.apache.hadoop.security.UserGroupInformation;
  28. /**
  29.  * The IPC connection header sent by the client to the server
  30.  * on connection establishment.
  31.  */
  32. class ConnectionHeader implements Writable {
  33.   public static final Log LOG = LogFactory.getLog(ConnectionHeader.class);
  34.   
  35.   private String protocol;
  36.   private UserGroupInformation ugi = new UnixUserGroupInformation();
  37.   
  38.   public ConnectionHeader() {}
  39.   
  40.   /**
  41.    * Create a new {@link ConnectionHeader} with the given <code>protocol</code>
  42.    * and {@link UserGroupInformation}. 
  43.    * @param protocol protocol used for communication between the IPC client
  44.    *                 and the server
  45.    * @param ugi {@link UserGroupInformation} of the client communicating with
  46.    *            the server
  47.    */
  48.   public ConnectionHeader(String protocol, UserGroupInformation ugi) {
  49.     this.protocol = protocol;
  50.     this.ugi = ugi;
  51.   }
  52.   @Override
  53.   public void readFields(DataInput in) throws IOException {
  54.     protocol = Text.readString(in);
  55.     if (protocol.isEmpty()) {
  56.       protocol = null;
  57.     }
  58.     
  59.     boolean ugiPresent = in.readBoolean();
  60.     if (ugiPresent) {
  61.       ugi.readFields(in);
  62.     } else {
  63.       ugi = null;
  64.     }
  65.   }
  66.   @Override
  67.   public void write(DataOutput out) throws IOException {
  68.     Text.writeString(out, (protocol == null) ? "" : protocol);
  69.     if (ugi != null) {
  70.       out.writeBoolean(true);
  71.       ugi.write(out);
  72.     } else {
  73.       out.writeBoolean(false);
  74.     }
  75.   }
  76.   public String getProtocol() {
  77.     return protocol;
  78.   }
  79.   public UserGroupInformation getUgi() {
  80.     return ugi;
  81.   }
  82.   public String toString() {
  83.     return protocol + "-" + ugi;
  84.   }
  85. }