SnapshotImpl.h revision c7a378ed2fbad681c0b674351d698ef20a368935
/* $Id$ */
/** @file
*
* VirtualBox COM class implementation
*/
/*
* Copyright (C) 2006-2010 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#ifndef ____H_SNAPSHOTIMPL
#define ____H_SNAPSHOTIMPL
#include "VirtualBoxBase.h"
#include <iprt/time.h>
class SnapshotMachine;
namespace settings
{
struct Snapshot;
}
class ATL_NO_VTABLE Snapshot :
public VirtualBoxBase,
VBOX_SCRIPTABLE_IMPL(ISnapshot)
{
public:
VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(Snapshot, ISnapshot)
DECLARE_NOT_AGGREGATABLE(Snapshot)
DECLARE_PROTECT_FINAL_CONSTRUCT()
BEGIN_COM_MAP(Snapshot)
VBOX_DEFAULT_INTERFACE_ENTRIES (ISnapshot)
END_COM_MAP()
Snapshot()
: m(NULL)
{ };
~Snapshot()
{ };
HRESULT FinalConstruct();
void FinalRelease();
// public initializer/uninitializer only for internal purposes
HRESULT init(VirtualBox *aVirtualBox,
const Guid &aId,
const Utf8Str &aName,
const Utf8Str &aDescription,
const RTTIMESPEC &aTimeStamp,
SnapshotMachine *aMachine,
Snapshot *aParent);
void uninit();
void beginSnapshotDelete();
void deparent();
// ISnapshot properties
STDMETHOD(COMGETTER(Id)) (BSTR *aId);
STDMETHOD(COMGETTER(Name)) (BSTR *aName);
STDMETHOD(COMSETTER(Name)) (IN_BSTR aName);
STDMETHOD(COMGETTER(Description)) (BSTR *aDescription);
STDMETHOD(COMSETTER(Description)) (IN_BSTR aDescription);
STDMETHOD(COMGETTER(TimeStamp)) (LONG64 *aTimeStamp);
STDMETHOD(COMGETTER(Online)) (BOOL *aOnline);
STDMETHOD(COMGETTER(Machine)) (IMachine **aMachine);
STDMETHOD(COMGETTER(Parent)) (ISnapshot **aParent);
STDMETHOD(COMGETTER(Children)) (ComSafeArrayOut (ISnapshot *, aChildren));
// ISnapshot methods
// public methods only for internal purposes
/**
* Override of the default locking class to be used for validating lock
* order with the standard member lock handle.
*/
virtual VBoxLockingClass getLockingClass() const
{
return LOCKCLASS_SNAPSHOTOBJECT;
}
const ComObjPtr<Snapshot>& getParent() const;
const ComObjPtr<Snapshot> getFirstChild() const;
const Utf8Str& stateFilePath() const;
HRESULT deleteStateFile();
ULONG getChildrenCount();
ULONG getAllChildrenCount();
ULONG getAllChildrenCountImpl();
const ComObjPtr<SnapshotMachine>& getSnapshotMachine() const;
Guid getId() const;
const Utf8Str& getName() const;
RTTIMESPEC getTimeStamp() const;
ComObjPtr<Snapshot> findChildOrSelf(IN_GUID aId);
ComObjPtr<Snapshot> findChildOrSelf(const Utf8Str &aName);
void updateSavedStatePaths(const Utf8Str &strOldPath,
const Utf8Str &strNewPath);
void updateSavedStatePathsImpl(const Utf8Str &strOldPath,
const Utf8Str &strNewPath);
HRESULT saveSnapshot(settings::Snapshot &data, bool aAttrsOnly);
HRESULT saveSnapshotImpl(settings::Snapshot &data, bool aAttrsOnly);
HRESULT uninitRecursively(AutoWriteLock &writeLock,
CleanupMode_T cleanupMode,
MediaList &llMedia,
std::list<Utf8Str> &llFilenames);
private:
struct Data; // opaque, defined in SnapshotImpl.cpp
Data *m;
};
#endif // ____H_SNAPSHOTIMPL
/* vi: set tabstop=4 shiftwidth=4 expandtab: */