]> andersk Git - svn-all-fast-export.git/blob - src/main.cpp
Add a better option-parser
[svn-all-fast-export.git] / src / main.cpp
1 /*
2  *  Copyright (C) 2007  Thiago Macieira <thiago@kde.org>
3  *
4  *  This program is free software: you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation, either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include <QCoreApplication>
19 #include <QStringList>
20
21 #include <stdio.h>
22
23 #include "options.h"
24 #include "ruleparser.h"
25 #include "repository.h"
26 #include "svn.h"
27
28 int main(int argc, char **argv)
29 {
30     QCoreApplication app(argc, argv);
31
32     Options options;
33     options.parseArguments(app.arguments());
34
35     // Load the configuration
36     Rules rules(options.ruleFile);
37     rules.load();
38
39     // create the repository list
40     QHash<QString, Repository *> repositories;
41     foreach (Rules::Repository rule, rules.repositories())
42         repositories.insert(rule.name, new Repository(rule));
43
44     Svn::initialize();
45     Svn svn(options.pathToRepository);
46     svn.setMatchRules(rules.matchRules());
47     svn.setRepositories(repositories);
48
49     int max_rev = svn.youngestRevision();
50     for (int i = 1; i <= max_rev; ++i)
51         if (!svn.exportRevision(i))
52             break;
53
54     qDeleteAll(repositories);
55     // success
56     return 0;
57 }
This page took 0.033434 seconds and 5 git commands to generate.