]> Cypherpunks.ru repositories - gorecfile.git/blob - w.go
Workaround for backslash in multilines
[gorecfile.git] / w.go
1 /*
2 recfile -- GNU recutils'es recfiles parser on pure Go
3 Copyright (C) 2020-2023 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 package recfile
19
20 import (
21         "io"
22         "strings"
23 )
24
25 type Writer struct {
26         w io.StringWriter
27 }
28
29 func NewWriter(w io.StringWriter) *Writer {
30         return &Writer{w}
31 }
32
33 func (w *Writer) RecordStart() (written int, err error) {
34         return w.w.WriteString("\n")
35 }
36
37 func (w *Writer) WriteFields(fs ...Field) (written int, err error) {
38         var n int
39         for _, f := range fs {
40                 n, err = w.w.WriteString(
41                         f.Name + ": " + strings.TrimRight(strings.TrimLeft(f.Value, " "), "\\") + "\n",
42                 )
43                 written += n
44                 if err != nil {
45                         return
46                 }
47         }
48         return
49 }
50
51 func (w *Writer) WriteFieldMultiline(name string, lines []string) (written int, err error) {
52         var n int
53         n, err = w.w.WriteString(
54                 name + ": " + strings.TrimRight(strings.TrimLeft(lines[0], " "), "\\") + "\n",
55         )
56         written += n
57         if err != nil {
58                 return
59         }
60         for _, l := range lines[1:] {
61                 n, err = w.w.WriteString("+ " + strings.TrimRight(l, "\\") + "\n")
62                 written += n
63                 if err != nil {
64                         return
65                 }
66         }
67         return
68 }