VirtualBox

source: vbox/trunk/src/VBox/ExtPacks/BusMouseSample/VBoxBusMouseMain.cpp@ 51696

Last change on this file since 51696 was 48949, checked in by vboxsync, 11 years ago

ExtPacks: Whitespace and svn:keyword cleanups by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.7 KB
Line 
1/* $Id: VBoxBusMouseMain.cpp 48949 2013-10-07 21:44:25Z vboxsync $ */
2/** @file
3 * Bus Mouse main module.
4 */
5
6/*
7 * Copyright (C) 2010-2013 Oracle Corporation
8 *
9 * Permission is hereby granted, free of charge, to any person
10 * obtaining a copy of this software and associated documentation
11 * files (the "Software"), to deal in the Software without
12 * restriction, including without limitation the rights to use,
13 * copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following
16 * conditions:
17 *
18 * The above copyright notice and this permission notice shall be
19 * included in all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
23 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
25 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
26 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28 * OTHER DEALINGS IN THE SOFTWARE.
29 */
30
31
32/*******************************************************************************
33* Header Files *
34*******************************************************************************/
35#include <VBox/ExtPack/ExtPack.h>
36
37#include <VBox/err.h>
38#include <VBox/version.h>
39#include <VBox/vmm/cfgm.h>
40#include <iprt/string.h>
41#include <iprt/param.h>
42#include <iprt/path.h>
43
44
45/*******************************************************************************
46* Global Variables *
47*******************************************************************************/
48/** Pointer to the extension pack helpers. */
49static PCVBOXEXTPACKHLP g_pHlp;
50
51
52// /**
53// * @interface_method_impl{VBOXEXTPACKREG,pfnInstalled}
54// */
55// static DECLCALLBACK(void) vboxSkeletonExtPack_Installed(PCVBOXEXTPACKREG pThis, VBOXEXTPACK_IF_CS(IVirtualBox) *pVirtualBox);
56// /**
57// * @interface_method_impl{VBOXEXTPACKREG,pfnUninstall}
58// */
59// static DECLCALLBACK(int) vboxSkeletonExtPack_Uninstall(PCVBOXEXTPACKREG pThis, VBOXEXTPACK_IF_CS(IVirtualBox) *pVirtualBox);
60//
61// /**
62// * @interface_method_impl{VBOXEXTPACKREG,pfnVirtualBoxReady}
63// */
64// static DECLCALLBACK(void) vboxSkeletonExtPack_VirtualBoxReady(PCVBOXEXTPACKREG pThis, VBOXEXTPACK_IF_CS(IVirtualBox) *pVirtualBox);
65//
66// /**
67// * @interface_method_impl{VBOXEXTPACKREG,pfnUnload}
68// */
69// static DECLCALLBACK(void) vboxSkeletonExtPack_Unload(PCVBOXEXTPACKREG pThis);
70// /**
71// * @interface_method_impl{VBOXEXTPACKREG,pfnVMCreated}
72// */
73// static DECLCALLBACK(int) vboxSkeletonExtPack_VMCreated(PCVBOXEXTPACKREG pThis, VBOXEXTPACK_IF_CS(IVirtualBox) *pVirtualBox, IMachine *pMachine);
74//
75
76/**
77 * @interface_method_impl{VBOXEXTPACKREG,pfnVMConfigureVMM
78 */
79static DECLCALLBACK(int) vboxBusMouseExtPack_VMConfigureVMM(PCVBOXEXTPACKREG pThis, IConsole *pConsole, PVM pVM)
80{
81 /*
82 * Find the bus mouse module and tell PDM to load it.
83 * ASSUME /PDM/Devices exists.
84 */
85 char szPath[RTPATH_MAX];
86 int rc = g_pHlp->pfnFindModule(g_pHlp, "VBoxBusMouseR3", NULL, VBOXEXTPACKMODKIND_R3, szPath, sizeof(szPath), NULL);
87 if (RT_FAILURE(rc))
88 return rc;
89
90 PCFGMNODE pCfgRoot = CFGMR3GetRoot(pVM);
91 AssertReturn(pCfgRoot, VERR_INTERNAL_ERROR_3);
92
93 PCFGMNODE pCfgDevices = CFGMR3GetChild(pCfgRoot, "PDM/Devices");
94 AssertReturn(pCfgDevices, VERR_INTERNAL_ERROR_3);
95
96 PCFGMNODE pCfgMine;
97 rc = CFGMR3InsertNode(pCfgDevices, "VBoxBusMouse", &pCfgMine);
98 AssertRCReturn(rc, rc);
99 rc = CFGMR3InsertString(pCfgMine, "Path", szPath);
100 AssertRCReturn(rc, rc);
101
102 /*
103 * Tell PDM where to find the R0 and RC modules for the bus mouse device.
104 */
105#ifdef VBOX_WITH_RAW_MODE
106 rc = g_pHlp->pfnFindModule(g_pHlp, "VBoxBusMouseRC", NULL, VBOXEXTPACKMODKIND_RC, szPath, sizeof(szPath), NULL);
107 AssertRCReturn(rc, rc);
108 RTPathStripFilename(szPath);
109 rc = CFGMR3InsertString(pCfgMine, "RCSearchPath", szPath);
110 AssertRCReturn(rc, rc);
111#endif
112
113 rc = g_pHlp->pfnFindModule(g_pHlp, "VBoxBusMouseR0", NULL, VBOXEXTPACKMODKIND_R0, szPath, sizeof(szPath), NULL);
114 AssertRCReturn(rc, rc);
115 RTPathStripFilename(szPath);
116 rc = CFGMR3InsertString(pCfgMine, "R0SearchPath", szPath);
117 AssertRCReturn(rc, rc);
118
119 return VINF_SUCCESS;
120}
121
122// /**
123// * @interface_method_impl{VBOXEXTPACKREG,pfnVMPowerOn}
124// */
125// static DECLCALLBACK(int) vboxSkeletonExtPack_VMPowerOn(PCVBOXEXTPACKREG pThis, IConsole *pConsole, PVM pVM);
126// /**
127// * @interface_method_impl{VBOXEXTPACKREG,pfnVMPowerOff}
128// */
129// static DECLCALLBACK(void) vboxSkeletonExtPack_VMPowerOff(PCVBOXEXTPACKREG pThis, IConsole *pConsole, PVM pVM);
130// /**
131// * @interface_method_impl{VBOXEXTPACKREG,pfnVMPowerOff}
132// */
133// static DECLCALLBACK(void) vboxSkeletonExtPack_QueryObject(PCVBOXEXTPACKREG pThis, PCRTUUID pObjectId);
134
135
136static const VBOXEXTPACKREG g_vboxBusMouseExtPackReg =
137{
138 VBOXEXTPACKREG_VERSION,
139 /* .pfnInstalled = */ NULL,
140 /* .pfnUninstall = */ NULL,
141 /* .pfnVirtualBoxReady =*/ NULL,
142 /* .pfnConsoleReady = */ NULL,
143 /* .pfnUnload = */ NULL,
144 /* .pfnVMCreated = */ NULL,
145 /* .pfnVMConfigureVMM = */ vboxBusMouseExtPack_VMConfigureVMM,
146 /* .pfnVMPowerOn = */ NULL,
147 /* .pfnVMPowerOff = */ NULL,
148 /* .pfnQueryObject = */ NULL,
149 VBOXEXTPACKREG_VERSION
150};
151
152
153/** @callback_method_impl{FNVBOXEXTPACKREGISTER} */
154extern "C" DECLEXPORT(int) VBoxExtPackRegister(PCVBOXEXTPACKHLP pHlp, PCVBOXEXTPACKREG *ppReg, PRTERRINFO pErrInfo)
155{
156 /*
157 * Check the VirtualBox version.
158 */
159 if (!VBOXEXTPACK_IS_VER_COMPAT(pHlp->u32Version, VBOXEXTPACKHLP_VERSION))
160 return RTErrInfoSetF(pErrInfo, VERR_VERSION_MISMATCH,
161 "Helper version mismatch - expected %#x got %#x",
162 VBOXEXTPACKHLP_VERSION, pHlp->u32Version);
163 if ( VBOX_FULL_VERSION_GET_MAJOR(pHlp->uVBoxFullVersion) != VBOX_VERSION_MAJOR
164 || VBOX_FULL_VERSION_GET_MINOR(pHlp->uVBoxFullVersion) != VBOX_VERSION_MINOR)
165 return RTErrInfoSetF(pErrInfo, VERR_VERSION_MISMATCH,
166 "VirtualBox version mismatch - expected %u.%u got %u.%u",
167 VBOX_VERSION_MAJOR, VBOX_VERSION_MINOR,
168 VBOX_FULL_VERSION_GET_MAJOR(pHlp->uVBoxFullVersion),
169 VBOX_FULL_VERSION_GET_MINOR(pHlp->uVBoxFullVersion));
170
171 /*
172 * We're good, save input and return the registration structure.
173 */
174 g_pHlp = pHlp;
175 *ppReg = &g_vboxBusMouseExtPackReg;
176
177 return VINF_SUCCESS;
178}
179
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