]> andersk Git - svn-all-fast-export.git/blame - src/main.cpp
Add support for resuming work
[svn-all-fast-export.git] / src / main.cpp
CommitLineData
ae160384
TM
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
1228bd7c 23#include "options.h"
ae160384
TM
24#include "ruleparser.h"
25#include "repository.h"
695ab9ee 26#include "svn.h"
ae160384
TM
27
28int main(int argc, char **argv)
29{
30 QCoreApplication app(argc, argv);
31
1228bd7c
TM
32 Options options;
33 options.parseArguments(app.arguments());
ae160384
TM
34
35 // Load the configuration
1228bd7c 36 Rules rules(options.ruleFile);
ae160384
TM
37 rules.load();
38
1a688729
TM
39 int min_rev = options.options.value("resume-from").toInt();
40 if (min_rev < 1)
41 min_rev = 1;
42
ae160384
TM
43 // create the repository list
44 QHash<QString, Repository *> repositories;
1a688729
TM
45 foreach (Rules::Repository rule, rules.repositories()) {
46 Repository *repo = new Repository(rule);
47 if (min_rev > 1)
48 repo->reloadBranches();
49 repositories.insert(rule.name, repo);
50 }
ae160384 51
695ab9ee 52 Svn::initialize();
1228bd7c 53 Svn svn(options.pathToRepository);
695ab9ee
TM
54 svn.setMatchRules(rules.matchRules());
55 svn.setRepositories(repositories);
56
57 int max_rev = svn.youngestRevision();
1a688729 58 for (int i = min_rev; i <= max_rev; ++i)
ab162d73
TM
59 if (!svn.exportRevision(i))
60 break;
695ab9ee
TM
61
62 qDeleteAll(repositories);
ae160384
TM
63 // success
64 return 0;
65}
This page took 0.090297 seconds and 5 git commands to generate.