VirtualBox

Changeset 8744 in vbox for trunk/src/VBox/Main/include


Ignore:
Timestamp:
May 9, 2008 2:51:58 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
30699
Message:

Moved the filter running over to USBProxyService (from Host). Split up the USBProxyService construction using an init() method like the rest of the classes.

Location:
trunk/src/VBox/Main/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/HostImpl.h

    r8666 r8744  
    2828# include "USBDeviceFilterImpl.h"
    2929# include "USBProxyService.h"
     30# include "VirtualBoxImpl.h"
    3031#else
    3132class USBProxyService;
     
    106107
    107108#ifdef VBOX_WITH_USB
    108     /** @name To be moved, they don't belong here.
    109      * @{ */
    110     void onUSBDeviceAttached (HostUSBDevice *aDevice);
    111     void onUSBDeviceDetached (HostUSBDevice *aDevice);
    112     void onUSBDeviceStateChanged(HostUSBDevice *aDevice, bool aRunFilters, SessionMachine *aIgnoreMachine);
    113     /** @} */
     109    typedef std::list <ComObjPtr <HostUSBDeviceFilter> > USBDeviceFilterList;
     110
     111    /** Must be called from under this object's lock. */
     112    USBProxyService *usbProxyService() { return mUSBProxyService; }
    114113
    115114    HRESULT onUSBDeviceFilterChange (HostUSBDeviceFilter *aFilter, BOOL aActiveChanged = FALSE);
    116 
    117     /* must be called from under this object's lock */
    118     USBProxyService *usbProxyService() { return mUSBProxyService; }
    119 #else  /* !VBOX_WITH_USB */
    120     USBProxyService *usbProxyService() { return NULL; }
     115    void getUSBFilters(USBDeviceFilterList *aGlobalFiltes, VirtualBox::SessionMachineVector *aMachines);
     116    HRESULT checkUSBProxyService();
    121117#endif /* !VBOX_WITH_USB */
    122 
    123     HRESULT checkUSBProxyService();
    124118
    125119#ifdef RT_OS_WINDOWS
     
    151145                     : NULL;
    152146    }
    153 
    154 public:  //temporary - will be moved soon.
    155     HRESULT applyAllUSBFilters (ComObjPtr <HostUSBDevice> &aDevice,
    156                                 SessionMachine *aMachine = NULL);
    157 
    158     bool applyMachineUSBFilters (SessionMachine *aMachine,
    159                                  ComObjPtr <HostUSBDevice> &aDevice);
    160 private: //temporary
    161147#endif /* VBOX_WITH_USB */
    162148
     
    176162
    177163#ifdef VBOX_WITH_USB
    178     typedef std::list <ComObjPtr <HostUSBDeviceFilter> > USBDeviceFilterList;
    179164    USBDeviceFilterList mUSBDeviceFilters;
    180165
  • trunk/src/VBox/Main/include/VirtualBoxBase.h

    r8709 r8744  
    16861686        //  child's uninit() from under the children map lock should not produce
    16871687        //  dead-locks any more).
    1688         Assert (!child->isWriteLockOnCurrentThread());
     1688        Assert (!child->isWriteLockOnCurrentThread() || child->lockHandle() == lockHandle());
    16891689        removeDependentChild (ComPtr <IUnknown> (child));
    16901690    }
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette