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
a17d2e12
Commit
a17d2e12
authored
Jul 25, 2017
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
f9b4fc6f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
236 additions
and
8 deletions
+236
-8
go/zodb/storage/fs1/filestorage.go
go/zodb/storage/fs1/filestorage.go
+16
-0
go/zodb/storage/fs1/fs1tools/dump.go
go/zodb/storage/fs1/fs1tools/dump.go
+217
-0
go/zodb/storage/fs1/fs1tools/tail.go
go/zodb/storage/fs1/fs1tools/tail.go
+3
-8
No files found.
go/zodb/storage/fs1/filestorage.go
View file @
a17d2e12
...
@@ -95,6 +95,11 @@ type FileStorage struct {
...
@@ -95,6 +95,11 @@ type FileStorage struct {
// IStorage XXX move ?
// IStorage XXX move ?
var
_
zodb
.
IStorage
=
(
*
FileStorage
)(
nil
)
var
_
zodb
.
IStorage
=
(
*
FileStorage
)(
nil
)
// FileHeader represents FileStorage file header
type
FileHeader
struct
{
Magic
[
4
]
byte
}
// TxnHeader represents header of a transaction record
// TxnHeader represents header of a transaction record
type
TxnHeader
struct
{
type
TxnHeader
struct
{
Pos
int64
// position of transaction start
Pos
int64
// position of transaction start
...
@@ -219,6 +224,17 @@ func okEOF(err error) error {
...
@@ -219,6 +224,17 @@ func okEOF(err error) error {
return
err
return
err
}
}
// --- File header ---
func
(
fh
*
FileHeader
)
Load
(
r
io
.
ReaderAt
)
error
{
_
,
err
=
f
.
ReadAt
(
fh
.
Magic
[
:
],
0
)
if
err
!=
nil
{
return
err
// XXX err more context
}
if
string
(
fh
.
Magic
[
:
])
!=
Magic
{
return
fmt
.
Errorf
(
"%s: invalid magic %q"
,
path
,
fh
.
Magic
)
// XXX -> decode err
}
}
// --- Transaction record ---
// --- Transaction record ---
...
...
go/zodb/storage/fs1/fs1tools/dump.go
0 → 100644
View file @
a17d2e12
// 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 Free Software licenses or 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.
// See https://www.nexedi.com/licensing for rationale and options.
package
fs1tools
import
(
"lab.nexedi.com/kirr/neo/go/zodb/storage/fs1"
"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
)
(
err
error
)
{
// TODO
}
// dumper is internal interface to implement various dumping modes
type
dumper
interface
{
dumpFileHeader
(
buf
*
xfmt
.
Buffer
,
*
fs1
.
FileHeader
)
error
dumpTxn
(
buf
*
xfmt
.
Buffer
,
*
fs1
.
TxnHeader
)
error
dumpData
(
buf
*
xfmt
.
Buffer
,
*
fs1
.
DataHeader
)
error
dumpTxnPost
(
buf
*
xfmt
.
Buffer
,
*
fs1
.
TxnHeader
)
error
}
func
dump
(
w
io
.
Writer
,
path
string
,
d
dumper
)
(
err
error
)
{
defer
xerr
.
Contextf
(
&
err
,
"%s: fsdump"
,
path
)
// XXX ok?
fs
,
err
:=
fs1
.
Open
(
path
,
read
-
only
,
no
-
index
)
if
err
!=
nil
{
return
err
}
defer
func
()
{
err2
:=
fs
.
Close
()
err
=
xerr
.
First
(
err
,
err2
)
}()
// buffer for formatting
buf
:=
&
xfmt
.
Buffer
{}
flushBuf
:=
func
()
error
{
err
:=
w
.
Write
(
buf
.
Bytes
())
buf
.
Reset
()
return
err
}
// make sure to flush buffer if we return prematurely with an error
defer
func
()
{
err2
:=
flushBuf
()
err
=
xerr
.
First
(
err
,
err2
)
}()
// TODO d.dumpFileHeader
it
:=
fs
.
IterateRaw
(
fwd
)
loop
:
for
i
:=
0
;
;
i
++
{
err
=
it
.
NextTxn
(
fs1
.
LoadAll
)
if
err
!=
nil
{
if
err
==
io
.
EOF
{
err
=
nil
// XXX -> okEOF(err)
}
break
}
// txn header
d
.
dumpTxn
(
buf
,
it
.
Txnh
)
// XXX err
for
j
:=
0
;
;
j
++
{
err
=
it
.
NextData
()
if
err
!=
nil
{
if
err
==
io
.
EOF
{
err
=
nil
// XXX -> okEOF(err)
break
}
break
loop
// XXX -> better just return ?
}
// data record
d
.
dumpData
(
buf
,
it
.
Datah
)
// XXX err
}
d
.
dumpTxnPost
(
buf
,
it
.
Txnh
)
// XXX err
err
=
flushBuf
()
if
err
!=
nil
{
return
err
}
}
}
// "normal" dumper
type
dumper1
struct
{
}
func
(
d
*
dumper1
)
dumpFileHeader
(
buf
*
xfmt
.
Buffer
,
fh
*
fs1
.
FileHeader
)
error
{
return
nil
}
func
(
d
*
dumper1
)
dumpTxn
(
buf
*
xfmt
.
Buffer
,
txnh
*
fs1
.
TxnHeader
)
error
{
buf
.
S
(
"Trans #"
)
.
D_f
(
"05"
,
i
)
.
S
(
" tid="
)
.
V
(
it
.
Txnh
.
Tid
)
buf
.
S
(
" time="
)
.
V
(
it
.
Txnh
.
Tid
.
Time
())
.
S
(
" offset="
)
.
D64
(
it
.
Txnh
.
Pos
)
buf
.
S
(
"
\n
status="
)
.
Qpy
(
it
.
Txnh
.
Status
)
buf
.
S
(
" user="
)
.
Qpyb
(
it
.
Txnh
.
User
)
buf
.
S
(
" description="
)
.
Qpyb
(
it
.
Txnh
.
Description
)
.
S
(
"
\n
"
)
}
func
(
d
*
dumper1
)
dumpData
(
buf
*
xfmt
.
Buffer
,
dh
*
fs1
.
DataHeader
)
error
{
buf
.
S
(
" data #"
)
.
D_f
(
"05"
,
j
)
.
S
(
" oid="
)
.
V
(
it
.
Datah
.
Oid
)
if
it
.
Datah
.
DataLen
==
0
{
buf
.
S
(
" class=undo or abort of object creation"
)
backPos
,
err
:=
it
.
Datah
.
LoadBackRef
()
if
err
!=
nil
{
// XXX
}
if
backPos
!=
0
{
buf
.
S
(
" bp="
)
.
X016
(
uint64
(
backPos
))
}
}
else
{
// XXX Datah.LoadData()
modname
,
classname
=
zodb
.
GetPickleMetadata
(
...
)
// XXX
fullclass
=
"%s.%s"
%
(
modname
,
classname
)
buf
.
S
(
" size="
)
.
D
(
len
(
...
))
buf
.
S
(
" class="
)
.
S
(
fullclass
)
}
buf
.
S
(
"
\n
"
)
}
func
(
d
*
dumper1
)
dumpTxnPost
(
buf
*
xfmt
.
Buffer
,
txnh
*
fs1
.
TxnHeader
)
error
{
return
nil
}
// ----------------------------------------
type
dumperVerbose
struct
{
}
func
(
d
*
dumperVerbose
)
dumpFileHeader
(
buf
*
xfmt
.
Buffer
,
fh
*
fs1
.
FileHeader
)
error
{
buf
.
S
(
"*"
*
60
)
.
S
(
"
\n
"
)
buf
.
S
(
"file identifier: "
)
.
Qpyb
(
fh
.
Magic
)
.
S
(
"
\n
"
)
return
nil
}
func
(
d
*
dumperVerbose
)
dumpTxn
(
buf
*
xfmt
.
Buffer
,
txnh
*
fs1
.
TxnHeader
)
error
{
buf
.
S
(
"="
*
60
)
buf
.
S
(
"
\n
offset: "
)
.
D64
(
it
.
Txnh
.
Pos
)
buf
.
S
(
"
\n
end pos: "
)
.
D64
(
it
.
Txnh
.
Pos
+
it
.
Txnh
.
Len
)
buf
.
S
(
"
\n
transaction id: "
)
.
V
(
it
.
Txnh
.
Tid
)
buf
.
S
(
"
\n
trec len: "
)
.
D64
(
it
.
Txnh
.
Len
)
buf
.
S
(
"
\n
status: "
)
.
Qpy
(
it
.
Txnh
.
Status
)
buf
.
S
(
"
\n
user: "
)
.
Qpyb
(
it
.
Txnh
.
User
)
buf
.
S
(
"
\n
description: "
)
.
Qpyb
(
it
.
Txnh
.
Description
)
buf
.
S
(
"
\n
len(extra): "
)
.
D
(
len
(
it
.
Txnh
.
Extension
))
buf
.
S
(
"
\n
"
)
return
nil
}
func
(
d
*
dumperVerbose
)
dumpData
(
buf
*
xfmt
.
Buffer
,
dh
*
fs1
.
DataHeader
)
error
{
buf
.
S
(
"-"
*
60
)
buf
.
S
(
"
\n
offset: "
)
.
D64
(
dh
.
Pos
)
buf
.
S
(
"
\n
oid: "
)
.
V
(
dh
.
Oid
)
buf
.
S
(
"
\n
revid: "
)
.
V
(
dh
.
Tid
)
buf
.
S
(
"
\n
previous record offset: "
)
.
D64
(
dh
.
PrevRevPos
)
buf
.
S
(
"
\n
transaction offset: "
)
.
D64
(
dh
.
TxnPos
)
buf
.
S
(
"
\n
len(data): "
)
.
D64
(
dh
.
DataLen
)
if
dh
.
DataLen
==
0
{
backPos
,
err
:=
dh
.
LoadBackRef
()
if
err
!=
nil
{
// XXX
}
buf
.
S
(
"
\n
backpointer: "
,
D64
(
backPos
))
}
buf
.
S
(
"
\n
"
)
return
nil
}
func
(
d
*
dumperVerbose
)
dumpTxnPost
(
buf
*
xfmt
.
Buffer
,
txnh
*
fs1
.
TxnHeader
)
error
{
// NOTE printing the same .Len twice
// we do not print/check redundant len here because our
// FileStorage code checks/reports this itself
buf
.
S
(
"redundant trec len: "
.
D64
(
it
.
Txnh
.
Len
))
.
S
(
"
\n
"
)
return
nil
}
go/zodb/storage/fs1/fs1tools/tail.go
View file @
a17d2e12
...
@@ -32,6 +32,7 @@ import (
...
@@ -32,6 +32,7 @@ import (
"lab.nexedi.com/kirr/neo/go/xcommon/xbufio"
"lab.nexedi.com/kirr/neo/go/xcommon/xbufio"
"lab.nexedi.com/kirr/go123/xbytes"
"lab.nexedi.com/kirr/go123/xbytes"
"lab.nexedi.com/kirr/go123/xerr"
"lab.nexedi.com/kirr/go123/xfmt"
"lab.nexedi.com/kirr/go123/xfmt"
)
)
...
@@ -45,11 +46,7 @@ Format is the same as in fstail/py originally written by Jeremy Hylton:
...
@@ -45,11 +46,7 @@ Format is the same as in fstail/py originally written by Jeremy Hylton:
*/
*/
func
Tail
(
w
io
.
Writer
,
path
string
,
ntxn
int
)
(
err
error
)
{
func
Tail
(
w
io
.
Writer
,
path
string
,
ntxn
int
)
(
err
error
)
{
// path & fstail on error context
// path & fstail on error context
defer
func
()
{
defer
xerr
.
Contextf
(
&
err
,
"%s: fstail"
,
path
)
if
err
!=
nil
{
err
=
fmt
.
Errorf
(
"%s: fstail: %v"
,
path
,
err
)
}
}()
// we are not using fs1.Open here, since the file or index could be
// we are not using fs1.Open here, since the file or index could be
// e.g. corrupt - we want to iterate directly by FileStorage records
// e.g. corrupt - we want to iterate directly by FileStorage records
...
@@ -60,9 +57,7 @@ func Tail(w io.Writer, path string, ntxn int) (err error) {
...
@@ -60,9 +57,7 @@ func Tail(w io.Writer, path string, ntxn int) (err error) {
}
}
defer
func
()
{
defer
func
()
{
err2
:=
f
.
Close
()
err2
:=
f
.
Close
()
if
err
==
nil
{
err
=
xerr
.
First
(
err
,
err2
)
err
=
err2
}
}()
}()
// get file size as topPos
// get file size as topPos
...
...
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