PermissionStatus.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.fs.permission;
  19. import org.apache.hadoop.io.*;
  20. import java.io.DataInput;
  21. import java.io.DataOutput;
  22. import java.io.IOException;
  23. /**
  24.  * Store permission related information.
  25.  */
  26. public class PermissionStatus implements Writable {
  27.   static final WritableFactory FACTORY = new WritableFactory() {
  28.     public Writable newInstance() { return new PermissionStatus(); }
  29.   };
  30.   static {                                      // register a ctor
  31.     WritableFactories.setFactory(PermissionStatus.class, FACTORY);
  32.   }
  33.   /** Create an immutable {@link PermissionStatus} object. */
  34.   public static PermissionStatus createImmutable(
  35.       String user, String group, FsPermission permission) {
  36.     return new PermissionStatus(user, group, permission) {
  37.       public PermissionStatus applyUMask(FsPermission umask) {
  38.         throw new UnsupportedOperationException();
  39.       }
  40.       public void readFields(DataInput in) throws IOException {
  41.         throw new UnsupportedOperationException();
  42.       }
  43.     };
  44.   }
  45.   private String username;
  46.   private String groupname;
  47.   private FsPermission permission;
  48.   private PermissionStatus() {}
  49.   /** Constructor */
  50.   public PermissionStatus(String user, String group, FsPermission permission) {
  51.     username = user;
  52.     groupname = group;
  53.     this.permission = permission;
  54.   }
  55.   /** Return user name */
  56.   public String getUserName() {return username;}
  57.   /** Return group name */
  58.   public String getGroupName() {return groupname;}
  59.   /** Return permission */
  60.   public FsPermission getPermission() {return permission;}
  61.   /**
  62.    * Apply umask.
  63.    * @see FsPermission#applyUMask(FsPermission)
  64.    */
  65.   public PermissionStatus applyUMask(FsPermission umask) {
  66.     permission = permission.applyUMask(umask);
  67.     return this;
  68.   }
  69.   /** {@inheritDoc} */
  70.   public void readFields(DataInput in) throws IOException {
  71.     username = Text.readString(in);
  72.     groupname = Text.readString(in);
  73.     permission = FsPermission.read(in);
  74.   }
  75.   /** {@inheritDoc} */
  76.   public void write(DataOutput out) throws IOException {
  77.     write(out, username, groupname, permission);
  78.   }
  79.   /**
  80.    * Create and initialize a {@link PermissionStatus} from {@link DataInput}.
  81.    */
  82.   public static PermissionStatus read(DataInput in) throws IOException {
  83.     PermissionStatus p = new PermissionStatus();
  84.     p.readFields(in);
  85.     return p;
  86.   }
  87.   /**
  88.    * Serialize a {@link PermissionStatus} from its base components.
  89.    */
  90.   public static void write(DataOutput out,
  91.                            String username, 
  92.                            String groupname,
  93.                            FsPermission permission) throws IOException {
  94.     Text.writeString(out, username);
  95.     Text.writeString(out, groupname);
  96.     permission.write(out);
  97.   }
  98.   /** {@inheritDoc} */
  99.   public String toString() {
  100.     return username + ":" + groupname + ":" + permission;
  101.   }
  102. }