~iwarford/do-plugins/fart-plugin-fwiw

« back to all changes in this revision

Viewing changes to VirtualBox/src/RestoreStateAction.cs

  • Committer: Jason Jones
  • Date: 2008-12-24 04:45:02 UTC
  • mfrom: (335.1.9 do-plugins)
  • Revision ID: jasonedwardjones@gmail.com-20081224044502-ra56ym06cp1iqs7t
MergedĀ fromĀ trunk.

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.Linq;
 
23
using System.Diagnostics;
 
24
using System.Collections.Generic;
 
25
using System.Threading;
 
26
using Mono.Unix;
 
27
 
 
28
using Do.Universe;
 
29
 
 
30
namespace VirtualBox
 
31
{
 
32
        //restore from snapshot
 
33
        public class RestoreFromSnapshot : Act
 
34
        {
 
35
                public RestoreFromSnapshot ()
 
36
                {
 
37
                }
 
38
 
 
39
                public override string Name {
 
40
                        get { return Catalog.GetString("Discard State"); }
 
41
                }
 
42
 
 
43
                public override string Description {
 
44
                        get { return Catalog.GetString("Restore VM state to current Snapshot"); }
 
45
                }
 
46
 
 
47
                public override string Icon {
 
48
                        get { return "vm_discard_32px.png@"+GetType().Assembly.FullName; }
 
49
                }
 
50
 
 
51
                public override IEnumerable<Type> SupportedItemTypes {
 
52
                        get {
 
53
                                return new Type[] { typeof (VMItem) };
 
54
                        }
 
55
                }
 
56
 
 
57
                public override bool SupportsItem (Item item) {
 
58
                        //only allow "restoring shapshot" of a machine if it is off
 
59
                        VMItem v = item as VMItem;
 
60
                        if (((v.Status == VMState.off) || (v.Status == VMState.saved)) && (v.HasSavedStates == true))
 
61
                                return true;
 
62
                        else return false;
 
63
                }
 
64
                
 
65
                public override IEnumerable<Item> Perform (IEnumerable<Item> items, IEnumerable<Item> modifierItems)
 
66
                {
 
67
                        VMItem vm = items.First () as VMItem;
 
68
                        
 
69
                        VMThread thread = new VMThread("VBoxManage", "snapshot " + vm.Uuid + " discardcurrent -state", vm.Status, ref vm);
 
70
                        Thread t = new Thread (new ThreadStart(thread.DoAction));
 
71
                        t.IsBackground = true;
 
72
                        t.Start(); 
 
73
                        return null;
 
74
                }
 
75
        }
 
76
}