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

网格计算

开发平台:

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.hdfs.protocol;
  19. import java.io.IOException;
  20. /** 
  21.  * This exception is thrown when modification to HDFS results in violation
  22.  * of a directory quota. A directory quota might be namespace quota (limit 
  23.  * on number of files and directories) or a diskspace quota (limit on space 
  24.  * taken by all the file under the directory tree). <br> <br>
  25.  * 
  26.  * The message for the exception specifies the directory where the quota
  27.  * was violated and actual quotas.
  28.  */
  29. public final class QuotaExceededException extends IOException {
  30.   private static final long serialVersionUID = 1L;
  31.   private String pathName;
  32.   private long nsQuota;
  33.   private long nsCount;
  34.   private long dsQuota;
  35.   private long diskspace;
  36.   
  37.   public QuotaExceededException(String msg) {
  38.     super(msg);
  39.   }
  40.   
  41.   public QuotaExceededException(long nsQuota, long nsCount,
  42.                                 long dsQuota, long diskspace) {
  43.     this.nsQuota = nsQuota;
  44.     this.nsCount = nsCount;
  45.     this.dsQuota = dsQuota;
  46.     this.diskspace = diskspace;
  47.   }
  48.   
  49.   public void setPathName(String path) {
  50.     this.pathName = path;
  51.   }
  52.   
  53.   public String getMessage() {
  54.     String msg = super.getMessage();
  55.     if (msg == null) {
  56.       return "The quota" + (pathName==null?"":(" of " + pathName)) + 
  57.           " is exceeded: namespace quota=" + nsQuota + " file count=" + 
  58.           nsCount + ", diskspace quota=" + dsQuota + 
  59.           " diskspace=" + diskspace; 
  60.     } else {
  61.       return msg;
  62.     }
  63.   }
  64. }