Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Levin Zimmermann
neoppod
Commits
0f30552f
Commit
0f30552f
authored
Nov 25, 2016
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
8c564e42
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
2 deletions
+29
-2
t/neo/storage.go
t/neo/storage.go
+29
-2
No files found.
t/neo/storage.go
View file @
0f30552f
...
...
@@ -19,10 +19,37 @@ func (stor *StorageApplication) ServeConn(ctx context.Context, conn net.Conn) {
//fmt.Fprintf(conn, "Hello up there, you address is %s\n", conn.RemoteAddr()) // XXX err
//conn.Close() // XXX err
// TODO: use bytes.Buffer{}
// .Bytes() -> buf -> can grow up again up to buf[:cap(buf)]
// NewBuffer(buf) -> can use same buffer for later reading via bytes.Buffer
// TODO read PktHeader (fixed length) (-> length, PktType (by .code))
// TODO PktHeader
rxbuf
:=
bytes
.
Buffer
{}
rxl
:=
io
.
LimitedReader
{
R
:
conn
,
N
:
PktHeadLen
}
//rxbuf := bytes.Buffer{}
rxbuf
:=
bytes
.
NewBuffer
(
make
([]
byte
,
4096
))
n
,
err
:=
conn
.
Read
(
rxbuf
.
Bytes
())
// first read to read pkt header and hopefully up to page of data in 1 syscall
rxbuf
:=
Buffer
{
make
([]
byte
,
4096
}
n
,
err
:=
io
.
ReadAtLeast
(
conn
,
rxbuf
,
PktHeadLen
)
if
err
!=
nil
{
panic
(
err
)
// TODO
}
id
:=
binary
.
BigEndian
.
Uint32
(
rxbuf
[
0
:
])
code
:=
binary
.
BigEndian
.
Uint16
(
rxbuf
[
4
:
])
length
:=
binary
.
BigEndian
.
Uint32
(
rxbuf
[
6
:
])
if
length
<
PktHeadLen
{
panic
()
// XXX err (length is a whole packet len with header)
}
if
length
>
len
(
rxbuf
)
{
// TODO grow rxbuf
panic
()
}
// read rest of pkt data, if we need to
n2
,
err
:=
io
.
ReadFull
(
conn
,
rxbuf
[
n
:
length
])
// read first pkt chunk: header + some data (all in 1 read call)
rxl
.
N
=
4096
...
...
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