Add command line options to debugger

https://codereview.appspot.com/7221048/



git-svn-id: http://skia.googlecode.com/svn/trunk@7418 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/debugger/debuggermain.cpp b/debugger/debuggermain.cpp
index 86a4574..8440052 100644
--- a/debugger/debuggermain.cpp
+++ b/debugger/debuggermain.cpp
@@ -9,9 +9,51 @@
 #include "SkDebuggerGUI.h"
 #include <QApplication>
 
+static void usage(const char * argv0) {
+    SkDebugf("%s <input> \n", argv0);
+    SkDebugf("    [--help|-h]: show this help message\n");
+    SkDebugf("\n\n");
+    SkDebugf("     input:     Either a directory or a single .skp file.\n");
+}
+
 int main(int argc, char *argv[]) {
     QApplication a(argc, argv);
+
+    QStringList argList = a.arguments();
+
+    if (argList.count() <= 0) {
+        return -1;  // should at least have command name
+    }
+
+    SkString input;
+
+    QStringList::const_iterator iter = argList.begin();
+
+    SkString commandName(iter->toAscii());
+    ++iter; // skip the command name
+
+    for ( ; iter != argList.end(); ++iter) {
+        if (0 == iter->compare("--help") || 0 == iter->compare("-h")) {
+            usage(commandName.c_str());
+            return -1;
+        } else if (input.isEmpty()) {
+            input = SkString(iter->toAscii());
+        } else {
+            usage(commandName.c_str());
+            return -1;
+        }
+    }
+
     SkDebuggerGUI w;
+
+    if (!input.isEmpty()) {
+        if (SkStrEndsWith(input.c_str(), ".skp")) {
+            w.openFile(input.c_str());
+        } else {
+            w.setupDirectoryWidget(input.c_str());
+        }
+    }
+
     w.show();
     return a.exec();
 }