blob: 1b22081f524442f4013b6dc1fa907a21c7410310 [file] [log] [blame]
/*
* 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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* 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.ozone.recon.api.types;
import org.apache.hadoop.ozone.recon.ReconConstants;
import java.util.Set;
import java.util.HashSet;
import java.util.Arrays;
/**
* Class to encapsulate namespace metadata summaries from OM.
*/
public class NSSummary {
private int numOfFiles;
private long sizeOfFiles;
private int[] fileSizeBucket;
private Set<Long> childDir;
private String dirName;
public NSSummary() {
this(0, 0L, new int[ReconConstants.NUM_OF_BINS],
new HashSet<>(), "");
}
public NSSummary(int numOfFiles,
long sizeOfFiles,
int[] bucket,
Set<Long> childDir,
String dirName) {
this.numOfFiles = numOfFiles;
this.sizeOfFiles = sizeOfFiles;
setFileSizeBucket(bucket);
this.childDir = childDir;
this.dirName = dirName;
}
public int getNumOfFiles() {
return numOfFiles;
}
public long getSizeOfFiles() {
return sizeOfFiles;
}
public int[] getFileSizeBucket() {
return Arrays.copyOf(fileSizeBucket, ReconConstants.NUM_OF_BINS);
}
public Set<Long> getChildDir() {
return childDir;
}
public String getDirName() {
return dirName;
}
public void setNumOfFiles(int numOfFiles) {
this.numOfFiles = numOfFiles;
}
public void setSizeOfFiles(long sizeOfFiles) {
this.sizeOfFiles = sizeOfFiles;
}
public void setFileSizeBucket(int[] fileSizeBucket) {
this.fileSizeBucket = Arrays.copyOf(fileSizeBucket,
ReconConstants.NUM_OF_BINS);
}
public void setChildDir(Set<Long> childDir) {
this.childDir = childDir;
}
public void setDirName(String dirName) {
this.dirName = dirName;
}
public void addChildDir(long childId) {
if (this.childDir.contains(childId)) {
return;
}
this.childDir.add(childId);
}
public void removeChildDir(long childId) {
if (this.childDir.contains(childId)) {
this.childDir.remove(childId);
}
}
}