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
use crate::model::*;
use std::io;

#[non_exhaustive]
pub struct SerializerSettings {
    pub indent: String,
    pub eol: String,

    pub transaction_date_format: String,
    pub commodity_date_format: String,

    /// Should single line posting comments be printed on the same line as the posting?
    pub posting_comments_sameline: bool,
}

impl SerializerSettings {
    pub fn with_indent(mut self, indent: &str) -> Self {
        indent.clone_into(&mut self.indent);
        self
    }

    pub fn with_eol(mut self, eol: &str) -> Self {
        eol.clone_into(&mut self.eol);
        self
    }
}

impl Default for SerializerSettings {
    fn default() -> Self {
        Self {
            indent: "  ".to_owned(),
            eol: "\n".to_owned(),
            transaction_date_format: "%Y-%m-%d".to_owned(),
            commodity_date_format: "%Y-%m-%d %H:%M:%S".to_owned(),
            posting_comments_sameline: false,
        }
    }
}

pub trait Serializer {
    fn write<W>(&self, writer: &mut W, settings: &SerializerSettings) -> Result<(), io::Error>
    where
        W: io::Write;

    fn to_string_pretty(&self, settings: &SerializerSettings) -> String {
        let mut res = Vec::new();
        self.write(&mut res, settings).unwrap();
        return std::str::from_utf8(&res).unwrap().to_owned();
    }
}

impl Serializer for Ledger {
    fn write<W>(&self, writer: &mut W, settings: &SerializerSettings) -> Result<(), io::Error>
    where
        W: io::Write,
    {
        for item in &self.items {
            item.write(writer, settings)?;
        }
        Ok(())
    }
}

impl Serializer for LedgerItem {
    fn write<W>(&self, writer: &mut W, settings: &SerializerSettings) -> Result<(), io::Error>
    where
        W: io::Write,
    {
        match self {
            LedgerItem::EmptyLine => write!(writer, "{}", settings.eol)?,
            LedgerItem::LineComment(comment) => write!(writer, "; {}{}", comment, settings.eol)?,
            LedgerItem::Transaction(transaction) => {
                transaction.write(writer, settings)?;
                write!(writer, "{}", settings.eol)?;
            }
            LedgerItem::CommodityPrice(commodity_price) => {
                commodity_price.write(writer, settings)?;
                write!(writer, "{}", settings.eol)?;
            }
            LedgerItem::Include(file) => write!(writer, "include {}{}", file, settings.eol)?,
        }
        Ok(())
    }
}

impl Serializer for Transaction {
    fn write<W>(&self, writer: &mut W, settings: &SerializerSettings) -> Result<(), io::Error>
    where
        W: io::Write,
    {
        write!(
            writer,
            "{}",
            self.date.format(&settings.transaction_date_format)
        )?;

        if let Some(effective_date) = self.effective_date {
            write!(
                writer,
                "={}",
                effective_date.format(&settings.transaction_date_format)
            )?;
        }

        if let Some(ref status) = self.status {
            write!(writer, " ")?;
            status.write(writer, settings)?;
        }

        if let Some(ref code) = self.code {
            write!(writer, " ({})", code)?;
        }

        // for the None case, ledger would print "<Unspecified payee>"
        if let Some(ref description) = self.description {
            if !description.is_empty() {
                write!(writer, " {}", description)?;
            }
        }

        if let Some(ref comment) = self.comment {
            for comment in comment.split('\n') {
                write!(writer, "{}{}; {}", settings.eol, settings.indent, comment)?;
            }
        }

        for tag in &self.posting_metadata.tags {
            write!(writer, "{}{}; {}", settings.eol, settings.indent, tag.name)?;
            if let Some(ref value) = tag.value {
                write!(writer, ": {}", value)?;
            };
        }

        for posting in &self.postings {
            write!(writer, "{}{}", settings.eol, settings.indent)?;
            posting.write(writer, settings)?;
        }

        Ok(())
    }
}

impl Serializer for TransactionStatus {
    fn write<W>(&self, writer: &mut W, _settings: &SerializerSettings) -> Result<(), io::Error>
    where
        W: io::Write,
    {
        match self {
            TransactionStatus::Pending => write!(writer, "!"),
            TransactionStatus::Cleared => write!(writer, "*"),
        }
    }
}

impl Serializer for Posting {
    fn write<W>(&self, writer: &mut W, settings: &SerializerSettings) -> Result<(), io::Error>
    where
        W: io::Write,
    {
        if let Some(ref status) = self.status {
            status.write(writer, settings)?;
            write!(writer, " ")?;
        }

        match self.reality {
            Reality::Real => write!(writer, "{}", self.account)?,
            Reality::BalancedVirtual => write!(writer, "[{}]", self.account)?,
            Reality::UnbalancedVirtual => write!(writer, "({})", self.account)?,
        }

        if self.amount.is_some() || self.balance.is_some() {
            write!(writer, "{}", settings.indent)?;
        }

        if let Some(ref amount) = self.amount {
            amount.write(writer, settings)?;
        }

        if let Some(ref balance) = self.balance {
            write!(writer, " = ")?;
            balance.write(writer, settings)?;
        }

        for tag in &self.metadata.tags {
            write!(writer, "{}; {}", settings.indent, tag.name)?;
            if let Some(ref value) = tag.value {
                write!(writer, ": {}", value)?;
            };
        }

        if let Some(ref comment) = self.comment {
            if !comment.contains('\n') && settings.posting_comments_sameline {
                write!(writer, "{}; {}", settings.indent, comment)?;
            } else {
                for comment in comment.split('\n') {
                    write!(writer, "{}{}; {}", settings.eol, settings.indent, comment)?;
                }
            }
        }

        Ok(())
    }
}

