VirtualBox

source: vbox/trunk/src/VBox/Main/glue/com.cpp@ 26186

Last change on this file since 26186 was 25944, checked in by vboxsync, 15 years ago

*: RTEnv usage cleanup - avoid RTEnvGet() as it doesn't necessarily return UTF-8 encoded strings.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.4 KB
Line 
1/* $Id: com.cpp 25944 2010-01-20 17:42:26Z vboxsync $ */
2/** @file
3 * MS COM / XPCOM Abstraction Layer
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22#if !defined (VBOX_WITH_XPCOM)
23
24# include <objbase.h>
25
26#else /* !defined (VBOX_WITH_XPCOM) */
27
28# include <stdlib.h>
29
30# include <nsCOMPtr.h>
31# include <nsIServiceManagerUtils.h>
32
33# include <nsIInterfaceInfo.h>
34# include <nsIInterfaceInfoManager.h>
35
36#endif /* !defined (VBOX_WITH_XPCOM) */
37
38#include "VBox/com/com.h"
39#include "VBox/com/assert.h"
40
41#include "VBox/com/Guid.h"
42#include "VBox/com/array.h"
43
44#include <iprt/param.h>
45#include <iprt/path.h>
46#include <iprt/dir.h>
47#include <iprt/env.h>
48#include <iprt/string.h>
49
50#include <VBox/err.h>
51
52#ifdef RT_OS_DARWIN
53# define VBOX_USER_HOME_SUFFIX "Library/VirtualBox"
54#else
55# define VBOX_USER_HOME_SUFFIX ".VirtualBox"
56#endif
57
58#include "Logging.h"
59
60namespace com
61{
62
63void GetInterfaceNameByIID(const GUID &aIID, BSTR *aName)
64{
65 Assert(aName);
66 if (!aName)
67 return;
68
69 *aName = NULL;
70
71#if !defined(VBOX_WITH_XPCOM)
72
73 LONG rc;
74 LPOLESTR iidStr = NULL;
75 if (StringFromIID(aIID, &iidStr) == S_OK)
76 {
77 HKEY ifaceKey;
78 rc = RegOpenKeyExW(HKEY_CLASSES_ROOT, L"Interface",
79 0, KEY_QUERY_VALUE, &ifaceKey);
80 if (rc == ERROR_SUCCESS)
81 {
82 HKEY iidKey;
83 rc = RegOpenKeyExW(ifaceKey, iidStr, 0, KEY_QUERY_VALUE, &iidKey);
84 if (rc == ERROR_SUCCESS)
85 {
86 /* determine the size and type */
87 DWORD sz, type;
88 rc = RegQueryValueExW(iidKey, NULL, NULL, &type, NULL, &sz);
89 if (rc == ERROR_SUCCESS && type == REG_SZ)
90 {
91 /* query the value to BSTR */
92 *aName = SysAllocStringLen(NULL, (sz + 1) / sizeof(TCHAR) + 1);
93 rc = RegQueryValueExW(iidKey, NULL, NULL, NULL, (LPBYTE) *aName, &sz);
94 if (rc != ERROR_SUCCESS)
95 {
96 SysFreeString(*aName);
97 aName = NULL;
98 }
99 }
100 RegCloseKey(iidKey);
101 }
102 RegCloseKey(ifaceKey);
103 }
104 CoTaskMemFree(iidStr);
105 }
106
107#else /* !defined (VBOX_WITH_XPCOM) */
108
109 nsresult rv;
110 nsCOMPtr<nsIInterfaceInfoManager> iim =
111 do_GetService(NS_INTERFACEINFOMANAGER_SERVICE_CONTRACTID, &rv);
112 if (NS_SUCCEEDED(rv))
113 {
114 nsCOMPtr<nsIInterfaceInfo> iinfo;
115 rv = iim->GetInfoForIID(&aIID, getter_AddRefs(iinfo));
116 if (NS_SUCCEEDED(rv))
117 {
118 const char *iname = NULL;
119 iinfo->GetNameShared(&iname);
120 char *utf8IName = NULL;
121 if (RT_SUCCESS(RTStrCurrentCPToUtf8(&utf8IName, iname)))
122 {
123 PRTUTF16 utf16IName = NULL;
124 if (RT_SUCCESS(RTStrToUtf16(utf8IName, &utf16IName)))
125 {
126 *aName = SysAllocString((OLECHAR *) utf16IName);
127 RTUtf16Free(utf16IName);
128 }
129 RTStrFree(utf8IName);
130 }
131 }
132 }
133
134#endif /* !defined (VBOX_WITH_XPCOM) */
135}
136
137int GetVBoxUserHomeDirectory(char *aDir, size_t aDirLen)
138{
139 AssertReturn(aDir, VERR_INVALID_POINTER);
140 AssertReturn(aDirLen > 0, VERR_BUFFER_OVERFLOW);
141
142 /* start with null */
143 *aDir = 0;
144
145 char szTmp[RTPATH_MAX];
146 int vrc = RTEnvGetEx(RTENV_DEFAULT, "VBOX_USER_HOME", szTmp, sizeof(szTmp), NULL);
147 if (RT_SUCCESS(vrc) || vrc == VERR_ENV_VAR_NOT_FOUND)
148 {
149 if (RT_SUCCESS(vrc))
150 {
151 /* get the full path name */
152 vrc = RTPathAbs(szTmp, aDir, aDirLen);
153 }
154 else
155 {
156 /* compose the config directory (full path) */
157 /** @todo r=bird: RTPathUserHome doesn't necessarily return a full (abs) path
158 * like the comment above seems to indicate. */
159 vrc = RTPathUserHome(aDir, aDirLen);
160 if (RT_SUCCESS(vrc))
161 vrc = RTPathAppend(aDir, aDirLen, VBOX_USER_HOME_SUFFIX);
162 }
163
164 /* ensure the home directory exists */
165 if (RT_SUCCESS(vrc))
166 if (!RTDirExists(aDir))
167 vrc = RTDirCreateFullPath(aDir, 0777);
168 }
169
170 return vrc;
171}
172
173/* static */
174const Guid Guid::Empty; /* default ctor is OK */
175
176#if defined (VBOX_WITH_XPCOM)
177
178/* static */
179const nsID *SafeGUIDArray::nsIDRef::Empty = (const nsID *)Guid::Empty.raw();
180
181#endif /* (VBOX_WITH_XPCOM) */
182
183/**
184 * Used by ComPtr and friends to log details about reference counting.
185 * @param pcszFormat
186 */
187void LogRef(const char *pcszFormat, ...)
188{
189 char *pszNewMsg;
190 va_list args;
191 va_start(args, pcszFormat);
192 RTStrAPrintfV(&pszNewMsg, pcszFormat, args);
193 LogDJ((pszNewMsg));
194 RTStrFree(pszNewMsg);
195 va_end(args);
196}
197
198} /* namespace com */
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