Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
7f32a08b
Commit
7f32a08b
authored
Apr 07, 2015
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Queued level db writes and batch writes. Closes #647
parent
758205b1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
94 additions
and
46 deletions
+94
-46
db.go
common/db.go
+0
-2
database.go
ethdb/database.go
+84
-27
database_test.go
ethdb/database_test.go
+10
-17
No files found.
common/db.go
View file @
7f32a08b
...
...
@@ -4,9 +4,7 @@ package common
type
Database
interface
{
Put
(
key
[]
byte
,
value
[]
byte
)
Get
(
key
[]
byte
)
([]
byte
,
error
)
//GetKeys() []*Key
Delete
(
key
[]
byte
)
error
LastKnownTD
()
[]
byte
Close
()
Print
()
}
ethdb/database.go
View file @
7f32a08b
package
ethdb
import
(
"fmt"
"sync"
"time"
"github.com/ethereum/go-ethereum/compression/rle"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger/glog"
"github.com/syndtr/goleveldb/leveldb"
"github.com/syndtr/goleveldb/leveldb/iterator"
)
type
LDBDatabase
struct
{
db
*
leveldb
.
DB
comp
bool
fn
string
mu
sync
.
Mutex
db
*
leveldb
.
DB
queue
map
[
string
][]
byte
quit
chan
struct
{}
}
func
NewLDBDatabase
(
file
string
)
(
*
LDBDatabase
,
error
)
{
...
...
@@ -20,35 +28,61 @@ func NewLDBDatabase(file string) (*LDBDatabase, error) {
if
err
!=
nil
{
return
nil
,
err
}
database
:=
&
LDBDatabase
{
db
:
db
,
comp
:
true
}
database
:=
&
LDBDatabase
{
fn
:
file
,
db
:
db
,
quit
:
make
(
chan
struct
{}),
}
database
.
makeQueue
()
go
database
.
update
()
return
database
,
nil
}
func
(
self
*
LDBDatabase
)
makeQueue
()
{
self
.
queue
=
make
(
map
[
string
][]
byte
)
}
func
(
self
*
LDBDatabase
)
Put
(
key
[]
byte
,
value
[]
byte
)
{
if
self
.
comp
{
self
.
mu
.
Lock
()
defer
self
.
mu
.
Unlock
()
self
.
queue
[
string
(
key
)]
=
value
/*
value = rle.Compress(value)
}
err
:=
self
.
db
.
Put
(
key
,
value
,
nil
)
if
err
!=
nil
{
fmt
.
Println
(
"Error put"
,
err
)
}
err := self.db.Put(key, value, nil)
if err != nil {
fmt.Println("Error put", err)
}
*/
}
func
(
self
*
LDBDatabase
)
Get
(
key
[]
byte
)
([]
byte
,
error
)
{
self
.
mu
.
Lock
()
defer
self
.
mu
.
Unlock
()
// Check queue first
if
dat
,
ok
:=
self
.
queue
[
string
(
key
)];
ok
{
return
dat
,
nil
}
dat
,
err
:=
self
.
db
.
Get
(
key
,
nil
)
if
err
!=
nil
{
return
nil
,
err
}
if
self
.
comp
{
return
rle
.
Decompress
(
dat
)
}
return
dat
,
nil
return
rle
.
Decompress
(
dat
)
}
func
(
self
*
LDBDatabase
)
Delete
(
key
[]
byte
)
error
{
self
.
mu
.
Lock
()
defer
self
.
mu
.
Unlock
()
// make sure it's not in the queue
delete
(
self
.
queue
,
string
(
key
))
return
self
.
db
.
Delete
(
key
,
nil
)
}
...
...
@@ -66,23 +100,46 @@ func (self *LDBDatabase) NewIterator() iterator.Iterator {
return
self
.
db
.
NewIterator
(
nil
,
nil
)
}
func
(
self
*
LDBDatabase
)
Write
(
batch
*
leveldb
.
Batch
)
error
{
func
(
self
*
LDBDatabase
)
Flush
()
error
{
self
.
mu
.
Lock
()
defer
self
.
mu
.
Unlock
()
batch
:=
new
(
leveldb
.
Batch
)
for
key
,
value
:=
range
self
.
queue
{
batch
.
Put
([]
byte
(
key
),
rle
.
Compress
(
value
))
}
self
.
makeQueue
()
// reset the queue
return
self
.
db
.
Write
(
batch
,
nil
)
}
func
(
self
*
LDBDatabase
)
Close
()
{
// Close the leveldb database
self
.
db
.
Close
()
self
.
quit
<-
struct
{}{}
<-
self
.
quit
glog
.
V
(
logger
.
Info
)
.
Infoln
(
"flushed and closed db:"
,
self
.
fn
)
}
func
(
self
*
LDBDatabase
)
Print
()
{
iter
:=
self
.
db
.
NewIterator
(
nil
,
nil
)
for
iter
.
Next
()
{
key
:=
iter
.
Key
()
value
:=
iter
.
Value
()
func
(
self
*
LDBDatabase
)
update
()
{
ticker
:=
time
.
NewTicker
(
1
*
time
.
Minute
)
done
:
for
{
select
{
case
<-
ticker
.
C
:
if
err
:=
self
.
Flush
();
err
!=
nil
{
glog
.
V
(
logger
.
Error
)
.
Infof
(
"error: flush '%s': %v
\n
"
,
self
.
fn
,
err
)
}
case
<-
self
.
quit
:
break
done
}
}
fmt
.
Printf
(
"%x(%d): "
,
key
,
len
(
key
))
node
:=
common
.
NewValueFromBytes
(
value
)
fmt
.
Printf
(
"%v
\n
"
,
node
)
if
err
:=
self
.
Flush
();
err
!=
nil
{
glog
.
V
(
logger
.
Error
)
.
Infof
(
"error: flush '%s': %v
\n
"
,
self
.
fn
,
err
)
}
// Close the leveldb database
self
.
db
.
Close
()
self
.
quit
<-
struct
{}{}
}
ethdb/database_test.go
View file @
7f32a08b
package
ethdb
/*
import
(
"bytes"
"testing"
"os"
"path"
"github.com/ethereum/go-ethereum/common"
)
func
TestCompression(t *testing.T)
{
db, err := NewLDBDatabase("testdb
")
if
err != nil
{
t.Fatal(err
)
func
newDb
()
*
LDBDatabase
{
file
:=
path
.
Join
(
"/"
,
"tmp"
,
"ldbtesttmpfile
"
)
if
common
.
FileExist
(
file
)
{
os
.
RemoveAll
(
file
)
}
in := make([]byte, 10)
db.Put([]byte("test1"), in)
out, err := db.Get([]byte("test1"))
if err != nil {
t.Fatal(err)
}
db
,
_
:=
NewLDBDatabase
(
file
)
if bytes.Compare(out, in) != 0 {
t.Error("put get", in, out)
}
return
db
}
*/
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