]> Cypherpunks.ru repositories - netstring.git/blob - writer.go
fbae39fdfaa6698f15296b4c4bdf14cdb79930d1
[netstring.git] / writer.go
1 /*
2 netstring -- netstring format serialization library
3 Copyright (C) 2015-2020 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 netstring
19
20 import (
21         "bufio"
22         "io"
23         "strconv"
24 )
25
26 type Writer struct {
27         writer *bufio.Writer
28         prefix []byte
29         err    error
30 }
31
32 func NewWriter(w io.Writer) *Writer {
33         return &Writer{
34                 writer: bufio.NewWriter(w),
35                 prefix: make([]byte, 0, MaxPrefixSize),
36         }
37 }
38
39 // Write serialized representation of data to the underlying writer.
40 // It returns number of serialized data bytes written.
41 func (self *Writer) Write(data []byte) (bytesWritten int, err error) {
42         self.prefix = strconv.AppendUint(self.prefix[:0], uint64(len(data)), 10)
43         self.prefix = append(self.prefix, ':')
44         if _, self.err = self.writer.Write(self.prefix); self.err != nil {
45                 return 0, self.err
46         }
47         if _, self.err = self.writer.Write(data); self.err != nil {
48                 return 0, self.err
49         }
50         if _, self.err = self.writer.Write([]byte{','}); self.err != nil {
51                 return 0, self.err
52         }
53         if self.err = self.writer.Flush(); self.err != nil {
54                 return 0, self.err
55         }
56         return len(self.prefix) + len(data) + 1, nil
57 }