Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
neoppod
Commits
441145e5
Commit
441145e5
authored
Jun 19, 2014
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
client: simplify iterator
parent
bd03b14b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
106 deletions
+37
-106
neo/client/Storage.py
neo/client/Storage.py
+3
-6
neo/client/app.py
neo/client/app.py
+1
-5
neo/client/iterator.py
neo/client/iterator.py
+33
-95
No files found.
neo/client/Storage.py
View file @
441145e5
...
@@ -134,12 +134,9 @@ class Storage(BaseStorage.BaseStorage,
...
@@ -134,12 +134,9 @@ class Storage(BaseStorage.BaseStorage,
except
NEOStorageNotFoundError
:
except
NEOStorageNotFoundError
:
return
None
return
None
def
iterator
(
self
,
start
=
None
,
stop
=
None
):
@
property
# Iterator lives in its own transaction, so get a fresh snapshot.
def
iterator
(
self
):
snapshot_tid
=
self
.
lastTransaction
()
return
self
.
app
.
iterator
if
not
stop
or
snapshot_tid
<
stop
:
stop
=
snapshot_tid
return
self
.
app
.
iterator
(
start
,
stop
)
# undo
# undo
def
undo
(
self
,
transaction_id
,
txn
):
def
undo
(
self
,
transaction_id
,
txn
):
...
...
neo/client/app.py
View file @
441145e5
...
@@ -41,7 +41,6 @@ from .exception import NEOStorageNotFoundError
...
@@ -41,7 +41,6 @@ from .exception import NEOStorageNotFoundError
from
.handlers
import
storage
,
master
from
.handlers
import
storage
,
master
from
neo.lib.dispatcher
import
Dispatcher
,
ForgottenPacket
from
neo.lib.dispatcher
import
Dispatcher
,
ForgottenPacket
from
.poll
import
ThreadedPoll
,
psThreadedPoll
from
.poll
import
ThreadedPoll
,
psThreadedPoll
from
.iterator
import
Iterator
from
.cache
import
ClientCache
from
.cache
import
ClientCache
from
.pool
import
ConnectionPool
from
.pool
import
ConnectionPool
from
neo.lib.util
import
p64
,
u64
,
parseMasterList
from
neo.lib.util
import
p64
,
u64
,
parseMasterList
...
@@ -939,10 +938,7 @@ class Application(object):
...
@@ -939,10 +938,7 @@ class Application(object):
assert
real_tid
==
tid
,
(
real_tid
,
tid
)
assert
real_tid
==
tid
,
(
real_tid
,
tid
)
transaction_iter
.
close
()
transaction_iter
.
close
()
def
iterator
(
self
,
start
,
stop
):
from
.iterator
import
iterator
if
start
is
None
:
start
=
ZERO_TID
return
Iterator
(
self
,
start
,
stop
)
def
lastTransaction
(
self
):
def
lastTransaction
(
self
):
self
.
_askPrimary
(
Packets
.
AskLastTransaction
())
self
.
_askPrimary
(
Packets
.
AskLastTransaction
())
...
...
neo/client/iterator.py
View file @
441145e5
...
@@ -15,6 +15,7 @@
...
@@ -15,6 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from
ZODB
import
BaseStorage
from
ZODB
import
BaseStorage
from
neo.lib.protocol
import
ZERO_TID
,
MAX_TID
from
neo.lib.util
import
u64
,
add64
from
neo.lib.util
import
u64
,
add64
from
.exception
import
NEOStorageCreationUndoneError
,
NEOStorageNotFoundError
from
.exception
import
NEOStorageCreationUndoneError
,
NEOStorageNotFoundError
...
@@ -23,9 +24,6 @@ CHUNK_LENGTH = 100
...
@@ -23,9 +24,6 @@ CHUNK_LENGTH = 100
class
Record
(
BaseStorage
.
DataRecord
):
class
Record
(
BaseStorage
.
DataRecord
):
""" BaseStorage Transaction record yielded by the Transaction object """
""" BaseStorage Transaction record yielded by the Transaction object """
def
__init__
(
self
,
oid
,
tid
,
data
,
prev
):
BaseStorage
.
DataRecord
.
__init__
(
self
,
oid
,
tid
,
data
,
prev
)
def
__str__
(
self
):
def
__str__
(
self
):
oid
=
u64
(
self
.
oid
)
oid
=
u64
(
self
.
oid
)
tid
=
u64
(
self
.
tid
)
tid
=
u64
(
self
.
tid
)
...
@@ -36,109 +34,49 @@ class Record(BaseStorage.DataRecord):
...
@@ -36,109 +34,49 @@ class Record(BaseStorage.DataRecord):
class
Transaction
(
BaseStorage
.
TransactionRecord
):
class
Transaction
(
BaseStorage
.
TransactionRecord
):
""" Transaction object yielded by the NEO iterator """
""" Transaction object yielded by the NEO iterator """
def
__init__
(
self
,
app
,
tid
,
status
,
user
,
desc
,
ext
,
oid_list
,
def
__init__
(
self
,
app
,
txn
,
prev_serial_dict
):
prev_serial_dict
):
super
(
Transaction
,
self
).
__init__
(
txn
[
'id'
],
' '
,
BaseStorage
.
TransactionRecord
.
__init__
(
self
,
tid
,
status
,
user
,
desc
,
txn
[
'user_name'
],
txn
[
'description'
],
txn
[
'ext'
])
ext
)
self
.
app
=
app
self
.
app
=
app
self
.
oid_list
=
oid_list
self
.
oid_list
=
txn
[
'oids'
]
self
.
oid_index
=
0
self
.
history
=
[]
self
.
prev_serial_dict
=
prev_serial_dict
self
.
prev_serial_dict
=
prev_serial_dict
def
__iter__
(
self
):
def
__iter__
(
self
):
return
self
def
next
(
self
):
""" Iterate over the transaction records """
""" Iterate over the transaction records """
app
=
self
.
app
load
=
self
.
app
.
load
oid_list
=
self
.
oid_list
for
oid
in
self
.
oid_list
:
oid_index
=
self
.
oid_index
oid_len
=
len
(
oid_list
)
# load an object
while
oid_index
<
oid_len
:
oid
=
oid_list
[
oid_index
]
try
:
try
:
data
,
_
,
next_tid
=
app
.
load
(
oid
,
self
.
tid
)
data
,
_
,
next_tid
=
load
(
oid
,
self
.
tid
)
except
NEOStorageCreationUndoneError
:
except
NEOStorageCreationUndoneError
:
data
=
next_tid
=
None
data
=
next_tid
=
None
except
NEOStorageNotFoundError
:
except
NEOStorageNotFoundError
:
# Transactions are not updated after a pack, so their object
# Transactions are not updated after a pack, so their object
# will not be found in the database. Skip them.
# will not be found in the database. Skip them.
oid_list
.
pop
(
oid_index
)
oid_len
-=
1
continue
continue
oid_index
+=
1
if
next_tid
is
None
:
break
prev_tid
=
self
.
prev_serial_dict
.
pop
(
oid
,
None
)
else
:
else
:
# no more records for this transaction
prev_tid
=
self
.
prev_serial_dict
.
get
(
oid
)
self
.
oid_index
=
0
self
.
prev_serial_dict
[
oid
]
=
self
.
tid
raise
StopIteration
yield
Record
(
oid
,
self
.
tid
,
data
,
prev_tid
)
self
.
oid_index
=
oid_index
record
=
Record
(
oid
,
self
.
tid
,
data
,
self
.
prev_serial_dict
.
get
(
oid
))
if
next_tid
is
None
:
self
.
prev_serial_dict
.
pop
(
oid
,
None
)
else
:
self
.
prev_serial_dict
[
oid
]
=
self
.
tid
return
record
def
__str__
(
self
):
tid
=
u64
(
self
.
tid
)
args
=
(
tid
,
self
.
user
,
self
.
status
)
return
'Transaction #%s: %s %s'
%
args
class
Iterator
(
object
):
""" An iterator for the NEO storage """
def
__init__
(
self
,
app
,
start
,
stop
):
self
.
app
=
app
self
.
_txn_list
=
[]
assert
None
not
in
(
start
,
stop
)
self
.
_start
=
start
self
.
_stop
=
stop
# index of current iteration
self
.
_index
=
0
self
.
_closed
=
False
# OID -> previous TID mapping
# TODO: prune old entries while walking ?
self
.
_prev_serial_dict
=
{}
def
__iter__
(
self
):
return
self
def
__getitem__
(
self
,
index
):
""" Simple index-based iterator """
if
index
!=
self
.
_index
:
raise
IndexError
,
index
return
self
.
next
()
def
next
(
self
):
""" Return an iterator for the next transaction"""
if
self
.
_closed
:
raise
IOError
,
'iterator closed'
if
not
self
.
_txn_list
:
(
max_tid
,
chunk
)
=
self
.
app
.
transactionLog
(
self
.
_start
,
self
.
_stop
,
CHUNK_LENGTH
)
if
not
chunk
:
# nothing more
raise
StopIteration
self
.
_start
=
add64
(
max_tid
,
1
)
self
.
_txn_list
=
chunk
txn
=
self
.
_txn_list
.
pop
(
0
)
self
.
_index
+=
1
tid
=
txn
[
'id'
]
user
=
txn
[
'user_name'
]
desc
=
txn
[
'description'
]
oid_list
=
txn
[
'oids'
]
extension
=
txn
[
'ext'
]
txn
=
Transaction
(
self
.
app
,
tid
,
' '
,
user
,
desc
,
extension
,
oid_list
,
self
.
_prev_serial_dict
)
return
txn
def
__str__
(
self
):
def
__str__
(
self
):
return
'NEO transactions iterator'
return
'Transaction #%s: %s %s'
\
%
(
u64
(
self
.
tid
),
self
.
user
,
self
.
status
)
def
close
(
self
):
self
.
_closed
=
True
def
iterator
(
app
,
start
=
None
,
stop
=
None
):
"""NEO transaction iterator"""
if
start
is
None
:
start
=
ZERO_TID
stop
=
min
(
stop
or
MAX_TID
,
app
.
lastTransaction
())
# OID -> previous TID mapping
# TODO: prune old entries while walking ?
prev_serial_dict
=
{}
while
1
:
max_tid
,
chunk
=
app
.
transactionLog
(
start
,
stop
,
CHUNK_LENGTH
)
if
not
chunk
:
break
# nothing more
for
txn
in
chunk
:
yield
Transaction
(
app
,
txn
,
prev_serial_dict
)
start
=
add64
(
max_tid
,
1
)
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