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 SDOPackage, SDOPackage__POA
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 class InPortProvider(OpenRTM_aist.DataPortStatus):
00037 """
00038 """
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053 def __init__(self):
00054 self._properties = []
00055 self._interfaceType = ""
00056 self._dataflowType = ""
00057 self._subscriptionType = ""
00058 self._rtcout = OpenRTM_aist.Manager.instance().getLogbuf("InPortProvider")
00059 self._connector = None
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074 def publishInterfaceProfile(self, prop):
00075 self._rtcout.RTC_TRACE("publishInterfaceProfile()")
00076 OpenRTM_aist.NVUtil.appendStringValue(prop, "dataport.interface_type",
00077 self._interfaceType)
00078 OpenRTM_aist.NVUtil.append(prop, self._properties)
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092 def publishInterface(self, prop):
00093 self._rtcout.RTC_TRACE("publishInterface()")
00094 if not OpenRTM_aist.NVUtil.isStringValue(prop,
00095 "dataport.interface_type",
00096 self._interfaceType):
00097 return False
00098
00099 OpenRTM_aist.NVUtil.append(prop, self._properties)
00100 return True
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115 def setInterfaceType(self, interface_type):
00116 self._rtcout.RTC_TRACE("setInterfaceType(%s)", interface_type)
00117 self._interfaceType = interface_type
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132 def setDataFlowType(self, dataflow_type):
00133 self._rtcout.RTC_TRACE("setDataFlowType(%s)", dataflow_type)
00134 self._dataflowType = dataflow_type
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149 def setSubscriptionType(self, subs_type):
00150 self._rtcout.RTC_TRACE("setSubscriptionType(%s)", subs_type)
00151 self._subscriptionType = subs_type
00152
00153
00154
00155 def setConnector(self, connector):
00156 self._connector = connector
00157
00158
00159 inportproviderfactory = None
00160
00161
00162 class InPortProviderFactory(OpenRTM_aist.Factory,InPortProvider):
00163 def __init__(self):
00164 OpenRTM_aist.Factory.__init__(self)
00165 InPortProvider.__init__(self)
00166 return
00167
00168
00169 def instance():
00170 global inportproviderfactory
00171
00172 if inportproviderfactory is None:
00173 inportproviderfactory = InPortProviderFactory()
00174
00175 return inportproviderfactory
00176
00177 instance = staticmethod(instance)
00178
00179
00180 def __del__(self):
00181 pass