Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sakia
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
clients
python
sakia
Commits
f0f6dad6
Commit
f0f6dad6
authored
10 years ago
by
inso
Browse files
Options
Downloads
Patches
Plain Diff
Requests are now cached when they go throught a community object
parent
a33ed263
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/cutecoin/core/community.py
+38
-3
38 additions, 3 deletions
src/cutecoin/core/community.py
src/cutecoin/core/wallet.py
+0
-1
0 additions, 1 deletion
src/cutecoin/core/wallet.py
with
38 additions
and
4 deletions
src/cutecoin/core/community.py
+
38
−
3
View file @
f0f6dad6
...
@@ -9,6 +9,7 @@ from ucoinpy import PROTOCOL_VERSION
...
@@ -9,6 +9,7 @@ from ucoinpy import PROTOCOL_VERSION
from
ucoinpy.documents.peer
import
Peer
,
Endpoint
,
BMAEndpoint
from
ucoinpy.documents.peer
import
Peer
,
Endpoint
,
BMAEndpoint
from
ucoinpy.documents.block
import
Block
from
ucoinpy.documents.block
import
Block
import
logging
import
logging
import
time
class
Community
(
object
):
class
Community
(
object
):
...
@@ -21,6 +22,8 @@ class Community(object):
...
@@ -21,6 +22,8 @@ class Community(object):
'''
'''
self
.
currency
=
currency
self
.
currency
=
currency
self
.
peers
=
peers
self
.
peers
=
peers
self
.
requests_cache
=
None
self
.
last_block
=
None
@classmethod
@classmethod
def
create
(
cls
,
currency
,
peer
):
def
create
(
cls
,
currency
,
peer
):
...
@@ -100,9 +103,41 @@ class Community(object):
...
@@ -100,9 +103,41 @@ class Community(object):
logging
.
debug
(
"
Peers : {0}
"
.
format
(
self
.
peers
))
logging
.
debug
(
"
Peers : {0}
"
.
format
(
self
.
peers
))
for
peer
in
self
.
peers
:
for
peer
in
self
.
peers
:
e
=
next
(
e
for
e
in
peer
.
endpoints
if
type
(
e
)
is
BMAEndpoint
)
e
=
next
(
e
for
e
in
peer
.
endpoints
if
type
(
e
)
is
BMAEndpoint
)
logging
.
debug
(
"
Trying to connect to :
"
+
peer
.
pubkey
)
# We request the current block every five minutes
req
=
request
(
e
.
conn_handler
(),
**
req_args
)
# If a new block is mined we reset the cache
data
=
req
.
get
(
**
get_args
)
if
self
.
last_block
is
None
:
block
=
bma
.
blockchain
.
Current
(
e
.
conn_handler
()).
get
()
self
.
last_block
=
{
"
request_ts
"
:
time
.
time
(),
"
number
"
:
block
[
'
number
'
]}
elif
self
.
last_block
[
"
request_ts
"
]
<
time
.
time
()
-
300
:
block
=
bma
.
blockchain
.
Current
(
e
.
conn_handler
()).
get
()
self
.
last_block
=
{
"
request_ts
"
:
time
.
time
(),
"
number
"
:
block
[
'
number
'
]}
self
.
requests_cache
=
None
cache_key
=
(
hash
(
request
),
hash
(
tuple
(
frozenset
(
sorted
(
req_args
.
keys
())))),
hash
(
tuple
(
frozenset
(
sorted
(
req_args
.
items
())))),
hash
(
tuple
(
frozenset
(
sorted
(
get_args
.
keys
())))),
hash
(
tuple
(
frozenset
(
sorted
(
get_args
.
items
())))))
# If the cache was cleared, let's initialize a new one
if
self
.
requests_cache
is
None
:
req
=
request
(
e
.
conn_handler
(),
**
req_args
)
data
=
req
.
get
(
**
get_args
)
self
.
requests_cache
=
{
cache_key
:
data
}
else
:
if
cache_key
in
self
.
requests_cache
.
keys
():
logging
.
debug
(
"
Cache : {0} : {1}
"
.
format
(
cache_key
,
self
.
requests_cache
[
cache_key
]))
return
self
.
requests_cache
[
cache_key
]
# If we cant find it, we request for it
else
:
logging
.
debug
(
"
Connecting to {0}:{1}
"
.
format
(
e
.
server
,
e
.
port
))
req
=
request
(
e
.
conn_handler
(),
**
req_args
)
data
=
req
.
get
(
**
get_args
)
self
.
requests_cache
[
cache_key
]
=
data
return
data
return
data
def
post
(
self
,
request
,
req_args
=
{},
post_args
=
{}):
def
post
(
self
,
request
,
req_args
=
{},
post_args
=
{}):
...
...
This diff is collapsed.
Click to expand it.
src/cutecoin/core/wallet.py
+
0
−
1
View file @
f0f6dad6
...
@@ -14,7 +14,6 @@ import base64
...
@@ -14,7 +14,6 @@ import base64
class
Wallet
(
object
):
class
Wallet
(
object
):
'''
'''
A wallet is used to manage money with a unique key.
A wallet is used to manage money with a unique key.
'''
'''
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment