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 class InPortConsumer(OpenRTM_aist.DataPortStatus):
00043 """
00044 """
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055 class publishInterfaceProfileFunc:
00056 def __init__(self, prop):
00057 self._prop = prop
00058
00059 def __call__(self, consumer):
00060 consumer.publishInterfaceProfile(self._prop)
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070 class subscribeInterfaceFunc:
00071 def __init__(self, prop):
00072 self._prop = prop
00073
00074 def __call__(self, consumer):
00075 return consumer.subscribeInterface(self._prop)
00076
00077
00078 inportconsumerfactory = None
00079
00080 class InPortConsumerFactory(OpenRTM_aist.Factory,InPortConsumer):
00081
00082 def __init__(self):
00083 OpenRTM_aist.Factory.__init__(self)
00084 pass
00085
00086
00087 def __del__(self):
00088 pass
00089
00090
00091 def instance():
00092 global inportconsumerfactory
00093
00094 if inportconsumerfactory is None:
00095 inportconsumerfactory = InPortConsumerFactory()
00096
00097 return inportconsumerfactory
00098
00099 instance = staticmethod(instance)
00100