~soren/nova/iptables-security-groups

« back to all changes in this revision

Viewing changes to vendor/boto/boto/ec2/snapshot.py

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (c) 2006-2009 Mitch Garnaat http://garnaat.org/
 
2
#
 
3
# Permission is hereby granted, free of charge, to any person obtaining a
 
4
# copy of this software and associated documentation files (the
 
5
# "Software"), to deal in the Software without restriction, including
 
6
# without limitation the rights to use, copy, modify, merge, publish, dis-
 
7
# tribute, sublicense, and/or sell copies of the Software, and to permit
 
8
# persons to whom the Software is furnished to do so, subject to the fol-
 
9
# lowing conditions:
 
10
#
 
11
# The above copyright notice and this permission notice shall be included
 
12
# in all copies or substantial portions of the Software.
 
13
#
 
14
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 
15
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
 
16
# ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
 
17
# SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
 
18
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
19
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 
20
# IN THE SOFTWARE.
 
21
 
 
22
"""
 
23
Represents an EC2 Elastic IP Snapshot
 
24
"""
 
25
from boto.ec2.ec2object import EC2Object
 
26
 
 
27
class Snapshot(EC2Object):
 
28
    
 
29
    def __init__(self, connection=None):
 
30
        EC2Object.__init__(self, connection)
 
31
        self.id = None
 
32
        self.volume_id = None
 
33
        self.status = None
 
34
        self.progress = None
 
35
        self.start_time = None
 
36
        self.owner_id = None
 
37
        self.volume_size = None
 
38
        self.description = None
 
39
 
 
40
    def __repr__(self):
 
41
        return 'Snapshot:%s' % self.id
 
42
 
 
43
    def endElement(self, name, value, connection):
 
44
        if name == 'snapshotId':
 
45
            self.id = value
 
46
        elif name == 'volumeId':
 
47
            self.volume_id = value
 
48
        elif name == 'status':
 
49
            self.status = value
 
50
        elif name == 'startTime':
 
51
            self.start_time = value
 
52
        elif name == 'ownerId':
 
53
            self.owner_id = value
 
54
        elif name == 'volumeSize':
 
55
            try:
 
56
                self.volume_size = int(value)
 
57
            except:
 
58
                self.volume_size = value
 
59
        elif name == 'description':
 
60
            self.description = value
 
61
        else:
 
62
            setattr(self, name, value)
 
63
 
 
64
    def _update(self, updated):
 
65
        self.progress = updated.progress
 
66
        self.status = updated.status
 
67
 
 
68
    def update(self):
 
69
        rs = self.connection.get_all_snapshots([self.id])
 
70
        if len(rs) > 0:
 
71
            self._update(rs[0])
 
72
        return self.progress
 
73
    
 
74
    def delete(self):
 
75
        return self.connection.delete_snapshot(self.id)
 
76
 
 
77
    def get_permissions(self):
 
78
        attrs = self.connection.get_snapshot_attribute(self.id,
 
79
                                                       attribute='createVolumePermission')
 
80
        return attrs.attrs
 
81
 
 
82
    def share(self, user_ids=None, groups=None):
 
83
        return self.connection.modify_snapshot_attribute(self.id,
 
84
                                                         'createVolumePermission',
 
85
                                                         'add',
 
86
                                                         user_ids,
 
87
                                                         groups)
 
88
 
 
89
    def unshare(self, user_ids=None, groups=None):
 
90
        return self.connection.modify_snapshot_attribute(self.id,
 
91
                                                         'createVolumePermission',
 
92
                                                         'remove',
 
93
                                                         user_ids,
 
94
                                                         groups)
 
95
 
 
96
    def reset_permissions(self):
 
97
        return self.connection.reset_snapshot_attribute(self.id, 'createVolumePermission')
 
98
 
 
99
class SnapshotAttribute:
 
100
 
 
101
    def __init__(self, parent=None):
 
102
        self.snapshot_id = None
 
103
        self.attrs = {}
 
104
 
 
105
    def startElement(self, name, attrs, connection):
 
106
        return None
 
107
 
 
108
    def endElement(self, name, value, connection):
 
109
        if name == 'createVolumePermission':
 
110
            self.name = 'create_volume_permission'
 
111
        elif name == 'group':
 
112
            if self.attrs.has_key('groups'):
 
113
                self.attrs['groups'].append(value)
 
114
            else:
 
115
                self.attrs['groups'] = [value]
 
116
        elif name == 'userId':
 
117
            if self.attrs.has_key('user_ids'):
 
118
                self.attrs['user_ids'].append(value)
 
119
            else:
 
120
                self.attrs['user_ids'] = [value]
 
121
        elif name == 'snapshotId':
 
122
            self.snapshot_id = value
 
123
        else:
 
124
            setattr(self, name, value)
 
125
 
 
126
 
 
127