VirtualBox

source: vbox/trunk/src/VBox/Main/cbinding/tstLinuxC.c@ 16454

Last change on this file since 16454 was 16406, checked in by vboxsync, 16 years ago

cbindings to OSE

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 9.3 KB
Line 
1/** @file tstLinuxC.c
2 *
3 * Demonstrator program to illustrate use of C bindings of Main API.
4 * Linux only at the moment due to shared library magic in the Makefile.
5 *
6 * $Id: tstLinuxC.c 16406 2009-01-30 09:42:31Z vboxsync $
7 */
8
9#include <stdio.h>
10#include <string.h>
11#include <stdlib.h>
12#include <iconv.h>
13#include "tstLinuxC.h"
14
15static char *nsIDToString(nsID *guid);
16static void listVMs(IVirtualBox *virtualBox, ISession *session);
17static void startVM(IVirtualBox *virtualBox, ISession *session, nsID *id);
18
19/**
20 * Helper function to convert an nsID into a human readable string.
21 *
22 * @returns result string, allocated. Has to be freed using free()
23 * @param guid Pointer to nsID that will be converted.
24 */
25static char *nsIDToString(nsID *guid)
26{
27 /* Avoid magic number 39. Yes, sizeof "literal" includes the NUL byte. */
28 char *res = malloc(sizeof "{12345678-1234-1234-1234-123456789012}");
29
30 if (res != NULL)
31 {
32 sprintf(res, "{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}",
33 (unsigned)guid->m0, (unsigned)guid->m1, (unsigned)guid->m2,
34 (unsigned)guid->m3[0], (unsigned)guid->m3[1],
35 (unsigned)guid->m3[2], (unsigned)guid->m3[3],
36 (unsigned)guid->m3[4], (unsigned)guid->m3[5],
37 (unsigned)guid->m3[6], (unsigned)guid->m3[7]);
38 }
39 return res;
40}
41
42/**
43 * List the registered VMs.
44 *
45 * @param virtualBox ptr to IVirtualBox object
46 * @param session ptr to ISession object
47 */
48static void listVMs(IVirtualBox *virtualBox, ISession *session)
49{
50 nsresult rc;
51 IMachine **machines = NULL;
52 PRUint32 machineCnt = 0;
53 PRUint32 i;
54 unsigned start_id;
55
56 /*
57 * Get the list of all registered VMs.
58 */
59
60 rc = virtualBox->vtbl->GetMachines2(virtualBox, &machineCnt, &machines);
61 if (NS_FAILED(rc))
62 {
63 fprintf (stderr, "could not get list of machines, rc=%08x\n",
64 (unsigned)rc);
65 return;
66 }
67
68 printf("VM List:\n\n");
69
70 /*
71 * Iterate through the collection.
72 */
73
74 for (i = 0; i < machineCnt; ++i)
75 {
76 IMachine *machine = machines[i];
77 PRBool isAccessible = PR_FALSE;
78
79 printf("\tMachine #%u\n", (unsigned)i);
80
81 if (!machine) {
82 printf("\t(skipped, NULL)\n");
83 continue;
84 }
85
86 machine->vtbl->GetAccessible (machine, &isAccessible);
87
88 if (isAccessible)
89 {
90 PRUnichar *machineName;
91
92 machine->vtbl->GetName(machine, &machineName);
93 printf("\tName: %s\n", VBoxConvertPRUnichartoAscii(machineName));
94
95 VBoxComUnallocStr(machineName);
96 }
97 else
98 {
99 printf("\tName: <inaccessible>\n");
100 }
101
102
103 {
104 nsID *iid = nsnull;
105 char *uuidString;
106
107 machine->vtbl->GetId(machine, &iid);
108 uuidString = nsIDToString(iid);
109 printf("\tUUID: %s\n", uuidString);
110
111 free(uuidString);
112 VBoxComUnallocIID(iid);
113 }
114
115 if (isAccessible)
116 {
117 {
118 PRUnichar *configFile;
119 char *configFile1 = calloc((size_t)64, (size_t)1);
120
121 machine->vtbl->GetSettingsFilePath(machine, &configFile);
122 VBoxUtf16ToUtf8(configFile, &configFile1);
123 printf("\tConfig file: %s\n", configFile1);
124
125 free(configFile1);
126 VBoxComUnallocStr(configFile);
127 }
128
129 {
130 PRUint32 memorySize;
131
132 machine->vtbl->GetMemorySize(machine, &memorySize);
133 printf("\tMemory size: %uMB\n", memorySize);
134 }
135
136 {
137 PRUnichar *typeId;
138 PRUnichar *osName;
139 IGuestOSType *osType = nsnull;
140
141 machine->vtbl->GetOSTypeId(machine, &typeId);
142 virtualBox->vtbl->GetGuestOSType(virtualBox, typeId, &osType);
143 osType->vtbl->GetDescription(osType, &osName);
144 printf("\tGuest OS: %s\n\n", VBoxConvertPRUnichartoAscii(osName));
145
146 osType->vtbl->nsisupports.Release((void *)osType);
147 VBoxComUnallocStr(osName);
148 VBoxComUnallocStr(typeId);
149 }
150 }
151 }
152
153 /*
154 * Let the user chose a machine to start.
155 */
156
157 printf ("Type Machine# to start (0 - %u) or 'quit' to do nothing: ",
158 (unsigned)(machineCnt - 1));
159 fflush (stdout);
160
161 if (scanf ("%u", &start_id) == 1 && start_id < machineCnt) {
162 IMachine *machine = machines[start_id];
163
164 if (machine) {
165 nsID *iid = nsnull;
166
167 machine->vtbl->GetId(machine, &iid);
168 startVM(virtualBox, session, iid);
169
170 VBoxComUnallocIID(iid);
171 }
172 }
173
174 /*
175 * Don't forget to release the objects in the array.
176 */
177
178 for (i = 0; i < machineCnt; ++i) {
179 IMachine *machine = machines[i];
180
181 if (machine) {
182 machine->vtbl->nsisupports.Release((void *)machine);
183 }
184 }
185}
186
187/**
188 * Start a VM.
189 *
190 * @param virtualBox ptr to IVirtualBox object
191 * @param session ptr to ISession object
192 * @param id identifies the machine to start
193 */
194static void startVM(IVirtualBox *virtualBox, ISession *session, nsID *id)
195{
196 nsresult rc;
197 IMachine *machine = NULL;
198 IProgress *progress = NULL;
199 PRUnichar *env = NULL;
200 PRUnichar *sessionType;
201
202 rc = virtualBox->vtbl->GetMachine(virtualBox, id, &machine);
203
204 if (NS_FAILED(rc) || !machine)
205 {
206 fprintf (stderr, "Error: Couldn't get the machine handle.\n");
207 return;
208 }
209
210 VBoxStrToUtf16("gui", &sessionType);
211
212 rc = virtualBox->vtbl->OpenRemoteSession(
213 virtualBox,
214 session,
215 id,
216 sessionType,
217 env,
218 &progress
219 );
220
221 VBoxUtf16Free(sessionType);
222
223 if (NS_FAILED (rc))
224 {
225 fprintf (stderr, "Error: OpenRemoteSession failed.\n");
226 }
227 else
228 {
229 PRBool completed;
230 nsresult resultCode;
231
232 printf("Waiting for the remote session to open...\n");
233 progress->vtbl->WaitForCompletion(progress, -1);
234
235 rc = progress->vtbl->GetCompleted(progress, &completed);
236 if (NS_FAILED (rc))
237 {
238 fprintf (stderr, "Error: GetCompleted status failed.\n");
239 }
240
241 progress->vtbl->GetResultCode(progress, &resultCode);
242 if (NS_FAILED(resultCode))
243 {
244 IVirtualBoxErrorInfo *errorInfo;
245 PRUnichar *text;
246
247 progress->vtbl->GetErrorInfo(progress, &errorInfo);
248 errorInfo->vtbl->GetText(errorInfo, &text);
249 printf ("[!] Text = %s\n", VBoxConvertPRUnichartoAscii (text));
250 }
251 else
252 {
253 fprintf (stderr, "Remote session has been successfully opened.\n");
254 }
255 progress->vtbl->nsisupports.Release((void *)progress);
256 }
257
258 /* It's important to always release resources. */
259 machine->vtbl->nsisupports.Release((void *)machine);
260}
261
262/* Main - Start the ball rolling. */
263
264int main(int argc, char **argv)
265{
266 IVirtualBox *vbox = NULL;
267 ISession *session = NULL;
268 PRUint32 revision = 0;
269 PRUnichar *version = NULL;
270 PRUnichar *homefolder = NULL;
271 nsresult rc; /* Result code of various function (method) calls. */
272
273 printf("Starting Main\n");
274 /*
275 * VBoxComInitialize does all the necessary startup action and
276 * provides us with pointers to vbox and session handles.
277 * It should be matched by a call to VBoxComUninitialize(vbox)
278 * when done.
279 */
280 VBoxComInitialize(&vbox, &session);
281
282 if (vbox == NULL) {
283 fprintf (stderr, "%s: FATAL: could not get vbox handle\n", argv[0]);
284 exit (EXIT_FAILURE);
285 }
286 if (session == NULL) {
287 fprintf (stderr, "%s: FATAL: could not get session handle\n", argv[0]);
288 exit (EXIT_FAILURE);
289 }
290
291 /*
292 * Now ask for revision, version and home folder information of
293 * this vbox. Were not using fancy macros here so it
294 * remains easy to see how we access C++'s vtable.
295 */
296 printf("----------------------------------------------------\n");
297
298 /* 1. Revision */
299
300 rc = vbox->vtbl->GetRevision(vbox, &revision);
301 if (NS_SUCCEEDED(rc))
302 {
303 printf("\tRevision: %u\n", revision);
304 }
305 else
306 {
307 fprintf(stderr, "%s: GetRevision() returned %08x\n",
308 argv[0], (unsigned)rc);
309 }
310
311 /* 2. Version */
312
313 rc = vbox->vtbl->GetVersion(vbox, &version);
314 if (NS_SUCCEEDED(rc))
315 {
316 printf("\tVersion: %s\n", VBoxConvertPRUnichartoAscii(version));
317 }
318 else
319 {
320 fprintf(stderr, "%s: GetVersion() returned %08x\n",
321 argv[0], (unsigned)rc);
322 }
323 VBoxComUnallocStr(version);
324
325 /* 3. Home Folder */
326
327 rc = vbox->vtbl->GetHomeFolder(vbox, &homefolder);
328 if (NS_SUCCEEDED(rc))
329 {
330 printf("\tHomeFolder: %s\n", VBoxConvertPRUnichartoAscii(homefolder));
331 }
332 else
333 {
334 fprintf(stderr, "%s: GetHomeFolder() returned %08x\n",
335 argv[0], (unsigned)rc);
336 }
337 VBoxComUnallocStr(homefolder);
338
339 listVMs(vbox, session);
340 session->vtbl->Close(session);
341
342 printf("----------------------------------------------------\n");
343
344 /*
345 * Do as mom told us: always clean up after yourself.
346 */
347 VBoxComUninitialize();
348 printf("Finished Main\n");
349
350 return 0;
351}
352/* vim: set ts=4 sw=4 et: */
Note: See TracBrowser for help on using the repository browser.

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