Class: StackMate::CloudStackVolume

Inherits:
CloudStackResource show all
Includes:
Intrinsic, Logging, Resolver
Defined in:
lib/stackmate/participants/cloudstack_volume.rb

Constant Summary

Constants included from Resolver

Resolver::INTEXP, Resolver::STRINGEXP, Resolver::UUIDEXP

Instance Attribute Summary

Attributes inherited from CloudStackResource

#name

Instance Method Summary collapse

Methods included from Resolver

#get_named_tag, #get_resolved, #recursive_resolve, #resolve_tags, #resolve_to_deviceid, #validate_param

Methods included from Intrinsic

#fn_base64, #fn_getatt, #fn_join, #fn_lookup, #fn_map, #fn_ref, #fn_select, #intrinsic

Methods included from Logging

configure_logger_for, #logger, logger_for

Methods inherited from CloudStackResource

#initialize, #set_metadata

Constructor Details

This class inherits a constructor from StackMate::CloudStackResource

Instance Method Details

#createObject



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/stackmate/participants/cloudstack_volume.rb', line 9

def create
  logger.debug("Creating resource #{@name}")
  workitem[@name] = {}
  name_cs = workitem['StackName'] + '-' + @name
  args={}
  begin
    args['name'] = workitem['StackName'] +'-' +get_name
    args['maxiops'] = get_maxiops if @props.has_key?('maxiops')
    args['domainid'] = get_domainid if @props.has_key?('domainid')
    args['projectid'] = get_projectid if @props.has_key?('projectid')
    args['displayvolume'] = get_displayvolume if @props.has_key?('displayvolume')
    args['snapshotid'] = get_snapshotid if @props.has_key?('snapshotid')
    args['miniops'] = get_miniops if @props.has_key?('miniops')
    args['diskofferingid'] = get_diskofferingid if @props.has_key?('diskofferingid')
    args['size'] = get_size if @props.has_key?('size')
    args['account'] =  if @props.has_key?('account')
    args['zoneid'] = get_zoneid if @props.has_key?('zoneid')

    logger.info("Creating resource #{@name} with following arguments")
    p args
    result_obj = make_async_request('createVolume',args)
    resource_obj = result_obj['Volume'.downcase]

    #doing it this way since it is easier to change later, rather than cloning whole object
    resource_obj.each_key do |k|
      val = resource_obj[k]
      if('id'.eql?(k))
        k = 'physical_id'
      end
      workitem[@name][k] = val
    end
    set_tags(@props['tags'],workitem[@name]['physical_id'],"Volume") if @props.has_key?('tags')
     if workitem['Resources'][@name].has_key?('Metadata')
    workitem['ResolvedNames'][@name] = name_cs
    workitem['IdMap'][workitem[@name]['physical_id']] = @name
  
  rescue NoMethodError => nme
    logger.error("Create request failed for resource . Cleaning up the stack")
    raise nme
  rescue Exception => e
    logger.error(e.message)
    raise e
  end
  
end

#deleteObject



55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/stackmate/participants/cloudstack_volume.rb', line 55

def delete
  logger.debug("Deleting resource #{@name}")
  begin
    physical_id = workitem[@name]['physical_id'] if !workitem[@name].nil?
    if(!physical_id.nil?)
      args = {'id' => physical_id
            }
      result_obj = make_sync_request('deleteVolume',args)
      if (!(result_obj['error'] == true))
        logger.info("Successfully deleted resource #{@name}")
      else
        workitem[@name]['delete_error'] = true
        logger.info("CloudStack error while deleting resource #{@name}")
      end
    else
      logger.info("Resource  not created in CloudStack. Skipping delete...")
    end
  rescue Exception => e
    logger.error("Unable to delete resorce #{@name}")
  end
end

#get_accountObject



162
163
164
165
166
167
168
# File 'lib/stackmate/participants/cloudstack_volume.rb', line 162

def 
   = get_resolved(@props['account'],workitem)
  if .nil? || !validate_param(,"string")
    raise "Malformed optional parameter account for resource #{@name}"
  end
  
end

#get_diskofferingidObject



146
147
148
149
150
151
152
# File 'lib/stackmate/participants/cloudstack_volume.rb', line 146

