]> Cypherpunks.ru repositories - gorecfile.git/blob - w.go
Unify copyright comment format
[gorecfile.git] / w.go
1 /*
2 recfile -- GNU recutils'es recfiles parser on pure Go
3 Copyright (C) 2020-2022 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(f.Name + ": " + strings.TrimLeft(f.Value, " ") + "\n")
41                 written += n
42                 if err != nil {
43                         return
44                 }
45         }
46         return
47 }
48
49 func (w *Writer) WriteFieldMultiline(name string, lines []string) (written int, err error) {
50         var n int
51         n, err = w.w.WriteString(name + ": " + strings.TrimLeft(lines[0], " ") + "\n")
52         written += n
53         if err != nil {
54                 return
55         }
56         for _, l := range lines[1:] {
57                 n, err = w.w.WriteString("+ " + l + "\n")
58                 written += n
59                 if err != nil {
60                         return
61                 }
62         }
63         return
64 }