~cszikszoy/do-plugins/vbox

« back to all changes in this revision

Viewing changes to VirtualBox/src/RestoreStateAction.cs

  • Committer: chris at szikszoy
  • Date: 2008-10-20 22:55:43 UTC
  • Revision ID: chris@szikszoy.com-20081020225543-owhlraynxgxp4v6m
Added VirtualBox plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  RestoreStateAction.cs
 
2
//
 
3
//  GNOME Do is the legal property of its developers.
 
4
//  Please refer to the COPYRIGHT file distributed with this
 
5
//  source distribution.
 
6
//
 
7
//  This program is free software: you can redistribute it and/or modify
 
8
//  it under the terms of the GNU General Public License as published by
 
9
//  the Free Software Foundation, either version 3 of the License, or
 
10
//  (at your option) any later version.
 
11
//
 
12
//  This program is distributed in the hope that it will be useful,
 
13
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
//  GNU General Public License for more details.
 
16
//
 
17
//  You should have received a copy of the GNU General Public License
 
18
//  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
//
 
20
 
 
21
using System;
 
22
using System.Diagnostics;
 
23
using System.Collections.Generic;
 
24
using System.Threading;
 
25
using Mono.Unix;
 
26
 
 
27
using Do.Universe;
 
28
 
 
29
namespace VirtualBox
 
30
{
 
31
        //restore from snapshot
 
32
        public class RestoreFromSnapshot : AbstractAction
 
33
        {
 
34
                public RestoreFromSnapshot ()
 
35
                {
 
36
                }
 
37
 
 
38
                public override string Name {
 
39
                        get { return Catalog.GetString("Discard State"); }
 
40
                }
 
41
 
 
42
                public override string Description {
 
43
                        get { return Catalog.GetString("Restore VM state to current Snapshot"); }
 
44
                }
 
45
 
 
46
                public override string Icon {
 
47
                        get { return "vm_discard_32px.png@"+GetType().Assembly.FullName; }
 
48
                }
 
49
 
 
50
                public override Type[] SupportedItemTypes {
 
51
                        get {
 
52
                                return new Type[] { typeof (VMItem) };
 
53
                        }
 
54
                }
 
55
 
 
56
                public override bool SupportsItem (IItem item) {
 
57
                        //only allow "restoring shapshot" of a machine if it is off
 
58
                        VMItem v = item as VMItem;
 
59
                        if (((v.Status == VMState.off) || (v.Status == VMState.saved)) && (v.HasSavedStates == true))
 
60
                                return true;
 
61
                        else return false;
 
62
                }
 
63
                
 
64
                public override IItem[] Perform (IItem[] items, IItem[] modifierItems)
 
65
                {
 
66
                        VMItem vm = (items[0] as VMItem);
 
67
                        
 
68
                        VMThread thread = new VMThread("VBoxManage", "snapshot " + vm.Uuid + " discardcurrent -state", vm.Status, ref vm);
 
69
                        Thread t = new Thread (new ThreadStart(thread.DoAction));
 
70
                        t.IsBackground = true;
 
71
                        t.Start(); 
 
72
                        return null;
 
73
                }
 
74
        }
 
75
}