aboutsummaryrefslogtreecommitdiffhomepage
path: root/debugger/debuggermain.cpp
blob: 35c95602b4d370fbfc246e52a941c01dff81796b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67

/*
 * Copyright 2012 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "SkDebuggerGUI.h"
#include "SkGraphics.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[]) {
#ifndef SK_BUILD_FOR_WIN
    // Set numeric formatting to default. Otherwise shaders will have numbers with wrong comma.
    // QApplication documentation recommends setlocale("LC_NUMERIC", "C") after QApplication
    // constuction.  However, the components Qt calls (X11 libs, ..) will override that.
    setenv("LC_NUMERIC", "C", 1);
#endif
    SkGraphics::Init();
    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().data());
    ++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().data());
        } 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();
    int result = a.exec();
    return result;
}