Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 import OpenRTM_aist
00022 import RTC
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044 class OutPortConnector(OpenRTM_aist.ConnectorBase):
00045 """
00046 """
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056 def __init__(self, info):
00057 self._rtcout = OpenRTM_aist.Manager.instance().getLogbuf("OutPortConnector")
00058 self._profile = info
00059 self._endian = None
00060 return
00061
00062
00063
00064
00065
00066
00067
00068
00069 def __del__(self):
00070 pass
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087 def profile(self):
00088 self._rtcout.RTC_TRACE("profile()")
00089 return self._profile
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105 def id(self):
00106 self._rtcout.RTC_TRACE("id() = %s", self.profile().id)
00107 return self.profile().id
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124 def name(self):
00125 self._rtcout.RTC_TRACE("name() = %s", self.profile().name)
00126 return self.profile().name
00127
00128
00129
00130 def setConnectorInfo(self, info):
00131 self._profile = info
00132
00133 if self._profile.properties.hasKey("serializer"):
00134 endian = self._profile.properties.getProperty("serializer.cdr.endian")
00135 if not endian:
00136 self._rtcout.RTC_ERROR("InPortConnector.setConnectorInfo(): endian is not supported.")
00137 return RTC.RTC_ERROR
00138
00139 endian = OpenRTM_aist.split(endian, ",")
00140 endian = OpenRTM_aist.normalize(endian)
00141
00142 if endian == "little":
00143 self._endian = True
00144 elif endian == "big":
00145 self._endian = False
00146 else:
00147 self._endian = None
00148
00149 else:
00150 self._endian = True
00151
00152 return RTC.RTC_OK