aboutsummaryrefslogtreecommitdiffstats
path: root/lib/lufa/Demos/Host/ClassDriver/VirtualSerialHost
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lufa/Demos/Host/ClassDriver/VirtualSerialHost')
0 files changed, 0 insertions, 0 deletions
='#n57'>57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
#============================================================================
# This library is free software; you can redistribute it and/or
# modify it under the terms of version 2.1 of the GNU Lesser General Public
# License as published by the Free Software Foundation.
#
# 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
#============================================================================
# Copyright (C) 2007 Tom Wilkie <tom.wilkie@gmail.com>
#============================================================================
"""
This is a place to put instances of XenAPI objects,
instead of just holding them in arbitrary places.

All objects which subclass XendBase should use this
mechanism.

You must register both the uuid and type, and get objects
by type, to ensure safety
"""

import threading

__classes = {}
__classes_lock = threading.RLock()

def register(uuid, type, inst):
    __classes_lock.acquire()
    try:
        __classes[(uuid, type)] = inst
        return inst
    finally:
        __classes_lock.release()

def deregister(uuid, type):
    __classes_lock.acquire()
    try:
        old = get(uuid, type)
        if old is not None:
            del __classes[(uuid, type)]
        return old
    finally:
        __classes_lock.release()

def get(uuid, type):
    """
    Get the instances by uuid and type
    """
    __classes_lock.acquire()
    try:
        return __classes.get((uuid, type), None)
    finally:
        __classes_lock.release()

def get_all(all_type):
    """
    Get all instances by type
    """
    __classes_lock.acquire()
    try:
        return [inst
                for ((uuid, t), inst) in __classes.items()
                if t == all_type]        
    finally:
        __classes_lock.release()

def get_all_uuid(all_type):
    """
    Get all uuids by type
    """
    __classes_lock.acquire()
    try:
        return [uuid
                for (uuid, t) in __classes.keys()
                if t == all_type]
    finally:
        __classes_lock.release()