-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcmd_diff_log.cc
991 lines (848 loc) · 29.8 KB
/
cmd_diff_log.cc
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
// Copyright (C) 2002 Graydon Hoare <[email protected]>
//
// This program is made available under the GNU GPL version 2.0 or
// greater. See the accompanying file COPYING for details.
//
// This program is distributed WITHOUT ANY WARRANTY; without even the
// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
// PURPOSE.
#include "base.hh"
#include <deque>
#include <map>
#include <iostream>
#include <sstream>
#include <queue>
#include "asciik.hh"
#include "charset.hh"
#include "cmd.hh"
#include "diff_patch.hh"
#include "file_io.hh"
#include "restrictions.hh"
#include "revision.hh"
#include "rev_height.hh"
#include "simplestring_xform.hh"
#include "transforms.hh"
#include "app_state.hh"
#include "project.hh"
#include "database.hh"
#include "work.hh"
#include "roster.hh"
using std::cout;
using std::deque;
using std::make_pair;
using std::map;
using std::ostream;
using std::ostringstream;
using std::pair;
using std::set;
using std::string;
using std::vector;
using std::priority_queue;
using boost::lexical_cast;
// The changes_summary structure holds a list all of files and directories
// affected in a revision, and is useful in the 'log' command to print this
// information easily. It has to be constructed from all cset objects
// that belong to a revision.
struct
changes_summary
{
cset cs;
changes_summary(void);
void add_change_set(cset const & cs);
void print(ostream & os, size_t max_cols) const;
};
changes_summary::changes_summary(void)
{
}
void
changes_summary::add_change_set(cset const & c)
{
if (c.empty())
return;
// FIXME: not sure whether it matters for an informal summary
// object like this, but the pre-state names in deletes and renames
// are not really sensible to union; they refer to different trees
// so mixing them up in a single set is potentially ambiguous.
copy(c.nodes_deleted.begin(), c.nodes_deleted.end(),
inserter(cs.nodes_deleted, cs.nodes_deleted.begin()));
copy(c.files_added.begin(), c.files_added.end(),
inserter(cs.files_added, cs.files_added.begin()));
copy(c.dirs_added.begin(), c.dirs_added.end(),
inserter(cs.dirs_added, cs.dirs_added.begin()));
copy(c.nodes_renamed.begin(), c.nodes_renamed.end(),
inserter(cs.nodes_renamed, cs.nodes_renamed.begin()));
copy(c.deltas_applied.begin(), c.deltas_applied.end(),
inserter(cs.deltas_applied, cs.deltas_applied.begin()));
copy(c.attrs_cleared.begin(), c.attrs_cleared.end(),
inserter(cs.attrs_cleared, cs.attrs_cleared.begin()));
copy(c.attrs_set.begin(), c.attrs_set.end(),
inserter(cs.attrs_set, cs.attrs_set.begin()));
}
static void
print_indented_set(ostream & os,
set<file_path> const & s,
size_t max_cols)
{
size_t cols = 8;
os << " ";
for (set<file_path>::const_iterator i = s.begin();
i != s.end(); i++)
{
string str = lexical_cast<string>(*i);
if (str.empty())
str = "."; // project root
if (cols > 8 && cols + str.size() + 1 >= max_cols)
{
cols = 8;
os << "\n ";
}
os << ' ' << str;
cols += str.size() + 1;
}
os << '\n';
}
void
changes_summary::print(ostream & os, size_t max_cols) const
{
if (! cs.nodes_deleted.empty())
{
os << _("Deleted entries:") << '\n';
print_indented_set(os, cs.nodes_deleted, max_cols);
}
if (! cs.nodes_renamed.empty())
{
os << _("Renamed entries:") << '\n';
for (map<file_path, file_path>::const_iterator
i = cs.nodes_renamed.begin();
i != cs.nodes_renamed.end(); i++)
os << " " << i->first
<< " to " << i->second << '\n';
}
if (! cs.files_added.empty())
{
set<file_path> tmp;
for (map<file_path, file_id>::const_iterator
i = cs.files_added.begin();
i != cs.files_added.end(); ++i)
tmp.insert(i->first);
os << _("Added files:") << '\n';
print_indented_set(os, tmp, max_cols);
}
if (! cs.dirs_added.empty())
{
os << _("Added directories:") << '\n';
print_indented_set(os, cs.dirs_added, max_cols);
}
if (! cs.deltas_applied.empty())
{
set<file_path> tmp;
for (map<file_path, pair<file_id, file_id> >::const_iterator
i = cs.deltas_applied.begin();
i != cs.deltas_applied.end(); ++i)
tmp.insert(i->first);
os << _("Modified files:") << '\n';
print_indented_set(os, tmp, max_cols);
}
if (! cs.attrs_set.empty() || ! cs.attrs_cleared.empty())
{
set<file_path> tmp;
for (set<pair<file_path, attr_key> >::const_iterator
i = cs.attrs_cleared.begin();
i != cs.attrs_cleared.end(); ++i)
tmp.insert(i->first);
for (map<pair<file_path, attr_key>, attr_value>::const_iterator
i = cs.attrs_set.begin();
i != cs.attrs_set.end(); ++i)
tmp.insert(i->first.first);
os << _("Modified attrs:") << '\n';
print_indented_set(os, tmp, max_cols);
}
}
static void
do_external_diff(options & opts, lua_hooks & lua, database & db,
cset const & cs, bool new_is_archived)
{
for (map<file_path, pair<file_id, file_id> >::const_iterator
i = cs.deltas_applied.begin();
i != cs.deltas_applied.end(); ++i)
{
data data_old;
data data_new;
file_data f_old;
db.get_file_version(delta_entry_src(i), f_old);
data_old = f_old.inner();
if (new_is_archived)
{
file_data f_new;
db.get_file_version(delta_entry_dst(i), f_new);
data_new = f_new.inner();
}
else
{
read_data(delta_entry_path(i), data_new);
}
bool is_binary = false;
if (guess_binary(data_old()) ||
guess_binary(data_new()))
is_binary = true;
lua.hook_external_diff(delta_entry_path(i),
data_old,
data_new,
is_binary,
opts.external_diff_args_given,
opts.external_diff_args,
encode_hexenc(delta_entry_src(i).inner()()),
encode_hexenc(delta_entry_dst(i).inner()()));
}
}
static void
dump_diffs(lua_hooks & lua,
database & db,
cset const & cs,
set<file_path> const & paths,
std::ostream & output,
diff_type diff_format,
bool new_is_archived,
bool show_encloser,
bool limit_paths = false)
{
// 60 is somewhat arbitrary, but less than 80
string patch_sep = string(60, '=');
for (map<file_path, file_id>::const_iterator
i = cs.files_added.begin();
i != cs.files_added.end(); ++i)
{
if (limit_paths && paths.find(i->first) == paths.end())
continue;
output << patch_sep << '\n';
data unpacked;
vector<string> lines;
if (new_is_archived)
{
file_data dat;
db.get_file_version(i->second, dat);
unpacked = dat.inner();
}
else
{
read_data(i->first, unpacked);
}
std::string pattern("");
if (show_encloser)
lua.hook_get_encloser_pattern(i->first, pattern);
make_diff(i->first.as_internal(),
i->first.as_internal(),
i->second,
i->second,
data(), unpacked,
output, diff_format, pattern);
}
map<file_path, file_path> reverse_rename_map;
for (map<file_path, file_path>::const_iterator
i = cs.nodes_renamed.begin();
i != cs.nodes_renamed.end(); ++i)
{
reverse_rename_map.insert(make_pair(i->second, i->first));
}
for (map<file_path, pair<file_id, file_id> >::const_iterator
i = cs.deltas_applied.begin();
i != cs.deltas_applied.end(); ++i)
{
if (limit_paths && paths.find(i->first) == paths.end())
continue;
file_data f_old;
data data_old, data_new;
output << patch_sep << '\n';
db.get_file_version(delta_entry_src(i), f_old);
data_old = f_old.inner();
if (new_is_archived)
{
file_data f_new;
db.get_file_version(delta_entry_dst(i), f_new);
data_new = f_new.inner();
}
else
{
read_data(delta_entry_path(i), data_new);
}
file_path dst_path = delta_entry_path(i);
file_path src_path = dst_path;
map<file_path, file_path>::const_iterator re;
re = reverse_rename_map.find(dst_path);
if (re != reverse_rename_map.end())
src_path = re->second;
std::string pattern("");
if (show_encloser)
lua.hook_get_encloser_pattern(src_path, pattern);
make_diff(src_path.as_internal(),
dst_path.as_internal(),
delta_entry_src(i),
delta_entry_dst(i),
data_old, data_new,
output, diff_format, pattern);
}
}
static void
dump_diffs(lua_hooks & lua,
database & db,
cset const & cs,
std::ostream & output,
diff_type diff_format,
bool new_is_archived,
bool show_encloser)
{
set<file_path> dummy;
dump_diffs(lua, db, cs, dummy, output,
diff_format, new_is_archived, show_encloser);
}
// common functionality for diff and automate content_diff to determine
// revisions and rosters which should be diffed
// FIXME needs app_state in order to create workspace objects (sometimes)
static void
prepare_diff(app_state & app,
database & db,
cset & included,
args_vector args,
bool & new_is_archived,
std::string & revheader)
{
temp_node_id_source nis;
ostringstream header;
cset excluded;
// initialize before transaction so we have a database to work with.
project_t project(db);
N(app.opts.revision_selectors.size() <= 2,
F("more than two revisions given"));
if (app.opts.revision_selectors.empty())
{
roster_t old_roster, restricted_roster, new_roster;
revision_id old_rid;
parent_map parents;
workspace work(app);
work.get_parent_rosters(db, parents);
// With no arguments, which parent should we diff against?
N(parents.size() == 1,
F("this workspace has more than one parent\n"
"(specify a revision to diff against with --revision)"));
old_rid = parent_id(parents.begin());
old_roster = parent_roster(parents.begin());
work.get_current_roster_shape(db, nis, new_roster);
node_restriction mask(work, args_to_paths(args),
args_to_paths(app.opts.exclude_patterns),
app.opts.depth,
old_roster, new_roster);
work.update_current_roster_from_filesystem(new_roster, mask);
make_restricted_roster(old_roster, new_roster, restricted_roster,
mask);
make_cset(old_roster, restricted_roster, included);
make_cset(restricted_roster, new_roster, excluded);
new_is_archived = false;
header << "# old_revision [" << old_rid << "]\n";
}
else if (app.opts.revision_selectors.size() == 1)
{
roster_t old_roster, restricted_roster, new_roster;
revision_id r_old_id;
workspace work(app);
complete(app.opts, app.lua, project, idx(app.opts.revision_selectors, 0)(), r_old_id);
db.get_roster(r_old_id, old_roster);
work.get_current_roster_shape(db, nis, new_roster);
node_restriction mask(work, args_to_paths(args),
args_to_paths(app.opts.exclude_patterns),
app.opts.depth,
old_roster, new_roster);
work.update_current_roster_from_filesystem(new_roster, mask);
make_restricted_roster(old_roster, new_roster, restricted_roster,
mask);
make_cset(old_roster, restricted_roster, included);
make_cset(restricted_roster, new_roster, excluded);
new_is_archived = false;
header << "# old_revision [" << r_old_id << "]\n";
}
else if (app.opts.revision_selectors.size() == 2)
{
roster_t old_roster, restricted_roster, new_roster;
revision_id r_old_id, r_new_id;
complete(app.opts, app.lua, project, idx(app.opts.revision_selectors, 0)(), r_old_id);
complete(app.opts, app.lua, project, idx(app.opts.revision_selectors, 1)(), r_new_id);
db.get_roster(r_old_id, old_roster);
db.get_roster(r_new_id, new_roster);
// FIXME: this is *possibly* a UI bug, insofar as we
// look at the restriction name(s) you provided on the command
// line in the context of new and old, *not* the working copy.
// One way of "fixing" this is to map the filenames on the command
// line to node_ids, and then restrict based on those. This
// might be more intuitive; on the other hand it would make it
// impossible to restrict to paths which are dead in the working
// copy but live between old and new. So ... no rush to "fix" it;
// discuss implications first.
//
// Let the discussion begin...
//
// - "map filenames on the command line to node_ids" needs to be done
// in the context of some roster, possibly the working copy base or
// the current working copy (or both)
// - diff with two --revision's may be done with no working copy
// - some form of "peg" revision syntax for paths that would allow
// for each path to specify which revision it is relevant to is
// probably the "right" way to go eventually. something like file@rev
// (which fails for paths with @'s in them) or possibly //rev/file
// since versioned paths are required to be relative.
node_restriction mask(args_to_paths(args),
args_to_paths(app.opts.exclude_patterns),
app.opts.depth,
old_roster, new_roster);
make_restricted_roster(old_roster, new_roster, restricted_roster,
mask);
make_cset(old_roster, restricted_roster, included);
make_cset(restricted_roster, new_roster, excluded);
new_is_archived = true;
}
else
{
I(false);
}
revheader = header.str();
}
void dump_header(std::string const & revs,
cset const & changes,
std::ostream & out,
bool show_if_empty)
{
data summary;
write_cset(changes, summary);
if (summary().empty() && !show_if_empty)
return;
vector<string> lines;
split_into_lines(summary(), lines);
out << "#\n";
if (!summary().empty())
{
out << revs << "#\n";
for (vector<string>::iterator i = lines.begin();
i != lines.end(); ++i)
out << "# " << *i << '\n';
}
else
{
out << "# " << _("no changes") << '\n';
}
out << "#\n";
}
CMD(diff, "diff", "di", CMD_REF(informative), N_("[PATH]..."),
N_("Shows current differences"),
N_("Compares the current tree with the files in the repository and "
"prints the differences on the standard output.\n"
"If one revision is given, the diff between the workspace and "
"that revision is shown. If two revisions are given, the diff "
"between them is given. If no format is specified, unified is "
"used by default."),
options::opts::revision | options::opts::depth | options::opts::exclude
| options::opts::diff_options)
{
if (app.opts.external_diff_args_given)
N(app.opts.diff_format == external_diff,
F("--diff-args requires --external\n"
"try adding --external or removing --diff-args?"));
cset included;
std::string revs;
bool new_is_archived;
database db(app);
prepare_diff(app, db, included, args, new_is_archived, revs);
if (!app.opts.without_header)
{
dump_header(revs, included, cout, true);
}
if (app.opts.diff_format == external_diff)
{
do_external_diff(app.opts, app.lua, db, included, new_is_archived);
}
else
{
dump_diffs(app.lua, db, included, cout,
app.opts.diff_format, new_is_archived,
!app.opts.no_show_encloser);
}
}
// Name: content_diff
// Arguments:
// (optional) one or more files to include
// Added in: 4.0
// Purpose: Availability of mtn diff as automate command.
//
// Output format: Like mtn diff, but with the header part omitted by default.
// If no content changes happened, the output is empty. All file operations
// beside mtn add are omitted, as they don't change the content of the file.
CMD_AUTOMATE(content_diff, N_("[FILE [...]]"),
N_("Calculates diffs of files"),
"",
options::opts::with_header | options::opts::without_header |
options::opts::revision | options::opts::depth |
options::opts::exclude)
{
cset included;
std::string dummy_header;
bool new_is_archived;
database db(app);
prepare_diff(app, db, included, args, new_is_archived, dummy_header);
if (app.opts.with_header)
{
dump_header(dummy_header, included, output, false);
}
dump_diffs(app.lua, db, included, output,
app.opts.diff_format, new_is_archived, !app.opts.no_show_encloser);
}
static void
log_certs(project_t & project, ostream & os, revision_id id, cert_name name,
string label, string separator, bool multiline, bool newline)
{
vector< revision<cert> > certs;
bool first = true;
if (multiline)
newline = true;
project.get_revision_certs_by_name(id, name, certs);
for (vector< revision<cert> >::const_iterator i = certs.begin();
i != certs.end(); ++i)
{
if (first)
os << label;
else
os << separator;
if (multiline)
os << "\n\n";
os << i->inner().value;
if (newline)
os << '\n';
first = false;
}
}
static void
log_certs(project_t & project, ostream & os, revision_id id, cert_name name,
string label, bool multiline)
{
log_certs(project, os, id, name, label, label, multiline, true);
}
static void
log_certs(project_t & project, ostream & os, revision_id id, cert_name name)
{
log_certs(project, os, id, name, " ", ",", false, false);
}
struct rev_cmp
{
bool dir;
rev_cmp(bool _dir) : dir(_dir) {}
bool operator() (pair<rev_height, revision_id> const & x,
pair<rev_height, revision_id> const & y) const
{
return dir ? (x.first < y.first) : (x.first > y.first);
}
};
typedef priority_queue<pair<rev_height, revision_id>,
vector<pair<rev_height, revision_id> >,
rev_cmp> frontier_t;
CMD(log, "log", "", CMD_REF(informative), N_("[FILE] ..."),
N_("Prints history in reverse order"),
N_("This command prints history in reverse order, filtering it by "
"FILE if given. If one or more revisions are given, uses them as "
"a starting point."),
options::opts::last | options::opts::next
| options::opts::from | options::opts::to
| options::opts::brief | options::opts::diffs
| options::opts::no_merges | options::opts::no_files
| options::opts::no_graph)
{
database db(app);
project_t project(db);
long last = app.opts.last;
long next = app.opts.next;
N(last == -1 || next == -1,
F("only one of --last/--next allowed"));
frontier_t frontier(rev_cmp(!(next>0)));
revision_id first_rid; // for mapping paths to node ids when restricted
if (app.opts.from.empty())
{
workspace work(app,
F("try passing a --from revision to start at"));
revision_t rev;
work.get_work_rev(rev);
for (edge_map::const_iterator i = rev.edges.begin();
i != rev.edges.end(); i++)
{
rev_height height;
db.get_rev_height(edge_old_revision(i), height);
frontier.push(make_pair(height, edge_old_revision(i)));
}
}
else
{
for (args_vector::const_iterator i = app.opts.from.begin();
i != app.opts.from.end(); i++)
{
set<revision_id> rids;
complete(app.opts, app.lua, project, (*i)(), rids);
for (set<revision_id>::const_iterator j = rids.begin();
j != rids.end(); ++j)
{
rev_height height;
db.get_rev_height(*j, height);
frontier.push(make_pair(height, *j));
}
if (i == app.opts.from.begin())
first_rid = *rids.begin();
}
}
node_restriction mask;
if (!args.empty())
{
// User wants to trace only specific files
if (app.opts.from.empty())
{
workspace work(app);
roster_t new_roster;
parent_map parents;
temp_node_id_source nis;
work.get_parent_rosters(db, parents);
work.get_current_roster_shape(db, nis, new_roster);
mask = node_restriction(work, args_to_paths(args),
args_to_paths(app.opts.exclude_patterns),
app.opts.depth, parents, new_roster);
}
else
{
// FIXME_RESTRICTIONS: should this add paths from the rosters of
// all selected revs?
roster_t roster;
db.get_roster(first_rid, roster);
mask = node_restriction(args_to_paths(args),
args_to_paths(app.opts.exclude_patterns),
app.opts.depth, roster);
}
}
// If --to was given, don't log past those revisions.
set<revision_id> disallowed;
bool use_disallowed(!app.opts.to.empty());
if (use_disallowed)
{
std::deque<revision_id> to;
for (args_vector::const_iterator i = app.opts.to.begin();
i != app.opts.to.end(); i++)
{
MM(*i);
set<revision_id> rids;
complete(app.opts, app.lua, project, (*i)(), rids);
for (set<revision_id>::const_iterator j = rids.begin();
j != rids.end(); ++j)
{
I(!null_id(*j));
pair<set<revision_id>::iterator, bool> res = disallowed.insert(*j);
if (res.second)
{
to.push_back(*j);
}
}
}
while (!to.empty())
{
revision_id const & rid(to.front());
MM(rid);
set<revision_id> relatives;
MM(relatives);
if (next > 0)
{
db.get_revision_children(rid, relatives);
}
else
{
db.get_revision_parents(rid, relatives);
}
for (set<revision_id>::const_iterator i = relatives.begin();
i != relatives.end(); ++i)
{
if (null_id(*i))
continue;
pair<set<revision_id>::iterator, bool> res = disallowed.insert(*i);
if (res.second)
{
to.push_back(*i);
}
}
to.pop_front();
}
}
cert_name author_name(author_cert_name);
cert_name date_name(date_cert_name);
cert_name branch_name(branch_cert_name);
cert_name tag_name(tag_cert_name);
cert_name changelog_name(changelog_cert_name);
cert_name comment_name(comment_cert_name);
// we can use the markings if we walk backwards for a restricted log
bool use_markings(!(next>0) && !mask.empty());
set<revision_id> seen;
revision_t rev;
// this is instantiated even when not used, but it's lightweight
asciik graph(cout);
while(! frontier.empty() && (last == -1 || last > 0)
&& (next == -1 || next > 0))
{
revision_id const & rid = frontier.top().second;
bool print_this = mask.empty();
set<file_path> diff_paths;
if (null_id(rid) || seen.find(rid) != seen.end())
{
frontier.pop();
continue;
}
seen.insert(rid);
db.get_revision(rid, rev);
set<revision_id> marked_revs;
if (!mask.empty())
{
roster_t roster;
marking_map markings;
db.get_roster(rid, roster, markings);
// get all revision ids mentioned in one of the markings
for (marking_map::const_iterator m = markings.begin();
m != markings.end(); ++m)
{
node_id node = m->first;
marking_t marking = m->second;
if (mask.includes(roster, node))
{
marked_revs.insert(marking.file_content.begin(), marking.file_content.end());
marked_revs.insert(marking.parent_name.begin(), marking.parent_name.end());
for (map<attr_key, set<revision_id> >::const_iterator a = marking.attrs.begin();
a != marking.attrs.end(); ++a)
marked_revs.insert(a->second.begin(), a->second.end());
}
}
// find out whether the current rev is to be printed
// we don't care about changed paths if it is not marked
if (!use_markings || marked_revs.find(rid) != marked_revs.end())
{
set<node_id> nodes_modified;
select_nodes_modified_by_rev(db, rev, roster,
nodes_modified);
for (set<node_id>::const_iterator n = nodes_modified.begin();
n != nodes_modified.end(); ++n)
{
// a deleted node will be "modified" but won't
// exist in the result.
// we don't want to print them.
if (roster.has_node(*n) && mask.includes(roster, *n))
{
print_this = true;
if (app.opts.diffs)
{
file_path fp;
roster.get_name(*n, fp);
diff_paths.insert(fp);
}
}
}
}
}
if (app.opts.no_merges && rev.is_merge_node())
print_this = false;
set<revision_id> interesting;
// if rid is not marked we can jump directly to the marked ancestors,
// otherwise we need to visit the parents
if (use_markings && marked_revs.find(rid) == marked_revs.end())
{
interesting.insert(marked_revs.begin(), marked_revs.end());
}
else
{
if (next > 0)
db.get_revision_children(rid, interesting);
else // walk backwards by default
db.get_revision_parents(rid, interesting);
}
if (print_this)
{
ostringstream out;
if (app.opts.brief)
{
out << rid;
log_certs(project, out, rid, author_name);
if (app.opts.no_graph)
log_certs(project, out, rid, date_name);
else
{
out << '\n';
log_certs(project, out, rid, date_name,
string(), string(), false, false);
}
log_certs(project, out, rid, branch_name);
out << '\n';
}
else
{
out << string(65, '-') << '\n';
out << "Revision: " << rid << '\n';
changes_summary csum;
set<revision_id> ancestors;
for (edge_map::const_iterator e = rev.edges.begin();
e != rev.edges.end(); ++e)
{
ancestors.insert(edge_old_revision(e));
csum.add_change_set(edge_changes(e));
}
for (set<revision_id>::const_iterator anc = ancestors.begin();
anc != ancestors.end(); ++anc)
out << "Ancestor: " << *anc << '\n';
log_certs(project, out, rid, author_name, "Author: ", false);
log_certs(project, out, rid, date_name, "Date: ", false);
log_certs(project, out, rid, branch_name, "Branch: ", false);
log_certs(project, out, rid, tag_name, "Tag: ", false);
if (!app.opts.no_files && !csum.cs.empty())
{
out << '\n';
csum.print(out, 70);
out << '\n';
}
log_certs(project, out, rid, changelog_name, "ChangeLog: ", true);
log_certs(project, out, rid, comment_name, "Comments: ", true);
}
if (app.opts.diffs)
{
for (edge_map::const_iterator e = rev.edges.begin();
e != rev.edges.end(); ++e)
dump_diffs(app.lua, db, edge_changes(e), diff_paths, out,
app.opts.diff_format, true,
!app.opts.no_show_encloser, !mask.empty());
}
if (next > 0)
next--;
else if (last > 0)
last--;
string out_system;
utf8_to_system_best_effort(utf8(out.str()), out_system);
if (app.opts.no_graph)
cout << out_system;
else
graph.print(rid, interesting, out_system);
}
else if (use_markings && !app.opts.no_graph)
graph.print(rid, interesting,
(F("(Revision: %s)") % rid).str());
frontier.pop(); // beware: rid is invalid from now on
for (set<revision_id>::const_iterator i = interesting.begin();
i != interesting.end(); ++i)
{
if (use_disallowed && (disallowed.find(*i) != disallowed.end()))
{
continue;
}
rev_height height;
db.get_rev_height(*i, height);
frontier.push(make_pair(height, *i));
}
}
}
// Local Variables:
// mode: C++
// fill-column: 76
// c-file-style: "gnu"
// indent-tabs-mode: nil
// End:
// vim: et:sw=2:sts=2:ts=2:cino=>2s,{s,\:s,+s,t0,g0,^-2,e-2,n-2,p2s,(0,=s: