Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
beem
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Show more breadcrumbs
hive
beem
Commits
0a46d085
Commit
0a46d085
authored
6 years ago
by
Holger Nahrstaedt
Browse files
Options
Downloads
Patches
Plain Diff
Fix wrong commit
parent
055345ac
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
beemgrapheneapi/graphenerpc.py
+45
-25
45 additions, 25 deletions
beemgrapheneapi/graphenerpc.py
beemgrapheneapi/rpcutils.py
+0
-30
0 additions, 30 deletions
beemgrapheneapi/rpcutils.py
with
45 additions
and
55 deletions
beemgrapheneapi/graphenerpc.py
+
45
−
25
View file @
0a46d085
...
@@ -29,7 +29,7 @@ WEBSOCKET_MODULE = None
...
@@ -29,7 +29,7 @@ WEBSOCKET_MODULE = None
if
not
WEBSOCKET_MODULE
:
if
not
WEBSOCKET_MODULE
:
try
:
try
:
import
websocket
import
websocket
from
websocket._exceptions
import
WebSocketConnectionClosedException
,
WebSocketTimeoutException
from
websocket._exceptions
import
WebSocketConnectionClosedException
WEBSOCKET_MODULE
=
"
websocket
"
WEBSOCKET_MODULE
=
"
websocket
"
except
ImportError
:
except
ImportError
:
WEBSOCKET_MODULE
=
None
WEBSOCKET_MODULE
=
None
...
@@ -164,7 +164,20 @@ class GrapheneRPC(object):
...
@@ -164,7 +164,20 @@ class GrapheneRPC(object):
try
:
try
:
if
self
.
ws
:
if
self
.
ws
:
self
.
ws
.
connect
(
self
.
url
)
self
.
ws
.
connect
(
self
.
url
)
self
.
_is_node_appbase_ready
()
try
:
props
=
None
props
=
self
.
get_config
(
api
=
"
database
"
)
except
Exception
as
e
:
if
re
.
search
(
"
Bad Cast:Invalid cast from type
"
,
str
(
e
)):
self
.
current_rpc
+=
2
props
=
self
.
get_config
(
api
=
"
database
"
)
if
props
is
None
:
raise
RPCError
(
"
Could not recieve answer for get_config
"
)
if
is_network_appbase_ready
(
props
):
if
self
.
ws
:
self
.
current_rpc
=
self
.
rpc_methods
[
"
wsappbase
"
]
else
:
self
.
current_rpc
=
self
.
rpc_methods
[
"
appbase
"
]
self
.
rpclogin
(
self
.
user
,
self
.
password
)
self
.
rpclogin
(
self
.
user
,
self
.
password
)
break
break
except
KeyboardInterrupt
:
except
KeyboardInterrupt
:
...
@@ -175,22 +188,6 @@ class GrapheneRPC(object):
...
@@ -175,22 +188,6 @@ class GrapheneRPC(object):
sleep_and_check_retries
(
self
.
num_retries
,
self
.
error_cnt
[
self
.
url
],
self
.
url
,
str
(
e
),
sleep
=
do_sleep
)
sleep_and_check_retries
(
self
.
num_retries
,
self
.
error_cnt
[
self
.
url
],
self
.
url
,
str
(
e
),
sleep
=
do_sleep
)
next_url
=
True
next_url
=
True
def
_is_node_appbase_ready
(
self
):
try
:
props
=
None
props
=
self
.
get_config
(
api
=
"
database
"
)
except
Exception
as
e
:
if
re
.
search
(
"
Bad Cast:Invalid cast from type
"
,
str
(
e
)):
self
.
current_rpc
+=
2
props
=
self
.
get_config
(
api
=
"
database
"
)
if
props
is
None
:
raise
RPCError
(
"
Could not recieve answer for get_config
"
)
if
is_network_appbase_ready
(
props
):
if
self
.
ws
:
self
.
current_rpc
=
self
.
rpc_methods
[
"
wsappbase
"
]
else
:
self
.
current_rpc
=
self
.
rpc_methods
[
"
appbase
"
]
def
rpclogin
(
self
,
user
,
password
):
def
rpclogin
(
self
,
user
,
password
):
"""
Login into Websocket
"""
"""
Login into Websocket
"""
if
self
.
ws
and
self
.
current_rpc
==
0
and
user
and
password
:
if
self
.
ws
and
self
.
current_rpc
==
0
and
user
and
password
:
...
@@ -274,9 +271,6 @@ class GrapheneRPC(object):
...
@@ -274,9 +271,6 @@ class GrapheneRPC(object):
except
WebSocketConnectionClosedException
:
except
WebSocketConnectionClosedException
:
self
.
error_cnt
[
self
.
url
]
+=
1
self
.
error_cnt
[
self
.
url
]
+=
1
self
.
rpcconnect
(
next_url
=
False
)
self
.
rpcconnect
(
next_url
=
False
)
except
WebSocketTimeoutException
:
self
.
error_cnt
[
self
.
url
]
+=
1
self
.
rpcconnect
(
next_url
=
True
)
except
ConnectionError
as
e
:
except
ConnectionError
as
e
:
self
.
error_cnt
[
self
.
url
]
+=
1
self
.
error_cnt
[
self
.
url
]
+=
1
sleep_and_check_retries
(
self
.
num_retries_call
,
self
.
error_cnt_call
,
self
.
url
,
str
(
e
))
sleep_and_check_retries
(
self
.
num_retries_call
,
self
.
error_cnt_call
,
self
.
url
,
str
(
e
))
...
@@ -286,16 +280,42 @@ class GrapheneRPC(object):
...
@@ -286,16 +280,42 @@ class GrapheneRPC(object):
# retry
# retry
self
.
rpcconnect
()
self
.
rpcconnect
()
json_reply
=
{}
ret
=
{}
try
:
try
:
json_reply
=
json
.
loads
(
reply
,
strict
=
False
)
ret
=
json
.
loads
(
reply
,
strict
=
False
)
except
ValueError
:
except
ValueError
:
self
.
_check_for_server_error
(
reply
)
self
.
_check_for_server_error
(
reply
)
log
.
debug
(
json
.
dumps
(
reply
))
log
.
debug
(
json
.
dumps
(
reply
))
ret
=
evaluate_json_reply
(
json_reply
)
if
isinstance
(
ret
,
dict
)
and
'
error
'
in
ret
:
self
.
error_cnt_call
=
0
if
'
detail
'
in
ret
[
'
error
'
]:
raise
RPCError
(
ret
[
'
error
'
][
'
detail
'
])
else
:
raise
RPCError
(
ret
[
'
error
'
][
'
message
'
])
else
:
if
isinstance
(
ret
,
list
):
ret_list
=
[]
for
r
in
ret
:
if
isinstance
(
r
,
dict
)
and
'
error
'
in
r
:
if
'
detail
'
in
r
[
'
error
'
]:
raise
RPCError
(
r
[
'
error
'
][
'
detail
'
])
else
:
raise
RPCError
(
r
[
'
error
'
][
'
message
'
])
elif
isinstance
(
r
,
dict
)
and
"
result
"
in
r
:
ret_list
.
append
(
r
[
"
result
"
])
else
:
ret_list
.
append
(
r
)
self
.
error_cnt_call
=
0
return
ret_list
elif
isinstance
(
ret
,
dict
)
and
"
result
"
in
ret
:
self
.
error_cnt_call
=
0
return
ret
[
"
result
"
]
elif
isinstance
(
ret
,
int
):
raise
RPCError
(
"
Client returned invalid format. Expected JSON! Output: %s
"
%
(
str
(
ret
)))
else
:
self
.
error_cnt_call
=
0
return
ret
return
ret
return
ret
# End of Deprecated methods
# End of Deprecated methods
...
...
This diff is collapsed.
Click to expand it.
beemgrapheneapi/rpcutils.py
+
0
−
30
View file @
0a46d085
...
@@ -101,33 +101,3 @@ def sleep_and_check_retries(num_retries, cnt, url, errorMsg=None, sleep=True):
...
@@ -101,33 +101,3 @@ def sleep_and_check_retries(num_retries, cnt, url, errorMsg=None, sleep=True):
if
sleeptime
:
if
sleeptime
:
log
.
warning
(
"
Retrying in %d seconds
\n
"
%
sleeptime
)
log
.
warning
(
"
Retrying in %d seconds
\n
"
%
sleeptime
)
time
.
sleep
(
sleeptime
)
time
.
sleep
(
sleeptime
)
def
evaluate_json_reply
(
self
,
ret
):
"""
Evaluate server reply and raises RPCError on errors
"""
if
isinstance
(
ret
,
dict
)
and
'
error
'
in
ret
:
if
'
detail
'
in
ret
[
'
error
'
]:
raise
RPCError
(
ret
[
'
error
'
][
'
detail
'
])
else
:
raise
RPCError
(
ret
[
'
error
'
][
'
message
'
])
else
:
if
isinstance
(
ret
,
list
):
ret_list
=
[]
for
r
in
ret
:
if
isinstance
(
r
,
dict
)
and
'
error
'
in
r
:
if
'
detail
'
in
r
[
'
error
'
]:
raise
RPCError
(
r
[
'
error
'
][
'
detail
'
])
else
:
raise
RPCError
(
r
[
'
error
'
][
'
message
'
])
elif
isinstance
(
r
,
dict
)
and
"
result
"
in
r
:
ret_list
.
append
(
r
[
"
result
"
])
else
:
ret_list
.
append
(
r
)
return
ret_list
elif
isinstance
(
ret
,
dict
)
and
"
result
"
in
ret
:
return
ret
[
"
result
"
]
elif
isinstance
(
ret
,
int
):
raise
RPCError
(
"
Client returned invalid format. Expected JSON! Output: %s
"
%
(
str
(
ret
)))
else
:
return
ret
return
ret
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