]> andersk Git - svn-all-fast-export.git/commitdiff
Don't start the git-fast-import process twice. And make it log its
authorThiago Macieira <thiago.macieira@trolltech.com>
Fri, 28 Dec 2007 11:50:14 +0000 (12:50 +0100)
committerThiago Macieira <thiago.macieira@trolltech.com>
Fri, 28 Dec 2007 12:47:01 +0000 (13:47 +0100)
output to a file rather than garble the output of 10-15 process in
stdout.

src/repository.cpp

index 21641e75868c48a8fb0162e682125801015e7453..63252b589fe576b7c38eb5f6d95852776e2582ca 100644 (file)
@@ -20,7 +20,7 @@
 #include <QDebug>
 
 Repository::Repository(const Rules::Repository &rule)
-    : name(rule.name)
+    : name(rule.name), processHasStarted(false)
 {
     foreach (Rules::Repository::Branch branchRule, rule.branches) {
         Branch branch;
@@ -129,14 +129,20 @@ Repository::Transaction *Repository::newTransaction(const QString &branch, const
 void Repository::startFastImport()
 {
     if (fastImport.state() == QProcess::NotRunning) {
+        if (processHasStarted)
+            qFatal("git-fast-import has been started once and crashed?");
+        processHasStarted = true;
+
         // start the process
+        QString outputFile = name;
+        outputFile.replace('/', '_');
+        outputFile.prepend("log-");
+        fastImport.setStandardOutputFile(outputFile, QIODevice::Append);
+
 #ifndef DRY_RUN
         fastImport.setProcessChannelMode(QProcess::ForwardedChannels);
         fastImport.start("git-fast-import", QStringList());
 #else
-        QString outputFile = name;
-        outputFile.replace('/', '_');
-        fastImport.setStandardOutputFile(outputFile, QIODevice::Append);
         fastImport.start("/bin/cat", QStringList());
 #endif
     }
This page took 0.031629 seconds and 5 git commands to generate.