]> andersk Git - svn-all-fast-export.git/blame - src/repository.cpp
Improve error message
[svn-all-fast-export.git] / src / repository.cpp
CommitLineData
5a7327f6
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 "repository.h"
1c4df5aa 19#include <QTextStream>
b6ba9639 20#include <QDebug>
5a7327f6
TM
21
22Repository::Repository(const Rules::Repository &rule)
b6ba9639 23 : name(rule.name)
5a7327f6
TM
24{
25 foreach (Rules::Repository::Branch branchRule, rule.branches) {
26 Branch branch;
27 branch.branchFrom = branchRule.branchFrom;
09f6282e
TM
28 if (!branch.branchFrom.startsWith("refs/heads/"))
29 branch.branchFrom.prepend("refs/heads/");
5a7327f6
TM
30 branch.isCreated = false;
31
32 branches.insert(branchRule.name, branch);
33 }
34
b6ba9639
TM
35 // create the default branch
36 branches["master"].isCreated = true;
37
1a688729 38 fastImport.setWorkingDirectory(name);
5a7327f6
TM
39 fastImport.setProcessChannelMode(QProcess::ForwardedChannels);
40}
1c4df5aa
TM
41
42Repository::~Repository()
43{
3ffa3592 44 if (fastImport.state() != QProcess::NotRunning) {
1c4df5aa
TM
45 fastImport.closeWriteChannel();
46 fastImport.waitForFinished();
47 }
48}
49
1a688729
TM
50void Repository::reloadBranches()
51{
52 QHash<QString, Branch>::Iterator it = branches.begin(),
53 end = branches.end();
54 for ( ; it != end; ++it) {
55 QString branchRef = it.key();
56 if (!branchRef.startsWith("refs/heads/"))
57 branchRef.prepend("refs/heads/");
58
59 bool branchExists;
60 // does this branch already exist?
61 QProcess revParse;
62 revParse.setWorkingDirectory(name);
63 revParse.start("git-rev-parse", QStringList() << "--verify" << branchRef);
64 revParse.waitForFinished();
65
66 if (revParse.exitCode() == 0)
67 branchExists = true;
68 else
69 branchExists = false;
70
71 if (branchExists) {
72 startFastImport();
73 fastImport.write("reset " + branchRef.toUtf8() +
2cdbbd82 74 "\nfrom " + branchRef.toUtf8() + "^0\n\n");
1a688729
TM
75 it->isCreated = true;
76 }
77 }
78}
79
1c4df5aa
TM
80Repository::Transaction *Repository::newTransaction(const QString &branch, const QString &svnprefix,
81 int revnum)
82{
b6ba9639 83 if (!branches.contains(branch)) {
9d158550 84 qCritical() << branch << "is not a known branch in repository" << name;
1c4df5aa 85 return 0;
b6ba9639 86 }
1c4df5aa
TM
87
88 Transaction *txn = new Transaction;
89 txn->repository = this;
90 txn->branch = branch.toUtf8();
91 txn->svnprefix = svnprefix.toUtf8();
92 txn->datetime = 0;
93 txn->revnum = revnum;
94 txn->lastmark = revnum;
95
1a688729
TM
96 startFastImport();
97 return txn;
98}
99
100void Repository::startFastImport()
101{
688d69ec 102 if (fastImport.state() == QProcess::NotRunning) {
1c4df5aa 103 // start the process
688d69ec 104#ifndef DRY_RUN
1c4df5aa 105 fastImport.start("git-fast-import", QStringList());
688d69ec
TM
106#else
107 fastImport.start("/bin/cat", QStringList());
108#endif
109 }
1c4df5aa
TM
110}
111
112Repository::Transaction::~Transaction()
113{
114}
115
116void Repository::Transaction::setAuthor(const QByteArray &a)
117{
118 author = a;
119}
120
121void Repository::Transaction::setDateTime(uint dt)
122{
123 datetime = dt;
124}
125
126void Repository::Transaction::setLog(const QByteArray &l)
127{
128 log = l;
129}
130
131void Repository::Transaction::deleteFile(const QString &path)
132{
133 deletedFiles.append(path);
134}
135
136QIODevice *Repository::Transaction::addFile(const QString &path, int mode, qint64 length)
137{
138 FileProperties fp;
139 fp.mode = mode;
140 fp.mark = ++lastmark;
141
688d69ec 142#ifndef DRY_RUN
1c4df5aa
TM
143 repository->fastImport.write("blob\nmark :");
144 repository->fastImport.write(QByteArray::number(fp.mark));
145 repository->fastImport.write("\ndata ");
146 repository->fastImport.write(QByteArray::number(length));
147 repository->fastImport.write("\n", 1);
148 repository->fastImport.waitForBytesWritten(0);
688d69ec 149#endif
1c4df5aa
TM
150
151 modifiedFiles.insert(path, fp);
152 return &repository->fastImport;
153}
154
155void Repository::Transaction::commit()
156{
157 // create the commit message
158 QByteArray message = log;
159 if (!message.endsWith('\n'))
160 message += '\n';
d91c2d9b 161 message += "\nsvn path=" + svnprefix + "; revision=" + QByteArray::number(revnum) + "\n";
1c4df5aa
TM
162
163 {
164 QByteArray branchRef = branch;
165 if (!branchRef.startsWith("refs/heads/"))
166 branchRef.prepend("refs/heads/");
167
168 QTextStream s(&repository->fastImport);
169 s << "commit " << branchRef << endl;
170 s << "mark :" << revnum << endl;
b6ba9639 171 s << "committer " << author << ' ' << datetime << " -0000" << endl;
1c4df5aa
TM
172
173 Branch &br = repository->branches[branch];
174 if (!br.isCreated) {
175 br.isCreated = true;
176 s << "from " << br.branchFrom << endl;
177 }
178
179 s << "data " << message.length() << endl;
180 }
181
182 repository->fastImport.write(message);
183
184 // write the file deletions
185 foreach (QString df, deletedFiles)
186 repository->fastImport.write("D " + df.toUtf8() + "\n");
187
188 // write the file modifications
189 QHash<QString, FileProperties>::ConstIterator it = modifiedFiles.constBegin();
190 for ( ; it != modifiedFiles.constEnd(); ++it) {
191 repository->fastImport.write("M ", 2);
192 repository->fastImport.write(QByteArray::number(it->mode, 8));
193 repository->fastImport.write(" :", 2);
194 repository->fastImport.write(QByteArray::number(it->mark));
195 repository->fastImport.write(" ", 1);
196 repository->fastImport.write(it.key().toUtf8());
197 repository->fastImport.write("\n", 1);
198 }
199
200 repository->fastImport.write("\n");
201
202 while (repository->fastImport.bytesToWrite() && repository->fastImport.waitForBytesWritten()) {
203 // nothing
204 }
205}
This page took 0.072905 seconds and 5 git commands to generate.