Add main.cpp
[svn-all-fast-export.git] / src / main.cpp
blob9d61db8f8066b2f971f3e84a318fd9075da3cc46
1 /*
2 * Copyright (C) 2007 Thiago Macieira <thiago@kde.org>
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.
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.
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/>.
18 #include <QCoreApplication>
19 #include <QStringList>
21 #include <stdio.h>
23 #include "ruleparser.h"
24 #include "repository.h"
26 int main(int argc, char **argv)
28 QCoreApplication app(argc, argv);
30 QStringList arguments = app.arguments();
31 if (arguments.count() < 3) {
32 printf("Usage: svn-all-fast-export configfile path-to-svn\n");
33 return 0;
36 // Load the configuration
37 Rules rules(arguments.at(1));
38 rules.load();
40 // create the repository list
41 QHash<QString, Repository *> repositories;
42 foreach (Rules::Repository rule, rules.repositories())
43 repositories.insert(rule.name, new Repository(rule));
45 // verify the match rules
46 foreach (Rules::Match rule, rules.matchRules())
47 if (!repositories.contains(rule.repository)) {
48 fprintf(stderr, "Error: rule \"%s\" references unknown repository \"%s\"\n",
49 qPrintable(rule.rx.pattern()), qPrintable(rule.repository));
50 return 1;
53 // success
54 return 0;