本文整理汇总了Java中com.facebook.cache.disk.DiskStorage.DiskDumpInfo方法的典型用法代码示例。如果您正苦于以下问题:Java DiskStorage.DiskDumpInfo方法的具体用法?Java DiskStorage.DiskDumpInfo怎么用?Java DiskStorage.DiskDumpInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.facebook.cache.disk.DiskStorage
的用法示例。
在下文中一共展示了DiskStorage.DiskDumpInfo方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: diskcache
import com.facebook.cache.disk.DiskStorage; //导入方法依赖的package包/类
private void diskcache(FileCache cache, String title, PrintStream writer, List<String> args)
throws DumpException {
DiskStorage.DiskDumpInfo intDiskDumpInfo;
try {
intDiskDumpInfo = cache.getDumpInfo();
} catch (IOException e) {
throw new DumpException(e.getMessage());
}
if (!args.isEmpty() && args.get(0).equals("-s")) {
writeDiskDumpInfoScriptReadable(writer, intDiskDumpInfo);
} else {
writer.println();
writer.println(title + " disk cache contents:");
writeDiskDumpInfo(writer, intDiskDumpInfo);
}
}
示例2: writeDiskDumpInfo
import com.facebook.cache.disk.DiskStorage; //导入方法依赖的package包/类
private void writeDiskDumpInfo(PrintStream writer, DiskStorage.DiskDumpInfo dumpInfo) {
if (dumpInfo.entries.isEmpty()) {
writer.println("Empty");
return;
}
SparseArray<Integer> histogram = emptyHistogram();
float total = 0f;
for (DiskStorage.DiskDumpInfoEntry entry : dumpInfo.entries) {
writeDiskDumpEntry(writer, entry);
addToHistogram(histogram, entry);
total += entry.size;
}
writer.println();
writer.println(formatStrLocaleSafe("Total size: %.1f MB", total / 1024 / KB));
printFileTypes(writer, dumpInfo);
printHistogram(writer, histogram);
}
示例3: printFileTypes
import com.facebook.cache.disk.DiskStorage; //导入方法依赖的package包/类
private void printFileTypes(PrintStream writer, DiskStorage.DiskDumpInfo dumpInfo) {
writer.println();
writer.println("File Type Counts:");
for (String type : dumpInfo.typeCounts.keySet()) {
writer.println(formatStrLocaleSafe(
"%4s: %5d",
type,
dumpInfo.typeCounts.get(type)));
}
}
示例4: writeDiskDumpInfoScriptReadable
import com.facebook.cache.disk.DiskStorage; //导入方法依赖的package包/类
private void writeDiskDumpInfoScriptReadable(
PrintStream writer, DiskStorage.DiskDumpInfo dumpInfo) {
for (DiskStorage.DiskDumpInfoEntry entry : dumpInfo.entries) {
writeDiskDumpEntryScriptReadable(writer, entry);
}
}
示例5: getDumpInfo
import com.facebook.cache.disk.DiskStorage; //导入方法依赖的package包/类
@Override
public DiskStorage.DiskDumpInfo getDumpInfo() throws IOException {
return null;
}