INodeDirectoryWithQuota.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:5k
- /**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package org.apache.hadoop.hdfs.server.namenode;
- import org.apache.hadoop.fs.permission.PermissionStatus;
- import org.apache.hadoop.hdfs.protocol.QuotaExceededException;
- /**
- * Directory INode class that has a quota restriction
- */
- class INodeDirectoryWithQuota extends INodeDirectory {
- private long nsQuota; /// NameSpace quota
- private long nsCount;
- private long dsQuota; /// disk space quota
- private long diskspace;
-
- /** Convert an existing directory inode to one with the given quota
- *
- * @param nsQuota Namespace quota to be assigned to this inode
- * @param dsQuota Diskspace quota to be assigned to this indoe
- * @param other The other inode from which all other properties are copied
- */
- INodeDirectoryWithQuota(long nsQuota, long dsQuota, INodeDirectory other)
- throws QuotaExceededException {
- super(other);
- INode.DirCounts counts = new INode.DirCounts();
- other.spaceConsumedInTree(counts);
- this.nsCount= counts.getNsCount();
- this.diskspace = counts.getDsCount();
- setQuota(nsQuota, dsQuota);
- }
-
- /** constructor with no quota verification */
- INodeDirectoryWithQuota(
- PermissionStatus permissions, long modificationTime,
- long nsQuota, long dsQuota)
- {
- super(permissions, modificationTime);
- this.nsQuota = nsQuota;
- this.dsQuota = dsQuota;
- this.nsCount = 1;
- }
-
- /** constructor with no quota verification */
- INodeDirectoryWithQuota(String name, PermissionStatus permissions,
- long nsQuota, long dsQuota)
- {
- super(name, permissions);
- this.nsQuota = nsQuota;
- this.dsQuota = dsQuota;
- this.nsCount = 1;
- }
-
- /** Get this directory's namespace quota
- * @return this directory's namespace quota
- */
- long getNsQuota() {
- return nsQuota;
- }
-
- /** Get this directory's diskspace quota
- * @return this directory's diskspace quota
- */
- long getDsQuota() {
- return dsQuota;
- }
-
- /** Set this directory's quota
- *
- * @param nsQuota Namespace quota to be set
- * @param dsQuota diskspace quota to be set
- * @throws QuotaExceededException if quota is modified and the modified quota
- * is too low.
- *
- */
- void setQuota(long newNsQuota, long newDsQuota) throws QuotaExceededException {
- // if a quota is not chaged, ignore that in verification.
- if ((newNsQuota >=0 && newNsQuota != nsQuota && newNsQuota < nsCount) ||
- (newDsQuota >=0 && newDsQuota != dsQuota && newDsQuota < diskspace)) {
- throw new QuotaExceededException(newNsQuota, nsCount,
- newDsQuota, diskspace);
- }
- nsQuota = newNsQuota;
- dsQuota = newDsQuota;
- }
-
-
- @Override
- DirCounts spaceConsumedInTree(DirCounts counts) {
- counts.nsCount += nsCount;
- counts.dsCount += diskspace;
- return counts;
- }
- /** Get the number of names in the subtree rooted at this directory
- * @return the size of the subtree rooted at this directory
- */
- long numItemsInTree() {
- return nsCount;
- }
-
- long diskspaceConsumed() {
- return diskspace;
- }
-
- /** Update the size of the tree
- *
- * @param nsDelta the change of the tree size
- * @param dsDelta change to disk space occupied
- * @throws QuotaExceededException if the changed size is greater
- * than the quota
- */
- void updateNumItemsInTree(long nsDelta, long dsDelta) throws
- QuotaExceededException {
- long newCount = nsCount + nsDelta;
- long newDiskspace = diskspace + dsDelta;
- if (nsDelta>0 || dsDelta>0) {
- verifyQuota(nsQuota, newCount, dsQuota, newDiskspace);
- }
- nsCount = newCount;
- diskspace = newDiskspace;
- }
-
- /**
- * Sets namespace and diskspace take by the directory rooted
- * at this INode. This should be used carefully. It does not check
- * for quota violations.
- *
- * @param namespace size of the directory to be set
- * @param diskspace disk space take by all the nodes under this directory
- */
- void setSpaceConsumed(long namespace, long diskspace) {
- this.nsCount = namespace;
- this.diskspace = diskspace;
- }
-
- /** Verify if the namespace count disk space satisfies the quota restriction
- * @throws QuotaExceededException if the given quota is less than the count
- */
- private static void verifyQuota(long nsQuota, long nsCount,
- long dsQuota, long diskspace)
- throws QuotaExceededException {
- if ((nsQuota >= 0 && nsQuota < nsCount) ||
- (dsQuota >= 0 && dsQuota < diskspace)) {
- throw new QuotaExceededException(nsQuota, nsCount, dsQuota, diskspace);
- }
- }
- }