@@ -79,6 +79,7 @@ class FastImportRepository : public Repository
79
79
};
80
80
FastImportRepository (const Rules::Repository &rule);
81
81
int setupIncremental (int &cutoff);
82
+ void restoreAnnotatedTags ();
82
83
void restoreBranchNotes ();
83
84
void restoreLog ();
84
85
~FastImportRepository ();
@@ -186,6 +187,7 @@ class ForwardingRepository : public Repository
186
187
ForwardingRepository (const QString &n, Repository *r, const QString &p) : name(n), repo(r), prefix(p) {}
187
188
188
189
int setupIncremental (int &) { return 1 ; }
190
+ void restoreAnnotatedTags () {}
189
191
void restoreBranchNotes () {}
190
192
void restoreLog () {}
191
193
@@ -253,6 +255,33 @@ class ProcessCache: QLinkedList<FastImportRepository *>
253
255
};
254
256
static ProcessCache processCache;
255
257
258
+ QDataStream &operator <<(QDataStream &out, const FastImportRepository::AnnotatedTag &annotatedTag)
259
+ {
260
+ out << annotatedTag.supportingRef
261
+ << annotatedTag.svnprefix
262
+ << annotatedTag.author
263
+ << annotatedTag.log
264
+ << (quint64) annotatedTag.dt
265
+ << (qint64) annotatedTag.revnum ;
266
+ return out;
267
+ }
268
+
269
+ QDataStream &operator >>(QDataStream &in, FastImportRepository::AnnotatedTag &annotatedTag)
270
+ {
271
+ quint64 dt;
272
+ qint64 revnum;
273
+
274
+ in >> annotatedTag.supportingRef
275
+ >> annotatedTag.svnprefix
276
+ >> annotatedTag.author
277
+ >> annotatedTag.log
278
+ >> dt
279
+ >> revnum;
280
+ annotatedTag.dt = (uint ) dt;
281
+ annotatedTag.revnum = (int ) revnum;
282
+ return in;
283
+ }
284
+
256
285
Repository *createRepository (const Rules::Repository &rule, const QHash<QString, Repository *> &repositories)
257
286
{
258
287
if (rule.forwardTo .isEmpty ())
@@ -272,6 +301,13 @@ static QString marksFileName(QString name)
272
301
return name;
273
302
}
274
303
304
+ static QString annotatedTagsFileName (QString name)
305
+ {
306
+ name.replace (' /' , ' _' );
307
+ name.prepend (" annotatedTags-" );
308
+ return name;
309
+ }
310
+
275
311
static QString branchNotesFileName (QString name)
276
312
{
277
313
name.replace (' /' , ' _' );
@@ -463,6 +499,17 @@ int FastImportRepository::setupIncremental(int &cutoff)
463
499
return cutoff;
464
500
}
465
501
502
+ void FastImportRepository::restoreAnnotatedTags ()
503
+ {
504
+ QFile annotatedTagsFile (name + " /" + annotatedTagsFileName (name));
505
+ if (!annotatedTagsFile.exists ())
506
+ return ;
507
+ annotatedTagsFile.open (QIODevice::ReadOnly);
508
+ QDataStream annotatedTagsStream (&annotatedTagsFile);
509
+ annotatedTagsStream >> annotatedTags;
510
+ annotatedTagsFile.close ();
511
+ }
512
+
466
513
void FastImportRepository::restoreBranchNotes ()
467
514
{
468
515
QFile branchNotesFile (name + " /" + branchNotesFileName (name));
@@ -734,7 +781,13 @@ void FastImportRepository::finalizeTags()
734
781
if (annotatedTags.isEmpty ())
735
782
return ;
736
783
737
- printf (" Finalising tags for %s..." , qPrintable (name));
784
+ QFile annotatedTagsFile (name + " /" + annotatedTagsFileName (name));
785
+ annotatedTagsFile.open (QIODevice::WriteOnly);
786
+ QDataStream annotatedTagsStream (&annotatedTagsFile);
787
+ annotatedTagsStream << annotatedTags;
788
+ annotatedTagsFile.close ();
789
+
790
+ printf (" Finalising annotated tags for %s..." , qPrintable (name));
738
791
startFastImport ();
739
792
740
793
QHash<QString, AnnotatedTag>::ConstIterator it = annotatedTags.constBegin ();
0 commit comments