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
c1a59460
Commit
c1a59460
authored
Jun 07, 2019
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
622e0a43
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
19 deletions
+51
-19
wcfs/wcfs_test.py
wcfs/wcfs_test.py
+51
-19
No files found.
wcfs/wcfs_test.py
View file @
c1a59460
...
...
@@ -210,14 +210,18 @@ class tDB:
t
.
_wc_zheadfh
=
open
(
t
.
wc
.
mountpoint
+
"/.wcfs/zhead"
)
t
.
_wc_zheadv
=
[]
# tracked tFiles & tWatches
t
.
_tracked
=
set
()
# tracked opened tFiles & tWatches
t
.
_files
=
set
()
t
.
_wlinks
=
set
()
# close closes test database as well as all tracked files, watch
e
s and wcfs.
# close closes test database as well as all tracked files, watch
link
s and wcfs.
def
close
(
t
):
for
tf
in
t
.
_
tracked
.
copy
():
for
tf
in
t
.
_
files
.
copy
():
tf
.
close
()
assert
len
(
t
.
_tracked
)
==
0
for
tw
in
t
.
_wlinks
.
copy
():
tw
.
close
()
assert
len
(
t
.
_files
)
==
0
assert
len
(
t
.
_wlinks
)
==
0
t
.
_wc_zheadfh
.
close
()
t
.
wc
.
close
()
dbclose
(
t
.
root
)
...
...
@@ -333,6 +337,8 @@ class tDB:
return
open
(
path
,
mode
,
0
)
# unbuffered
# XXX vvv misc -> tail?
# hat returns string for at.
# it gives both symbolic version and raw hex for at, for example:
# @at2 (03cf7850500b5f66)
...
...
@@ -370,7 +376,9 @@ class tDB:
#print(' '*level, 'zzz', tail)
yield
([
dF
.
rev
]
+
tail
)
# _blkData returns expected blk data and revision for @at database view.
# _blkData returns expected zf[blk] data and revision as of @at database state.
# XXX ret for blk does not exists?
# XXX kill at=None?
def
_blkData
(
t
,
zf
,
blk
,
at
=
None
):
# -> (data, rev)
if
at
is
None
:
at
=
t
.
head
...
...
@@ -394,6 +402,10 @@ class tDB:
return
data
,
rev
# _blkRev returns expected zf[blk] revision as of @at database state?
def
_blkRev
(
t
,
zf
,
blk
,
at
):
# -> rev
_
,
rev
=
t
.
_blkData
(
zf
,
blk
,
at
)
return
rev
...
...
@@ -406,7 +418,7 @@ class tDB:
class
tFile
:
# maximum number of pages we mmap for 1 file.
# this should be not big not to exceed mlock limit.
_max_tracked
=
8
_max_tracked
_pages
=
8
def
__init__
(
t
,
tdb
,
zf
,
at
=
None
):
assert
isinstance
(
zf
,
ZBigFile
)
...
...
@@ -416,24 +428,24 @@ class tFile:
t
.
f
=
tdb
.
_open
(
zf
,
at
=
at
)
t
.
blksize
=
zf
.
blksize
# mmap the file past the end up to _max_tracked
pages and lock the
# mmap the file past the end up to _max_tracked
_
pages and lock the
# pages with MLOCK_ONFAULT. This way when a page is read by mmap access
# we have the guarantee from kernel that the page will stay in
# pagecache. We rely on this to verify OS cache state.
assert
t
.
blksize
%
mm
.
PAGE_SIZE
==
0
t
.
fmmap
=
mm
.
map_ro
(
t
.
f
.
fileno
(),
0
,
t
.
_max_tracked
*
t
.
blksize
)
t
.
fmmap
=
mm
.
map_ro
(
t
.
f
.
fileno
(),
0
,
t
.
_max_tracked
_pages
*
t
.
blksize
)
mm
.
lock
(
t
.
fmmap
,
mm
.
MLOCK_ONFAULT
)
tdb
.
_
tracked
.
add
(
t
)
tdb
.
_
files
.
add
(
t
)
def
close
(
t
):
t
.
tdb
.
_
tracked
.
remove
(
t
)
t
.
tdb
.
_
files
.
remove
(
t
)
mm
.
unmap
(
t
.
fmmap
)
t
.
f
.
close
()
# blk returns memoryview of file[blk].
def
blk
(
t
,
blk
):
assert
blk
<=
t
.
_max_tracked
assert
blk
<=
t
.
_max_tracked
_pages
return
memoryview
(
t
.
fmmap
[
blk
*
t
.
blksize
:(
blk
+
1
)
*
t
.
blksize
])
# cached returns [] with indicating whether a file block is cached or not.
...
...
@@ -458,7 +470,7 @@ class tFile:
def
_sizeinblk
(
t
):
st
=
os
.
fstat
(
t
.
f
.
fileno
())
assert
st
.
st_size
%
t
.
blksize
==
0
assert
st
.
st_size
//
t
.
blksize
<=
t
.
_max_tracked
assert
st
.
st_size
//
t
.
blksize
<=
t
.
_max_tracked
_pages
return
st
.
st_size
//
t
.
blksize
# assertCache asserts state of OS cache for file.
...
...
@@ -471,15 +483,35 @@ class tFile:
#
# Expected data may be given with size < t.blksize. In such case the data
# is implicitly appended with trailing zeros. Data can be both bytes and unicode.
def
assertBlk
(
t
,
blk
,
data
):
#
# pinokByWLink: {} tWatchLink -> (zf, {} blk -> at).
# pinokByWLink can be None - in that case it is computed automatically.
def
assertBlk
(
t
,
blk
,
data
,
pinokByWLink
=
None
):
if
not
isinstance
(
data
,
bytes
):
data
=
data
.
encode
(
'utf-8'
)
assert
len
(
data
)
<=
t
.
blksize
dataOk
,
_
=
t
.
tdb
.
_blkData
(
t
.
zf
,
blk
,
t
.
at
)
assert
data
==
dataOk
,
"explicit vs computed
data"
dataOk
,
blkrev
=
t
.
tdb
.
_blkData
(
t
.
zf
,
blk
,
t
.
at
)
assert
data
Ok
==
data
,
"computed vs explicit
data"
data
+=
b'
\
0
'
*
(
t
.
blksize
-
len
(
data
))
# tailing zeros
assert
blk
<
t
.
_sizeinblk
()
# if access goes to @head/file watches must be notified. if to @rev/file - silent.
wpin
=
{}
# tWatchLink -> (zf, pinok)
for
wlink
in
t
.
tdb
.
_wlinks
:
pinok
=
{}
if
t
.
at
is
None
:
# @head/...
wat
=
wlink
.
_watching
.
get
(
zf
)
if
wat
is
not
None
and
wat
<
blkrev
:
# XXX and block not cached and watch not already pinned on the watch
pinok
=
{
blk
:
t
.
tdb
.
_blkRev
(
t
.
zf
,
blk
,
wat
)}
wpin
[
wlink
]
=
(
t
.
zf
,
pinok
)
if
pinokByWLink
is
not
None
:
assert
wpin
==
pinokByWLink
,
"computed vs explicit pinokByWLink"
pinokByWLink
=
wpin
# XXX assert individually for every block's page? (easier debugging?)
assert
t
.
blk
(
blk
)
==
data
,
(
"#blk: %d"
%
blk
)
...
...
@@ -545,10 +577,10 @@ class tWatchLink:
# this tWatchLink currently watches files at particular state.
t
.
_watching
=
{}
# {} ZBigFile -> @at
tdb
.
_
tracked
.
add
(
t
)
tdb
.
_
wlinks
.
add
(
t
)
def
close
(
t
):
t
.
tdb
.
_
tracked
.
remove
(
t
)
t
.
tdb
.
_
wlinks
.
remove
(
t
)
t
.
_serveCancel
()
# ask wcfs to close its tx & rx sides; close(wcfs.tx) wakes up
...
...
@@ -819,7 +851,7 @@ def watch(twlink, zf, at, pinok=None): # XXX -> ?
# {} blk -> at that have to be pinned.
# XXX also check that head/file[blk] is in cache - else no need to pin
if
pinok
is
not
None
:
assert
pin
ok
==
pin
,
"explicit pinok != computed
pinok"
assert
pin
==
pinok
,
"computed vs explicit
pinok"
pinok
=
pin
print
(
'# pinok: %s'
%
pinstr
(
pinok
))
...
...
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