VirtualBox

source: vbox/trunk/include/VBox/com/EventQueue.h@ 76507

Last change on this file since 76507 was 76507, checked in by vboxsync, 6 years ago

/include: scm --fix-header-guards. bugref:9344

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.6 KB
Line 
1/* $Id: EventQueue.h 76507 2018-12-30 03:43:09Z vboxsync $ */
2/** @file
3 * MS COM / XPCOM Abstraction Layer - Event queue class declaration.
4 */
5
6/*
7 * Copyright (C) 2013-2017 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27#ifndef ___VBox_com_EventQueue_h
28#define ___VBox_com_EventQueue_h
29#ifndef RT_WITHOUT_PRAGMA_ONCE
30# pragma once
31#endif
32
33#include <list>
34
35#include <iprt/asm.h>
36#include <iprt/critsect.h>
37
38#include <VBox/com/defs.h>
39#include <VBox/com/assert.h>
40
41
42/** @defgroup grp_com_evtqueue Event Queue Classes
43 * @ingroup grp_com
44 * @{
45 */
46
47namespace com
48{
49
50class EventQueue;
51
52/**
53 * Base class for all events. Intended to be subclassed to introduce new
54 * events and handlers for them.
55 *
56 * Subclasses usually reimplement virtual #handler() (that does nothing by
57 * default) and add new data members describing the event.
58 */
59class Event
60{
61public:
62
63 Event(void) :
64 mRefCount(0) { }
65 virtual ~Event(void) { AssertMsg(!mRefCount,
66 ("Reference count of event=%p not 0 on destruction (is %RU32)\n",
67 this, mRefCount)); }
68public:
69
70 uint32_t AddRef(void) { return ASMAtomicIncU32(&mRefCount); }
71 void Release(void)
72 {
73 Assert(mRefCount);
74 uint32_t cRefs = ASMAtomicDecU32(&mRefCount);
75 if (!cRefs)
76 delete this;
77 }
78
79protected:
80
81 /**
82 * Event handler. Called in the context of the event queue's thread.
83 * Always reimplemented by subclasses
84 *
85 * @return reserved, should be NULL.
86 */
87 virtual void *handler(void) { return NULL; }
88
89 friend class EventQueue;
90
91protected:
92
93 /** The event's reference count. */
94 uint32_t mRefCount;
95};
96
97typedef std::list< Event* > EventQueueList;
98typedef std::list< Event* >::iterator EventQueueListIterator;
99typedef std::list< Event* >::const_iterator EventQueueListIteratorConst;
100
101/**
102 * Simple event queue.
103 */
104class EventQueue
105{
106public:
107
108 EventQueue(void);
109 virtual ~EventQueue(void);
110
111public:
112
113 BOOL postEvent(Event *event);
114 int processEventQueue(RTMSINTERVAL cMsTimeout);
115 int processPendingEvents(size_t cNumEvents);
116 int interruptEventQueueProcessing();
117
118private:
119
120 /** Critical section for serializing access to this
121 * event queue. */
122 RTCRITSECT mCritSect;
123 /** Number of concurrent users. At the moment we
124 * only support one concurrent user at a time when
125 calling processEventQueue(). */
126 uint32_t mUserCnt;
127 /** Event semaphore for getting notified on new
128 * events being handled. */
129 RTSEMEVENT mSemEvent;
130 /** The actual event queue, implemented as a list. */
131 EventQueueList mEvents;
132 /** Shutdown indicator. */
133 bool mShutdown;
134};
135
136} /* namespace com */
137
138/** @} */
139
140#endif
141
Note: See TracBrowser for help on using the repository browser.

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