Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Kirill Smelkov
neo
Commits
48110f65
Commit
48110f65
authored
Jun 05, 2017
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
X Draft of network tracer
parent
e0a135a6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
111 additions
and
6 deletions
+111
-6
go/neo/cluster_test.go
go/neo/cluster_test.go
+21
-6
go/neo/net_trace.go
go/neo/net_trace.go
+90
-0
No files found.
go/neo/cluster_test.go
View file @
48110f65
...
@@ -28,24 +28,39 @@ import (
...
@@ -28,24 +28,39 @@ import (
"../zodb"
"../zodb"
"../zodb/storage/fs1"
"../zodb/storage/fs1"
"
../xcommon/pipenet
"
"
lab.nexedi.com/kirr/go123/exc
"
)
)
// xfs1stor creates new NEO storage node backed by fs1
// xfs1stor creates new NEO storage node backed by fs1
func
xfs1stor
(
path
string
)
*
Storage
{
// XXX is this wrapper a good idea?
func
xfs1stor
(
path
string
)
(
*
Storage
,
*
fs1
.
FileStorage
)
{
// TODO +readonly ?
// TODO +readonly ?
zstor
,
err
:=
fs1
.
Open
(
context
.
Background
(),
path
)
zstor
,
err
:=
fs1
.
Open
(
context
.
Background
(),
path
)
exc
.
Raiseif
(
err
)
exc
.
Raiseif
(
err
)
return
NewStorage
(
zstor
)
return
NewStorage
(
zstor
)
,
zstor
}
}
// M drives cluster with 1 S through recovery -> verification -> service -> shutdown
// M drives cluster with 1 S through recovery -> verification -> service -> shutdown
func
TestMasterStorage
(
t
*
testing
.
T
)
{
func
TestMasterStorage
(
t
*
testing
.
T
)
{
net
=
pipenet
.
New
(
""
)
// test network XXX New registers to global table
net
:=
NetPipe
(
""
)
// test network XXX New registers to global table
S
:=
xfs1stor
(
"../zodb/storage/fs1/testdata/1.fs"
)
// XXX +readonly
S
,
_
:=
xfs1stor
(
"../zodb/storage/fs1/testdata/1.fs"
)
// XXX +readonly
M
:=
NewMaster
(
"abc1"
)
M
:=
NewMaster
(
"abc1"
)
Sctx
,
Scancel
:=
context
.
WithCancel
(
context
.
Background
())
Mctx
,
Mcancel
:=
context
.
WithCancel
(
context
.
Background
())
// XXX temp
Sbind
:=
""
;
Mbind
:=
""
;
var
err
error
_
=
Scancel
;
_
=
Mcancel
;
_
=
err
err
=
ListenAndServe
(
Sctx
,
net
,
Sbind
,
S
)
// XXX go
err
=
ListenAndServe
(
Mctx
,
net
,
Mbind
,
M
)
// XXX go
}
}
// basic interaction between Client -- Storage
// basic interaction between Client -- Storage
...
@@ -55,7 +70,7 @@ func TestClientStorage(t *testing.T) {
...
@@ -55,7 +70,7 @@ func TestClientStorage(t *testing.T) {
Sctx
,
Scancel
:=
context
.
WithCancel
(
context
.
Background
())
Sctx
,
Scancel
:=
context
.
WithCancel
(
context
.
Background
())
S
:=
xfs1stor
(
"../zodb/storage/fs1/testdata/1.fs"
)
// XXX +readonly
S
,
zstor
:=
xfs1stor
(
"../zodb/storage/fs1/testdata/1.fs"
)
// XXX +readonly
wg
.
Gox
(
func
()
{
wg
.
Gox
(
func
()
{
S
.
ServeLink
(
Sctx
,
Snl
)
S
.
ServeLink
(
Sctx
,
Snl
)
// XXX + test error return
// XXX + test error return
...
...
go/neo/net_trace.go
0 → 100644
View file @
48110f65
// Copyright (C) 2017 Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
// it under the terms of the GNU General Public License version 3, or (at your
// option) any later version, as published by the Free Software Foundation.
//
// You can also Link and Combine this program with other software covered by
// the terms of any of the Open Source Initiative approved licenses and Convey
// the resulting work. Corresponding source of such a combination shall include
// the source code for all other software used.
//
// This program is distributed WITHOUT ANY WARRANTY; without even the implied
// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//
// See COPYING file for full licensing terms.
// +build test
package
neo
// network tracing
// NetTrace wraps underlying network with IO tracing layer
//
// the tracing is done via calling trace func right before corresponding packet
// is sent for Tx to underlying network. No synchronization for notification is
// performed - if one is required tracing func must implement such
// synchronization itself.
//
// only Tx events are traced:
// - because Write, contrary to Read, never writes partial data on non-error
// - because in case of NetPipe tracing writes only is enough to get whole network exchange picture
func
NetTrace
(
inner
Network
,
trace
func
(
t
*
traceTx
))
Network
{
&
netTrace
{
inner
,
trace
}
}
// traceTx is event corresponding to network transmission
type
traceTx
struct
{
src
,
dst
net
.
Addr
pkt
[]
byte
}
// netTrace wraps underlying Network such that whenever a connection is created
// it is wrapped with traceConn
type
netTrace
struct
{
inner
Network
trace
func
(
t
*
traceTx
)
}
func
(
nt
*
netTrace
)
Dial
(
ctx
context
.
Context
,
addr
string
)
(
net
.
Conn
,
error
)
{
c
,
err
:=
nt
.
inner
.
Dial
(
ctx
,
addr
)
if
err
!=
nil
{
return
err
}
return
&
traceConn
{
nt
,
c
}
}
func
(
nt
*
netTrace
)
Listen
(
laddr
string
)
(
net
.
Listener
,
error
)
{
l
,
err
:=
nt
.
inner
.
Listen
(
laddr
)
if
err
!=
nil
{
return
err
}
return
&
netTraceListener
{
nt
,
l
}
}
// netTraceListener wraps net.Listener to wrap accepted connections with traceConn
type
netTraceListener
struct
{
nt
*
netTrace
net
.
Listener
}
func
(
ntl
*
netTraceListener
)
Accept
()
(
net
.
Conn
,
error
)
{
c
,
err
:=
ntl
.
Listener
.
Accept
()
if
err
!=
nil
{
return
nil
,
err
}
return
&
traceConn
{
ntl
.
nt
,
c
}
}
// traceConn wraps net.Conn and notifies tracer on Writes
type
traceConn
struct
{
nt
*
netTrace
net
.
Conn
}
func
(
tc
*
traceConn
)
Write
(
b
[]
byte
)
(
int
,
error
)
{
t
:=
&
traceTx
{
src
:
tc
.
LocalAddr
(),
dst
:
tc
.
RemoteAddr
(),
pkt
:
b
}
tc
.
nt
.
trace
(
t
)
return
tc
.
Conn
.
Write
(
b
)
}
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