tstOVF.cpp revision 2866706d05993ad72927719e9b68367c3fa12e7f
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync/* $Id$ */
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync/** @file
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync *
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync * tstOVF - testcases for OVF import and export
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync */
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync/*
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync * Copyright (C) 2010 Oracle Corporation
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync *
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync * available from http://www.virtualbox.org. This file is free software;
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync * you can redistribute it and/or modify it under the terms of the GNU
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync * General Public License (GPL) as published by the Free Software
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync */
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync#include <VBox/com/VirtualBox.h>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync#include <VBox/com/com.h>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync#include <VBox/com/array.h>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync#include <VBox/com/string.h>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync#include <VBox/com/ErrorInfo.h>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync#include <VBox/com/errorprint.h>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync#include <VBox/com/EventQueue.h>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync#include <iprt/initterm.h>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync#include <iprt/stream.h>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync#include <iprt/file.h>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync#include <iprt/path.h>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync#include <iprt/param.h>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync#include <list>
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsyncusing namespace com;
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync// main
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync///////////////////////////////////////////////////////////////////////////////
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync
4fd606d1f5abe38e1f42c38de1d2e895166bd0f4vboxsync/**
* Quick hack exception structure.
*
*/
struct MyError
{
MyError(HRESULT rc,
const char *pcsz,
IProgress *pProgress = NULL)
: m_rc(rc)
{
m_str = pcsz;
if (pProgress)
{
com::ProgressErrorInfo info(pProgress);
com::GluePrintErrorInfo(info);
}
else
{
com::ErrorInfo info;
if (!info.isFullAvailable() && !info.isBasicAvailable())
{
com::GluePrintRCMessage(rc);
m_str.append("Most likely, the VirtualBox COM server is not running or failed to start.");
}
else
com::GluePrintErrorInfo(info);
}
}
Utf8Str m_str;
HRESULT m_rc;
};
/**
* Imports the given OVF file, with all bells and whistles.
* Throws MyError on errors.
* @param pVirtualBox VirtualBox instance.
* @param pcszOVF File to import.
*/
void importOVF(ComPtr<IVirtualBox> &pVirtualBox,
const char *pcszOVF0)
{
char szAbsOVF[RTPATH_MAX];
RTPathAbs(pcszOVF0, szAbsOVF, sizeof(szAbsOVF));
RTPrintf("Reading appliance \"%s\"...\n", szAbsOVF);
ComPtr<IAppliance> pAppl;
HRESULT rc = pVirtualBox->CreateAppliance(pAppl.asOutParam());
if (FAILED(rc))
throw MyError(rc, "failed to create appliace");
ComPtr<IProgress> pProgress;
rc = pAppl->Read(Bstr(szAbsOVF), pProgress.asOutParam());
if (FAILED(rc))
throw MyError(rc, "Appliance::Read() failed");
rc = pProgress->WaitForCompletion(-1);
if (FAILED(rc))
throw MyError(rc, "Progress::WaitForCompletion() failed");
LONG rc2;
pProgress->COMGETTER(ResultCode)(&rc2);
if (FAILED(rc2))
throw MyError(rc2, "Appliance::Read() failed", pProgress);
RTPrintf("Interpreting appliance \"%s\"...\n", szAbsOVF);
rc = pAppl->Interpret();
if (FAILED(rc))
throw MyError(rc, "Appliance::Interpret() failed");
com::SafeIfaceArray<IVirtualSystemDescription> aDescriptions;
rc = pAppl->COMGETTER(VirtualSystemDescriptions)(ComSafeArrayAsOutParam(aDescriptions));
for (uint32_t u = 0;
u < aDescriptions.size();
++u)
{
ComPtr<IVirtualSystemDescription> pVSys = aDescriptions[u];
com::SafeArray<VirtualSystemDescriptionType_T> aTypes;
com::SafeArray<BSTR> aRefs;
com::SafeArray<BSTR> aOvfValues;
com::SafeArray<BSTR> aVboxValues;
com::SafeArray<BSTR> aExtraConfigValues;
rc = pVSys->GetDescription(ComSafeArrayAsOutParam(aTypes),
ComSafeArrayAsOutParam(aRefs),
ComSafeArrayAsOutParam(aOvfValues),
ComSafeArrayAsOutParam(aVboxValues),
ComSafeArrayAsOutParam(aExtraConfigValues));
for (uint32_t u2 = 0;
u2 < aTypes.size();
++u2)
{
const char *pcszType;
VirtualSystemDescriptionType_T t = aTypes[u2];
switch (t)
{
case VirtualSystemDescriptionType_OS:
pcszType = "ostype";
break;
case VirtualSystemDescriptionType_Name:
pcszType = "name";
break;
case VirtualSystemDescriptionType_Product:
pcszType = "product";
break;
case VirtualSystemDescriptionType_ProductUrl:
pcszType = "producturl";
break;
case VirtualSystemDescriptionType_Vendor:
pcszType = "vendor";
break;
case VirtualSystemDescriptionType_VendorUrl:
pcszType = "vendorurl";
break;
case VirtualSystemDescriptionType_Version:
pcszType = "version";
break;
case VirtualSystemDescriptionType_Description:
pcszType = "description";
break;
case VirtualSystemDescriptionType_License:
pcszType = "license";
break;
case VirtualSystemDescriptionType_CPU:
pcszType = "cpu";
break;
case VirtualSystemDescriptionType_Memory:
pcszType = "memory";
break;
case VirtualSystemDescriptionType_HardDiskControllerIDE:
pcszType = "ide";
break;
case VirtualSystemDescriptionType_HardDiskControllerSATA:
pcszType = "sata";
break;
case VirtualSystemDescriptionType_HardDiskControllerSAS:
pcszType = "sas";
break;
case VirtualSystemDescriptionType_HardDiskControllerSCSI:
pcszType = "scsi";
break;
case VirtualSystemDescriptionType_HardDiskImage:
pcszType = "hd";
break;
case VirtualSystemDescriptionType_CDROM:
pcszType = "cdrom";
break;
case VirtualSystemDescriptionType_Floppy:
pcszType = "floppy";
break;
case VirtualSystemDescriptionType_NetworkAdapter:
pcszType = "net";
break;
case VirtualSystemDescriptionType_USBController:
pcszType = "usb";
break;
case VirtualSystemDescriptionType_SoundCard:
pcszType = "sound";
break;
default:
throw MyError(E_UNEXPECTED, "Invalid VirtualSystemDescriptionType");
break;
}
RTPrintf(" vsys %2u item %2u: type %2d (%s), ovf: \"%ls\", vbox: \"%ls\", extra: \"%ls\"\n",
u, u2, t, pcszType,
aOvfValues[u2],
aVboxValues[u2],
aExtraConfigValues[u2] );
}
}
RTPrintf("Importing machines...\n");
rc = pAppl->ImportMachines(pProgress.asOutParam());
if (FAILED(rc))
throw MyError(rc, "Appliance::ImportMachines() failed");
rc = pProgress->WaitForCompletion(-1);
if (FAILED(rc))
throw MyError(rc, "Progress::WaitForCompletion() failed");
pProgress->COMGETTER(ResultCode)(&rc2);
if (FAILED(rc2))
throw MyError(rc2, "Appliance::ImportMachines() failed", pProgress);
}
/**
* Copies ovf-testcases/ovf-dummy.vmdk to the given target and appends that
* target as a string to the given list so that the caller can delete it
* again later.
* @param llFiles2Delete List of strings to append the target file path to.
* @param pcszDest Target for dummy VMDK.
*/
void copyDummyDiskImage(std::list<Utf8Str> &llFiles2Delete, const char *pcszDest)
{
int vrc = RTFileCopy("ovf-testcases/ovf-dummy.vmdk", pcszDest);
if (RT_FAILURE(vrc))
throw MyError(E_UNEXPECTED, "Cannot copy ovf-dummy.vmdk");
llFiles2Delete.push_back(pcszDest);
}
/**
*
* @param argc
* @param argv[]
* @return
*/
int main(int argc, char *argv[])
{
RTR3Init();
HRESULT rc = S_OK;
std::list<Utf8Str> llFiles2Delete;
try
{
RTPrintf("Initializing COM...\n");
rc = com::Initialize();
if (FAILED(rc))
throw MyError(rc, "failed to initialize COM!");
ComPtr<IVirtualBox> pVirtualBox;
ComPtr<ISession> pSession;
RTPrintf("Creating VirtualBox object...\n");
rc = pVirtualBox.createLocalObject(CLSID_VirtualBox);
if (FAILED(rc))
throw MyError(rc, "failed to create the VirtualBox object!");
rc = pSession.createInprocObject(CLSID_Session);
if (FAILED(rc))
throw MyError(rc, "failed to create a session object!");
// create the event queue
// (here it is necessary only to process remaining XPCOM/IPC events after the session is closed)
EventQueue eventQ;
// testcase 1: import ovf-joomla-0.9/joomla-1.1.4-ovf.ovf
copyDummyDiskImage(llFiles2Delete, "ovf-testcases/ovf-joomla-0.9/joomla-1.1.4-ovf-0.vmdk");
copyDummyDiskImage(llFiles2Delete, "ovf-testcases/ovf-joomla-0.9/joomla-1.1.4-ovf-1.vmdk");
importOVF(pVirtualBox, "ovf-testcases/ovf-joomla-0.9/joomla-1.1.4-ovf.ovf");
RTPrintf ("tstOVF all done, no errors!.\n");
// todo: cleanup created machines, created disk images
}
catch (MyError &e)
{
rc = e.m_rc;
RTPrintf("%s\n", e.m_str.c_str());
}
// clean up
for (std::list<Utf8Str>::const_iterator it = llFiles2Delete.begin();
it != llFiles2Delete.end();
++it)
{
const Utf8Str &strFile = *it;
RTFileDelete(strFile.c_str());
}
RTPrintf("Shutting down COM...\n");
com::Shutdown();
return rc;
}