Class: Docman::Info
Instance Attribute Summary collapse
Instance Method Summary
collapse
Methods included from Logging
#log, logger, #logger, #prefix, #properties_info, #with_logging
Constructor Details
#initialize(hash = {}) ⇒ Info
Returns a new instance of Info.
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# File 'lib/docman/info.rb', line 10
def initialize(hash = {})
super
hash.each_pair do |k, v|
self[k] = v
end
self['build_type'] = self['docroot_config'].deploy_target['builders'][self['type']]['handler'] unless self['docroot_config'].deploy_target.nil?
@need_rebuild = Hash.new
@changed = Hash.new
@state_name = nil
unless self['docroot_config'].deploy_target.nil?
if self.has_key? 'states'
self['states'].each_pair do |name, state|
if state.has_key?('source')
if state['source']['type'] == :retrieve_from_repo
repo = state['source']['repo'] == :project_repo ? self['repo'] : state['source']['repo']
external_state_info = read_yaml_from_file(repo, self['states_path'], state['source']['branch'], state['source']['file'])
state.deep_merge! external_state_info unless external_state_info.nil? or state.nil?
end
end
end
end
end
end
|
Instance Attribute Details
#build_mode ⇒ Object
Returns the value of attribute build_mode.
8
9
10
|
# File 'lib/docman/info.rb', line 8
def build_mode
@build_mode
end
|
#need_rebuild ⇒ Object
Returns the value of attribute need_rebuild.
8
9
10
|
# File 'lib/docman/info.rb', line 8
def need_rebuild
@need_rebuild
end
|
#state_name ⇒ Object
Returns the value of attribute state_name.
8
9
10
|
# File 'lib/docman/info.rb', line 8
def state_name
@state_name
end
|
Instance Method Details
#_need_rebuild? ⇒ Boolean
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
# File 'lib/docman/info.rb', line 96
def _need_rebuild?
return true if Docman::Application.instance.force?
return true unless File.directory? self['full_build_path']
v = stored_version
return true unless v
return true if v['type'] != self['type']
return true if v['build_type'] != self['build_type']
@changed[@state_name] = true if (not v['version'].nil? and v['version'] != version)
return true if (not v['version_type'].nil? and v['version_type'] != version_type)
unless v['state'].nil?
@changed[@state_name] = true if v['state'] != @state_name
end
false
end
|
#changed? ⇒ Boolean
68
69
70
71
72
73
74
75
76
|
# File 'lib/docman/info.rb', line 68
def changed?
return @changed[@state_name] if not @changed.nil? and @changed.has_key? @state_name and not @changed[@state_name].nil?
@changed[@state_name] = false
if need_rebuild?
@changed[@state_name] = true
end
@changed[@state_name]
end
|
#commands(type, hook) ⇒ Object
135
136
137
138
139
140
|
# File 'lib/docman/info.rb', line 135
def commands(type, hook)
if self.has_key? 'actions' and self['actions'].has_key? type and self['actions'][type].has_key? hook
return self['actions'][type][hook]
end
[]
end
|
#describe(type = 'short') ⇒ Object
51
52
53
|
# File 'lib/docman/info.rb', line 51
def describe(type = 'short')
properties_info(%w(name type build_type))
end
|
#disabled? ⇒ Boolean
128
129
130
131
132
133
|
# File 'lib/docman/info.rb', line 128
def disabled?
unless self['status'].nil?
return self['status'] == 'disabled'
end
false
end
|
#environment_name ⇒ Object
142
143
144
|
# File 'lib/docman/info.rb', line 142
def environment_name
self['docroot_config'].deploy_target['states'][@state_name] unless self['docroot_config'].deploy_target.nil?
end
|
#need_rebuild? ⇒ Boolean
78
79
80
81
82
83
84
85
|
# File 'lib/docman/info.rb', line 78
def need_rebuild?
return @need_rebuild[@state_name] if not @need_rebuild.nil? and @need_rebuild.has_key? @state_name and not @need_rebuild[@state_name].nil?
@need_rebuild[@state_name] = _need_rebuild?
if @need_rebuild[@state_name]
set_rebuild_recursive(self, true)
end
@need_rebuild[@state_name]
end
|
#read_yaml_from_file(repo, path, version, filename) ⇒ Object
34
35
36
37
38
39
40
41
|
# File 'lib/docman/info.rb', line 34
def read_yaml_from_file(repo, path, version, filename)
GitUtil.get(repo, path, 'branch', version, true, 1, need_rebuild?)
filepath = File.join(path, filename)
return YAML::load_file(filepath) if File.file? filepath
nil
rescue StandardError => e
raise "Error in info file: #{filepath}, #{e.message}"
end
|
#set_rebuild_recursive(obj, value) ⇒ Object
87
88
89
90
91
92
93
94
|
# File 'lib/docman/info.rb', line 87
def set_rebuild_recursive(obj, value)
obj.need_rebuild[@state_name] = value
if obj.has_key?('children')
obj['children'].each do |info|
set_rebuild_recursive(info, value)
end
end
end
|
#state ⇒ Object
120
121
122
|
# File 'lib/docman/info.rb', line 120
def state
states[@state_name]
end
|
#states ⇒ Object
124
125
126
|
# File 'lib/docman/info.rb', line 124
def states
self['states']
end
|
#stored_version ⇒ Object
TODO: check if info.yaml needed for local state
114
115
116
117
118
|
# File 'lib/docman/info.rb', line 114
def stored_version
info_filename = File.join(self['full_build_path'], 'info.yaml')
return false unless File.file?(info_filename)
YAML::load_file(info_filename)
end
|
#version ⇒ Object
43
44
45
|
# File 'lib/docman/info.rb', line 43
def version
state.nil? ? nil : state['version']
end
|
#version_type ⇒ Object
47
48
49
|
# File 'lib/docman/info.rb', line 47
def version_type
state.nil? ? nil : state['type']
end
|
#write_info(result) ⇒ Object
55
56
57
58
59
60
61
62
63
64
65
66
|
# File 'lib/docman/info.rb', line 55
def write_info(result)
to_save = {}
to_save['state'] = @state_name
to_save['version_type'] = self.version_type unless self.version_type.nil?
to_save['version'] = self.version unless self.version.nil?
to_save['result'] = result
to_save['type'] = self['type']
to_save['build_type'] = self['build_type']
File.open(File.join(self['full_build_path'], 'info.yaml'), 'w') {|f| f.write to_save.to_yaml}
to_save
end
|