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
eab0c6e3
Commit
eab0c6e3
authored
Jul 26, 2017
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
b0b596a2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
162 additions
and
64 deletions
+162
-64
go/zodb/storage/fs1/filestorage.go
go/zodb/storage/fs1/filestorage.go
+1
-1
go/zodb/storage/fs1/fs1tools/dump.go
go/zodb/storage/fs1/fs1tools/dump.go
+134
-43
go/zodb/storage/fs1/fs1tools/tail.go
go/zodb/storage/fs1/fs1tools/tail.go
+14
-14
go/zodb/storage/fs1/fs1tools/tail_test.go
go/zodb/storage/fs1/fs1tools/tail_test.go
+13
-6
No files found.
go/zodb/storage/fs1/filestorage.go
View file @
eab0c6e3
...
...
@@ -206,7 +206,7 @@ func (fh *FileHeader) Load(r io.ReaderAt) error {
return
err
// XXX err more context
}
if
string
(
fh
.
Magic
[
:
])
!=
Magic
{
return
fmt
.
Errorf
(
"%s: invalid magic %q"
,
xio
.
Name
(
r
),
fh
.
Magic
)
// XXX -> decode err
return
fmt
.
Errorf
(
"%s: invalid magic %q"
,
xio
.
Name
(
r
),
fh
.
Magic
)
// XXX -> decode err
//return decodeErr(fh, "invalid magic %q", fh.Magic)
}
...
...
go/zodb/storage/fs1/fs1tools/dump.go
View file @
eab0c6e3
...
...
@@ -18,43 +18,43 @@
// See https://www.nexedi.com/licensing for rationale and options.
package
fs1tools
// various dumping routines / subcommands
import
(
"crypto/sha1"
"flag"
"fmt"
"io"
"log"
"os"
"lab.nexedi.com/kirr/neo/go/zodb/storage/fs1"
"lab.nexedi.com/kirr/go123/xbytes"
"lab.nexedi.com/kirr/go123/xerr"
"lab.nexedi.com/kirr/go123/xfmt"
)
/*
Dump dumps transactions from a FileStorage.
Format is the same as in fsdump/py originally written by Jeremy Hylton:
https://github.com/zopefoundation/ZODB/blob/master/src/ZODB/FileStorage/fsdump.py
https://github.com/zopefoundation/ZODB/commit/ddcb46a2
https://github.com/zopefoundation/ZODB/commit/4d86e4e0
*/
func
Dump
(
w
io
.
Writer
,
path
string
,
options
DumpOptions
)
(
err
error
)
{
var
d
dumper
if
options
.
Verbose
{
d
=
&
dumperVerbose
{}
}
else
{
d
=
&
dumper1
{}
}
return
dump
(
w
,
path
,
fs1
.
IterForward
,
d
)
// XXX hardcoded
}
type
DumpOptions
struct
{
Verbose
bool
// dump in verbose mode
// Dumper is interface to implement various dumping modes
type
Dumper
interface
{
// DumpFileHeader dumps fh to buf
DumpFileHeader
(
buf
*
xfmt
.
Buffer
,
fh
*
fs1
.
FileHeader
)
error
// DumpTxn dumps current transaction from it to buf.
//
// It is dumper responsibility to iterate over data records inside
// transaction if it needs to dump information about data records.
//
// If dumper return io.EOF the whole dumping process finishes.
// XXX -> better dedicated err?
DumpTxn
(
buf
*
xfmt
.
Buffer
,
it
*
fs1
.
Iter
)
error
}
func
dump
(
w
io
.
Writer
,
path
string
,
dir
fs1
.
IterDir
,
d
dumper
)
(
err
error
)
{
defer
xerr
.
Contextf
(
&
err
,
"%s: fsdump"
,
path
)
// XXX ok?
// Dump dumps content of a FileStorage file @ path.
// To do so it reads file header and then iterates over all transactions in the file.
// The logic to actually output information and if needed read/process data is implemented by Dumper d.
func
Dump
(
w
io
.
Writer
,
path
string
,
dir
fs1
.
IterDir
,
d
Dumper
)
(
err
error
)
{
defer
xerr
.
Contextf
(
&
err
,
"%s: dump"
,
path
)
// XXX ok? XXX name ?
it
,
f
,
err
:=
fs1
.
IterateFile
(
path
,
dir
)
if
err
!=
nil
{
...
...
@@ -87,7 +87,10 @@ func dump(w io.Writer, path string, dir fs1.IterDir, d dumper) (err error) {
if
err
!=
nil
{
return
err
}
d
.
dumpFileHeader
(
buf
,
&
fh
)
err
=
d
.
DumpFileHeader
(
buf
,
&
fh
)
if
err
!=
nil
{
return
err
}
// iter over txn/data
for
{
...
...
@@ -99,7 +102,7 @@ func dump(w io.Writer, path string, dir fs1.IterDir, d dumper) (err error) {
return
err
}
err
=
d
.
d
umpTxn
(
buf
,
it
)
err
=
d
.
D
umpTxn
(
buf
,
it
)
if
err
!=
nil
{
if
err
==
io
.
EOF
{
err
=
nil
// XXX -> okEOF(err)
...
...
@@ -114,24 +117,22 @@ func dump(w io.Writer, path string, dir fs1.IterDir, d dumper) (err error) {
}
}
// dumper is internal interface to implement various dumping modes
type
dumper
interface
{
dumpFileHeader
(
*
xfmt
.
Buffer
,
*
fs1
.
FileHeader
)
error
dumpTxn
(
*
xfmt
.
Buffer
,
*
fs1
.
Iter
)
error
// dumpData(*xfmt.Buffer, *fs1.Iter) error
// dumpTxnPost(*xfmt.Buffer, *fs1.Iter) error
}
// ----------------------------------------
// "normal" dumper XXX link to zodb/py
type
dumper1
struct
{
// DumperFsDump implements dumping with the same format as in fsdump/py
// originally written by Jeremy Hylton:
//
// https://github.com/zopefoundation/ZODB/blob/master/src/ZODB/FileStorage/fsdump.py
// https://github.com/zopefoundation/ZODB/commit/ddcb46a2
type
DumperFsDump
struct
{
ntxn
int
// current transaction record #
}
func
(
d
*
dumper1
)
d
umpFileHeader
(
buf
*
xfmt
.
Buffer
,
fh
*
fs1
.
FileHeader
)
error
{
func
(
d
*
DumperFsDump
)
D
umpFileHeader
(
buf
*
xfmt
.
Buffer
,
fh
*
fs1
.
FileHeader
)
error
{
return
nil
}
func
(
d
*
dumper1
)
d
umpTxn
(
buf
*
xfmt
.
Buffer
,
it
*
fs1
.
Iter
)
error
{
func
(
d
*
DumperFsDump
)
D
umpTxn
(
buf
*
xfmt
.
Buffer
,
it
*
fs1
.
Iter
)
error
{
txnh
:=
&
it
.
Txnh
buf
.
S
(
"Trans #"
)
buf
.
S
(
fmt
.
Sprintf
(
"%05d"
,
d
.
ntxn
))
// XXX -> .D_f("05", d.ntxn)
...
...
@@ -183,13 +184,16 @@ func (d *dumper1) dumpTxn(buf *xfmt.Buffer, it *fs1.Iter) error {
return
nil
}
// ----------------------------------------
// verbose dumper with output identical to fsdump.Dumper in zodb/py
type
dumperVerbose
struct
{
// DumperFsDumpVerbose implements a very verbose dumper with output identical
// to fsdump.Dumper in zodb/py originally written by Jeremy Hylton:
//
// https://github.com/zopefoundation/ZODB/blob/master/src/ZODB/FileStorage/fsdump.py
// https://github.com/zopefoundation/ZODB/commit/4d86e4e0
type
DumperFsDumpVerbose
struct
{
}
func
(
d
*
dumperVerbose
)
d
umpFileHeader
(
buf
*
xfmt
.
Buffer
,
fh
*
fs1
.
FileHeader
)
error
{
func
(
d
*
DumperFsDumpVerbose
)
D
umpFileHeader
(
buf
*
xfmt
.
Buffer
,
fh
*
fs1
.
FileHeader
)
error
{
for
i
:=
0
;
i
<
60
;
i
++
{
buf
.
S
(
"*"
)
}
...
...
@@ -198,7 +202,7 @@ func (d *dumperVerbose) dumpFileHeader(buf *xfmt.Buffer, fh *fs1.FileHeader) err
return
nil
}
func
(
d
*
dumperVerbose
)
d
umpTxn
(
buf
*
xfmt
.
Buffer
,
it
*
fs1
.
Iter
)
error
{
func
(
d
*
DumperFsDumpVerbose
)
D
umpTxn
(
buf
*
xfmt
.
Buffer
,
it
*
fs1
.
Iter
)
error
{
txnh
:=
&
it
.
Txnh
for
i
:=
0
;
i
<
60
;
i
++
{
buf
.
S
(
"="
)
...
...
@@ -225,7 +229,7 @@ func (d *dumperVerbose) dumpTxn(buf *xfmt.Buffer, it *fs1.Iter) error {
return
nil
}
func
(
d
*
dumper
Verbose
)
dumpData
(
buf
*
xfmt
.
Buffer
,
it
*
fs1
.
Iter
)
error
{
func
(
d
*
DumperFsDump
Verbose
)
dumpData
(
buf
*
xfmt
.
Buffer
,
it
*
fs1
.
Iter
)
error
{
dh
:=
&
it
.
Datah
for
i
:=
0
;
i
<
60
;
i
++
{
buf
.
S
(
"-"
)
...
...
@@ -249,3 +253,90 @@ func (d *dumperVerbose) dumpData(buf *xfmt.Buffer, it *fs1.Iter) error {
buf
.
S
(
"
\n
"
)
return
nil
}
// ----------------------------------------
// DumperFsTail implements dumping with the same format as in fstail/py
// originally written by Jeremy Hylton:
//
// https://github.com/zopefoundation/ZODB/blob/master/src/ZODB/scripts/fstail.py
// https://github.com/zopefoundation/ZODB/commit/551122cc
type
DumperFsTail
struct
{
Ntxn
int
// max # of transactions to dump
data
[]
byte
// buffer for reading txn data
}
func
(
d
*
DumperFsTail
)
DumpFileHeader
(
buf
*
xfmt
.
Buffer
,
fh
*
fs1
.
FileHeader
)
error
{
return
nil
}
func
(
d
*
DumperFsTail
)
DumpTxn
(
buf
*
xfmt
.
Buffer
,
it
*
fs1
.
Iter
)
error
{
if
d
.
Ntxn
==
0
{
return
io
.
EOF
}
d
.
Ntxn
--
txnh
:=
&
it
.
Txnh
// read raw data inside transaction record
dataLen
:=
txnh
.
DataLen
()
d
.
data
=
xbytes
.
Realloc64
(
d
.
data
,
dataLen
)
_
,
err
:=
it
.
R
.
ReadAt
(
d
.
data
,
txnh
.
DataPos
())
if
err
!=
nil
{
// XXX -> txnh.Err(...) ?
// XXX err = noEOF(err)
return
&
fs1
.
ErrTxnRecord
{
txnh
.
Pos
,
"read data payload"
,
err
}
}
// print information about read txn record
dataSha1
:=
sha1
.
Sum
(
d
.
data
)
buf
.
V
(
txnh
.
Tid
.
Time
())
.
S
(
": hash="
)
.
Xb
(
dataSha1
[
:
])
// fstail.py uses repr to print user/description:
// https://github.com/zopefoundation/ZODB/blob/5.2.0-5-g6047e2fae/src/ZODB/scripts/fstail.py#L39
buf
.
S
(
"
\n
user="
)
.
Qpyb
(
txnh
.
User
)
.
S
(
" description="
)
.
Qpyb
(
txnh
.
Description
)
// NOTE in zodb/py .length is len - 8, in zodb/go - whole txn record length
buf
.
S
(
" length="
)
.
D64
(
txnh
.
Len
-
8
)
buf
.
S
(
" offset="
)
.
D64
(
txnh
.
Pos
)
.
S
(
" (+"
)
.
D64
(
txnh
.
HeaderLen
())
.
S
(
")
\n\n
"
)
return
nil
}
const
tailSummary
=
"dump last few transactions of a database"
const
ntxnDefault
=
10
func
tailUsage
(
w
io
.
Writer
)
{
fmt
.
Fprintf
(
w
,
`Usage: fs1 tail [options] <storage>
Dump transactions from a FileStorage in reverse order
<storage> is a path to FileStorage
options:
-h --help this help text.
-n <N> output the last <N> transactions (default %d).
`
,
ntxnDefault
)
}
func
tailMain
(
argv
[]
string
)
{
ntxn
:=
ntxnDefault
flags
:=
flag
.
FlagSet
{
Usage
:
func
()
{
tailUsage
(
os
.
Stderr
)
}}
flags
.
Init
(
""
,
flag
.
ExitOnError
)
flags
.
IntVar
(
&
ntxn
,
"n"
,
ntxn
,
"output the last <N> transactions"
)
flags
.
Parse
(
argv
[
1
:
])
argv
=
flags
.
Args
()
if
len
(
argv
)
<
1
{
flags
.
Usage
()
os
.
Exit
(
2
)
}
storPath
:=
argv
[
0
]
err
:=
Dump
(
os
.
Stdout
,
storPath
,
fs1
.
IterBackward
,
&
DumperFsTail
{
Ntxn
:
ntxn
})
if
err
!=
nil
{
log
.
Fatal
(
err
)
}
}
go/zodb/storage/fs1/fs1tools/tail.go
View file @
eab0c6e3
...
...
@@ -20,20 +20,16 @@
package
fs1tools
import
(
"crypto/sha1"
"flag"
"fmt"
"io"
"log"
"os"
"lab.nexedi.com/kirr/neo/go/zodb/storage/fs1"
"lab.nexedi.com/kirr/neo/go/xcommon/xbufio"
"lab.nexedi.com/kirr/go123/xbytes"
"lab.nexedi.com/kirr/go123/xerr"
"lab.nexedi.com/kirr/go123/xfmt"
// "crypto/sha1"
// "flag"
// "fmt"
// "io"
// "log"
// "os"
// "lab.nexedi.com/kirr/go123/xbytes"
// "lab.nexedi.com/kirr/go123/xerr"
// "lab.nexedi.com/kirr/go123/xfmt"
)
/*
...
...
@@ -44,6 +40,7 @@ Format is the same as in fstail/py originally written by Jeremy Hylton:
https://github.com/zopefoundation/ZODB/blob/master/src/ZODB/scripts/fstail.py
https://github.com/zopefoundation/ZODB/commit/551122cc
*/
/*
func Tail(w io.Writer, path string, ntxn int) (err error) {
// path & fstail on error context
defer xerr.Contextf(&err, "%s: fstail", path)
...
...
@@ -138,9 +135,11 @@ func Tail(w io.Writer, path string, ntxn int) (err error) {
return err
}
*/
// ----------------------------------------
/*
const tailSummary = "dump last few transactions of a database"
const ntxnDefault = 10
...
...
@@ -178,3 +177,4 @@ func tailMain(argv []string) {
log.Fatal(err)
}
}
*/
go/zodb/storage/fs1/fs1tools/tail_test.go
View file @
eab0c6e3
...
...
@@ -23,9 +23,12 @@ package fs1tools
import
(
"bytes"
"fmt"
"io/ioutil"
"testing"
"lab.nexedi.com/kirr/neo/go/zodb/storage/fs1"
"github.com/sergi/go-diff/diffmatchpatch"
)
...
...
@@ -46,25 +49,29 @@ func diff(a, b string) string {
return
dmp
.
DiffPrettyText
(
diffv
)
}
func
TestTail
(
t
*
testing
.
T
)
{
func
testDump
(
t
*
testing
.
T
,
name
string
,
dir
fs1
.
IterDir
,
d
Dumper
)
{
buf
:=
bytes
.
Buffer
{}
err
:=
Tail
(
&
buf
,
"../testdata/1.fs"
,
1000000
)
err
:=
Dump
(
&
buf
,
"../testdata/1.fs"
,
dir
,
d
)
if
err
!=
nil
{
t
.
Fatal
(
err
)
t
.
Fatal
f
(
"%s: %v"
,
name
,
err
)
}
dumpOk
:=
loadFile
(
t
,
"testdata/1.fstail.ok"
)
dumpOk
:=
loadFile
(
t
,
fmt
.
Sprintf
(
"testdata/1.%s.ok"
,
name
)
)
if
dumpOk
!=
buf
.
String
()
{
t
.
Errorf
(
"
dump different:
\n
%v"
,
diff
(
dumpOk
,
buf
.
String
()))
t
.
Errorf
(
"
%s: dump different:
\n
%v"
,
name
,
diff
(
dumpOk
,
buf
.
String
()))
}
}
func
TestFsDump
(
t
*
testing
.
T
)
{
testDump
(
t
,
"fsdump"
,
fs1
.
IterForward
,
&
DumperFsDump
{})
}
func
TestFsDumpv
(
t
*
testing
.
T
)
{
testDump
(
t
,
"fsdumpv"
,
fs1
.
IterForward
,
&
DumperFsDumpVerbose
{})
}
func
TestFsTail
(
t
*
testing
.
T
)
{
testDump
(
t
,
"fstail"
,
fs1
.
IterBackward
,
&
DumperFsTail
{
Ntxn
:
1000000
})
}
func
BenchmarkTail
(
b
*
testing
.
B
)
{
// FIXME small testdata/1.fs is not representative for benchmarking
for
i
:=
0
;
i
<
b
.
N
;
i
++
{
err
:=
Tail
(
ioutil
.
Discard
,
"../testdata/1.fs"
,
1000000
)
err
:=
Dump
(
ioutil
.
Discard
,
"../testdata/1.fs"
,
fs1
.
IterBackward
,
&
DumperFsTail
{
Ntxn
:
1000000
}
)
if
err
!=
nil
{
b
.
Fatal
(
err
)
}
...
...
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