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 import OpenRTM_aist
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044 class OutPortProvider(OpenRTM_aist.DataPortStatus):
00045 """
00046 """
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057 class publishInterfaceProfileFunc:
00058 def __init__(self, prop):
00059 self._prop = prop
00060
00061 def __call__(self, provider):
00062 provider.publishInterfaceProfile(self._prop)
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076 def __init__(self):
00077 self._properties = []
00078 self._portType = ""
00079 self._dataType = ""
00080 self._interfaceType = ""
00081 self._dataflowType = ""
00082 self._subscriptionType = ""
00083 self._rtcout = OpenRTM_aist.Manager.instance().getLogbuf("OutPortProvider")
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102 def publishInterfaceProfile(self, prop):
00103 OpenRTM_aist.NVUtil.appendStringValue(prop, "dataport.interface_type", self._interfaceType)
00104 OpenRTM_aist.NVUtil.append(prop, self._properties)
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123 def publishInterface(self, prop):
00124 if not OpenRTM_aist.NVUtil.isStringValue(prop,"dataport.interface_type",self._interfaceType):
00125 return False
00126
00127 OpenRTM_aist.NVUtil.append(prop,self._properties)
00128 return True
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143 def setPortType(self, port_type):
00144 self._portType = port_type
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159 def setDataType(self, data_type):
00160 self._dataType = data_type
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175 def setInterfaceType(self, interface_type):
00176 self._interfaceType = interface_type
00177
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187
00188
00189
00190
00191 def setDataFlowType(self, dataflow_type):
00192 self._dataflowType = dataflow_type
00193
00194
00195
00196
00197
00198
00199
00200
00201
00202
00203
00204
00205
00206
00207 def setSubscriptionType(self, subs_type):
00208 self._subscriptionType = subs_type
00209
00210
00211
00212 outportproviderfactory = None
00213
00214 class OutPortProviderFactory(OpenRTM_aist.Factory,OutPortProvider):
00215 def __init__(self):
00216 OpenRTM_aist.Factory.__init__(self)
00217 pass
00218
00219
00220 def __del__(self):
00221 pass
00222
00223
00224 def instance():
00225 global outportproviderfactory
00226
00227 if outportproviderfactory is None:
00228 outportproviderfactory = OutPortProviderFactory()
00229
00230 return outportproviderfactory
00231
00232 instance = staticmethod(instance)