1 | /* $Id: */
|
---|
2 | /** @file
|
---|
3 | * VBoxServicePropCache - Guest property cache.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2010 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 |
|
---|
18 | #ifndef ___VBoxServicePropCache_h
|
---|
19 | #define ___VBoxServicePropCache_h
|
---|
20 |
|
---|
21 | #include "VBoxServiceInternal.h"
|
---|
22 |
|
---|
23 | # ifdef VBOX_WITH_GUEST_PROPS
|
---|
24 |
|
---|
25 | /** Indicates wheter a guest property is temporary and either should
|
---|
26 | * - a) get a "reset" value assigned (via VBoxServicePropCacheUpdateEntry)
|
---|
27 | * as soon as the property cache gets destroyed, or
|
---|
28 | * - b) get deleted when no reset value is specified.
|
---|
29 | */
|
---|
30 | #define VBOXSERVICEPROPCACHEFLAG_TEMPORARY RT_BIT(1)
|
---|
31 | /** Indicates whether a property every time needs to be updated, regardless
|
---|
32 | * if its real value changed or not. */
|
---|
33 | #define VBOXSERVICEPROPCACHEFLAG_ALWAYS_UPDATE RT_BIT(2)
|
---|
34 | /** The guest property gets deleted when
|
---|
35 | * - a) the property cache gets destroyed, or
|
---|
36 | * - b) the VM gets reset / shutdown / destroyed.
|
---|
37 | */
|
---|
38 | #define VBOXSERVICEPROPCACHEFLAG_TRANSIENT RT_BIT(3)
|
---|
39 |
|
---|
40 | int VBoxServicePropCacheCreate(PVBOXSERVICEVEPROPCACHE pCache, uint32_t uClientId);
|
---|
41 | int VBoxServicePropCacheUpdateEntry(PVBOXSERVICEVEPROPCACHE pCache, const char *pszName, uint32_t fFlags, const char *pszValueReset);
|
---|
42 | int VBoxServicePropCacheUpdate(PVBOXSERVICEVEPROPCACHE pCache, const char *pszName, const char *pszValueFormat, ...);
|
---|
43 | int VBoxServicePropCacheUpdateByPath(PVBOXSERVICEVEPROPCACHE pCache, const char *pszValue, uint32_t fFlags, const char *pszPathFormat, ...);
|
---|
44 | int VBoxServicePropCacheFlush(PVBOXSERVICEVEPROPCACHE pCache);
|
---|
45 | void VBoxServicePropCacheDestroy(PVBOXSERVICEVEPROPCACHE pCache);
|
---|
46 | # endif /* VBOX_WITH_GUEST_PROPS */
|
---|
47 |
|
---|
48 | #endif /* ___VBoxServicePropCache_h */
|
---|
49 |
|
---|