Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
64776da4
Commit
64776da4
authored
Dec 13, 2011
by
Rob Pike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bufio: make the minimum read buffer size 16 bytes.
R=gri, rsc CC=golang-dev
https://golang.org/cl/5485067
parent
5fe96c64
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
50 additions
and
51 deletions
+50
-51
bufio.go
src/pkg/bufio/bufio.go
+4
-2
bufio_test.go
src/pkg/bufio/bufio_test.go
+46
-49
No files found.
src/pkg/bufio/bufio.go
View file @
64776da4
...
...
@@ -52,12 +52,14 @@ type Reader struct {
lastRuneSize
int
}
const
minReadBufferSize
=
16
// NewReaderSize creates a new Reader whose buffer has the specified size,
// which must be
greater than one
. If the argument io.Reader is already a
// which must be
at least 16 bytes
. If the argument io.Reader is already a
// Reader with large enough size, it returns the underlying Reader.
// It returns the Reader and any error.
func
NewReaderSize
(
rd
io
.
Reader
,
size
int
)
(
*
Reader
,
error
)
{
if
size
<
=
1
{
if
size
<
minReadBufferSize
{
return
nil
,
BufSizeError
(
size
)
}
// Is it already a Reader?
...
...
src/pkg/bufio/bufio_test.go
View file @
64776da4
...
...
@@ -135,9 +135,10 @@ var bufreaders = []bufReader{
{
"lines"
,
readLines
},
}
const
minReadBufferSize
=
16
var
bufsizes
=
[]
int
{
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
23
,
32
,
46
,
64
,
93
,
128
,
1024
,
4096
,
minReadBufferSize
,
23
,
32
,
46
,
64
,
93
,
128
,
1024
,
4096
,
}
func
TestReader
(
t
*
testing
.
T
)
{
...
...
@@ -514,27 +515,32 @@ func TestWriteString(t *testing.T) {
}
func
TestBufferFull
(
t
*
testing
.
T
)
{
buf
,
_
:=
NewReaderSize
(
strings
.
NewReader
(
"hello, world"
),
5
)
line
,
err
:=
buf
.
ReadSlice
(
','
)
if
string
(
line
)
!=
"hello"
||
err
!=
ErrBufferFull
{
const
longString
=
"And now, hello, world! It is the time for all good men to come to the aid of their party"
buf
,
err
:=
NewReaderSize
(
strings
.
NewReader
(
longString
),
minReadBufferSize
)
if
err
!=
nil
{
t
.
Fatal
(
"NewReaderSize:"
,
err
)
}
line
,
err
:=
buf
.
ReadSlice
(
'!'
)
if
string
(
line
)
!=
"And now, hello, "
||
err
!=
ErrBufferFull
{
t
.
Errorf
(
"first ReadSlice(,) = %q, %v"
,
line
,
err
)
}
line
,
err
=
buf
.
ReadSlice
(
'
,
'
)
if
string
(
line
)
!=
"
,
"
||
err
!=
nil
{
line
,
err
=
buf
.
ReadSlice
(
'
!
'
)
if
string
(
line
)
!=
"
world!
"
||
err
!=
nil
{
t
.
Errorf
(
"second ReadSlice(,) = %q, %v"
,
line
,
err
)
}
}
func
TestPeek
(
t
*
testing
.
T
)
{
p
:=
make
([]
byte
,
10
)
buf
,
_
:=
NewReaderSize
(
strings
.
NewReader
(
"abcdefghij"
),
4
)
// string is 16 (minReadBufferSize) long.
buf
,
_
:=
NewReaderSize
(
strings
.
NewReader
(
"abcdefghijklmnop"
),
minReadBufferSize
)
if
s
,
err
:=
buf
.
Peek
(
1
);
string
(
s
)
!=
"a"
||
err
!=
nil
{
t
.
Fatalf
(
"want %q got %q, err=%v"
,
"a"
,
string
(
s
),
err
)
}
if
s
,
err
:=
buf
.
Peek
(
4
);
string
(
s
)
!=
"abcd"
||
err
!=
nil
{
t
.
Fatalf
(
"want %q got %q, err=%v"
,
"abcd"
,
string
(
s
),
err
)
}
if
_
,
err
:=
buf
.
Peek
(
5
);
err
!=
ErrBufferFull
{
if
_
,
err
:=
buf
.
Peek
(
32
);
err
!=
ErrBufferFull
{
t
.
Fatalf
(
"want ErrBufFull got %v"
,
err
)
}
if
_
,
err
:=
buf
.
Read
(
p
[
0
:
3
]);
string
(
p
[
0
:
3
])
!=
"abc"
||
err
!=
nil
{
...
...
@@ -552,8 +558,8 @@ func TestPeek(t *testing.T) {
if
s
,
err
:=
buf
.
Peek
(
4
);
string
(
s
)
!=
"ghij"
||
err
!=
nil
{
t
.
Fatalf
(
"want %q got %q, err=%v"
,
"ghij"
,
string
(
s
),
err
)
}
if
_
,
err
:=
buf
.
Read
(
p
[
0
:
4
]);
string
(
p
[
0
:
4
])
!=
"ghij
"
||
err
!=
nil
{
t
.
Fatalf
(
"want %q got %q, err=%v"
,
"ghij
"
,
string
(
p
[
0
:
3
]),
err
)
if
_
,
err
:=
buf
.
Read
(
p
[
0
:
]);
string
(
p
[
0
:
])
!=
"ghijklmnop
"
||
err
!=
nil
{
t
.
Fatalf
(
"want %q got %q, err=%v"
,
"ghij
klmnop"
,
string
(
p
[
0
:
minReadBufferSize
]),
err
)
}
if
s
,
err
:=
buf
.
Peek
(
0
);
string
(
s
)
!=
""
||
err
!=
nil
{
t
.
Fatalf
(
"want %q got %q, err=%v"
,
""
,
string
(
s
),
err
)
...
...
@@ -635,19 +641,25 @@ func TestReadLine(t *testing.T) {
}
func
TestLineTooLong
(
t
*
testing
.
T
)
{
buf
:=
bytes
.
NewBuffer
([]
byte
(
"aaabbbcc
\n
"
))
l
,
_
:=
NewReaderSize
(
buf
,
3
)
data
:=
make
([]
byte
,
0
)
for
i
:=
0
;
i
<
minReadBufferSize
*
5
/
2
;
i
++
{
data
=
append
(
data
,
'0'
+
byte
(
i
%
10
))
}
buf
:=
bytes
.
NewBuffer
(
data
)
l
,
_
:=
NewReaderSize
(
buf
,
minReadBufferSize
)
line
,
isPrefix
,
err
:=
l
.
ReadLine
()
if
!
isPrefix
||
!
bytes
.
Equal
(
line
,
[]
byte
(
"aaa"
)
)
||
err
!=
nil
{
t
.
Errorf
(
"bad result for first line:
%x %s"
,
line
,
err
)
if
!
isPrefix
||
!
bytes
.
Equal
(
line
,
data
[
:
minReadBufferSize
]
)
||
err
!=
nil
{
t
.
Errorf
(
"bad result for first line:
got %q want %q %v"
,
line
,
data
[
:
minReadBufferSize
]
,
err
)
}
data
=
data
[
len
(
line
)
:
]
line
,
isPrefix
,
err
=
l
.
ReadLine
()
if
!
isPrefix
||
!
bytes
.
Equal
(
line
,
[]
byte
(
"bbb"
)
)
||
err
!=
nil
{
t
.
Errorf
(
"bad result for second line:
%x"
,
line
)
if
!
isPrefix
||
!
bytes
.
Equal
(
line
,
data
[
:
minReadBufferSize
]
)
||
err
!=
nil
{
t
.
Errorf
(
"bad result for second line:
got %q want %q %v"
,
line
,
data
[
:
minReadBufferSize
],
err
)
}
data
=
data
[
len
(
line
)
:
]
line
,
isPrefix
,
err
=
l
.
ReadLine
()
if
isPrefix
||
!
bytes
.
Equal
(
line
,
[]
byte
(
"cc"
)
)
||
err
!=
nil
{
t
.
Errorf
(
"bad result for third line:
%x"
,
line
)
if
isPrefix
||
!
bytes
.
Equal
(
line
,
data
[
:
minReadBufferSize
/
2
]
)
||
err
!=
nil
{
t
.
Errorf
(
"bad result for third line:
got %q want %q %v"
,
line
,
data
[
:
minReadBufferSize
/
2
],
err
)
}
line
,
isPrefix
,
err
=
l
.
ReadLine
()
if
isPrefix
||
err
==
nil
{
...
...
@@ -656,8 +668,8 @@ func TestLineTooLong(t *testing.T) {
}
func
TestReadAfterLines
(
t
*
testing
.
T
)
{
line1
:=
"line1"
restData
:=
"
line2
\n
line 3
\n
"
line1
:=
"
this is
line1"
restData
:=
"
this is line2
\n
this is
line 3
\n
"
inbuf
:=
bytes
.
NewBuffer
([]
byte
(
line1
+
"
\n
"
+
restData
))
outbuf
:=
new
(
bytes
.
Buffer
)
maxLineLength
:=
len
(
line1
)
+
len
(
restData
)
/
2
...
...
@@ -676,7 +688,7 @@ func TestReadAfterLines(t *testing.T) {
}
func
TestReadEmptyBuffer
(
t
*
testing
.
T
)
{
l
,
_
:=
NewReaderSize
(
bytes
.
NewBuffer
(
nil
),
10
)
l
,
_
:=
NewReaderSize
(
bytes
.
NewBuffer
(
nil
),
minReadBufferSize
)
line
,
isPrefix
,
err
:=
l
.
ReadLine
()
if
err
!=
io
.
EOF
{
t
.
Errorf
(
"expected EOF from ReadLine, got '%s' %t %s"
,
line
,
isPrefix
,
err
)
...
...
@@ -684,7 +696,7 @@ func TestReadEmptyBuffer(t *testing.T) {
}
func
TestLinesAfterRead
(
t
*
testing
.
T
)
{
l
,
_
:=
NewReaderSize
(
bytes
.
NewBuffer
([]
byte
(
"foo"
)),
10
)
l
,
_
:=
NewReaderSize
(
bytes
.
NewBuffer
([]
byte
(
"foo"
)),
minReadBufferSize
)
_
,
err
:=
ioutil
.
ReadAll
(
l
)
if
err
!=
nil
{
t
.
Error
(
err
)
...
...
@@ -715,34 +727,19 @@ type readLineResult struct {
}
var
readLineNewlinesTests
=
[]
struct
{
input
string
bufSize
int
expect
[]
readLineResult
input
string
expect
[]
readLineResult
}{
{
"h
\r\n
b
\r\n
"
,
2
,
[]
readLineResult
{
{[]
byte
(
"h"
),
true
,
nil
},
{
nil
,
false
,
nil
},
{[]
byte
(
"b"
),
true
,
nil
},
{
nil
,
false
,
nil
},
{
nil
,
false
,
io
.
EOF
},
}},
{
"hello
\r\n
world
\r\n
"
,
6
,
[]
readLineResult
{
{[]
byte
(
"hello"
),
true
,
nil
},
{
"012345678901234
\r\n
012345678901234
\r\n
"
,
[]
readLineResult
{
{[]
byte
(
"012345678901234"
),
true
,
nil
},
{
nil
,
false
,
nil
},
{[]
byte
(
"
world
"
),
true
,
nil
},
{[]
byte
(
"
012345678901234
"
),
true
,
nil
},
{
nil
,
false
,
nil
},
{
nil
,
false
,
io
.
EOF
},
}},
{
"hello
\r
world
\r
"
,
6
,
[]
readLineResult
{
{[]
byte
(
"hello"
),
true
,
nil
},
{[]
byte
(
"
\r
world"
),
true
,
nil
},
{[]
byte
(
"
\r
"
),
false
,
nil
},
{
nil
,
false
,
io
.
EOF
},
}},
{
"h
\r
i
\r\n\r
"
,
2
,
[]
readLineResult
{
{[]
byte
(
"h"
),
true
,
nil
},
{[]
byte
(
"
\r
i"
),
true
,
nil
},
{
nil
,
false
,
nil
},
{
"0123456789012345
\r
012345678901234
\r
"
,
[]
readLineResult
{
{[]
byte
(
"0123456789012345"
),
true
,
nil
},
{[]
byte
(
"
\r
012345678901234"
),
true
,
nil
},
{[]
byte
(
"
\r
"
),
false
,
nil
},
{
nil
,
false
,
io
.
EOF
},
}},
...
...
@@ -750,12 +747,12 @@ var readLineNewlinesTests = []struct {
func
TestReadLineNewlines
(
t
*
testing
.
T
)
{
for
_
,
e
:=
range
readLineNewlinesTests
{
testReadLineNewlines
(
t
,
e
.
input
,
e
.
bufSize
,
e
.
expect
)
testReadLineNewlines
(
t
,
e
.
input
,
e
.
expect
)
}
}
func
testReadLineNewlines
(
t
*
testing
.
T
,
input
string
,
bufSize
int
,
expect
[]
readLineResult
)
{
b
,
err
:=
NewReaderSize
(
strings
.
NewReader
(
input
),
buf
Size
)
func
testReadLineNewlines
(
t
*
testing
.
T
,
input
string
,
expect
[]
readLineResult
)
{
b
,
err
:=
NewReaderSize
(
strings
.
NewReader
(
input
),
minReadBuffer
Size
)
if
err
!=
nil
{
t
.
Fatal
(
err
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment