This change reorganizes the source directories of the ptp-notification's
containers: locationservice; notificationservice; notificationclient, to
be reused by both CentOS and Debian Dockerfiles to build the images
having the corresponding OS-specific base, together with the new files
used to build images for Debian.
Tests:
PASS: Build images of the 3 containers for Debian
PASS: Upload and apply changed ptp-notification application to pull
Debian images from private repository (since final tag is
not possible yet) in a Debian AIO-SX environment
Regression:
PASS: Build images of the 3 containers for CentOS
Story: 2009831
Task: 45658
Signed-off-by: Douglas Henrique Koerich <douglashenrique.koerich@windriver.com>
Change-Id: I4aa9650dbebe5ba68cd4d104ee0995e79681cfa4
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
#coding=utf-8
|
|
#
|
|
# Copyright (c) 2021 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
from wsme import types as wtypes
|
|
|
|
RPC_ENDPOINT_BASE = {
|
|
'Version': '1.0',
|
|
'Namespace': 'notification',
|
|
'Exchange': 'notification_exchange',
|
|
'TransportEndpoint': '',
|
|
'Topic': '',
|
|
'Server': ''
|
|
}
|
|
|
|
class RpcEndpointInfo(wtypes.Base):
|
|
TransportEndpoint = wtypes.text
|
|
Exchange = wtypes.text
|
|
Topic = wtypes.text
|
|
Server = wtypes.text
|
|
Version = wtypes.text
|
|
Namespace = wtypes.text
|
|
|
|
def __init__(self, transport_endpoint):
|
|
self.endpoint_json = {
|
|
'Version': RPC_ENDPOINT_BASE['Version'],
|
|
'Namespace': RPC_ENDPOINT_BASE['Namespace'],
|
|
'Exchange': RPC_ENDPOINT_BASE['Exchange'],
|
|
'TransportEndpoint': transport_endpoint,
|
|
'Topic': RPC_ENDPOINT_BASE['Topic'],
|
|
'Server': RPC_ENDPOINT_BASE['Server']
|
|
}
|
|
super(RpcEndpointInfo, self).__init__(**self.endpoint_json)
|
|
|
|
def to_dict(self):
|
|
return self.endpoint_json
|