@@ -27,18 +27,29 @@ const (
27
27
type Reader struct {
28
28
io.Reader
29
29
30
- state State
31
- br * buf.BufferedReader
30
+ state State
31
+ pending []byte
32
+ br * buf.BufferedReader
32
33
}
33
34
34
- // Read implements io.Reader.Read(). Buffer must be at least 3 bytes.
35
+ // Read implements io.Reader.Read().
35
36
func (v * Reader ) Read (b []byte ) (int , error ) {
36
37
if v .br == nil {
37
38
v .br = & buf.BufferedReader {Reader : buf .NewReader (v .Reader )}
38
39
}
39
40
40
41
p := b [:0 ]
41
- for len (p ) < len (b )- 2 {
42
+ for len (p ) < len (b ) {
43
+ if len (v .pending ) > 0 {
44
+ max := len (b ) - len (p )
45
+ if max > len (v .pending ) {
46
+ max = len (v .pending )
47
+ }
48
+ p = append (p , v .pending [:max ]... )
49
+ v .pending = v .pending [max :]
50
+ continue
51
+ }
52
+
42
53
x , err := v .br .ReadByte ()
43
54
if err != nil {
44
55
if len (p ) == 0 {
@@ -57,6 +68,7 @@ func (v *Reader) Read(b []byte) (int, error) {
57
68
p = append (p , x )
58
69
case '\\' :
59
70
v .state = StateEscape
71
+ p = append (p , x )
60
72
case '#' :
61
73
v .state = StateComment
62
74
case '/' :
@@ -65,7 +77,7 @@ func (v *Reader) Read(b []byte) (int, error) {
65
77
p = append (p , x )
66
78
}
67
79
case StateEscape :
68
- p = append (p , '\\' , x )
80
+ p = append (p , x )
69
81
v .state = StateContent
70
82
case StateDoubleQuote :
71
83
switch x {
@@ -74,11 +86,12 @@ func (v *Reader) Read(b []byte) (int, error) {
74
86
p = append (p , x )
75
87
case '\\' :
76
88
v .state = StateDoubleQuoteEscape
89
+ p = append (p , x )
77
90
default :
78
91
p = append (p , x )
79
92
}
80
93
case StateDoubleQuoteEscape :
81
- p = append (p , '\\' , x )
94
+ p = append (p , x )
82
95
v .state = StateDoubleQuote
83
96
case StateSingleQuote :
84
97
switch x {
@@ -87,16 +100,17 @@ func (v *Reader) Read(b []byte) (int, error) {
87
100
p = append (p , x )
88
101
case '\\' :
89
102
v .state = StateSingleQuoteEscape
103
+ p = append (p , x )
90
104
default :
91
105
p = append (p , x )
92
106
}
93
107
case StateSingleQuoteEscape :
94
- p = append (p , '\\' , x )
108
+ p = append (p , x )
95
109
v .state = StateSingleQuote
96
110
case StateComment :
97
111
if x == '\n' {
98
112
v .state = StateContent
99
- p = append (p , '\n' )
113
+ p = append (p , x )
100
114
}
101
115
case StateSlash :
102
116
switch x {
@@ -105,14 +119,16 @@ func (v *Reader) Read(b []byte) (int, error) {
105
119
case '*' :
106
120
v .state = StateMultilineComment
107
121
default :
108
- p = append (p , '/' , x )
122
+ v .state = StateContent
123
+ v .pending = append (v .pending , x )
124
+ p = append (p , '/' )
109
125
}
110
126
case StateMultilineComment :
111
127
switch x {
112
128
case '*' :
113
129
v .state = StateMultilineCommentStar
114
130
case '\n' :
115
- p = append (p , '\n' )
131
+ p = append (p , x )
116
132
}
117
133
case StateMultilineCommentStar :
118
134
switch x {
@@ -121,7 +137,7 @@ func (v *Reader) Read(b []byte) (int, error) {
121
137
case '*' :
122
138
// Stay
123
139
case '\n' :
124
- p = append (p , '\n' )
140
+ p = append (p , x )
125
141
default :
126
142
v .state = StateMultilineComment
127
143
}
0 commit comments