Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ipaaca
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Social Cognitive Systems
ipaaca
Commits
dc5b5646
Commit
dc5b5646
authored
10 years ago
by
Hendrik Buschmeier
Browse files
Options
Downloads
Patches
Plain Diff
Reduced code duplication, MessageConverter now inherits from IUConverter.
parent
079b0813
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ipaacalib/python/src/ipaaca/converter.py
+4
-77
4 additions, 77 deletions
ipaacalib/python/src/ipaaca/converter.py
with
4 additions
and
77 deletions
ipaacalib/python/src/ipaaca/converter.py
+
4
−
77
View file @
dc5b5646
...
...
@@ -168,87 +168,14 @@ class IUConverter(rsb.converter.Converter):
raise
ValueError
(
"
Inacceptable dataType %s
"
%
type
)
class
MessageConverter
(
rsb
.
converter
.
Converter
):
class
MessageConverter
(
IU
Converter
):
'''
Converter class for
Full
IU representations
wire:bytearray <-> wire-schema:ipaaca-
full-
iu <-> class ipaacaRSB.IU
Converter class for
Message
IU representations
wire:bytearray <-> wire-schema:ipaaca-
message
iu <-> class ipaacaRSB.IU
'''
def
__init__
(
self
,
wireSchema
=
"
ipaaca-messageiu
"
,
dataType
=
ipaaca
.
iu
.
Message
):
super
(
IUConverter
,
self
).
__init__
(
bytearray
,
dataType
,
wireSchema
)
def
serialize
(
self
,
iu
):
pbo
=
ipaaca_pb2
.
IU
()
pbo
.
uid
=
iu
.
_uid
pbo
.
revision
=
iu
.
_revision
pbo
.
category
=
iu
.
_category
pbo
.
payload_type
=
iu
.
_payload_type
pbo
.
owner_name
=
iu
.
_owner_name
pbo
.
committed
=
iu
.
_committed
am
=
ipaaca_pb2
.
IU
.
PUSH
#default
if
iu
.
_access_mode
==
ipaaca
.
iu
.
IUAccessMode
.
MESSAGE
:
am
=
ipaaca_pb2
.
IU
.
MESSAGE
# TODO add other types later
pbo
.
access_mode
=
am
pbo
.
read_only
=
iu
.
_read_only
for
k
,
v
in
iu
.
_payload
.
items
():
entry
=
pbo
.
payload
.
add
()
pack_payload_entry
(
entry
,
k
,
v
)
for
type_
in
iu
.
_links
.
keys
():
linkset
=
pbo
.
links
.
add
()
linkset
.
type
=
type_
linkset
.
targets
.
extend
(
iu
.
_links
[
type_
])
ws
=
"
ipaaca-messageiu
"
if
iu
.
_access_mode
==
ipaaca
.
iu
.
IUAccessMode
.
MESSAGE
else
self
.
wireSchema
return
bytearray
(
pbo
.
SerializeToString
()),
ws
super
(
MessageConverter
,
self
).
__init__
(
wireSchema
=
wireSchema
,
dataType
=
dataType
)
def
deserialize
(
self
,
byte_stream
,
ws
):
type
=
self
.
getDataType
()
if
type
==
ipaaca
.
iu
.
IU
or
type
==
ipaaca
.
iu
.
Message
:
pbo
=
ipaaca_pb2
.
IU
()
pbo
.
ParseFromString
(
str
(
byte_stream
)
)
if
pbo
.
access_mode
==
ipaaca_pb2
.
IU
.
PUSH
:
_payload
=
{}
for
entry
in
pbo
.
payload
:
_payload
[
entry
.
key
]
=
unpack_payload_entry
(
entry
)
_links
=
collections
.
defaultdict
(
set
)
for
linkset
in
pbo
.
links
:
for
target_uid
in
linkset
.
targets
:
_links
[
linkset
.
type
].
add
(
target_uid
)
remote_push_iu
=
ipaaca
.
iu
.
RemotePushIU
(
uid
=
pbo
.
uid
,
revision
=
pbo
.
revision
,
read_only
=
pbo
.
read_only
,
owner_name
=
pbo
.
owner_name
,
category
=
pbo
.
category
,
payload_type
=
pbo
.
payload_type
,
committed
=
pbo
.
committed
,
payload
=
_payload
,
links
=
_links
)
return
remote_push_iu
elif
pbo
.
access_mode
==
ipaaca_pb2
.
IU
.
MESSAGE
:
_payload
=
{}
for
entry
in
pbo
.
payload
:
_payload
[
entry
.
key
]
=
unpack_payload_entry
(
entry
)
_links
=
collections
.
defaultdict
(
set
)
for
linkset
in
pbo
.
links
:
for
target_uid
in
linkset
.
targets
:
_links
[
linkset
.
type
].
add
(
target_uid
)
remote_message
=
ipaaca
.
iu
.
RemoteMessage
(
uid
=
pbo
.
uid
,
revision
=
pbo
.
revision
,
read_only
=
pbo
.
read_only
,
owner_name
=
pbo
.
owner_name
,
category
=
pbo
.
category
,
payload_type
=
pbo
.
payload_type
,
committed
=
pbo
.
committed
,
payload
=
_payload
,
links
=
_links
)
return
remote_message
else
:
raise
Exception
(
"
We can only handle IUs with access mode
'
PUSH
'
or
'
MESSAGE
'
for now!
"
)
else
:
raise
ValueError
(
"
Inacceptable dataType %s
"
%
type
)
class
IULinkUpdate
(
object
):
...
...
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