/* $Id: SnapshotImpl.h 42887 2012-08-20 17:12:19Z vboxsync $ */ /** @file * * VirtualBox COM class implementation */ /* * Copyright (C) 2006-2012 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 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 STDMETHOD(GetChildrenCount)(ULONG* count); // 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& getParent() const; const ComObjPtr getFirstChild() const; const Utf8Str& getStateFilePath() const; ULONG getChildrenCount(); ULONG getAllChildrenCount(); ULONG getAllChildrenCountImpl(); const ComObjPtr& getSnapshotMachine() const; Guid getId() const; const Utf8Str& getName() const; RTTIMESPEC getTimeStamp() const; ComObjPtr findChildOrSelf(IN_GUID aId); ComObjPtr findChildOrSelf(const Utf8Str &aName); void updateSavedStatePaths(const Utf8Str &strOldPath, const Utf8Str &strNewPath); void updateSavedStatePathsImpl(const Utf8Str &strOldPath, const Utf8Str &strNewPath); bool sharesSavedStateFile(const Utf8Str &strPath, Snapshot *pSnapshotToIgnore); 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 &llFilenames); private: struct Data; // opaque, defined in SnapshotImpl.cpp Data *m; }; #endif // ____H_SNAPSHOTIMPL /* vi: set tabstop=4 shiftwidth=4 expandtab: */