More information when saying you can't continue
[svn-all-fast-export.git] / src / main.cpp
blobbf7af7648ddc9bc06a2c165d76f396c80b43a671
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 "options.h"
24 #include "ruleparser.h"
25 #include "repository.h"
26 #include "svn.h"
28 int main(int argc, char **argv)
30 QCoreApplication app(argc, argv);
32 Options options;
33 options.parseArguments(app.arguments());
35 // Load the configuration
36 Rules rules(options.ruleFile);
37 rules.load();
39 int min_rev = options.options.value("resume-from").toInt();
40 int max_rev = options.options.value("max-rev").toInt();
41 if (min_rev < 1)
42 min_rev = 1;
44 // create the repository list
45 QHash<QString, Repository *> repositories;
46 foreach (Rules::Repository rule, rules.repositories()) {
47 Repository *repo = new Repository(rule);
48 if (min_rev > 1)
49 repo->reloadBranches();
50 repositories.insert(rule.name, repo);
53 Svn::initialize();
54 Svn svn(options.pathToRepository);
55 svn.setMatchRules(rules.matchRules());
56 svn.setRepositories(repositories);
58 if (max_rev < 1)
59 max_rev = svn.youngestRevision();
60 for (int i = min_rev; i <= max_rev; ++i)
61 if (!svn.exportRevision(i))
62 break;
64 qDeleteAll(repositories);
65 // success
66 return 0;