impl Serializer for PostingAmount {
    fn write<W>(&self, writer: &mut W, settings: &SerializerSettings) -> Result<(), io::Error>
    where
        W: io::Write,
    {
        self.amount.write(writer, settings)?;

        if let Some(ref lot_price) = self.lot_price {
            match lot_price {
                Price::Unit(amount) => {
                    write!(writer, " {{")?;
                    amount.write(writer, settings)?;
                    write!(writer, "}}")?;
                }
                Price::Total(amount) => {
                    write!(writer, " {{{{")?;
                    amount.write(writer, settings)?;
                    write!(writer, "}}}}")?;
                }
            }
        }

        if let Some(ref lot_price) = self.price {
            match lot_price {
                Price::Unit(amount) => {
                    write!(writer, " @ ")?;
                    amount.write(writer, settings)?;
                }
                Price::Total(amount) => {
                    write!(writer, " @@ ")?;
                    amount.write(writer, settings)?;
                }
            }
        }

        Ok(())
    }
}

impl Serializer for Amount {
    fn write<W>(&self, writer: &mut W, _settings: &SerializerSettings) -> Result<(), io::Error>
    where
        W: io::Write,
    {
        match self.commodity.position {
            CommodityPosition::Left => write!(writer, "{}{}", self.commodity.name, self.quantity),
            CommodityPosition::Right => write!(writer, "{} {}", self.quantity, self.commodity.name),
        }
    }
}

impl Serializer for Balance {
    fn write<W>(&self, writer: &mut W, settings: &SerializerSettings) -> Result<(), io::Error>
    where
        W: io::Write,
    {
        match self {
            Balance::Zero => write!(writer, "0"),
            Balance::Amount(ref balance) => balance.write(writer, settings),
        }
    }
}

impl Serializer for CommodityPrice {
    fn write<W>(&self, writer: &mut W, settings: &SerializerSettings) -> Result<(), io::Error>
    where
        W: io::Write,
    {
        write!(
            writer,
            "P {} {} ",
            self.datetime.format(&settings.commodity_date_format),
            self.commodity_name
        )?;
        self.amount.write(writer, settings)?;
        Ok(())
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn serialize_transaction() {
        let ledger = crate::parse(
            r#"2018/10/01    (123)     Payee 123
  TEST:ABC 123        $1.20
    TEST:DEF 123"#,
        )
        .expect("parsing test transaction");

        let mut buf = Vec::new();
        ledger
            .write(&mut buf, &SerializerSettings::default())
            .expect("serializing test transaction");

        assert_eq!(
            String::from_utf8(buf).unwrap(),
            r#"2018-10-01 (123) Payee 123
  TEST:ABC 123  $1.20
  TEST:DEF 123
"#
        );
    }

    #[test]
    fn serialize_with_custom_date_format() {
        let ledger = crate::parse(
            r#"2018-10-01    (123)     Payee 123
  TEST:ABC 123        $1.20
    TEST:DEF 123"#,
        )
        .expect("parsing test transaction");

        let mut buf = Vec::new();
        ledger
            .write(
                &mut buf,
                &SerializerSettings {
                    transaction_date_format: "%Y/%m/%d".to_owned(),
                    ..SerializerSettings::default()
                },
            )
            .expect("serializing test transaction");

        assert_eq!(
            String::from_utf8(buf).unwrap(),
            r#"2018/10/01 (123) Payee 123
  TEST:ABC 123  $1.20
  TEST:DEF 123
"#
        );
    }

    #[test]
    fn serialize_tags() {
        let ledger = crate::parse(
            r#"2018-10-01   (123)    Payee 123
  ;   Tag1:   Foo bar
  TEST:ABC 123       $1.20      ;   Tag2:  Fizz bazz
  TEST:DEF 123"#,
        )
        .expect("parsing test transaction");

        let mut buf = Vec::new();
        ledger
            .write(&mut buf, &SerializerSettings::default())
            .expect("serializing test transaction");

        assert_eq!(
            String::from_utf8(buf).unwrap(),
            r#"2018-10-01 (123) Payee 123
  ; Tag1: Foo bar
  TEST:ABC 123  $1.20  ; Tag2: Fizz bazz
  TEST:DEF 123
"#
        );
    }

    #[test]
    fn serialize_posting_comments_sameline() {
        let ledger = crate::parse(
            r#"2018-10-01 Payee 123
  TEST:ABC 123  $1.20
  ; This is a one-line comment
  TEST:DEF 123
  ; This is a two-
  ; line comment"#,
        )
        .expect("parsing test transaction");

        let mut buf = Vec::new();
        ledger
            .write(
                &mut buf,
                &SerializerSettings {
                    posting_comments_sameline: true,
                    ..SerializerSettings::default()
                },
            )
            .expect("serializing test transaction");

        assert_eq!(
            String::from_utf8(buf).unwrap(),
            r#"2018-10-01 Payee 123
  TEST:ABC 123  $1.20  ; This is a one-line comment
  TEST:DEF 123
  ; This is a two-
  ; line comment
"#
        );
    }
}