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
09915e9e
Commit
09915e9e
authored
May 03, 2017
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
56999c26
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
87 additions
and
16 deletions
+87
-16
go/neo/client.go
go/neo/client.go
+43
-16
go/neo/cluster_test.go
go/neo/cluster_test.go
+41
-0
go/neo/server.go
go/neo/server.go
+1
-0
go/neo/storage.go
go/neo/storage.go
+2
-0
No files found.
go/neo/client.go
View file @
09915e9e
...
...
@@ -16,7 +16,7 @@
// See COPYING file for full licensing terms.
package
neo
//
access to NEO database via ZODB interfaces
//
client node
import
(
"context"
...
...
@@ -26,6 +26,7 @@ import (
"../zodb"
)
// Client talks to NEO cluster and exposes access it via ZODB interfaces
type
Client
struct
{
storLink
*
NodeLink
// link to storage node
storConn
*
Conn
// XXX main connection to storage
...
...
@@ -34,7 +35,7 @@ type Client struct {
var
_
zodb
.
IStorage
=
(
*
Client
)(
nil
)
func
(
c
*
Client
)
StorageName
()
string
{
return
"neo"
// TODO more specific
return
"neo"
// TODO more specific
(+ cluster name, ...)
}
func
(
c
*
Client
)
Close
()
error
{
...
...
@@ -119,22 +120,14 @@ func (c *Client) Iterate(tidMin, tidMax zodb.Tid) zodb.IStorageIterator {
}
// TODO read-only support
func
openClientByURL
(
ctx
context
.
Context
,
u
*
url
.
URL
)
(
zodb
.
IStorage
,
error
)
{
// XXX for now url is treated as storage node URL
// XXX check/use other url fields
storLink
,
err
:=
Dial
(
ctx
,
"tcp"
,
u
.
Host
)
if
err
!=
nil
{
return
nil
,
err
}
// first identify ourselves via conn
// NewClient creates and identifies new client connected to storage over storLink
func
NewClient
(
storLink
*
NodeLink
)
(
*
Client
,
error
)
{
// first identify ourselves to peer
storType
,
err
:=
IdentifyMe
(
storLink
,
CLIENT
)
if
err
!=
nil
{
return
nil
,
err
// XXX err ctx
}
if
storType
!=
STORAGE
{
storLink
.
Close
()
// XXX err
return
nil
,
fmt
.
Errorf
(
"%v: peer is not storage (identifies as %v)"
,
storLink
,
storType
)
}
...
...
@@ -144,13 +137,47 @@ func openClientByURL(ctx context.Context, u *url.URL) (zodb.IStorage, error) {
// asking storage in parallel. At the same time creating new conn for
// every request is ok? -> not so good to create new goroutine per 1 object read
// XXX -> server could reuse goroutines -> so not so bad ?
c
onn
,
err
:=
storLink
.
NewConn
()
storC
onn
,
err
:=
storLink
.
NewConn
()
if
err
!=
nil
{
storLink
.
Close
()
// XXX err
return
nil
,
err
// XXX err ctx ?
}
return
&
Client
{
storLink
,
conn
},
nil
return
&
Client
{
storLink
,
storConn
},
nil
}
// TODO read-only support
func
openClientByURL
(
ctx
context
.
Context
,
u
*
url
.
URL
)
(
zodb
.
IStorage
,
error
)
{
// XXX for now url is treated as storage node URL
// XXX check/use other url fields
storLink
,
err
:=
Dial
(
ctx
,
"tcp"
,
u
.
Host
)
if
err
!=
nil
{
return
nil
,
err
}
// close storLink on error or ctx cancel
defer
func
()
{
if
err
!=
nil
{
storLink
.
Close
()
}
}()
// XXX try to prettify this
type
Result
struct
{
*
Client
;
error
}
done
:=
make
(
chan
Result
,
1
)
go
func
()
{
client
,
err
:=
NewClient
(
storLink
)
done
<-
Result
{
client
,
err
}
}()
select
{
case
<-
ctx
.
Done
()
:
return
nil
,
ctx
.
Err
()
case
r
:=
<-
done
:
return
r
.
Client
,
r
.
error
}
}
//func Open(...) (*Client, error) {
...
...
go/neo/cluster_test.go
0 → 100644
View file @
09915e9e
// 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.
package
neo
// test interaction between nodes
import
(
"context"
"testing"
)
func
TestClientStorage
(
t
*
testing
.
T
)
{
nlC
,
nlS
:=
nodeLinkPipe
()
ctxS
:=
context
.
Background
()
S
:=
NewStorage
(
nil
)
// TODO zodb.storage.mem
//Serve(ctx, l, S)
S
.
ServeLink
(
ctxS
,
nlS
)
// XXX go
C
,
err
:=
NewClient
(
nlC
)
//assert err != nil
_
=
C
_
=
err
}
go/neo/server.go
View file @
09915e9e
...
...
@@ -47,6 +47,7 @@ func Serve(ctx context.Context, l *Listener, srv Server) error {
go
func
()
{
select
{
case
<-
ctx
.
Done
()
:
// XXX err = cancelled
case
<-
retch
:
}
l
.
Close
()
// XXX err
...
...
go/neo/storage.go
View file @
09915e9e
...
...
@@ -56,6 +56,7 @@ func (stor *Storage) ServeLink(ctx context.Context, link *NodeLink) {
select
{
case
<-
ctx
.
Done
()
:
// XXX tell peers we are shutting down?
// XXX ret err = cancelled ?
case
<-
retch
:
}
fmt
.
Printf
(
"stor: %v: closing link
\n
"
,
link
)
...
...
@@ -110,6 +111,7 @@ func (stor *Storage) ServeClient(ctx context.Context, conn *Conn) {
select
{
case
<-
ctx
.
Done
()
:
// XXX tell client we are shutting down?
// XXX ret err = cancelled ?
case
<-
retch
:
}
fmt
.
Printf
(
"stor: %v: closing client conn
\n
"
,
conn
)
...
...
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