def get_diskofferingid
  resolved_diskofferingid = get_resolved(@props['diskofferingid'],workitem)
  if resolved_diskofferingid.nil? || !validate_param(resolved_diskofferingid,"uuid")
    raise "Malformed optional parameter diskofferingid for resource #{@name}"
  end
  resolved_diskofferingid
end

#get_displayvolumeObject



122
123
124
125
126
127
128
# File 'lib/stackmate/participants/cloudstack_volume.rb', line 122

def get_displayvolume
  resolved_displayvolume = get_resolved(@props['displayvolume'],workitem)
  if resolved_displayvolume.nil? || !validate_param(resolved_displayvolume,"boolean")
    raise "Malformed optional parameter displayvolume for resource #{@name}"
  end
  resolved_displayvolume
end

#get_domainidObject



106
107
108
109
110
111
112
# File 'lib/stackmate/participants/cloudstack_volume.rb', line 106

def get_domainid
  resolved_domainid = get_resolved(@props['domainid'],workitem)
  if resolved_domainid.nil? || !validate_param(resolved_domainid,"uuid")
    raise "Malformed optional parameter domainid for resource #{@name}"
  end
  resolved_domainid
end

#get_maxiopsObject



98
99
100
101
102
103
104
# File 'lib/stackmate/participants/cloudstack_volume.rb', line 98

def get_maxiops
  resolved_maxiops = get_resolved(@props['maxiops'],workitem)
  if resolved_maxiops.nil? || !validate_param(resolved_maxiops,"long")
    raise "Malformed optional parameter maxiops for resource #{@name}"
  end
  resolved_maxiops
end

#get_miniopsObject



138
139
140
141
142
143
144
# File 'lib/stackmate/participants/cloudstack_volume.rb', line 138

def get_miniops
  resolved_miniops = get_resolved(@props['miniops'],workitem)
  if resolved_miniops.nil? || !validate_param(resolved_miniops,"long")
    raise "Malformed optional parameter miniops for resource #{@name}"
  end
  resolved_miniops
end

#get_nameObject



90
91
92
93
94
95
96
# File 'lib/stackmate/participants/cloudstack_volume.rb', line 90

def get_name
  resolved_name = get_resolved(@props["name"],workitem)
  if resolved_name.nil? || !validate_param(resolved_name,"string")
    raise "Missing mandatory parameter name for resource #{@name}"
  end
  resolved_name
end

#get_projectidObject



114
115
116
117
118
119
120
# File 'lib/stackmate/participants/cloudstack_volume.rb', line 114

def get_projectid
  resolved_projectid = get_resolved(@props['projectid'],workitem)
  if resolved_projectid.nil? || !validate_param(resolved_projectid,"uuid")
    raise "Malformed optional parameter projectid for resource #{@name}"
  end
  resolved_projectid
end

#get_sizeObject



154
155
156
157
158
159
160
# File 'lib/stackmate/participants/cloudstack_volume.rb', line 154

def get_size
  resolved_size = get_resolved(@props['size'],workitem)
  if resolved_size.nil? || !validate_param(resolved_size,"long")
    raise "Malformed optional parameter size for resource #{@name}"
  end
  resolved_size
end

#get_snapshotidObject



130
131
132
133
134
135
136
# File 'lib/stackmate/participants/cloudstack_volume.rb', line 130

def get_snapshotid
  resolved_snapshotid = get_resolved(@props['snapshotid'],workitem)
  if resolved_snapshotid.nil? || !validate_param(resolved_snapshotid,"uuid")
    raise "Malformed optional parameter snapshotid for resource #{@name}"
  end
  resolved_snapshotid
end

#get_zoneidObject



170
171
172
173
174
175
176
# File 'lib/stackmate/participants/cloudstack_volume.rb', line 170

def get_zoneid
  resolved_zoneid = get_resolved(@props['zoneid'],workitem)
  if resolved_zoneid.nil? || !validate_param(resolved_zoneid,"uuid")
    raise "Malformed optional parameter zoneid for resource #{@name}"
  end
  resolved_zoneid
end

#on_workitemObject



77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/stackmate/participants/cloudstack_volume.rb', line 77

def on_workitem
  @name = workitem.participant_name
  @props = workitem['Resources'][@name]['Properties']
  @props.downcase_key
  @resolved_names = workitem['ResolvedNames']
  if workitem['params']['operation'] == 'create'
    create
  else
    delete
  end
  reply
end