blob: 27c9c967ef2779c0747335f87f2be2025ec66b9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/** @file
*
* HGCMObjects - Host-Guest Communication Manager objects header.
*/
/*
* Copyright (C) 2006-2010 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#ifndef __HGCMOBJECTS__H
#define __HGCMOBJECTS__H
#define LOG_GROUP_MAIN_OVERRIDE LOG_GROUP_HGCM
#include "Logging.h"
#include <iprt/assert.h>
#include <iprt/avl.h>
#include <iprt/critsect.h>
#include <iprt/asm.h>
class HGCMObject;
typedef struct _ObjectAVLCore
{
AVLULNODECORE AvlCore;
HGCMObject *pSelf;
} ObjectAVLCore;
typedef enum
{
HGCMOBJ_CLIENT,
HGCMOBJ_THREAD,
HGCMOBJ_MSG,
HGCMOBJ_SizeHack = 0x7fffffff
} HGCMOBJ_TYPE;
class HGCMObject
{
private:
friend uint32_t hgcmObjMake(HGCMObject *pObject, uint32_t u32HandleIn);
int32_t volatile m_cRefs;
HGCMOBJ_TYPE m_enmObjType;
ObjectAVLCore m_core;
protected:
virtual ~HGCMObject()
{};
public:
HGCMObject(HGCMOBJ_TYPE enmObjType)
: m_cRefs(0)
{
this->m_enmObjType = enmObjType;
};
void Reference()
{
int32_t refCnt = ASMAtomicIncS32(&m_cRefs);
NOREF(refCnt);
Log(("Reference: refCnt = %d\n", refCnt));
}
void Dereference()
{
int32_t refCnt = ASMAtomicDecS32(&m_cRefs);
Log(("Dereference: refCnt = %d\n", refCnt));
AssertRelease(refCnt >= 0);
if (refCnt)
{
return;
}
delete this;
}
uint32_t Handle()
{
return m_core.AvlCore.Key;
};
HGCMOBJ_TYPE Type()
{
return m_enmObjType;
};
};
int hgcmObjInit();
void hgcmObjUninit();
uint32_t hgcmObjGenerateHandle(HGCMObject *pObject);
uint32_t hgcmObjAssignHandle(HGCMObject *pObject, uint32_t u32Handle);
void hgcmObjDeleteHandle(uint32_t handle);
HGCMObject *hgcmObjReference(uint32_t handle, HGCMOBJ_TYPE enmObjType);
void hgcmObjDereference(HGCMObject *pObject);
uint32_t hgcmObjQueryHandleCount();
void hgcmObjSetHandleCount(uint32_t u32HandleCount);
#endif /* __HGCMOBJECTS__H */
|