Class: Fog::Service

Inherits:
Object
  • Object
show all
Defined in:
lib/fog/core/service.rb

Defined Under Namespace

Modules: Collections Classes: Error, NotFound

Class Method Summary collapse

Class Method Details

.collection(new_collection) ⇒ Object



108
109
110
# File 'lib/fog/core/service.rb', line 108

def collection(new_collection)
  collections << new_collection
end

.collectionsObject



112
113
114
# File 'lib/fog/core/service.rb', line 112

def collections
  @collections ||= []
end

.inherited(child) ⇒ Object



41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/fog/core/service.rb', line 41

def inherited(child)
  child.class_eval <<-EOS, __FILE__, __LINE__
    module Collections
      include Fog::Service::Collections

      def service
        #{child}
      end
    end

    def self.service
      #{child}
    end
  EOS
end

.inject_parameter_specsObject

this is to accomodate Real implementations of Service subclasses NOTE: it might be good to enforce parameter specs to Mock classes as well.



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/fog/core/service.rb', line 23

def inject_parameter_specs
  lambda do |spec|
    implementation = "Real"
    self.const_set(implementation, Class.new) unless self.const_defined? implementation
    realclass = self.const_get implementation

    if realclass.declared_parameters_for(:'self.new', :required).empty?
      required = declared_parameters_for(:'self.new', :required)
      realclass.send(:requires, *required)
    end
  
    if realclass.declared_parameters_for(:'self.new', :optional).empty?
      optional = declared_parameters_for(:'self.new', :optional)
      realclass.send(:recognizes, *optional) 
    end
  end
end

.model(new_model) ⇒ Object



116
117
118
# File 'lib/fog/core/service.rb', line 116

def model(new_model)
  models << new_model
end

.model_path(new_path) ⇒ Object



104
105
106
# File 'lib/fog/core/service.rb', line 104

def model_path(new_path)
  @model_path = new_path
end

.modelsObject



120
121
122
# File 'lib/fog/core/service.rb', line 120

def models
  @models ||= []
end

.new(options = {}) ⇒ Object



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/fog/core/service.rb', line 61

def new(options={})
  if Fog.bin
    default_credentials = filter_parameters(Fog.credentials)
    options = default_credentials.merge(options)
  end

  setup_requirements

  if Fog.mocking?
    service::Mock.send(:include, service::Collections)
    service::Mock.new(options)
  else
    service::Real.send(:include, service::Collections)
    service::Real.new(options)
  end
end

.request(new_request) ⇒ Object



128
129
130
# File 'lib/fog/core/service.rb', line 128

def request(new_request)
  requests << new_request
end

.request_path(new_path) ⇒ Object



124
125
126
# File 'lib/fog/core/service.rb', line 124

def request_path(new_path)
  @request_path = new_path
end

.requestsObject



132
133
134
# File 'lib/fog/core/service.rb', line 132

def requests
  @requests ||= []
end

.requirementsObject



57
58
59
# File 'lib/fog/core/service.rb', line 57

def requirements
  declared_parameters_for :'self.new', :required
end

.reset_data(keys = Mock.data.keys) ⇒ Object



136
137
138
# File 'lib/fog/core/service.rb', line 136

def reset_data(keys=Mock.data.keys)
  Mock.reset_data(keys)
end

.setup_requirementsObject



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/fog/core/service.rb', line 78

def setup_requirements
  if superclass.respond_to?(:setup_requirements)
    superclass.setup_requirements
  end

  @required ||= false
  unless @required
    for collection in collections
      require [@model_path, collection].join('/')
      constant = collection.to_s.split('_').map {|characters| characters[0...1].upcase << characters[1..-1]}.join('')
      service::Collections.module_eval <<-EOS, __FILE__, __LINE__
        def #{collection}(attributes = {})
          #{service}::#{constant}.new({:connection => self}.merge(attributes))
        end
      EOS
    end
    for model in models
      require [@model_path, model].join('/')
    end
    for request in requests
      require [@request_path, request].join('/')
    end
    @required = true
  end
end