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
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
use std::collections::{HashMap, BTreeMap};
use std::convert::AsRef;
use std::env;
use std::fmt::{self, Display};
use std::fs::File;
use std::io::Read;
use std::path::{Path, PathBuf};
use std::process::Command;
use clap::ArgMatches;
use toml::{Value, Parser};
use semver;
use git::{Commits, Commit};
use log_writer::LogWriter;
use sectionmap::SectionMap;
use CLOG_CONFIG_FILE;
arg_enum!{
#[derive(Debug)]
pub enum LinkStyle {
Github,
Gitlab,
Stash
}
}
impl LinkStyle {
pub fn issue_link<S: AsRef<str>>(&self, issue: S, repo: S) -> String {
match repo.as_ref() {
"" => format!("(#{})", issue.as_ref()),
link => {
match *self {
LinkStyle::Github => format!("[#{}]({}/issues/{})", issue.as_ref(), link, issue.as_ref()),
LinkStyle::Gitlab => format!("[#{}]({}/issues/{})", issue.as_ref(), link, issue.as_ref()),
LinkStyle::Stash => format!("(#{})", issue.as_ref())
}
}
}
}
pub fn commit_link<S: AsRef<str>>(&self, hash: S, repo: S) -> String {
let short_hash = &hash.as_ref()[0..8];
match repo.as_ref() {
"" => format!("({})", short_hash),
link => {
match *self {
LinkStyle::Github => format!("[{}]({}/commit/{})", short_hash, link, hash.as_ref()),
LinkStyle::Gitlab => format!("[{}]({}/commit/{})", short_hash, link, hash.as_ref()),
LinkStyle::Stash => format!("[{}]({}/commits/{})", short_hash, link, hash.as_ref())
}
}
}
}
}
pub struct Clog {
pub grep: String,
pub format: String,
pub repo: String,
pub link_style: LinkStyle,
pub version: String,
pub patch_ver: bool,
pub subtitle: String,
pub from: String,
pub to: String,
pub changelog: String,
pub section_map: HashMap<String, Vec<String>>,
pub git_dir: Option<PathBuf>,
pub git_work_tree: Option<PathBuf>,
}
impl fmt::Debug for Clog {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{{
grep: {:?}
format: {:?}
repo: {:?}
link_style: {:?}
version: {:?}
patch_ver: {:?}
subtitle: {:?}
from: {:?}
to: {:?}
changelog: {:?}
section_map: {:?}
git_dir: {:?}
git_work_tree: {:?}
}}",
self.grep,
self.format,
self.repo,
self.link_style,
self.version,
self.patch_ver,
self.subtitle,
self.from,
self.to,
self.changelog,
self.section_map,
self.git_dir,
self.git_work_tree
)
}
}
pub type ClogResult = Result<Clog, Box<Display>>;
impl Clog {
fn _new() -> Clog {
debugln!("Creating private default clog");
let mut sections = HashMap::new();
sections.insert("Features".to_owned(), vec!["ft".to_owned(), "feat".to_owned()]);
sections.insert("Bug Fixes".to_owned(), vec!["fx".to_owned(), "fix".to_owned()]);
sections.insert("Unknown".to_owned(), vec!["unk".to_owned()]);
sections.insert("Breaks".to_owned(), vec![]);
Clog {
grep: format!("{}BREAKING'",
sections.values()
.map(|v| v.iter().fold(String::new(), |acc, al| {
acc + &format!("^{}|", al)[..]
}))
.fold(String::new(), |acc, al| {
acc + &format!("^{}|", al)[..]
})),
format: "%H%n%s%n%b%n==END==".to_owned(),
repo: "".to_owned(),
link_style: LinkStyle::Github,
version: "".to_owned(),
patch_ver: false,
subtitle: "".to_owned(),
from: "".to_owned(),
to: "HEAD".to_owned(),
changelog: "changelog.md".to_owned(),
section_map: sections,
git_dir: None,
git_work_tree: None,
}
}
pub fn new() -> ClogResult {
debugln!("Creating public default clog");
Clog::from_file(CLOG_CONFIG_FILE)
}
pub fn with_all<P: AsRef<Path>>(git_dir: P, work_tree: P, cfg_file: P) -> ClogResult {
debugln!("Creating clog with \n\tgit_dir: {:?}\n\twork_tree: {:?}\n\tcfg_file: {:?}",
git_dir.as_ref(),
work_tree.as_ref(),
cfg_file.as_ref());
let clog = try!(Clog::with_dirs(git_dir,
work_tree));
clog.try_config_file(cfg_file.as_ref())
}
pub fn with_dir_and_file<P: AsRef<Path>>(dir: P, cfg_file: P) -> ClogResult {
debugln!("Creating clog with \n\tdir: {:?}\n\tcfg_file: {:?}",
dir.as_ref(),
cfg_file.as_ref());
let clog = try!(Clog::_with_dir(dir));
clog.try_config_file(cfg_file.as_ref())
}
fn _with_dir<P: AsRef<Path>>(dir: P) -> ClogResult {
debugln!("Creating private clog with \n\tdir: {:?}", dir.as_ref());
let mut clog = Clog::_new();
if dir.as_ref().ends_with(".git") {
debugln!("dir ends with .git");
let mut wd = dir.as_ref().to_path_buf();
clog.git_dir = Some(wd.clone());
wd.pop();
clog.git_work_tree = Some(wd);
} else {
debugln!("dir doesn't end with .git");
let mut gd = dir.as_ref().to_path_buf();
clog.git_work_tree = Some(gd.clone());
gd.push(".git");
clog.git_dir = Some(gd);
}
debugln!("Returning clog:\n{:?}", clog);
Ok(clog)
}
pub fn with_dir<P: AsRef<Path>>(dir: P) -> ClogResult {
debugln!("Creating clog with \n\tdir: {:?}", dir.as_ref());
let clog = try!(Clog::_with_dir(dir));
clog.try_config_file(Path::new(CLOG_CONFIG_FILE))
}
pub fn with_dirs<P: AsRef<Path>>(git_dir: P, work_tree: P) -> ClogResult {
debugln!("Creating clog with \n\tgit_dir: {:?}\n\twork_tree: {:?}",
git_dir.as_ref(),
work_tree.as_ref());
let mut clog = Clog::_new();
clog.git_dir = Some(git_dir.as_ref().to_path_buf());
clog.git_work_tree = Some(work_tree.as_ref().to_path_buf());
clog.try_config_file(Path::new(CLOG_CONFIG_FILE))
}
pub fn from_file<P: AsRef<Path>>(file: P) -> ClogResult {
debugln!("Creating clog with \n\tfile: {:?}", file.as_ref());
let cfg_file = if file.as_ref().is_relative() {
debugln!("file is relative");
let cwd = match env::current_dir() {
Ok(d) => d,
Err(e) => return Err(Box::new(e)),
};
Path::new(&cwd).join(file.as_ref())
} else {
debugln!("file is absolute");
file.as_ref().to_path_buf()
};
let mut dir = cfg_file.clone();
dir.pop();
Clog::with_dir_and_file(dir, cfg_file)
}
fn try_config_file(mut self, cfg_file: &Path) -> ClogResult {
debugln!("Trying to use config file: {:?}", cfg_file);
let mut toml_from_latest = None;
let mut toml_repo = None;
let mut toml_subtitle = None;
let mut toml_link_style = None;
let mut toml_outfile = None;
if let Ok(ref mut toml_f) = File::open(cfg_file) {
debugln!("Found file");
let mut toml_s = String::with_capacity(100);
if let Err(e) = toml_f.read_to_string(&mut toml_s) {
return Err(Box::new(e))
}
toml_s.shrink_to_fit();
let mut toml = Parser::new(&toml_s[..]);
let toml_table = match toml.parse() {
Some(table) => table,
None => {
return Err(Box::new(format!("Error parsing file: {}\n\nPlease check the format or specify the options manually", cfg_file.to_str().unwrap_or("UNABLE TO DISPLAY"))))
}
};
let clog_table = match toml_table.get("clog") {
Some(table) => table,
None => {
return Err(Box::new(format!("Error parsing file {}\n\nPlease check the format or specify the options manually", cfg_file.to_str().unwrap_or("UNABLE TO DISPLAY"))))
}
};
toml_from_latest = clog_table.lookup("from-latest-tag").unwrap_or(&Value::Boolean(false)).as_bool();
toml_repo = match clog_table.lookup("repository") {
Some(val) => Some(val.as_str().unwrap_or("").to_owned()),
None => Some("".to_owned())
};
toml_subtitle = match clog_table.lookup("subtitle") {
Some(val) => Some(val.as_str().unwrap_or("").to_owned()),
None => Some("".to_owned())
};
toml_link_style = match clog_table.lookup("link-style") {
Some(val) => match val.as_str().unwrap_or("github").parse::<LinkStyle>() {
Ok(style) => Some(style),
Err(err) => {
return Err(Box::new(format!("Error parsing file {}\n\n{}", cfg_file.to_str().unwrap_or("UNABLE TO DISPLAY"), err)))
}
},
None => Some(LinkStyle::Github)
};
toml_outfile = match clog_table.lookup("outfile") {
Some(val) => Some(val.as_str().unwrap_or("changelog.md").to_owned()),
None => None
};
match toml_table.get("sections") {
Some(table) => {
match table.as_table() {
Some(table) => {
for (sec, val) in table.iter() {
if let Some(vec) = val.as_slice() {
let alias_vec = vec.iter().map(|v| v.as_str().unwrap_or("").to_owned()).collect::<Vec<_>>();
self.section_map.insert(sec.to_owned(), alias_vec);
}
}
},
None => ()
}
},
None => ()
};
};
if toml_from_latest.unwrap_or(false) {
self.from = self.get_latest_tag();
}
if let Some(repo) = toml_repo {
self.repo = repo;
}
if let Some(ls) = toml_link_style {
self.link_style = ls;
}
if let Some(subtitle) = toml_subtitle {
self.subtitle = subtitle;
}
if let Some(outfile) = toml_outfile {
self.changelog = outfile;
}
debugln!("Returning clog:\n{:?}", self);
Ok(self)
}
pub fn from_matches(matches: &ArgMatches) -> ClogResult {
debugln!("Creating clog from matches");
let mut clog = if let Some(cfg) = matches.value_of("config") {
debugln!("User passed in config file: {:?}", cfg);
if matches.is_present("workdir") && matches.is_present("gitdir") {
debugln!("User passed in both\n\tworking dir: {:?}\n\tgit dir: {:?}", matches.value_of("workdir"), matches.value_of("gitdir"));
try!(Clog::with_all(matches.value_of("gitdir").unwrap(),
matches.value_of("workdir").unwrap(),
cfg))
} else if let Some(dir) = matches.value_of("workdir") {
debugln!("User passed in working dir: {:?}", dir);
try!(Clog::with_dir_and_file(dir, cfg))
} else if let Some(dir) = matches.value_of("gitdir") {
debugln!("User passed in git dir: {:?}", dir);
try!(Clog::with_dir_and_file(dir, cfg))
} else {
debugln!("User only passed config");
try!(Clog::from_file(cfg))
}
} else {
debugln!("User didn't pass in a config");
if matches.is_present("gitdir") && matches.is_present("workdir") {
let wdir = matches.value_of("workdir").unwrap();
let gdir = matches.value_of("gitdir").unwrap();
debugln!("User passed in both\n\tworking dir: {:?}\n\tgit dir: {:?}", wdir, gdir);
try!(Clog::with_dirs(gdir, wdir))
} else if let Some(dir) = matches.value_of("gitdir") {
debugln!("User passed in git dir: {:?}", dir);
try!(Clog::with_dir(dir))
} else if let Some(dir) = matches.value_of("workdir") {
debugln!("User passed in working dir: {:?}", dir);
try!(Clog::with_dir(dir))
} else {
debugln!("Trying the default config file");
try!(Clog::from_file(CLOG_CONFIG_FILE))
}
};
clog.version = {
let (major, minor, patch) = (matches.is_present("major"), matches.is_present("minor"), matches.is_present("patch"));
if matches.is_present("ver") {
matches.value_of("ver").unwrap().to_owned()
} else if major || minor || patch {
let mut had_v = false;
let v_string = clog.get_latest_tag_ver();
let first_char = v_string.chars().nth(0).unwrap_or(' ');
let v_slice = if first_char == 'v' || first_char == 'V' {
had_v = true;
v_string.trim_left_matches(|c| c == 'v' || c == 'V')
} else {
&v_string[..]
};
match semver::Version::parse(v_slice) {
Ok(ref mut v) => {
match (major, minor, patch) {
(true,_,_) => { v.major += 1; v.minor = 0; v.patch = 0; },
(_,true,_) => { v.minor += 1; v.patch = 0; },
(_,_,true) => { v.patch += 1; clog.patch_ver = true; },
_ => unreachable!()
}
format!("{}{}", if had_v{"v"}else{""}, v)
},
Err(e) => {
return Err(Box::new(format!("Error: {}\n\n\tEnsure the tag format follows Semantic Versioning such as N.N.N\n\tor set the version manually with --setversion <version>" , e )));
}
}
} else {
clog.version
}
};
if let Some(from) = matches.value_of("from") {
clog.from = from.to_owned();
} else if matches.is_present("from-latest-tag") {
clog.from = clog.get_latest_tag();
}
if let Some(repo) = matches.value_of("repo") {
clog.repo = repo.to_owned();
}
if matches.is_present("link-style") {
clog.link_style = value_t!(matches.value_of("link-style"), LinkStyle).unwrap_or(LinkStyle::Github);
}
if let Some(subtitle) = matches.value_of("subtitle") {
clog.subtitle = subtitle.to_owned();
}
if let Some(file) = matches.value_of("outfile") {
clog.changelog = file.to_owned();
}
debugln!("Returning clog:\n{:?}", clog);
Ok(clog)
}
pub fn grep<S: Into<String>>(&mut self, g: S) -> &mut Clog {
self.grep = g.into();
self
}
pub fn format<S: Into<String>>(&mut self, f: S) -> &mut Clog {
self.format = f.into();
self
}
pub fn repository<S: Into<String>>(&mut self, r: S) -> &mut Clog {
self.repo = r.into();
self
}
pub fn link_style(&mut self, l: LinkStyle) -> &mut Clog {
self.link_style = l;
self
}
pub fn version<S: Into<String>>(&mut self, v: S) -> &mut Clog {
self.version = v.into();
self
}
pub fn subtitle<S: Into<String>>(&mut self, s: S) -> &mut Clog {
self.subtitle = s.into();
self
}
pub fn from<S: Into<String>>(&mut self, f: S) -> &mut Clog {
self.from = f.into();
self
}
pub fn to<S: Into<String>>(&mut self, t: S) -> &mut Clog {
self.to = t.into();
self
}
pub fn changelog<S: Into<String>>(&mut self, c: S) -> &mut Clog {
self.changelog = c.into();
self
}
pub fn git_dir<P: AsRef<Path>>(&mut self, d: P) -> &mut Clog {
self.git_dir = Some(d.as_ref().to_path_buf());
self
}
pub fn git_work_tree<P: AsRef<Path>>(&mut self, d: P) -> &mut Clog {
self.git_work_tree = Some(d.as_ref().to_path_buf());
self
}
pub fn patch_ver(&mut self, p: bool) -> &mut Clog {
self.patch_ver = p;
self
}
pub fn get_commits(&self) -> Commits {
let range = match &self.from[..] {
"" => "HEAD".to_owned(),
_ => format!("{}..{}", self.from, self.to)
};
let output = Command::new("git")
.arg(&self.get_git_dir()[..])
.arg(&self.get_git_work_tree()[..])
.arg("log")
.arg("-E")
.arg(&format!("--grep={}", self.grep))
.arg(&format!("--format={}", self.format))
.arg(&range)
.output().unwrap_or_else(|e| panic!("Failed to run 'git log' with error: {}", e));
String::from_utf8_lossy(&output.stdout)
.split("\n==END==\n")
.map(|commit_str| { self.parse_raw_commit(commit_str) })
.filter(| entry| entry.commit_type != "Unknown")
.collect()
}
fn parse_raw_commit(&self, commit_str:&str) -> Commit {
let mut lines = commit_str.split('\n');
let hash = lines.next().unwrap_or("").to_owned();
let commit_pattern = regex!(r"^(.*?)(?:\((.*)?\))?:(.*)");
let (subject, component, commit_type) =
match lines.next().and_then(|s| commit_pattern.captures(s)) {
Some(caps) => {
let commit_type = self.section_for(caps.at(1).unwrap_or("")).to_owned();
let component = caps.at(2);
let subject = caps.at(3);
(subject, component, commit_type)
},
None => (Some(""), Some(""), self.section_for("unk").clone())
};
let closes_pattern = regex!(r"(?:Closes|Fixes|Resolves)\s((?:#(\d+)(?:,\s)?)+)");
let closes = lines.filter_map(|line| closes_pattern.captures(line))
.map(|caps| caps.at(2).unwrap_or("").to_owned())
.collect();
Commit {
hash: hash,
subject: subject.unwrap().to_owned(),
component: component.unwrap_or("").to_owned(),
closes: closes,
breaks: vec![],
commit_type: commit_type
}
}
pub fn get_latest_tag(&self) -> String {
let output = Command::new("git")
.arg(&self.get_git_dir()[..])
.arg(&self.get_git_work_tree()[..])
.arg("rev-list")
.arg("--tags")
.arg("--max-count=1")
.output().unwrap_or_else(|e| panic!("Failed to run 'git rev-list' with error: {}",e));
let buf = String::from_utf8_lossy(&output.stdout);
buf.trim_matches('\n').to_owned()
}
pub fn get_latest_tag_ver(&self) -> String {
let output = Command::new("git")
.arg(&self.get_git_dir()[..])
.arg(&self.get_git_work_tree()[..])
.arg("describe")
.arg("--tags")
.arg("--abbrev=0")
.output().unwrap_or_else(|e| panic!("Failed to run 'git describe' with error: {}",e));
String::from_utf8_lossy(&output.stdout).into_owned()
}
pub fn get_last_commit(&self) -> String {
let output = Command::new("git")
.arg(&self.get_git_dir()[..])
.arg(&self.get_git_work_tree()[..])
.arg("rev-parse")
.arg("HEAD")
.output().unwrap_or_else(|e| panic!("Failed to run 'git rev-parse' with error: {}", e));
String::from_utf8_lossy(&output.stdout).into_owned()
}
fn get_git_work_tree(&self) -> String {
if self.git_work_tree.is_none() && self.git_dir.is_none() {
"".to_owned()
} else if self.git_dir.is_some() {
format!("--work-tree={}", self.git_work_tree.clone().unwrap().to_str().unwrap())
} else {
let mut w = self.git_work_tree.clone().unwrap();
w.pop();
format!("--work-tree={}", w.to_str().unwrap())
}
}
fn get_git_dir(&self) -> String {
if self.git_dir.is_none() && self.git_work_tree.is_none() {
"".to_owned()
} else if self.git_work_tree.is_some() {
format!("--git-dir={}", self.git_dir.clone().unwrap().to_str().unwrap())
} else {
let mut g = self.git_dir.clone().unwrap();
g.push(".git");
format!("--git-dir={}", g.to_str().unwrap())
}
}
pub fn section_for(&self, alias: &str) -> &String {
self.section_map.iter().filter(|&(_, v)| v.iter().any(|s| s == alias)).map(|(k, _)| k).next().unwrap_or(self.section_map.keys().filter(|&k| *k == "Unknown".to_owned()).next().unwrap())
}
pub fn write_changelog_to<P: AsRef<Path>>(&self, cl: P) {
let sm = SectionMap::from_commits(self.get_commits());
let mut contents = String::new();
File::open(cl.as_ref()).map(|mut f| f.read_to_string(&mut contents).ok()).ok();
let mut file = File::create(cl.as_ref()).ok().unwrap();
let mut writer = LogWriter::new(&mut file, self);
writer.write_header().ok().expect("failed to write header");
for (sec, secmap) in sm.sections {
writer.write_section(&sec[..], &secmap.iter().collect::<BTreeMap<_,_>>()).ok().expect(&format!("failed to write {}", sec)[..]);
}
writer.write(&contents[..]).ok().expect("failed to write contents");
}
pub fn write_changelog(&self) {
self.write_changelog_to(&self.changelog[..]);
}
}