|
@@ -20,6 +20,7 @@ package org.apache.hadoop.fs;
|
|
|
import java.util.Iterator;
|
|
|
import java.util.NoSuchElementException;
|
|
|
|
|
|
+import com.google.common.base.Preconditions;
|
|
|
import org.apache.hadoop.classification.InterfaceAudience;
|
|
|
import org.apache.hadoop.classification.InterfaceStability;
|
|
|
import org.apache.hadoop.fs.FileSystem.Statistics.StatisticsData;
|
|
@@ -81,6 +82,9 @@ public class FileSystemStorageStatistics extends StorageStatistics {
|
|
|
}
|
|
|
|
|
|
private static Long fetch(StatisticsData data, String key) {
|
|
|
+ Preconditions.checkArgument(key != null,
|
|
|
+ "The stat key of FileSystemStorageStatistics should not be null!");
|
|
|
+
|
|
|
switch (key) {
|
|
|
case "bytesRead":
|
|
|
return data.getBytesRead();
|
|
@@ -107,6 +111,10 @@ public class FileSystemStorageStatistics extends StorageStatistics {
|
|
|
|
|
|
FileSystemStorageStatistics(String name, FileSystem.Statistics stats) {
|
|
|
super(name);
|
|
|
+ Preconditions.checkArgument(stats != null,
|
|
|
+ "FileSystem.Statistics can not be null");
|
|
|
+ Preconditions.checkArgument(stats.getData() != null,
|
|
|
+ "FileSystem.Statistics can not have null data");
|
|
|
this.stats = stats;
|
|
|
}
|
|
|
|