Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
wendelin.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Kirill Smelkov
wendelin.core
Commits
a41635da
Commit
a41635da
authored
Dec 27, 2018
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
7ce5b4c6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
20 deletions
+51
-20
wcfs/misc.go
wcfs/misc.go
+5
-3
wcfs/wcfs.go
wcfs/wcfs.go
+46
-17
No files found.
wcfs/misc.go
View file @
a41635da
...
@@ -235,6 +235,7 @@ func (sk *FileSock) File() nodefs.File {
...
@@ -235,6 +235,7 @@ func (sk *FileSock) File() nodefs.File {
// The data will be read by client reading from filesock's file.
// The data will be read by client reading from filesock's file.
// Write semantic is that of io.Writer.
// Write semantic is that of io.Writer.
func
(
sk
*
FileSock
)
Write
(
data
[]
byte
)
(
n
int
,
err
error
)
{
func
(
sk
*
FileSock
)
Write
(
data
[]
byte
)
(
n
int
,
err
error
)
{
// XXX err ctx?
return
sk
.
tx
.
Write
(
data
)
return
sk
.
tx
.
Write
(
data
)
}
}
...
@@ -259,6 +260,7 @@ func (f *skFile) Read(dest []byte, /*ignored*/off int64) (fuse.ReadResult, fuse.
...
@@ -259,6 +260,7 @@ func (f *skFile) Read(dest []byte, /*ignored*/off int64) (fuse.ReadResult, fuse.
// The data read will be that the client writes into filesock's file.
// The data read will be that the client writes into filesock's file.
// Read semantic is that of io.Reader.
// Read semantic is that of io.Reader.
func
(
sk
*
FileSock
)
Read
(
dest
[]
byte
)
(
n
int
,
err
error
)
{
func
(
sk
*
FileSock
)
Read
(
dest
[]
byte
)
(
n
int
,
err
error
)
{
// XXX err ctx?
return
sk
.
rx
.
Read
(
dest
)
return
sk
.
rx
.
Read
(
dest
)
}
}
...
@@ -285,17 +287,17 @@ func (f *skFile) Write(data []byte, /*ignored*/off int64) (uint32, fuse.Status)
...
@@ -285,17 +287,17 @@ func (f *skFile) Write(data []byte, /*ignored*/off int64) (uint32, fuse.Status)
}
}
// CloseRead closes reading side of
the socket
.
// CloseRead closes reading side of
filesock
.
func
(
sk
*
FileSock
)
CloseRead
()
error
{
func
(
sk
*
FileSock
)
CloseRead
()
error
{
return
sk
.
rx
.
Close
()
return
sk
.
rx
.
Close
()
}
}
// CloseWrite closes writing side of
the socket
.
// CloseWrite closes writing side of
filesock
.
func
(
sk
*
FileSock
)
CloseWrite
()
error
{
func
(
sk
*
FileSock
)
CloseWrite
()
error
{
return
sk
.
tx
.
Close
()
return
sk
.
tx
.
Close
()
}
}
// Close closes
the socket
.
// Close closes
filesock
.
//
//
// it is semantically equivalent to CloseRead + CloseWrite.
// it is semantically equivalent to CloseRead + CloseWrite.
func
(
sk
*
FileSock
)
Close
()
error
{
func
(
sk
*
FileSock
)
Close
()
error
{
...
...
wcfs/wcfs.go
View file @
a41635da
...
@@ -529,13 +529,13 @@ func (cc *zodbCacheControl) WantEvict(obj zodb.IPersistent) bool {
...
@@ -529,13 +529,13 @@ func (cc *zodbCacheControl) WantEvict(obj zodb.IPersistent) bool {
// zwatcher watches for ZODB changes.
// zwatcher watches for ZODB changes.
// see "4) when we receive an invalidation message from ZODB ..."
// see "4) when we receive an invalidation message from ZODB ..."
func
(
r
*
Root
)
zwatcher
(
ctx
context
.
Context
)
(
err
error
)
{
func
(
r
oot
*
Root
)
zwatcher
(
ctx
context
.
Context
)
(
err
error
)
{
defer
xerr
.
Contextf
(
&
err
,
"zwatch"
)
// XXX more in context?
defer
xerr
.
Contextf
(
&
err
,
"zwatch"
)
// XXX more in context?
// XXX unmount on error? -> always EIO?
// XXX unmount on error? -> always EIO?
zwatchq
:=
make
(
chan
zodb
.
CommitEvent
)
zwatchq
:=
make
(
chan
zodb
.
CommitEvent
)
r
.
zstor
.
AddWatch
(
zwatchq
)
r
oot
.
zstor
.
AddWatch
(
zwatchq
)
defer
r
.
zstor
.
DelWatch
(
zwatchq
)
defer
r
oot
.
zstor
.
DelWatch
(
zwatchq
)
var
zevent
zodb
.
CommitEvent
var
zevent
zodb
.
CommitEvent
var
ok
bool
var
ok
bool
...
@@ -551,19 +551,19 @@ func (r *Root) zwatcher(ctx context.Context) (err error) {
...
@@ -551,19 +551,19 @@ func (r *Root) zwatcher(ctx context.Context) (err error) {
}
}
}
}
r
.
zhandle1
(
zevent
)
r
oot
.
zhandle1
(
zevent
)
}
}
}
}
// zhandle1 handles 1 event from ZODB notification.
// zhandle1 handles 1 event from ZODB notification.
func
(
r
*
Root
)
zhandle1
(
zevent
zodb
.
CommitEvent
)
{
func
(
r
oot
*
Root
)
zhandle1
(
zevent
zodb
.
CommitEvent
)
{
// while we are invalidating OS cache, make sure that nothing, that
// while we are invalidating OS cache, make sure that nothing, that
// even reads /head/bigfile/*, is running (see 4.6).
// even reads /head/bigfile/*, is running (see 4.6).
r
.
head
.
zconnMu
.
Lock
()
r
oot
.
head
.
zconnMu
.
Lock
()
defer
r
.
head
.
zconnMu
.
Unlock
()
defer
r
oot
.
head
.
zconnMu
.
Unlock
()
zhead
:=
r
.
head
.
zconn
zhead
:=
r
oot
.
head
.
zconn
bfdir
:=
r
.
head
.
bfdir
bfdir
:=
r
oot
.
head
.
bfdir
toinvalidate
:=
map
[
*
BigFile
]
SetI64
{}
// {} file -> set(#blk)
toinvalidate
:=
map
[
*
BigFile
]
SetI64
{}
// {} file -> set(#blk)
...
@@ -626,12 +626,15 @@ func (r *Root) zhandle1(zevent zodb.CommitEvent) {
...
@@ -626,12 +626,15 @@ func (r *Root) zhandle1(zevent zodb.CommitEvent) {
// XXX resync .zhead to zevent.tid
// XXX resync .zhead to zevent.tid
/* XXX reenable
// notify .wcfs/zhead
// notify .wcfs/zhead
for fh := range gdebug.zhead.fhTab {
for
sk
:=
range
gdebug
.
zheadSockTab
{
fh.Write(fmt.Sprintf("%s\n", zevent.Tid)) // XXX -> fh = filesock
_
,
err
:=
fmt
.
Fprintf
(
sk
,
"%s
\n
"
,
zevent
.
Tid
)
if
err
!=
nil
{
log
.
Error
(
err
)
// XXX errctx, -> warning?
sk
.
Close
()
delete
(
gdebug
.
zheadSockTab
,
sk
)
}
}
}
*/
}
}
// invalidateBlk invalidates 1 file block. XXX
// invalidateBlk invalidates 1 file block. XXX
...
@@ -1151,6 +1154,30 @@ var gfsconn *nodefs.FileSystemConnector
...
@@ -1151,6 +1154,30 @@ var gfsconn *nodefs.FileSystemConnector
// so we still have to reference the root via path.
// so we still have to reference the root via path.
var
gmntpt
string
var
gmntpt
string
// debugging
var
gdebug
=
struct
{
// .wcfs/zhead opens
// protected by groot.head.zconnMu
zheadSockTab
map
[
*
FileSock
]
struct
{}
}{}
// _wcfs_Zhead serves .wcfs/zhead opens.
type
_wcfs_Zhead
struct
{
nodefs
.
Node
}
func
(
zh
*
_wcfs_Zhead
)
Open
(
flags
uint32
,
fctx
*
fuse
.
Context
)
(
nodefs
.
File
,
fuse
.
Status
)
{
// XXX check flags?
sk
:=
NewFileSock
()
sk
.
CloseRead
()
groot
.
head
.
zconnMu
.
Lock
()
defer
groot
.
head
.
zconnMu
.
Unlock
()
gdebug
.
zheadSockTab
[
sk
]
=
struct
{}{}
return
sk
.
File
(),
fuse
.
OK
}
func
main
()
{
func
main
()
{
stdlog
.
SetPrefix
(
"wcfs: "
)
stdlog
.
SetPrefix
(
"wcfs: "
)
//log.CopyStandardLogTo("WARNING") // XXX -> "DEBUG" if -d ?
//log.CopyStandardLogTo("WARNING") // XXX -> "DEBUG" if -d ?
...
@@ -1242,9 +1269,9 @@ func main() {
...
@@ -1242,9 +1269,9 @@ func main() {
// XXX ^^^ invalidate cache or direct io
// XXX ^^^ invalidate cache or direct io
// for debugging/testing
// for debugging/testing
dot
wcfs
:=
nodefs
.
NewDefaultNode
()
_
wcfs
:=
nodefs
.
NewDefaultNode
()
mkdir
(
root
,
".wcfs"
,
dot
wcfs
)
mkdir
(
root
,
".wcfs"
,
_
wcfs
)
mkfile
(
dot
wcfs
,
"zurl"
,
NewStaticFile
([]
byte
(
zurl
)))
mkfile
(
_
wcfs
,
"zurl"
,
NewStaticFile
([]
byte
(
zurl
)))
// .wcfs/zhead - special file channel that sends zhead.at.
// .wcfs/zhead - special file channel that sends zhead.at.
//
//
...
@@ -1252,7 +1279,9 @@ func main() {
...
@@ -1252,7 +1279,9 @@ func main() {
// zhead.at was, starting from the time when .wcfs/zhead was opened.
// zhead.at was, starting from the time when .wcfs/zhead was opened.
// There can be multiple openers. Once opened, the file must be read,
// There can be multiple openers. Once opened, the file must be read,
// as wcfs blocks waiting for data to be read.
// as wcfs blocks waiting for data to be read.
//mkfile(dotwcfs, "zhead", ...) XXX reenable
mkfile
(
_wcfs
,
"zhead"
,
&
_wcfs_Zhead
{
Node
:
nodefs
.
NewDefaultNode
(),
})
// TODO handle autoexit
// TODO handle autoexit
_
=
autoexit
_
=
autoexit
...
...
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