1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
use std::collections::HashSet;
use std::fmt::{self, Debug, Display};
use std::num;
use std::result::Result;
use chrono::{DateTime, Utc};
use git_workarea::{
CommitId, Conflict, GitContext, GitError, Identity, MergeResult, MergeStatus, WorkAreaError,
};
use log::{debug, info, warn};
use thiserror::Error;
#[derive(Debug, PartialEq, Eq)]
#[non_exhaustive]
pub enum InvalidCommitReason {
NonMergeCommit,
OctopusMerge,
NotRelated,
NotACommit,
InvalidSubject(String),
MissingId,
MissingUrl,
ZeroId,
UnparseableId(String),
}
impl Display for InvalidCommitReason {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let reason = match self {
InvalidCommitReason::NonMergeCommit => "non-merge commit",
InvalidCommitReason::OctopusMerge => "octopus merge",
InvalidCommitReason::NotRelated => "not related",
InvalidCommitReason::NotACommit => "not a commit",
InvalidCommitReason::InvalidSubject(_) => "invalid subject",
InvalidCommitReason::MissingId => "missing id",
InvalidCommitReason::MissingUrl => "missing url",
InvalidCommitReason::ZeroId => "invalid id (0)",
InvalidCommitReason::UnparseableId(_) => "unparseable id",
};
write!(f, "{}", reason)
}
}
#[derive(Debug, Error)]
#[non_exhaustive]
pub enum StagerError {
#[error("git error: {}", source)]
Git {
#[from]
source: GitError,
},
#[error("workarea error: {}", source)]
WorkArea {
#[from]
source: WorkAreaError,
},
#[error("invalid integration branch: {}: {}", commit, reason)]
InvalidIntegrationBranch {
commit: CommitId,
reason: InvalidCommitReason,
},
#[error("duplicate stage id: {}", id)]
DuplicateTopicId {
id: u64,
},
#[error("failed to update the {} ref to {}: {}", stage, base, output)]
CreateStageRef {
stage: CommitId,
base: CommitId,
output: String,
},
#[error(
"failed to list the first parent history of the stage branch: {}",
output
)]
ListStageHistory {
output: String,
},
#[error(
"failed to get information about a merge on the topic stage: {}",
output
)]
ExtractMergeInfo {
output: String,
},
#[error("invalid stage merge commit {} found: {}", commit, log_info)]
InvalidStageMerge {
commit: CommitId,
log_info: String,
},
#[error("cannot unstage base")]
CannotUnstageBase,
#[error("failed to parse date: {}", source)]
DateParse {
#[source]
source: chrono::ParseError,
},
#[deprecated(since = "4.1.0", note = "No longer used.")]
#[error("failed to parse topic ID: {}", source)]
IdParse {
#[source]
source: num::ParseIntError,
},
}
impl StagerError {
fn invalid_branch(commit: CommitId, reason: InvalidCommitReason) -> Self {
StagerError::InvalidIntegrationBranch {
commit,
reason,
}
}
fn duplicate_topic_id(id: u64) -> Self {
StagerError::DuplicateTopicId {
id,
}
}
fn create_stage_ref(stage: CommitId, base: CommitId, output: &[u8]) -> Self {
StagerError::CreateStageRef {
stage,
base,
output: String::from_utf8_lossy(output).into(),
}
}
fn list_stage_history(output: &[u8]) -> Self {
StagerError::ListStageHistory {
output: String::from_utf8_lossy(output).into(),
}
}
fn extract_merge_info(output: &[u8]) -> Self {
StagerError::ExtractMergeInfo {
output: String::from_utf8_lossy(output).into(),
}
}
fn invalid_stage_merge(commit: &str, log_info: &[u8]) -> Self {
StagerError::InvalidStageMerge {
commit: CommitId::new(commit),
log_info: String::from_utf8_lossy(log_info).into(),
}
}
fn date_parse(source: chrono::ParseError) -> Self {
StagerError::DateParse {
source,
}
}
}
type StagerResult<T> = Result<T, StagerError>;
#[derive(Debug, Clone)]
pub struct Topic {
pub commit: CommitId,
pub author: Identity,
pub stamp: DateTime<Utc>,
pub id: u64,
pub name: String,
pub url: String,
}
impl Topic {
pub fn new<N, U>(
commit: CommitId,
author: Identity,
stamp: DateTime<Utc>,
id: u64,
name: N,
url: U,
) -> Self
where
N: Into<String>,
U: Into<String>,
{
Self {
commit,
author,
stamp,
id,
name: name.into(),
url: url.into(),
}
}
}
impl Display for Topic {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(
f,
"topic {} at {}, staged by {} at {}",
self.name, self.commit, self.author, self.stamp
)
}
}
impl PartialEq for Topic {
fn eq(&self, rhs: &Self) -> bool {
self.commit == rhs.commit && self.id == rhs.id
}
}
#[derive(Debug, Clone, PartialEq)]
pub struct CandidateTopic {
pub old_id: Option<Topic>,
pub new_id: Topic,
}
impl CandidateTopic {
fn is_self_consistent(&self) -> bool {
self.old_id
.as_ref()
.map_or(true, |old| old.id == self.new_id.id)
}
}
impl Display for CandidateTopic {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
if let Some(ref old_topic) = self.old_id {
write!(f, "candidate {}, replacing {}", self.new_id, old_topic)
} else {
write!(f, "candidate {}, new", self.new_id)
}
}
}
#[derive(Debug, Clone, PartialEq)]
pub struct StagedTopic {
pub merge: CommitId,
pub topic: Topic,
}
impl StagedTopic {
pub fn commit(&self) -> &CommitId {
&self.topic.commit
}
}
impl Display for StagedTopic {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "staged {}, via {}", self.topic, self.merge)
}
}
pub enum UnstageReason {
MergeConflict(Vec<Conflict>),
}
impl Debug for UnstageReason {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
UnstageReason::MergeConflict(ref conflicts) => {
write!(f, "MergeConflict ( {} conflicts )", conflicts.len())
},
}
}
}
#[derive(Debug)]
pub enum OldTopicRemoval {
Obsoleted {
old_merge: StagedTopic,
replacement: Option<StagedTopic>,
},
Removed(StagedTopic),
}
impl OldTopicRemoval {
pub fn topic(&self) -> &Topic {
match *self {
OldTopicRemoval::Obsoleted {
old_merge: ref ob, ..
} => &ob.topic,
OldTopicRemoval::Removed(ref rb) => &rb.topic,
}
}
}
#[derive(Debug)]
pub enum IntegrationResult {
Staged(StagedTopic),
Unstaged(Topic, UnstageReason),
Unmerged(Topic, MergeStatus),
}
impl IntegrationResult {
pub fn topic(&self) -> &Topic {
match *self {
IntegrationResult::Staged(ref sb) => &sb.topic,
IntegrationResult::Unstaged(ref u, _) => u,
IntegrationResult::Unmerged(ref t, _) => t,
}
}
pub fn on_stage(&self) -> bool {
match *self {
IntegrationResult::Staged(_) => true,
IntegrationResult::Unstaged(_, _) | IntegrationResult::Unmerged(_, _) => false,
}
}
}
type RewoundStage = (Option<StagedTopic>, Vec<StagedTopic>, Option<Topic>);
#[derive(Debug)]
pub struct StageResult {
pub old_topic: Option<OldTopicRemoval>,
pub results: Vec<IntegrationResult>,
}
#[derive(Debug)]
pub struct Stager {
ctx: GitContext,
topics: Vec<StagedTopic>,
}
const STAGE_TOPIC_PREFIX: &str = "Stage topic '";
const STAGE_TOPIC_SUFFIX: &str = "'";
const TOPIC_ID_TRAILER: &str = "Topic-id: ";
const TOPIC_URL_TRAILER: &str = "Topic-url: ";
impl Stager {
pub fn new(ctx: &GitContext, base: CommitId) -> Self {
Self {
ctx: ctx.clone(),
topics: vec![Self::make_base_staged_topic(base)],
}
}
pub fn from_branch(ctx: &GitContext, base: CommitId, stage: CommitId) -> StagerResult<Self> {
let cat_file = ctx
.git()
.arg("cat-file")
.arg("-t")
.arg(stage.as_str())
.output()
.map_err(|err| GitError::subcommand("cat-file", err))?;
if cat_file.status.success() {
let stage_type = String::from_utf8_lossy(&cat_file.stdout);
if stage_type.trim() != "commit" {
return Err(StagerError::invalid_branch(
stage,
InvalidCommitReason::NotACommit,
));
}
} else {
let update_ref = ctx
.git()
.arg("update-ref")
.arg(stage.as_str())
.arg(base.as_str())
.output()
.map_err(|err| GitError::subcommand("update-ref", err))?;
if !update_ref.status.success() {
return Err(StagerError::create_stage_ref(
stage,
base,
&update_ref.stderr,
));
}
}
let is_ancestor = ctx
.git()
.arg("merge-base")
.arg("--is-ancestor")
.arg(base.as_str())
.arg(stage.as_str())
.status()
.map_err(|err| GitError::subcommand("merge-base --is-ancestor", err))?;
let needs_base_update = !is_ancestor.success();
debug!(target: "git-topic-stage", "creating a stage branch from {} -> {}", base, stage);
let merge_base = ctx
.git()
.arg("merge-base")
.arg(base.as_str())
.arg(stage.as_str())
.output()
.map_err(|err| GitError::subcommand("merge-base", err))?;
if !merge_base.status.success() {
return Err(StagerError::invalid_branch(
stage,
InvalidCommitReason::NotRelated,
));
}
let merge_base = String::from_utf8_lossy(&merge_base.stdout);
let mut topics = vec![Self::make_base_staged_topic(CommitId::new(
merge_base.trim(),
))];
let rev_list = ctx
.git()
.arg("rev-list")
.arg("--first-parent")
.arg("--reverse")
.arg("--parents")
.arg(stage.as_str())
.arg(&format!("^{}", base))
.output()
.map_err(|err| GitError::subcommand("rev-list --first-parent", err))?;
if !rev_list.status.success() {
return Err(StagerError::list_stage_history(&rev_list.stderr));
}
let merges = String::from_utf8_lossy(&rev_list.stdout);
let new_topics = merges
.lines()
.map(|merge| {
let revs = merge.split_whitespace().collect::<Vec<_>>();
let (rev, parents) = revs[..].split_first().expect("invalid rev-list format");
let rev_commit = CommitId::new(*rev);
if parents.len() == 1 {
return Err(StagerError::invalid_branch(
rev_commit,
InvalidCommitReason::NonMergeCommit,
));
}
if parents.len() > 2 {
return Err(StagerError::invalid_branch(
rev_commit,
InvalidCommitReason::OctopusMerge,
));
}
let commit_info = ctx
.git()
.arg("log")
.arg("--max-count=1")
.arg("--pretty=%an%n%ae%n%aI%n%B")
.arg(rev)
.output()
.map_err(|err| GitError::subcommand("log", err))?;
if !commit_info.status.success() {
return Err(StagerError::extract_merge_info(&commit_info.stderr));
}
let info = String::from_utf8_lossy(&commit_info.stdout);
let info = info.lines().collect::<Vec<_>>();
if info.len() <= 6 {
return Err(StagerError::invalid_stage_merge(rev, &commit_info.stdout));
}
let subject = info[3];
if !subject.starts_with(STAGE_TOPIC_PREFIX)
|| !subject.ends_with(STAGE_TOPIC_SUFFIX)
{
let reason = InvalidCommitReason::InvalidSubject(subject.into());
return Err(StagerError::invalid_branch(rev_commit, reason));
}
let name =
&subject[STAGE_TOPIC_PREFIX.len()..subject.len() - STAGE_TOPIC_SUFFIX.len()];
let mut id = None;
let mut url = None;
for line in info[5..info.len() - 1].iter().rev() {
if line.is_empty() {
break;
} else if let Some(topic_id) = line.strip_prefix(TOPIC_ID_TRAILER) {
id = Some(topic_id.parse().map_err(|err| {
let reason = InvalidCommitReason::UnparseableId(format!("{}", err));
StagerError::invalid_branch(rev_commit.clone(), reason)
})?);
} else if let Some(topic_url) = line.strip_prefix(TOPIC_URL_TRAILER) {
url = Some(topic_url.to_string());
} else {
warn!(
target: "git-topic-stage",
"unrecognized trailer in {}: {}",
parents[1],
line,
);
}
}
let url = if let Some(url) = url {
url
} else {
return Err(StagerError::invalid_branch(
rev_commit,
InvalidCommitReason::MissingUrl,
));
};
let id = match id {
Some(0) => {
return Err(StagerError::invalid_branch(
rev_commit,
InvalidCommitReason::ZeroId,
));
},
Some(id) => id,
None => {
return Err(StagerError::invalid_branch(
rev_commit,
InvalidCommitReason::MissingId,
));
},
};
info!(
target: "git-topic-stage",
"found staged topic '{}' from {}",
name, url,
);
Ok(StagedTopic {
merge: rev_commit,
topic: Topic::new(
CommitId::new(parents[1]),
Identity::new(info[0], info[1]),
info[2].parse().map_err(StagerError::date_parse)?,
id,
name,
url,
),
})
})
.collect::<StagerResult<Vec<_>>>()?;
topics.extend(new_topics.into_iter());
let mut ids = HashSet::new();
for topic in &topics {
if !ids.insert(topic.topic.id) {
return Err(StagerError::duplicate_topic_id(topic.topic.id));
}
}
let mut stager = Self {
ctx: ctx.clone(),
topics,
};
if needs_base_update {
let base_update = CandidateTopic {
old_id: Some(Self::make_base_topic(CommitId::new(merge_base.trim()))),
new_id: Self::make_base_topic(base),
};
stager.stage(base_update)?;
}
Ok(stager)
}
pub fn git_context(&self) -> &GitContext {
&self.ctx
}
pub fn base(&self) -> &CommitId {
self.topics[0].commit()
}
pub fn topics(&self) -> &[StagedTopic] {
&self.topics[1..]
}
pub fn find_topic_by_id(&self, id: u64) -> Option<&StagedTopic> {
self.topics()
.iter()
.find(|staged_topic| id == staged_topic.topic.id)
}
pub fn find_topic(&self, topic: &Topic) -> Option<&StagedTopic> {
self.topics()
.iter()
.find(|staged_topic| topic == &staged_topic.topic)
}
pub fn head(&self) -> &CommitId {
&self
.topics
.iter()
.last()
.expect("expected there to be a HEAD topic on the stage")
.merge
}
fn make_base_staged_topic(base: CommitId) -> StagedTopic {
StagedTopic {
merge: base.clone(),
topic: Self::make_base_topic(base),
}
}
fn make_base_topic(base: CommitId) -> Topic {
Topic {
commit: base,
author: Identity::new("stager", "stager@example.com"),
stamp: Utc::now(),
id: 0,
name: "base".into(),
url: "url".into(),
}
}
fn rewind_stage(&mut self, topic: CandidateTopic) -> RewoundStage {
let root = topic
.old_id
.and_then(|old| {
self.topics
.iter()
.position(|staged_topic| old == staged_topic.topic)
})
.unwrap_or_else(|| self.topics.len());
let mut old_stage = self.topics.drain(root..).collect::<Vec<_>>();
if self.topics.is_empty() {
debug!(target: "git-topic-stage", "rewinding the stage to its base");
} else {
debug!(target: "git-topic-stage", "rewinding the stage to {}", self.head());
}
let (old_topic, new_topic) = if self.topics.is_empty() {
self.topics
.push(Self::make_base_staged_topic(topic.new_id.commit));
(Some(old_stage.remove(0)), None)
} else if old_stage.is_empty() {
(None, Some(topic.new_id))
} else {
(Some(old_stage.remove(0)), Some(topic.new_id))
};
(old_topic, old_stage, new_topic)
}
fn replay_stage(
&mut self,
old_stage: Vec<StagedTopic>,
) -> StagerResult<Vec<IntegrationResult>> {
debug!(target: "git-topic-stage", "replaying {} branches into the stage", old_stage.len());
old_stage
.into_iter()
.map(|old_staged_topic| {
let (staged, res) = self.merge_to_stage(old_staged_topic.topic)?;
if let Some(t) = staged {
self.topics.push(t);
}
Ok(res)
})
.collect()
}
pub fn unstage(&mut self, topic: StagedTopic) -> StagerResult<StageResult> {
info!(target: "git-topic-stage", "unstaging a topic: {}", topic);
if topic.commit() == self.base() {
debug!(target: "git-topic-stage", "ignoring a request to unstage the base");
return Err(StagerError::CannotUnstageBase);
}
let (old_topic, old_stage, new_topic) = self.rewind_stage(CandidateTopic {
old_id: Some(topic.topic.clone()),
new_id: topic.topic,
});
let results = self.replay_stage(old_stage)?;
if new_topic.is_none() {
warn!(target: "git-topic-stage", "unstage called on the base branch");
}
if let Some(ref old_topic) = old_topic {
debug!(target: "git-topic-stage", "unstaged {}", old_topic);
}
let old_branch_result = old_topic.map(OldTopicRemoval::Removed);
Ok(StageResult {
old_topic: old_branch_result,
results,
})
}
pub fn stage(&mut self, topic: CandidateTopic) -> StagerResult<StageResult> {
info!(target: "git-topic-stage", "staging a topic: {}", topic);
let self_consistent = topic.is_self_consistent();
if !self_consistent || topic.old_id.is_none() {
if !self_consistent {
warn!(
target: "git-topic-stage",
"inconsistent candidate topic submission: {}",
topic,
);
}
if self
.topics
.iter()
.any(|staged| staged.topic.id == topic.new_id.id)
{
return Err(StagerError::duplicate_topic_id(topic.new_id.id));
}
}
let (old_topic, old_stage, new_topic) = self.rewind_stage(topic);
let mut results = self.replay_stage(old_stage)?;
let old_branch_result = if let Some(topic) = new_topic {
let (staged, res) = self.merge_to_stage(topic)?;
if let Some(sb) = staged.clone() {
self.topics.push(sb);
}
results.push(res);
old_topic.map(|topic| {
OldTopicRemoval::Obsoleted {
old_merge: topic,
replacement: staged,
}
})
} else {
old_topic.map(|topic| {
OldTopicRemoval::Obsoleted {
old_merge: topic,
replacement: Some(self.topics[0].clone()),
}
})
};
Ok(StageResult {
old_topic: old_branch_result,
results,
})
}
pub fn clear(&mut self) -> Vec<StagedTopic> {
let new_id = Self::make_base_staged_topic(self.base().clone()).topic;
let old_id = Some(new_id.clone());
info!(target: "git-topic-stage", "clearing the stage");
self.rewind_stage(CandidateTopic {
old_id,
new_id,
})
.1
}
fn merge_to_stage(
&self,
topic: Topic,
) -> StagerResult<(Option<StagedTopic>, IntegrationResult)> {
let base_commit = self.base();
let head_commit = self.head();
let topic_commit = topic.commit.clone();
debug!(target: "git-topic-stage", "merging {} into the stage", topic);
let merge_status = self.ctx.mergeable(base_commit, &topic_commit)?;
let bases = if let MergeStatus::Mergeable(bases) = merge_status {
bases
} else {
debug!(target: "git-topic-stage", "rejecting: unmergeable: {}", merge_status);
return Ok((None, IntegrationResult::Unmerged(topic, merge_status)));
};
let workarea = self.ctx.prepare(head_commit)?;
let merge_result = workarea.setup_merge(&bases, head_commit, &topic_commit)?;
let mut merge_command = match merge_result {
MergeResult::Conflict(conflicts) => {
debug!(target: "git-topic-stage", "rejecting: conflicts: {}", conflicts.len());
return Ok((
None,
IntegrationResult::Unstaged(topic, UnstageReason::MergeConflict(conflicts)),
));
},
MergeResult::Ready(command) => command,
};
merge_command.author(&topic.author).author_date(topic.stamp);
let merge_commit = merge_command.commit(self.create_message(self.base(), &topic))?;
let staged_topic = StagedTopic {
merge: merge_commit,
topic,
};
debug!(target: "git-topic-stage", "successfully staged as {}", staged_topic);
Ok((
Some(staged_topic.clone()),
IntegrationResult::Staged(staged_topic),
))
}
fn create_message(&self, _: &CommitId, topic: &Topic) -> String {
format!(
"{}{}{}\n\n{}{}\n{}{}\n",
STAGE_TOPIC_PREFIX,
topic.name,
STAGE_TOPIC_SUFFIX,
TOPIC_ID_TRAILER,
topic.id,
TOPIC_URL_TRAILER,
topic.url,
)
}
}