コード例 #1
0
ファイル: ErrorComponent.py プロジェクト: ydc92546169/ACS
 def __init__(self):
     '''
     Just call superclass constructors here and get a member logger.
     '''
     ACSComponent.__init__(self)
     ContainerServices.__init__(self)
     self.logger = self.getLogger()
コード例 #2
0
ファイル: LifeCycleTest.py プロジェクト: ydc92546169/ACS
 def __init__(self):
     '''
     Just call superclass constructors here.
     '''
     ACSComponent.__init__(self)
     ContainerServices.__init__(self)
     return
コード例 #3
0
ファイル: ErrorComponent.py プロジェクト: ACS-Community/ACS
 def __init__(self):
     '''
     Just call superclass constructors here and get a member logger.
     '''
     ACSComponent.__init__(self)
     ContainerServices.__init__(self)
     self.logger = self.getLogger()
コード例 #4
0
ファイル: CounterSupplier.py プロジェクト: ydc92546169/ACS
    def __init__(self):
        '''
        Just call superclass constructors here.
        '''
        ACSComponent.__init__(self)
        ContainerServices.__init__(self)

        self.LOGGER = getLogger("CounterSupplier")
        #LOGGER.logInfo('Passed through __init__')
        return
コード例 #5
0
ファイル: CounterSupplier.py プロジェクト: ACS-Community/ACS
    def __init__(self):
        '''
        Just call superclass constructors here.
        '''
        ACSComponent.__init__(self)
        ContainerServices.__init__(self)

        self.LOGGER = getLogger("CounterSupplier")
        #LOGGER.logInfo('Passed through __init__')
        return
コード例 #6
0
ファイル: LampCallback.py プロジェクト: ydc92546169/ACS
 def __init__(self):
     '''
     Just call superclass constructors here and declare members.
     '''
     ACSComponent.__init__(self)
     ContainerServices.__init__(self)
     
     self.brightness = None
     self.cb = None
     self.monitor = None
     return
コード例 #7
0
ファイル: CounterConsumer.py プロジェクト: ACS-Community/ACS
    def __init__(self):
        '''
        Just call superclass constructors here.
        '''
        ACSComponent.__init__(self)
        ContainerServices.__init__(self)

        self.eventCount = 0
        self.contFlag = True
        self.LOGGER = getLogger("CounterConsumer")

        return
コード例 #8
0
    def __init__(self):
        '''
        Just call superclass constructors here.
        '''
        ACSComponent.__init__(self)
        ContainerServices.__init__(self)

        self.eventCount = 0
        self.contFlag = True
        self.LOGGER = getLogger("CounterConsumer")

        return
コード例 #9
0
    def __init__(self): # pragma: NO COVER
        '''
        Developer must invoke this from their components constructor. The
        alternative is for them to not provide a constructor at all (implying
        the Container ends up invoking this).

        Params: None.

        Returns: Nothing

        Raises: Nothing.
        '''
        ACSComponent.__init__(self)
        CharacteristicModel.__init__(self)
コード例 #10
0
ファイル: SimServer.py プロジェクト: ydc92546169/ACS
    def __init__(self):
        '''Constructor.
        '''
        ACSComponent.__init__(self)
        ContainerServices.__init__(self)

        self.logger = self.getLogger()

        # Stores method information for all components
        # self.methods is indexed by component name
        # self.methods[comp_name] is a map indexed by method name
        # self.methods[comp_name][method_name] is an instance of MethodInfo
        self.methods = {}

        # Stores method information for all interfaces
        # self.methods is indexed by interface ('IDL:bla/bla/bla:1.0') name
        # self.methods[if_name] is a map indexed by method name
        # self.methods[if_name][method_name] is an instance of MethodInfo
        self.if_methods = {}
コード例 #11
0
ファイル: SimServer.py プロジェクト: jjpopski/ACS
    def __init__(self):
        """Constructor.
        """
        ACSComponent.__init__(self)
        ContainerServices.__init__(self)

        self.logger = self.getLogger()

        # Stores method information for all components
        # self.methods is indexed by component name
        # self.methods[comp_name] is a map indexed by method name
        # self.methods[comp_name][method_name] is an instance of MethodInfo
        self.methods = {}

        # Stores method information for all interfaces
        # self.methods is indexed by interface ('IDL:bla/bla/bla:1.0') name
        # self.methods[if_name] is a map indexed by method name
        # self.methods[if_name][method_name] is an instance of MethodInfo
        self.if_methods = {}
コード例 #12
0
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307  USA
#
# @(#) $Id: acspyTestACSComponent.py,v 1.2 2004/04/21 22:36:36 dfugate Exp $
###############################################################################
'''
Tests the Python ACSComponent.
'''
###############################################################################
from Acspy.Servants.ACSComponent import ACSComponent
import ACS
###############################################################################
if __name__ == "__main__":
    g = ACSComponent()
    g.setName("blar")
    print g._get_name()
    g.setComponentState(ACS.COMPSTATE_INITIALIZING)
    print g._get_componentState()
    print "Done..."
コード例 #13
0
 def __init__(self):
     ACSComponent.__init__(self)
     ComponentLifecycle.__init__(self)
     ContainerServices.__init__(self)
コード例 #14
0
ファイル: PyTest.py プロジェクト: ACS-Community/ACS
 def __init__(self):
     ACSComponent.__init__(self)
     ContainerServices.__init__(self)
     return
コード例 #15
0
	def __init__(self):
		ACSComponent.__init__(self)
		ComponentLifecycle.__init__(self)
		ContainerServices.__init__(self)
コード例 #16
0
 def __init__(self, *args, **kw):
     ACSComponent.__init__(self)
     ContainerServices.__init__(self, *args, **kw)
     self._a_number = 0
コード例 #17
0
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
# MA 02111-1307  USA
#
# @(#) $Id: acspyTestACSComponent.py,v 1.2 2004/04/21 22:36:36 dfugate Exp $
###############################################################################
'''
Tests the Python ACSComponent.
'''
###############################################################################
from Acspy.Servants.ACSComponent import ACSComponent
import ACS
###############################################################################
if __name__ == "__main__":
    g = ACSComponent()
    g.setName("blar")
    print g._get_name()
    g.setComponentState(ACS.COMPSTATE_INITIALIZING)
    print g._get_componentState()
    print "Done..."
コード例 #18
0
ファイル: PyTestNestedModule.py プロジェクト: ydc92546169/ACS
 def __init__(self):
     ACSComponent.__init__(self)
     ContainerServices.__init__(self)
     return