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
4cc79d6f
Commit
4cc79d6f
authored
Dec 19, 2018
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
65c9a383
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
16 deletions
+9
-16
go/zodb/storage/fs1/filestorage.go
go/zodb/storage/fs1/filestorage.go
+9
-16
No files found.
go/zodb/storage/fs1/filestorage.go
View file @
4cc79d6f
...
@@ -462,7 +462,7 @@ func (fs *FileStorage) watcher(w *fsnotify.Watcher) {
...
@@ -462,7 +462,7 @@ func (fs *FileStorage) watcher(w *fsnotify.Watcher) {
}
}
}
}
// XXX fs.watchErr = err (-> fail other operations)
// XXX fs.watchErr = err (-> fail other operations)
?
if
err
!=
nil
{
if
err
!=
nil
{
log
.
Print
(
err
)
log
.
Print
(
err
)
}
}
...
@@ -479,7 +479,7 @@ func (fs *FileStorage) _watcher(w *fsnotify.Watcher) (err error) {
...
@@ -479,7 +479,7 @@ func (fs *FileStorage) _watcher(w *fsnotify.Watcher) (err error) {
// loop checking f.size vs topPos
// loop checking f.size vs topPos
//
//
// besides relying on notify we also check file periodically to avoid
// besides relying on
fs
notify we also check file periodically to avoid
// stalls due to e.g. OS notification errors.
// stalls due to e.g. OS notification errors.
tick
:=
time
.
NewTicker
(
1
*
time
.
Second
)
tick
:=
time
.
NewTicker
(
1
*
time
.
Second
)
defer
tick
.
Stop
()
defer
tick
.
Stop
()
...
@@ -488,14 +488,12 @@ func (fs *FileStorage) _watcher(w *fsnotify.Watcher) (err error) {
...
@@ -488,14 +488,12 @@ func (fs *FileStorage) _watcher(w *fsnotify.Watcher) (err error) {
mainloop
:
mainloop
:
for
{
for
{
if
!
first
{
if
!
first
{
//tracef("select ...")
select
{
select
{
case
<-
fs
.
down
:
case
<-
fs
.
down
:
// closed
// closed
return
nil
return
nil
case
err
:=
<-
w
.
Errors
:
case
err
:=
<-
w
.
Errors
:
//tracef("error: %s", err)
if
err
!=
fsnotify
.
ErrEventOverflow
{
if
err
!=
fsnotify
.
ErrEventOverflow
{
return
err
return
err
}
}
...
@@ -504,12 +502,12 @@ mainloop:
...
@@ -504,12 +502,12 @@ mainloop:
case
<-
w
.
Events
:
case
<-
w
.
Events
:
// we got some kind of "file was modified" event (e.g.
// we got some kind of "file was modified" event (e.g.
// write, truncate, chown ...) -> it is time to check the file again.
// write, truncate, chown ...) -> it is time to check the file again.
//tracef("event: %s", e)
case
<-
tick
.
C
:
case
<-
tick
.
C
:
// recheck the file periodically.
// recheck the file periodically.
//tracef("tick")
}
}
// XXX dequeue everything from w?
}
}
first
=
false
first
=
false
...
@@ -519,7 +517,6 @@ mainloop:
...
@@ -519,7 +517,6 @@ mainloop:
return
err
return
err
}
}
fsize
:=
fi
.
Size
()
fsize
:=
fi
.
Size
()
//tracef("toppos: %d\tfsize: %d\n", idx.TopPos, fsize)
switch
{
switch
{
case
fsize
==
idx
.
TopPos
:
case
fsize
==
idx
.
TopPos
:
continue
// same as before
continue
// same as before
...
@@ -529,15 +526,14 @@ mainloop:
...
@@ -529,15 +526,14 @@ mainloop:
}
}
// there is some data after toppos - try to advance as much as we can.
// there is some data after toppos - try to advance as much as we can.
// start iterating afresh with empty buffer.
// start iterating afresh with new empty buffer.
//tracef("scanning ...")
it
:=
Iterate
(
seqReadAt
(
f
),
idx
.
TopPos
,
IterForward
)
it
:=
Iterate
(
seqReadAt
(
f
),
idx
.
TopPos
,
IterForward
)
for
{
for
{
err
=
it
.
NextTxn
(
LoadNoStrings
)
err
=
it
.
NextTxn
(
LoadNoStrings
)
if
err
!=
nil
{
if
err
!=
nil
{
// transaction header could not be fully read.
// transaction header could not be fully read.
//
//
//
E
ven though FileStorage code always calls write with full txn
//
e
ven though FileStorage code always calls write with full txn
// header, the kernel could do the write in parts, e.g. if written
// header, the kernel could do the write in parts, e.g. if written
// region overlaps page boundary.
// region overlaps page boundary.
//
//
...
@@ -568,19 +564,17 @@ mainloop:
...
@@ -568,19 +564,17 @@ mainloop:
// read ok - reset t₀(partial)
// read ok - reset t₀(partial)
t0partial
=
time
.
Time
{}
t0partial
=
time
.
Time
{}
//tracef("@%d tid=%s st=%q", it.Txnh.Pos, it.Txnh.Tid, it.Txnh.Status)
// XXX dup wrt Index.Update
// XXX dup wrt Index.Update
// we could successfully read the transaction header. Try to see now,
// we could successfully read the transaction header. Try to see now,
// whether it is finished transaction or not.
// whether it is finished transaction or not.
if
it
.
Txnh
.
Status
==
zodb
.
TxnInprogress
{
if
it
.
Txnh
.
Status
==
zodb
.
TxnInprogress
{
// not yet.
w
e have to resync because transaction finish writes
// not yet.
W
e have to resync because transaction finish writes
// to what we have already buffered.
// to what we have already buffered.
continue
mainloop
continue
mainloop
}
}
// it is fully-committed transaction.
s
can its data records to update
// it is fully-committed transaction.
S
can its data records to update
// our index & notify watchers. There is no expected errors here.
// our index & notify watchers. There is no expected errors here.
var
oidv
[]
zodb
.
Oid
var
oidv
[]
zodb
.
Oid
update
:=
map
[
zodb
.
Oid
]
int64
{}
update
:=
map
[
zodb
.
Oid
]
int64
{}
...
@@ -610,8 +604,7 @@ mainloop:
...
@@ -610,8 +604,7 @@ mainloop:
}
}
fs
.
mu
.
Unlock
()
fs
.
mu
.
Unlock
()
//tracef("-> tid=%s δoidv=%v", it.Txnh.Tid, oidv)
// notify client
if
fs
.
watchq
!=
nil
{
if
fs
.
watchq
!=
nil
{
select
{
select
{
case
<-
fs
.
down
:
case
<-
fs
.
down
:
...
...
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