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
5c3763ac
Commit
5c3763ac
authored
Feb 20, 2017
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
a3127b62
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
221 additions
and
119 deletions
+221
-119
t/neo/storage/filestorage.go
t/neo/storage/filestorage.go
+0
-80
t/neo/storage/fs1/filestorage.go
t/neo/storage/fs1/filestorage.go
+155
-0
t/neo/storage/fs1/index.go
t/neo/storage/fs1/index.go
+1
-1
t/neo/storage/fs1/py/gen-testdata
t/neo/storage/fs1/py/gen-testdata
+1
-0
t/neo/storage/fs1/py/indexcmp
t/neo/storage/fs1/py/indexcmp
+1
-0
t/neo/zodb/zodb.go
t/neo/zodb/zodb.go
+63
-38
No files found.
t/neo/storage/filestorage.go
deleted
100644 → 0
View file @
a3127b62
// XXX license
// filestorage support XXX text
package
storage
import
(
"os"
"../zodb"
)
type
FileStorage
struct
{
f
*
os
.
File
// XXX naming -> file ?
}
// IStorage
var
_
zodb
.
IStorage
=
(
*
FileStorage
)(
nil
)
type
TxnRecHead
struct
{
Tid
zodb
.
Tid
RecLenm8
uint64
Status
zodb
.
TxnStatus
//UserLen uint16
//DescriptionLen uint16
//ExtensionLen uint16
User
[]
byte
// TODO Encode ^^^
Description
[]
byte
Extension
[]
byte
Datav
[]
DataRec
}
type
DataRec
struct
{
Oid
zodb
.
Oid
Tid
zodb
.
Tid
PrevDataRecPos
uint64
// previous-record file-position
TxnPos
uint64
// beginning of transaction record file position
// 2-bytes with zero values. (Was version length.)
//DataLen uint64
Data
[]
byte
DataRecPos
uint64
// if Data == nil -> byte position of data record containing data
}
func
(
rh
*
TxnRecHead
)
MarshalFS
()
[]
byte
{
panic
(
"TODO"
)
}
func
(
rh
*
TxnRecHead
)
UnmarshalFS
(
data
[]
byte
)
{
//TODO
}
func
NewFileStorage
(
path
string
)
(
*
FileStorage
,
error
)
{
f
,
err
:=
os
.
Open
(
path
)
// note opens in O_RDONLY
if
err
!=
nil
{
return
nil
,
err
}
// TODO read file header
//Read(f, 4) != "FS21" -> invalid header
return
&
FileStorage
{
f
:
f
},
nil
}
func
(
f
*
FileStorage
)
Close
()
error
{
err
:=
f
.
f
.
Close
()
if
err
!=
nil
{
return
err
}
f
.
f
=
nil
return
nil
}
func
(
f
*
FileStorage
)
Iterate
(
start
,
stop
zodb
.
Tid
)
zodb
.
IStorageIterator
{
if
start
!=
zodb
.
Tid0
||
stop
!=
zodb
.
TidMax
{
panic
(
"TODO start/stop support"
)
}
// TODO
return
nil
}
t/neo/storage/fs1/filestorage.go
0 → 100644
View file @
5c3763ac
// 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 2, or (at your
// option) any later version, as published by the Free Software Foundation.
//
// 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.
//
// XXX based on code from ZODB ?
// FileStorage v1. XXX text
package
fs1
import
(
"encoding/binary"
"errors"
"fmt"
"io"
"os"
"../../zodb"
)
type
FileStorage
struct
{
f
*
os
.
File
// XXX naming -> file ?
index
*
fsIndex
}
// IStorage
var
_
zodb
.
IStorage
=
(
*
FileStorage
)(
nil
)
type
TxnRecHead
struct
{
Tid
zodb
.
Tid
RecLenm8
uint64
Status
zodb
.
TxnStatus
//UserLen uint16
//DescriptionLen uint16
//ExtensionLen uint16
User
[]
byte
// TODO Encode ^^^
Description
[]
byte
Extension
[]
byte
//Datav []DataRec
}
// DataHeader represents header of a data record
type
DataHeader
struct
{
Oid
zodb
.
Oid
Tid
zodb
.
Tid
PrevDataRecPos
uint64
// previous-record file-position
TxnPos
uint64
// position of transaction record this data record belongs to
_
uint16
// 2-bytes with zero values. (Was version length.)
DataLen
uint64
// length of following data. if 0 -> following = 8 bytes backpointer
// if backpointer == 0 -> oid deleted
//Data []byte
//DataRecPos uint64 // if Data == nil -> byte position of data record containing data
}
const
DataHeaderSize
=
42
// ErrDataRead is returned on data record read / decode errors
type
ErrDataRead
struct
{
Pos
int64
Err
error
}
func
(
e
*
ErrDataRead
)
Error
()
string
{
return
fmt
.
Sprintf
(
"data read: record @%v: %v"
,
e
.
Pos
,
e
.
Err
)
}
// XXX -> zodb?
var
ErrVersionNonZero
=
errors
.
New
(
"non-zero version"
)
// XXX io.ReaderAt -> *os.File (if iface conv costly)
func
(
dh
*
DataHeader
)
decode
(
r
io
.
ReaderAt
,
pos
int64
,
tmpBuf
*
[
DataHeaderSize
]
byte
)
error
{
n
,
err
:=
r
.
ReadAt
(
tmpBuf
[
:
],
pos
)
if
n
==
DataHeaderSize
{
err
=
nil
// we don't care if it was EOF after full header read XXX ok?
}
if
err
!=
nil
{
return
&
ErrDataRead
{
pos
,
err
}
}
dh
.
Oid
.
Decode
(
tmpBuf
[
0
:
])
dh
.
Tid
.
Decode
(
tmpBuf
[
8
:
])
dh
.
PrevDataRecPos
=
binary
.
BigEndian
.
Uint64
(
tmpBuf
[
16
:
])
dh
.
TxnPos
=
binary
.
BigEndian
.
Uint64
(
tmpBuf
[
24
:
])
verlen
:=
binary
.
BigEndian
.
Uint16
(
tmpBuf
[
32
:
])
dh
.
DataLen
=
binary
.
BigEndian
.
Uint64
(
tmpBuf
[
34
:
])
if
verlen
!=
0
{
return
&
ErrDataRead
{
pos
,
ErrVersionNonZero
}
}
return
nil
}
func
(
dh
*
DataHeader
)
Decode
(
r
io
.
ReaderAt
,
pos
int64
)
error
{
var
tmpBuf
[
DataHeaderSize
]
byte
return
dh
.
decode
(
r
,
pos
,
&
tmpBuf
)
}
func
NewFileStorage
(
path
string
)
(
*
FileStorage
,
error
)
{
f
,
err
:=
os
.
Open
(
path
)
// XXX opens in O_RDONLY
if
err
!=
nil
{
return
nil
,
err
// XXX err more context ?
}
// TODO read file header
//Read(f, 4) != "FS21" -> invalid header
return
&
FileStorage
{
f
:
f
},
nil
// TODO read/recreate index
}
func
(
fs
*
FileStorage
)
LoadBefore
(
oid
zodb
.
Oid
,
beforeTid
zodb
.
Tid
)
(
data
[]
byte
,
tid
zodb
.
Tid
,
err
error
)
{
// lookup in index position of oid data record with latest transaction who changed this oid
dataPos
,
ok
:=
fs
.
index
.
Get
(
oid
)
if
!
ok
{
return
nil
,
zodb
.
Tid
(
0
),
zodb
.
ErrOidMissing
{
Oid
:
oid
}
}
// search backwards for when we first have data record with tid < beforeTid
}
func
(
fs
*
FileStorage
)
Close
()
error
{
// TODO dump index
err
:=
fs
.
f
.
Close
()
if
err
!=
nil
{
return
err
}
fs
.
f
=
nil
return
nil
}
func
(
fs
*
FileStorage
)
StorageName
()
string
{
return
"FileStorage v1"
}
func
(
fs
*
FileStorage
)
Iterate
(
start
,
stop
zodb
.
Tid
)
zodb
.
IStorageIterator
{
if
start
!=
zodb
.
Tid0
||
stop
!=
zodb
.
TidMax
{
panic
(
"TODO start/stop support"
)
}
// TODO
return
nil
}
t/neo/storage/fs1/index.go
View file @
5c3763ac
...
...
@@ -12,7 +12,7 @@
//
// XXX based on code from ZODB ?
// FileStorage. Index
// FileStorage
v1
. Index
package
fs1
import
(
...
...
t/neo/storage/fs1/py/gen-testdata
View file @
5c3763ac
#!/usr/bin/env python2
# TODO author/copyright
"""generate reference database and index for tests"""
from
ZODB.FileStorage
import
FileStorage
...
...
t/neo/storage/fs1/py/indexcmp
View file @
5c3763ac
#!/usr/bin/env python2
# TODO author/copyright
"""compare two index files"""
from
ZODB.fsIndex
import
fsIndex
...
...
t/neo/zodb/zodb.go
View file @
5c3763ac
// TODO copyright / license
// Package zodb defines types
and interface
s used in ZODB databases
// Package zodb defines types
, interfaces and error
s used in ZODB databases
// XXX partly based on ZODB/py
package
zodb
import
(
"fmt"
)
// ZODB types
type
Tid
uint64
// transaction identifier
type
Oid
uint64
// object identifier
...
...
@@ -27,6 +31,26 @@ const (
Oid0
Oid
=
0
)
func
(
tid
Tid
)
String
()
string
{
// XXX also print "tid:" prefix ?
return
fmt
.
Sprintf
(
"%016x"
,
uint64
(
tid
))
}
func
(
oid
Oid
)
String
()
string
{
// XXX also print "oid:" prefix ?
return
fmt
.
Sprintf
(
"%016x"
,
uint64
(
oid
))
}
// ----------------------------------------
type
ErrOidMissing
struct
{
Oid
Oid
}
func
(
e
ErrOidMissing
)
Error
()
string
{
return
"%v: no such oid"
}
// ----------------------------------------
// TxnStatus represents status of a transaction
...
...
@@ -68,8 +92,8 @@ type StorageRecordInformation struct {
type
IStorage
interface
{
Close
()
error
//
Name returns storage name
Name
()
string
// Storage
Name returns storage name
Storage
Name
()
string
// History(oid, size=1)
...
...
@@ -78,6 +102,7 @@ type IStorage interface {
// XXX ^^^ ok ?
LastTid
()
Tid
// XXX -> Tid, ok ?
// TODO data []byte -> something allocated from slab ?
LoadBefore
(
oid
Oid
,
beforeTid
Tid
)
(
data
[]
byte
,
tid
Tid
,
err
error
)
LoadSerial
(
oid
Oid
,
serial
Tid
)
(
data
[]
byte
,
err
error
)
// PrefetchBefore(oidv []Oid, beforeTid Tid) error (?)
...
...
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