blob: 886a1de4537797088503f08917f96bd75c59ead8 (
plain) (
blame)
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
|
// Copyright 2015 The Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package markdown
import (
"bufio"
"io"
)
type writer interface {
Write([]byte) (int, error)
WriteByte(byte) error
WriteString(string) (int, error)
Flush() error
}
type monadicWriter struct {
writer
err error
}
func newMonadicWriter(w io.Writer) *monadicWriter {
if w, ok := w.(writer); ok {
return &monadicWriter{writer: w}
}
return &monadicWriter{writer: bufio.NewWriter(w)}
}
func (w *monadicWriter) Write(p []byte) (n int, err error) {
if w.err != nil {
return
}
n, err = w.writer.Write(p)
w.err = err
return
}
func (w *monadicWriter) WriteByte(b byte) (err error) {
if w.err != nil {
return
}
err = w.writer.WriteByte(b)
w.err = err
return
}
func (w *monadicWriter) WriteString(s string) (n int, err error) {
if w.err != nil {
return
}
n, err = w.writer.WriteString(s)
w.err = err
return
}
func (w *monadicWriter) Flush() (err error) {
if w.err != nil {
return
}
err = w.writer.Flush()
w.err = err
return
}
|