src/modules/client/debugvalues.py
author Bart Smaalders <Bart.Smaalders@Sun.COM>
Fri, 10 Oct 2008 22:15:14 -0700
changeset 584 22bc748edce6
child 1505 cc598d70bbbe
permissions -rw-r--r--
577 need service action for smf(5) manifests 578 need restart action or equivalent to poke smf(5) services

#!/usr/bin/python2.4
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#

# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.


class DebugValues(object):
        """ simple singleton class to handle debug variables """
        __debug_values = {}

        def __call__(self):
                return self

        def get_value(self, key):
                """ returns None if not set """
                return self.__debug_values.get(key, None)

        def set_value(self, key, value):
                self.__debug_values[key] = value

DebugValues=DebugValues()