Example #1
0
 def __init__(self):
     '''
     Just call superclass constructors here and get a member logger.
     '''
     ACSComponent.__init__(self)
     ContainerServices.__init__(self)
     self.logger = self.getLogger()
Example #2
0
 def __init__(self):
     '''
     Just call superclass constructors here.
     '''
     ACSComponent.__init__(self)
     ContainerServices.__init__(self)
     return
Example #3
0
 def __init__(self):
     '''
     Just call superclass constructors here and get a member logger.
     '''
     ACSComponent.__init__(self)
     ContainerServices.__init__(self)
     self.logger = self.getLogger()
Example #4
0
    def __init__(self):
        '''
        Just call superclass constructors here.
        '''
        ACSComponent.__init__(self)
        ContainerServices.__init__(self)

        self.LOGGER = getLogger("CounterSupplier")
        #LOGGER.logInfo('Passed through __init__')
        return
Example #5
0
    def __init__(self):
        '''
        Just call superclass constructors here.
        '''
        ACSComponent.__init__(self)
        ContainerServices.__init__(self)

        self.LOGGER = getLogger("CounterSupplier")
        #LOGGER.logInfo('Passed through __init__')
        return
Example #6
0
 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
Example #7
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
Example #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
Example #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)
Example #10
0
    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 = {}
Example #11
0
    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 = {}
Example #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..."
Example #13
0
 def __init__(self):
     ACSComponent.__init__(self)
     ComponentLifecycle.__init__(self)
     ContainerServices.__init__(self)
Example #14
0
 def __init__(self):
     ACSComponent.__init__(self)
     ContainerServices.__init__(self)
     return
Example #15
0
	def __init__(self):
		ACSComponent.__init__(self)
		ComponentLifecycle.__init__(self)
		ContainerServices.__init__(self)
 def __init__(self, *args, **kw):
     ACSComponent.__init__(self)
     ContainerServices.__init__(self, *args, **kw)
     self._a_number = 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..."
Example #18
0
 def __init__(self):
     ACSComponent.__init__(self)
     ContainerServices.__init__(self)
     return