blob: 2c59d1a6d2b4cda3a6d42b9d5007c096fa8d29af [file] [log] [blame]
/**
*******************************************************************************
* Copyright (C) 2004-2010, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
/**
* Represent a file of APIInfo records.
*/
package com.ibm.icu.dev.tool.docs;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.Enumeration;
import java.util.Iterator;
import java.util.TreeSet;
import java.util.zip.GZIPInputStream;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
public final class APIData {
int version;
String name;
String base;
TreeSet<APIInfo> set;
static APIData read(BufferedReader br, boolean internal) {
try {
APIData data = new APIData();
data.version = Integer.parseInt(APIInfo.readToken(br)); // version
if (data.version > APIInfo.VERSION) {
throw new IllegalArgumentException(
"data version " + data.version
+ " is newer than current version (" + APIInfo.VERSION + ")");
}
data.name = APIInfo.readToken(br);
data.base = APIInfo.readToken(br); // base
br.readLine();
data.set = new TreeSet(APIInfo.defaultComparator());
for (APIInfo info = new APIInfo(); info.read(br); info = new APIInfo()) {
if (internal || !info.isInternal()) {
data.set.add(info);
}
}
// System.out.println("read " + data.set.size() + " record(s)");
return data;
}
catch (IOException e) {
RuntimeException re = new RuntimeException("error reading api data");
re.initCause(e);
throw re;
}
}
static APIData read(File file, boolean internal) {
String fileName = file.getName();
try {
InputStream is;
if (fileName.endsWith(".zip")) {
ZipFile zf = new ZipFile(file);
Enumeration entryEnum = zf.entries();
if (entryEnum.hasMoreElements()) {
ZipEntry entry = (ZipEntry)entryEnum.nextElement();
is = zf.getInputStream(entry);
// we only handle one!!!
} else {
throw new IOException("zip file is empty");
}
} else {
is = new FileInputStream(file);
if (fileName.endsWith(".gz")) {
is = new GZIPInputStream(is);
}
}
InputStreamReader isr = new InputStreamReader(is);
return read(new BufferedReader(isr), internal);
}
catch (IOException e) {
RuntimeException re = new RuntimeException("error getting info stream: " + fileName);
re.initCause(e);
throw re;
}
}
static APIData read(String fileName, boolean internal) {
return read(new File(fileName), internal);
}
private static final String[] stanames = {
"draft", "stable", "deprecated", "obsolete", "internal"
};
private static final String[] catnames = {
"classes", "fields", "constructors", "methods"
};
public void printStats(PrintWriter pw) {
// classes, methods, fields
// draft, stable, other
int[] stats = new int[catnames.length * stanames.length];
Iterator iter = set.iterator();
while (iter.hasNext()) {
APIInfo info = (APIInfo)iter.next();
if (info.isPublic() || info.isProtected()) {
int sta = info.getVal(APIInfo.STA);
int cat = info.getVal(APIInfo.CAT);
stats[cat * stanames.length + sta] += 1;
}
}
int tt = 0;
for (int cat = 0; cat < catnames.length; ++cat) {
pw.println(catnames[cat]);
int t = 0;
for (int sta = 0; sta < stanames.length; ++sta) {
int v = stats[cat * stanames.length + sta];
t += v;
pw.println(" " + stanames[sta] + ": " + v);
}
tt += t;
pw.println("total: " + t);
pw.println();
}
pw.println("total apis: " + tt);
}
public static void main(String[] args) {
PrintWriter pw = new PrintWriter(System.out);
boolean internal = false;
String path = "src/com/ibm/icu/dev/tool/docs/";
String fn = "icu4j341.api.gz";
if (args.length == 0) {
args = new String[] { "-file", fn };
}
for (int i = 0; i < args.length; ++i) {
String arg = args[i];
if (arg.equals("-path:")) {
path = args[++i];
} else if (arg.equals("-internal:")) {
internal = args[++i].toLowerCase().charAt(0) == 't';
} else if (arg.equals("-file")) {
fn = args[++i];
File f = new File(path, fn);
read(f,internal).printStats(pw);
pw.flush();
}
}
}
}