And run the SVN code too
[svn-all-fast-export.git] / src / main.cpp
blobaa5fe72ef339cfc6f163d668100f8fa15c6d3b0d
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"
25 #include "svn.h"
27 int main(int argc, char **argv)
29 QCoreApplication app(argc, argv);
31 QStringList arguments = app.arguments();
32 if (arguments.count() < 3) {
33 printf("Usage: svn-all-fast-export configfile path-to-svn\n");
34 return 0;
37 // Load the configuration
38 Rules rules(arguments.at(1));
39 rules.load();
41 // create the repository list
42 QHash<QString, Repository *> repositories;
43 foreach (Rules::Repository rule, rules.repositories())
44 repositories.insert(rule.name, new Repository(rule));
46 Svn::initialize();
47 Svn svn(arguments.at(2));
48 svn.setMatchRules(rules.matchRules());
49 svn.setRepositories(repositories);
51 int max_rev = svn.youngestRevision();
52 for (int i = 1; i < max_rev; ++i)
53 svn.exportRevision(i);
55 qDeleteAll(repositories);
56 // success
57 return 0;