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
|
# 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']
@need_rebuild = Hash.new
@changed = Hash.new
@state_name = 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?
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
# File 'lib/docman/info.rb', line 94
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
66
67
68
69
70
71
72
73
74
|
# File 'lib/docman/info.rb', line 66
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
133
134
135
136
137
138
|
# File 'lib/docman/info.rb', line 133
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
49
50
51
|
# File 'lib/docman/info.rb', line 49
def describe(type = 'short')
properties_info(%w(name type build_type))
end
|
#disabled? ⇒ Boolean
126
127
128
129
130
131
|
# File 'lib/docman/info.rb', line 126
def disabled?
unless self['status'].nil?
return self['status'] == 'disabled'
end
false
end
|
#environment_name ⇒ Object
140
141
142
|
# File 'lib/docman/info.rb', line 140
def environment_name
self['docroot_config'].deploy_target['states'][@state_name]
end
|
#need_rebuild? ⇒ Boolean
76
77
78
79
80
81
82
83
|
# File 'lib/docman/info.rb', line 76
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
32
33
34
35
36
37
38
39
|
# File 'lib/docman/info.rb', line 32
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
85
86
87
88
89
90
91
92
|
# File 'lib/docman/info.rb', line 85
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
118
119
120
|
# File 'lib/docman/info.rb', line 118
def state
states[@state_name]
end
|
#states ⇒ Object
122
123
124
|
# File 'lib/docman/info.rb', line 122
def states
self['states']
end
|
#stored_version ⇒ Object
TODO: check if info.yaml needed for local state
112
113
114
115
116
|
# File 'lib/docman/info.rb', line 112
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
41
42
43
|
# File 'lib/docman/info.rb', line 41
def version
state.nil? ? nil : state['version']
end
|
#version_type ⇒ Object
45
46
47
|
# File 'lib/docman/info.rb', line 45
def version_type
state.nil? ? nil : state['type']
end
|
#write_info(result) ⇒ Object
53
54
55
56
57
58
59
60
61
62
63
64
|
# File 'lib/docman/info.rb', line 53
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
|