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 import OpenRTM_aist
00020 import RTC
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 class InPortConnector(OpenRTM_aist.ConnectorBase):
00044 """
00045 """
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056 def __init__(self, info, buffer):
00057 self._rtcout = OpenRTM_aist.Manager.instance().getLogbuf("InPortConnector")
00058 self._profile = info
00059 self._buffer = buffer
00060 self._dataType = None
00061 self._endian = None
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071 def __del__(self):
00072 pass
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089 def profile(self):
00090 self._rtcout.RTC_TRACE("profile()")
00091 return self._profile
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108 def id(self):
00109 self._rtcout.RTC_TRACE("id() = %s", self.profile().id)
00110 return self.profile().id
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127 def name(self):
00128 self._rtcout.RTC_TRACE("name() = %s", self.profile().name)
00129 return self.profile().name
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146 def disconnect(self):
00147 pass
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163 def getBuffer(self):
00164 return self._buffer
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180 def read(self, data):
00181 pass
00182
00183
00184 def setConnectorInfo(self, profile):
00185 self._profile = profile
00186
00187 if self._profile.properties.hasKey("serializer"):
00188 endian = self._profile.properties.getProperty("serializer.cdr.endian")
00189 if not endian:
00190 self._rtcout.RTC_ERROR("InPortConnector.setConnectorInfo(): endian is not supported.")
00191 return RTC.RTC_ERROR
00192
00193 endian = OpenRTM_aist.split(endian, ",")
00194 endian = OpenRTM_aist.normalize(endian)
00195
00196 if endian == "little":
00197 self._endian = True
00198 elif endian == "big":
00199 self._endian = False
00200 else:
00201 self._endian = None
00202
00203 else:
00204 self._endian = True
00205
00206 return RTC.RTC_OK
00207
00208
00209
00210
00211
00212 def setDataType(self, data):
00213 self._dataType = data