[java-gobject-introspection] Print usage info when no parameter is passed instead of throwing ArrayIndexOutOfBoundsException.
- From: Colin Walters <walters src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [java-gobject-introspection] Print usage info when no parameter is passed instead of throwing ArrayIndexOutOfBoundsException.
- Date: Tue, 9 Feb 2010 18:52:49 +0000 (UTC)
commit d9a87610840c358e276437f602e7e9c50c3170d7
Author: Alexander Kurtakov <akurtako redhat com>
Date: Tue Feb 9 12:36:21 2010 +0200
Print usage info when no parameter is passed instead of throwing ArrayIndexOutOfBoundsException.
src/org/gnome/gir/compiler/CodeFactory.java | 47 +++++++++++++++++----------
1 files changed, 30 insertions(+), 17 deletions(-)
---
diff --git a/src/org/gnome/gir/compiler/CodeFactory.java b/src/org/gnome/gir/compiler/CodeFactory.java
index 49ccdb2..387e260 100644
--- a/src/org/gnome/gir/compiler/CodeFactory.java
+++ b/src/org/gnome/gir/compiler/CodeFactory.java
@@ -2400,24 +2400,37 @@ public class CodeFactory {
public static void main(String[] args) throws Exception {
GObjectAPI.gobj.g_type_init();
- if (args[0].equals("--compileall"))
- compileAll();
- else if (args[0].equals("--verifyall"))
- verifyAll();
- else if (args[0].endsWith(".typelib")) {
- File typelib = new File(args[0]);
- String base = typelib.getName();
- NsVer nsver = NsVer.parse(base);
- String parent = typelib.getParent();
- if (parent == null)
- parent = System.getProperty("user.dir");
- Repository.getDefault().prependSearchPath(parent);
- compile(nsver.namespace, nsver.version);
+ if (args.length > 0) {
+ if (args[0].equals("--compileall"))
+ compileAll();
+ else if (args[0].equals("--verifyall"))
+ verifyAll();
+ else if (args[0].endsWith(".typelib")) {
+ File typelib = new File(args[0]);
+ String base = typelib.getName();
+ NsVer nsver = NsVer.parse(base);
+ String parent = typelib.getParent();
+ if (parent == null)
+ parent = System.getProperty("user.dir");
+ Repository.getDefault().prependSearchPath(parent);
+ compile(nsver.namespace, nsver.version);
+ } else {
+ String namespace = args[0];
+ String version = args[1];
+ if (!namespaceIsExcluded(namespace))
+ compile(namespace, version);
+ }
} else {
- String namespace = args[0];
- String version = args[1];
- if (!namespaceIsExcluded(namespace))
- compile(namespace, version);
+ usage();
}
}
+
+ private static void usage() {
+ System.out.println("Nothing to do.");
+ System.out.println("Possibilities are:");
+ System.out.println("\t* --compileall");
+ System.out.println("\t* --verifyall");
+ System.out.println("\t* some .typelib file");
+
+ }
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]