line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Enbld::Target; |
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
1001
|
use strict; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
103
|
|
4
|
2
|
|
|
2
|
|
10
|
use warnings; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
99
|
|
5
|
|
|
|
|
|
|
|
6
|
2
|
|
|
2
|
|
10
|
use Carp; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
196
|
|
7
|
|
|
|
|
|
|
|
8
|
2
|
|
|
2
|
|
2094
|
use version; |
|
2
|
|
|
|
|
3887
|
|
|
2
|
|
|
|
|
13
|
|
9
|
|
|
|
|
|
|
|
10
|
2
|
|
|
2
|
|
187
|
use File::Spec; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
58
|
|
11
|
2
|
|
|
2
|
|
9
|
use File::Path qw/make_path remove_tree/; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
145
|
|
12
|
2
|
|
|
2
|
|
9
|
use File::Find; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
96
|
|
13
|
2
|
|
|
2
|
|
1853
|
use File::Copy::Recursive qw/rcopy/; |
|
2
|
|
|
|
|
8859
|
|
|
2
|
|
|
|
|
152
|
|
14
|
2
|
|
|
2
|
|
564
|
use autodie; |
|
2
|
|
|
|
|
14760
|
|
|
2
|
|
|
|
|
15
|
|
15
|
2
|
|
|
2
|
|
8996
|
use List::Util qw/first/; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
6470
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
require Enbld::Definition; |
18
|
|
|
|
|
|
|
require Enbld::Feature; |
19
|
|
|
|
|
|
|
require Enbld::Condition; |
20
|
|
|
|
|
|
|
require Enbld::Message; |
21
|
|
|
|
|
|
|
require Enbld::Home; |
22
|
|
|
|
|
|
|
require Enbld::HTTP; |
23
|
|
|
|
|
|
|
require Enbld::Target::Symlink; |
24
|
|
|
|
|
|
|
require Enbld::Error; |
25
|
|
|
|
|
|
|
require Enbld::Deployed; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
sub new { |
28
|
47
|
|
|
47
|
0
|
2118
|
my ( $class, $name, $config ) = @_; |
29
|
|
|
|
|
|
|
|
30
|
47
|
|
|
|
|
373
|
my $self = { |
31
|
|
|
|
|
|
|
name => $name, |
32
|
|
|
|
|
|
|
config => $config, |
33
|
|
|
|
|
|
|
attributes => undef, |
34
|
|
|
|
|
|
|
build => undef, |
35
|
|
|
|
|
|
|
install => undef, |
36
|
|
|
|
|
|
|
PATH => undef, |
37
|
|
|
|
|
|
|
conditions => undef, |
38
|
|
|
|
|
|
|
}; |
39
|
|
|
|
|
|
|
|
40
|
47
|
|
|
|
|
107
|
bless $self, $class; |
41
|
|
|
|
|
|
|
|
42
|
47
|
|
|
|
|
202
|
$self->_set_config; |
43
|
47
|
|
|
|
|
166
|
$self->_set_attributes; |
44
|
46
|
|
|
|
|
456
|
$self->_set_PATH; |
45
|
|
|
|
|
|
|
|
46
|
46
|
|
|
|
|
339
|
return $self; |
47
|
|
|
|
|
|
|
} |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
sub install { |
50
|
14
|
|
|
14
|
0
|
35
|
my $self = shift; |
51
|
14
|
|
|
|
|
21
|
my $version = shift; |
52
|
|
|
|
|
|
|
|
53
|
14
|
100
|
|
|
|
56
|
if ( ! $self->_is_install_ok ) { |
54
|
1
|
|
|
|
|
13
|
Enbld::Error->throw( "'$self->{name}' is already installed." ); |
55
|
|
|
|
|
|
|
} |
56
|
|
|
|
|
|
|
|
57
|
13
|
50
|
|
|
|
128
|
my $condition = $version ? Enbld::Condition->new( version => $version ) : |
58
|
|
|
|
|
|
|
Enbld::Condition->new; |
59
|
|
|
|
|
|
|
|
60
|
13
|
|
|
|
|
63
|
$self->{attributes}->add( 'VersionCondition', $condition->version ); |
61
|
|
|
|
|
|
|
|
62
|
13
|
|
|
|
|
56
|
$self->_build( $condition ); |
63
|
|
|
|
|
|
|
|
64
|
12
|
|
|
|
|
147
|
return $self->{config}; |
65
|
|
|
|
|
|
|
} |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
sub _is_install_ok { |
68
|
14
|
|
|
14
|
|
27
|
my $self = shift; |
69
|
|
|
|
|
|
|
|
70
|
14
|
100
|
|
|
|
61
|
return 1 if Enbld::Feature->is_force_install; |
71
|
13
|
100
|
|
|
|
60
|
return if $self->is_installed; |
72
|
12
|
|
|
|
|
39
|
return 1; |
73
|
|
|
|
|
|
|
} |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
sub deploy { |
76
|
1
|
|
|
1
|
0
|
2
|
my $self = shift; |
77
|
|
|
|
|
|
|
|
78
|
1
|
|
|
|
|
9
|
my $condition = Enbld::Condition->new; |
79
|
|
|
|
|
|
|
|
80
|
1
|
|
|
|
|
6
|
$self->{attributes}->add( 'VersionCondition', $condition->version ); |
81
|
|
|
|
|
|
|
|
82
|
1
|
|
|
|
|
6
|
$self->_build_to_deploy( $condition ); |
83
|
|
|
|
|
|
|
|
84
|
1
|
|
|
|
|
10
|
return $self->{config}; |
85
|
|
|
|
|
|
|
} |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
sub install_declared { |
88
|
14
|
|
|
14
|
0
|
62
|
my ( $self, $declared_conditions ) = @_; |
89
|
|
|
|
|
|
|
|
90
|
14
|
|
|
|
|
94
|
$self->{attributes}->add( |
91
|
|
|
|
|
|
|
'VersionCondition', |
92
|
|
|
|
|
|
|
$declared_conditions->{$self->{name}}{version} |
93
|
|
|
|
|
|
|
); |
94
|
|
|
|
|
|
|
|
95
|
14
|
100
|
|
|
|
63
|
return unless $self->_is_install_declared_ok( |
96
|
|
|
|
|
|
|
$declared_conditions->{$self->{name}} |
97
|
|
|
|
|
|
|
); |
98
|
|
|
|
|
|
|
|
99
|
13
|
|
|
|
|
37
|
$self->{conditions} = $declared_conditions; |
100
|
|
|
|
|
|
|
|
101
|
13
|
|
|
|
|
71
|
$self->_build( $declared_conditions->{$self->{name}} ); |
102
|
|
|
|
|
|
|
|
103
|
13
|
|
|
|
|
127
|
return $self->{config}; |
104
|
|
|
|
|
|
|
} |
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
sub deploy_declared { |
107
|
1
|
|
|
1
|
0
|
3
|
my ( $self, $declared_conditions ) = @_; |
108
|
|
|
|
|
|
|
|
109
|
1
|
|
|
|
|
7
|
$self->{attributes}->add( |
110
|
|
|
|
|
|
|
'VersionCondition', |
111
|
|
|
|
|
|
|
$declared_conditions->{$self->{name}}{version} |
112
|
|
|
|
|
|
|
); |
113
|
|
|
|
|
|
|
|
114
|
1
|
|
|
|
|
2
|
$self->{conditions} = $declared_conditions; |
115
|
|
|
|
|
|
|
|
116
|
1
|
|
|
|
|
7
|
$self->_build_to_deploy( $declared_conditions->{$self->{name}} ); |
117
|
|
|
|
|
|
|
|
118
|
1
|
|
|
|
|
10
|
return $self->{config}; |
119
|
|
|
|
|
|
|
} |
120
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
sub _is_install_declared_ok { |
122
|
14
|
|
|
14
|
|
29
|
my ( $self, $condition ) = @_; |
123
|
|
|
|
|
|
|
|
124
|
14
|
100
|
|
|
|
75
|
return 1 if Enbld::Feature->is_force_install; |
125
|
13
|
100
|
|
|
|
67
|
return 1 unless $self->{config}->enabled; |
126
|
3
|
100
|
|
|
|
18
|
return 1 unless $condition->is_equal_to( $self->{config}->condition ); |
127
|
1
|
50
|
|
|
|
21
|
return if $self->{config}->enabled eq $self->{attributes}->Version; |
128
|
|
|
|
|
|
|
|
129
|
0
|
|
|
|
|
0
|
return 1; |
130
|
|
|
|
|
|
|
} |
131
|
|
|
|
|
|
|
|
132
|
|
|
|
|
|
|
sub upgrade { |
133
|
3
|
|
|
3
|
0
|
8
|
my $self = shift; |
134
|
|
|
|
|
|
|
|
135
|
3
|
100
|
|
|
|
20
|
if ( ! $self->is_installed ) { |
136
|
1
|
|
|
|
|
13
|
Enbld::Error->throw( "'$self->{name}' is not installed yet." ); |
137
|
|
|
|
|
|
|
} |
138
|
|
|
|
|
|
|
|
139
|
2
|
|
|
|
|
19
|
$self->{attributes}->add( |
140
|
|
|
|
|
|
|
'VersionCondition', |
141
|
|
|
|
|
|
|
$self->{config}->condition->version |
142
|
|
|
|
|
|
|
); |
143
|
|
|
|
|
|
|
|
144
|
2
|
|
|
|
|
19
|
my $current = $self->{attributes}->Version; |
145
|
2
|
|
|
|
|
12
|
my $enabled = $self->{config}->enabled; |
146
|
|
|
|
|
|
|
|
147
|
2
|
|
|
|
|
10
|
my $VersionList = $self->{attributes}->SortedVersionList; |
148
|
|
|
|
|
|
|
|
149
|
|
|
|
|
|
|
my $index_current = |
150
|
2
|
|
|
4
|
|
17
|
first { ${ $VersionList }[$_] eq $current } 0..$#{ $VersionList }; |
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
9
|
|
|
2
|
|
|
|
|
20
|
|
151
|
|
|
|
|
|
|
|
152
|
|
|
|
|
|
|
my $index_enabled = |
153
|
2
|
|
|
3
|
|
16
|
first { ${ $VersionList }[$_] eq $enabled } 0..$#{ $VersionList }; |
|
3
|
|
|
|
|
4
|
|
|
3
|
|
|
|
|
25
|
|
|
2
|
|
|
|
|
6
|
|
154
|
|
|
|
|
|
|
|
155
|
2
|
100
|
|
|
|
11
|
if ( $index_current <= $index_enabled ) { |
156
|
1
|
|
|
|
|
13
|
Enbld::Error->throw( "'$self->{name}' is up to date." ); |
157
|
|
|
|
|
|
|
} |
158
|
|
|
|
|
|
|
|
159
|
1
|
|
|
|
|
11
|
$self->_build( $self->{config}->condition ); |
160
|
|
|
|
|
|
|
|
161
|
1
|
|
|
|
|
21
|
return $self->{config}; |
162
|
|
|
|
|
|
|
} |
163
|
|
|
|
|
|
|
|
164
|
|
|
|
|
|
|
sub off { |
165
|
2
|
|
|
2
|
0
|
9
|
my $self = shift; |
166
|
|
|
|
|
|
|
|
167
|
2
|
100
|
|
|
|
16
|
if ( ! $self->is_installed ) { |
168
|
1
|
|
|
|
|
14
|
Enbld::Error->throw( "'$self->{name}' is not installed yet." ); |
169
|
|
|
|
|
|
|
} |
170
|
|
|
|
|
|
|
|
171
|
1
|
|
|
|
|
10
|
$self->_drop; |
172
|
|
|
|
|
|
|
|
173
|
1
|
|
|
|
|
7
|
$self->{config}->drop_enabled; |
174
|
|
|
|
|
|
|
|
175
|
1
|
|
|
|
|
4
|
return $self->{config}; |
176
|
|
|
|
|
|
|
} |
177
|
|
|
|
|
|
|
|
178
|
|
|
|
|
|
|
sub rehash { |
179
|
0
|
|
|
0
|
0
|
0
|
my $self = shift; |
180
|
|
|
|
|
|
|
|
181
|
0
|
0
|
|
|
|
0
|
if ( ! $self->is_installed ) { |
182
|
0
|
|
|
|
|
0
|
Enbld::Error->throw( "'$self->{name}' isn't installed yet." ); |
183
|
|
|
|
|
|
|
} |
184
|
|
|
|
|
|
|
|
185
|
0
|
|
|
|
|
0
|
$self->_switch( $self->{config}->enabled ); |
186
|
|
|
|
|
|
|
|
187
|
0
|
|
|
|
|
0
|
return $self->{config}; |
188
|
|
|
|
|
|
|
} |
189
|
|
|
|
|
|
|
|
190
|
|
|
|
|
|
|
sub use { |
191
|
4
|
|
|
4
|
0
|
16
|
my ( $self, $version ) = @_; |
192
|
|
|
|
|
|
|
|
193
|
4
|
50
|
|
|
|
26
|
if ( ! $self->{config}->installed ) { |
194
|
0
|
|
|
|
|
0
|
Enbld::Error->throw( "'$self->{name}' isn't installed yet." ); |
195
|
|
|
|
|
|
|
} |
196
|
|
|
|
|
|
|
|
197
|
4
|
|
|
|
|
34
|
my $form = $self->{attributes}->VersionForm; |
198
|
4
|
100
|
|
|
|
56
|
if ( $version !~ /^$form$/ ) { |
199
|
1
|
|
|
|
|
12
|
Enbld::Error->throw( "'$version' is not valid version form." ); |
200
|
|
|
|
|
|
|
} |
201
|
|
|
|
|
|
|
|
202
|
3
|
100
|
66
|
|
|
25
|
if ( $self->{config}->enabled && $self->{config}->enabled eq $version ) { |
203
|
1
|
|
|
|
|
10
|
Enbld::Error->throw( "'$version' is current enabled version." ); |
204
|
|
|
|
|
|
|
} |
205
|
|
|
|
|
|
|
|
206
|
2
|
100
|
|
|
|
12
|
if ( ! $self->{config}->is_installed_version( $version ) ) { |
207
|
1
|
|
|
|
|
16
|
Enbld::Error->throw( "'$version' isn't installed yet" ); |
208
|
|
|
|
|
|
|
} |
209
|
|
|
|
|
|
|
|
210
|
1
|
|
|
|
|
15
|
$self->_switch( $version ); |
211
|
|
|
|
|
|
|
|
212
|
1
|
|
|
|
|
8
|
return $self->{config}; |
213
|
|
|
|
|
|
|
} |
214
|
|
|
|
|
|
|
|
215
|
|
|
|
|
|
|
sub is_installed { |
216
|
22
|
|
|
22
|
0
|
37
|
my $self = shift; |
217
|
|
|
|
|
|
|
|
218
|
22
|
|
|
|
|
117
|
return $self->{config}->enabled; |
219
|
|
|
|
|
|
|
} |
220
|
|
|
|
|
|
|
|
221
|
|
|
|
|
|
|
sub is_outdated { |
222
|
3
|
|
|
3
|
0
|
13
|
my $self = shift; |
223
|
|
|
|
|
|
|
|
224
|
3
|
100
|
|
|
|
26
|
return unless ( $self->{config}->enabled ); |
225
|
|
|
|
|
|
|
|
226
|
2
|
|
|
|
|
29
|
$self->{attributes}->add( |
227
|
|
|
|
|
|
|
'VersionCondition', $self->{config}->condition->version |
228
|
|
|
|
|
|
|
); |
229
|
|
|
|
|
|
|
|
230
|
2
|
|
|
|
|
24
|
my $current = $self->{attributes}->Version; |
231
|
2
|
|
|
|
|
15
|
my $enabled = $self->{config}->enabled; |
232
|
|
|
|
|
|
|
|
233
|
2
|
|
|
|
|
11
|
my $VersionList = $self->{attributes}->SortedVersionList; |
234
|
|
|
|
|
|
|
|
235
|
|
|
|
|
|
|
my $index_current = |
236
|
2
|
|
|
4
|
|
27
|
first { ${ $VersionList }[$_] eq $current } 0..$#{ $VersionList }; |
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
11
|
|
|
2
|
|
|
|
|
18
|
|
237
|
|
|
|
|
|
|
|
238
|
|
|
|
|
|
|
my $index_enabled = |
239
|
2
|
|
|
3
|
|
16
|
first { ${ $VersionList }[$_] eq $enabled } 0..$#{ $VersionList }; |
|
3
|
|
|
|
|
4
|
|
|
3
|
|
|
|
|
10
|
|
|
2
|
|
|
|
|
12
|
|
240
|
|
|
|
|
|
|
|
241
|
2
|
100
|
|
|
|
22
|
if ( $index_current > $index_enabled ) { |
242
|
1
|
|
|
|
|
15
|
return $current; |
243
|
|
|
|
|
|
|
} |
244
|
|
|
|
|
|
|
|
245
|
1
|
|
|
|
|
15
|
return; |
246
|
|
|
|
|
|
|
} |
247
|
|
|
|
|
|
|
|
248
|
|
|
|
|
|
|
sub _set_config { |
249
|
47
|
|
|
47
|
|
93
|
my $self = shift; |
250
|
|
|
|
|
|
|
|
251
|
47
|
100
|
|
|
|
216
|
if ( ! $self->{config} ) { |
252
|
27
|
|
|
|
|
535
|
require Enbld::Config; |
253
|
27
|
|
|
|
|
269
|
$self->{config} = Enbld::Config->new( name => $self->{name} ); |
254
|
|
|
|
|
|
|
} |
255
|
|
|
|
|
|
|
} |
256
|
|
|
|
|
|
|
|
257
|
|
|
|
|
|
|
sub _set_attributes { |
258
|
47
|
|
|
47
|
|
73
|
my $self = shift; |
259
|
|
|
|
|
|
|
|
260
|
47
|
|
|
|
|
503
|
$self->{attributes} = Enbld::Definition->new( $self->{name} )->parse; |
261
|
|
|
|
|
|
|
} |
262
|
|
|
|
|
|
|
|
263
|
|
|
|
|
|
|
sub _set_PATH { |
264
|
46
|
|
|
46
|
|
163
|
my $self = shift; |
265
|
|
|
|
|
|
|
|
266
|
46
|
|
|
|
|
380
|
my $path = File::Spec->catdir( Enbld::Home->install_path, 'bin' ); |
267
|
|
|
|
|
|
|
|
268
|
46
|
|
|
|
|
292
|
$self->{PATH} = $path . ':' . $ENV{PATH}; |
269
|
|
|
|
|
|
|
} |
270
|
|
|
|
|
|
|
|
271
|
|
|
|
|
|
|
sub _switch { |
272
|
1
|
|
|
1
|
|
4
|
my ( $self, $version ) = @_; |
273
|
|
|
|
|
|
|
|
274
|
1
|
|
|
|
|
15
|
my $path = File::Spec->catdir( |
275
|
|
|
|
|
|
|
Enbld::Home->depository, |
276
|
|
|
|
|
|
|
$self->{attributes}->DistName |
277
|
|
|
|
|
|
|
); |
278
|
|
|
|
|
|
|
|
279
|
1
|
|
|
|
|
11
|
my $new = File::Spec->catdir( $path, $version ); |
280
|
|
|
|
|
|
|
|
281
|
1
|
|
|
|
|
16
|
Enbld::Target::Symlink->delete_symlink( $path ); |
282
|
1
|
|
|
|
|
10
|
Enbld::Target::Symlink->create_symlink( $new ); |
283
|
|
|
|
|
|
|
|
284
|
1
|
|
|
|
|
12
|
$self->{config}->set_enabled( |
285
|
|
|
|
|
|
|
$version, |
286
|
|
|
|
|
|
|
$self->{config}->condition( $version ), |
287
|
|
|
|
|
|
|
); |
288
|
|
|
|
|
|
|
} |
289
|
|
|
|
|
|
|
|
290
|
|
|
|
|
|
|
sub _drop { |
291
|
1
|
|
|
1
|
|
7
|
my $self = shift; |
292
|
|
|
|
|
|
|
|
293
|
1
|
|
|
|
|
11
|
my $path = File::Spec->catdir( |
294
|
|
|
|
|
|
|
Enbld::Home->depository, |
295
|
|
|
|
|
|
|
$self->{attributes}->DistName, |
296
|
|
|
|
|
|
|
); |
297
|
|
|
|
|
|
|
|
298
|
1
|
|
|
|
|
13
|
Enbld::Target::Symlink->delete_symlink( $path ); |
299
|
|
|
|
|
|
|
|
300
|
1
|
|
|
|
|
6
|
$self->{config}->drop_enabled; |
301
|
|
|
|
|
|
|
} |
302
|
|
|
|
|
|
|
|
303
|
|
|
|
|
|
|
sub _build { |
304
|
27
|
|
|
27
|
|
47
|
my ( $self, $condition ) = @_; |
305
|
|
|
|
|
|
|
|
306
|
27
|
|
|
|
|
273
|
Enbld::Message->notify( "=====> Start building target '$self->{name}'." ); |
307
|
|
|
|
|
|
|
|
308
|
27
|
|
|
|
|
220
|
local $ENV{PATH} = $self->{PATH}; |
309
|
|
|
|
|
|
|
|
310
|
27
|
|
|
|
|
190
|
$self->_solve_dependencies; |
311
|
|
|
|
|
|
|
|
312
|
27
|
|
|
|
|
147
|
$self->_setup_install_directory; |
313
|
27
|
|
|
|
|
115
|
$self->_exec_build_command( $condition ); |
314
|
|
|
|
|
|
|
|
315
|
26
|
50
|
|
|
|
684
|
if ( $condition->module_file ) { |
316
|
0
|
|
|
|
|
0
|
$self->_install_module( $condition ); |
317
|
|
|
|
|
|
|
} |
318
|
|
|
|
|
|
|
|
319
|
26
|
|
|
|
|
205
|
$self->_postbuild; |
320
|
|
|
|
|
|
|
|
321
|
26
|
|
|
|
|
255
|
my $finish_msg = "=====> Finish building target '$self->{name}'."; |
322
|
26
|
|
|
|
|
319
|
Enbld::Message->notify( $finish_msg ); |
323
|
|
|
|
|
|
|
|
324
|
26
|
|
|
|
|
236
|
$self->{config}->set_enabled( $self->{attributes}->Version, $condition ); |
325
|
|
|
|
|
|
|
} |
326
|
|
|
|
|
|
|
|
327
|
|
|
|
|
|
|
sub _build_to_deploy { |
328
|
2
|
|
|
2
|
|
5
|
my ( $self, $condition ) = @_; |
329
|
|
|
|
|
|
|
|
330
|
2
|
|
|
|
|
19
|
Enbld::Message->notify( "=====> Start building target '$self->{name}'." ); |
331
|
|
|
|
|
|
|
|
332
|
2
|
|
|
|
|
20
|
local $ENV{PATH} = $self->{PATH}; |
333
|
|
|
|
|
|
|
|
334
|
2
|
|
|
|
|
14
|
$self->_solve_dependencies_to_deploy; |
335
|
|
|
|
|
|
|
|
336
|
2
|
|
|
|
|
16
|
$self->{install} = Enbld::Home->deploy_path; |
337
|
|
|
|
|
|
|
|
338
|
2
|
|
|
|
|
8
|
$self->_exec_build_command( $condition ); |
339
|
|
|
|
|
|
|
|
340
|
2
|
50
|
|
|
|
60
|
if ( $condition->module_file ) { |
341
|
0
|
|
|
|
|
0
|
$self->_install_module( $condition ); |
342
|
|
|
|
|
|
|
} |
343
|
|
|
|
|
|
|
|
344
|
2
|
|
|
|
|
25
|
my $finish_msg = "=====> Finish building target '$self->{name}'."; |
345
|
2
|
|
|
|
|
47
|
Enbld::Message->notify( $finish_msg ); |
346
|
|
|
|
|
|
|
|
347
|
2
|
|
|
|
|
31
|
$self->{config}->set_enabled( $self->{attributes}->Version, $condition ); |
348
|
|
|
|
|
|
|
} |
349
|
|
|
|
|
|
|
|
350
|
|
|
|
|
|
|
sub _exec_build_command { |
351
|
29
|
|
|
29
|
|
47
|
my $self = shift; |
352
|
29
|
|
|
|
|
35
|
my $condition = shift; |
353
|
|
|
|
|
|
|
|
354
|
29
|
|
|
|
|
93
|
$self->_setup_build_directory; |
355
|
29
|
|
|
|
|
234
|
chdir $self->{build}; |
356
|
|
|
|
|
|
|
|
357
|
29
|
|
|
|
|
3838
|
$self->_prebuild; |
358
|
|
|
|
|
|
|
|
359
|
29
|
50
|
|
|
|
921
|
$self->_configure( $condition ) if $self->{attributes}->CommandConfigure; |
360
|
28
|
50
|
|
|
|
1247
|
$self->_make if $self->{attributes}->CommandMake; |
361
|
|
|
|
|
|
|
|
362
|
28
|
100
|
66
|
|
|
719
|
if ( $condition->make_test or Enbld::Feature->is_make_test_all ) { |
363
|
1
|
|
|
|
|
18
|
$self->_test; |
364
|
|
|
|
|
|
|
} |
365
|
|
|
|
|
|
|
|
366
|
28
|
50
|
|
|
|
814
|
$self->_install if $self->{attributes}->CommandInstall; |
367
|
|
|
|
|
|
|
} |
368
|
|
|
|
|
|
|
|
369
|
|
|
|
|
|
|
sub _solve_dependencies { |
370
|
27
|
|
|
27
|
|
75
|
my $self = shift; |
371
|
|
|
|
|
|
|
|
372
|
27
|
100
|
|
|
|
35
|
return if ( ! @{ $self->{attributes}->Dependencies } ); |
|
27
|
|
|
|
|
230
|
|
373
|
|
|
|
|
|
|
|
374
|
3
|
|
|
|
|
30
|
Enbld::Message->notify( "=====> Found dependencies." ); |
375
|
|
|
|
|
|
|
|
376
|
3
|
|
|
|
|
21
|
require Enbld::App::Configuration; |
377
|
|
|
|
|
|
|
|
378
|
3
|
|
|
|
|
7
|
foreach my $dependency ( @{ $self->{attributes}->Dependencies } ) { |
|
3
|
|
|
|
|
28
|
|
379
|
|
|
|
|
|
|
|
380
|
3
|
|
|
|
|
26
|
Enbld::Message->notify( "--> Dependency '$dependency'." ); |
381
|
|
|
|
|
|
|
|
382
|
3
|
|
|
|
|
32
|
my $config = Enbld::App::Configuration->search_config( $dependency ); |
383
|
3
|
|
|
|
|
19
|
my $target = Enbld::Target->new( $dependency, $config ); |
384
|
|
|
|
|
|
|
|
385
|
3
|
100
|
|
|
|
23
|
if ( $target->is_installed ) { |
386
|
1
|
|
|
|
|
9
|
my $installed_msg = "--> $dependency is already installed."; |
387
|
1
|
|
|
|
|
8
|
Enbld::Message->notify( $installed_msg ); |
388
|
1
|
|
|
|
|
5
|
next; |
389
|
|
|
|
|
|
|
} |
390
|
|
|
|
|
|
|
|
391
|
2
|
|
|
|
|
19
|
Enbld::Message->notify( "--> $dependency is not installed yet." ); |
392
|
|
|
|
|
|
|
|
393
|
2
|
100
|
|
|
|
12
|
my $condition = $self->{conditions}{$dependency} ? |
394
|
|
|
|
|
|
|
$self->{conditions}{$dependency} : undef; |
395
|
|
|
|
|
|
|
|
396
|
2
|
|
|
|
|
5
|
my $installed; |
397
|
2
|
100
|
|
|
|
6
|
if ( $condition ) { |
398
|
1
|
|
|
|
|
12
|
$installed = $target->install_declared( $self->{conditions} ); |
399
|
|
|
|
|
|
|
} else { |
400
|
1
|
|
|
|
|
7
|
$installed = $target->install; |
401
|
|
|
|
|
|
|
} |
402
|
|
|
|
|
|
|
|
403
|
2
|
|
|
|
|
29
|
Enbld::App::Configuration->set_config( $installed ); |
404
|
|
|
|
|
|
|
} |
405
|
|
|
|
|
|
|
} |
406
|
|
|
|
|
|
|
|
407
|
|
|
|
|
|
|
sub _solve_dependencies_to_deploy { |
408
|
2
|
|
|
2
|
|
4
|
my $self = shift; |
409
|
|
|
|
|
|
|
|
410
|
2
|
50
|
|
|
|
3
|
return if ( ! @{ $self->{attributes}->Dependencies } ); |
|
2
|
|
|
|
|
14
|
|
411
|
|
|
|
|
|
|
|
412
|
0
|
|
|
|
|
0
|
Enbld::Message->notify( "=====> Found dependencies." ); |
413
|
|
|
|
|
|
|
|
414
|
0
|
|
|
|
|
0
|
foreach my $dependency ( @{ $self->{attributes}->Dependencies } ) { |
|
0
|
|
|
|
|
0
|
|
415
|
|
|
|
|
|
|
|
416
|
0
|
0
|
|
|
|
0
|
next if ( Enbld::Deployed->is_deployed( $dependency )); |
417
|
|
|
|
|
|
|
|
418
|
0
|
|
|
|
|
0
|
Enbld::Message->notify( "--> Dependency '$dependency'." ); |
419
|
0
|
|
|
|
|
0
|
Enbld::Message->notify( "--> $dependency is not installed yet." ); |
420
|
|
|
|
|
|
|
|
421
|
0
|
|
|
|
|
0
|
my $target = Enbld::Target->new( $dependency ); |
422
|
|
|
|
|
|
|
|
423
|
0
|
0
|
|
|
|
0
|
my $condition = $self->{conditions}{$dependency} ? |
424
|
|
|
|
|
|
|
$self->{conditions}{$dependency} : undef; |
425
|
|
|
|
|
|
|
|
426
|
0
|
|
|
|
|
0
|
my $installed; |
427
|
0
|
0
|
|
|
|
0
|
if ( $condition ) { |
428
|
0
|
|
|
|
|
0
|
$installed = $target->deploy_declared( $self->{conditions} ); |
429
|
|
|
|
|
|
|
} else { |
430
|
0
|
|
|
|
|
0
|
$installed = $target->deploy; |
431
|
|
|
|
|
|
|
} |
432
|
|
|
|
|
|
|
|
433
|
0
|
|
|
|
|
0
|
Enbld::Deployed->add( $installed ); |
434
|
|
|
|
|
|
|
} |
435
|
|
|
|
|
|
|
} |
436
|
|
|
|
|
|
|
|
437
|
|
|
|
|
|
|
sub _prebuild { |
438
|
29
|
|
|
29
|
|
55
|
my $self = shift; |
439
|
|
|
|
|
|
|
|
440
|
29
|
50
|
|
|
|
326
|
$self->_apply_patchfiles if $self->{attributes}->PatchFiles; |
441
|
|
|
|
|
|
|
} |
442
|
|
|
|
|
|
|
|
443
|
|
|
|
|
|
|
sub _configure { |
444
|
29
|
|
|
29
|
|
53
|
my $self = shift; |
445
|
29
|
|
|
|
|
100
|
my $condition = shift; |
446
|
|
|
|
|
|
|
|
447
|
29
|
50
|
|
|
|
245
|
return $self unless $self->{attributes}->CommandConfigure; |
448
|
|
|
|
|
|
|
|
449
|
29
|
|
|
|
|
42
|
my $configure; |
450
|
|
|
|
|
|
|
|
451
|
29
|
|
|
|
|
133
|
$configure = $self->{attributes}->CommandConfigure . ' '; |
452
|
29
|
|
|
|
|
176
|
$configure .= $self->{attributes}->Prefix . $self->{install}; |
453
|
|
|
|
|
|
|
|
454
|
29
|
50
|
|
|
|
207
|
if( $self->{attributes}->AdditionalArgument ) { |
455
|
0
|
|
|
|
|
0
|
$configure .= ' ' . $self->{attributes}->AdditionalArgument; |
456
|
|
|
|
|
|
|
} |
457
|
|
|
|
|
|
|
|
458
|
29
|
50
|
|
|
|
249
|
if ( $condition->arguments ) { |
459
|
0
|
|
|
|
|
0
|
$configure .= ' ' . $condition->arguments; |
460
|
|
|
|
|
|
|
} |
461
|
|
|
|
|
|
|
|
462
|
29
|
|
|
|
|
133
|
$self->_exec( $configure ); |
463
|
|
|
|
|
|
|
} |
464
|
|
|
|
|
|
|
|
465
|
|
|
|
|
|
|
sub _make { |
466
|
28
|
|
|
28
|
|
68
|
my $self = shift; |
467
|
|
|
|
|
|
|
|
468
|
28
|
50
|
|
|
|
190
|
if ( $self->{attributes}->CommandConfigure ) { |
469
|
28
|
|
|
|
|
155
|
$self->_exec( $self->{attributes}->CommandMake ); |
470
|
28
|
|
|
|
|
384
|
return $self; |
471
|
|
|
|
|
|
|
} |
472
|
|
|
|
|
|
|
|
473
|
|
|
|
|
|
|
# this code for tree command...tree don't has configure |
474
|
0
|
|
|
|
|
0
|
my $args = $self->{attributes}->Prefix . $self->{install}; |
475
|
|
|
|
|
|
|
|
476
|
0
|
0
|
|
|
|
0
|
if ( $self->{attributes}->AdditionalArgument ) { |
477
|
0
|
|
|
|
|
0
|
$args .= ' ' . $self->{attributes}->AdditionalArgument; |
478
|
|
|
|
|
|
|
} |
479
|
|
|
|
|
|
|
|
480
|
0
|
|
|
|
|
0
|
$self->_exec( $self->{attributes}->CommandMake . ' ' . $args ); |
481
|
|
|
|
|
|
|
|
482
|
0
|
|
|
|
|
0
|
return $self; |
483
|
|
|
|
|
|
|
} |
484
|
|
|
|
|
|
|
|
485
|
|
|
|
|
|
|
sub _test { |
486
|
1
|
|
|
1
|
|
8
|
my $self = shift; |
487
|
|
|
|
|
|
|
|
488
|
1
|
50
|
|
|
|
36
|
return $self unless $self->{attributes}->CommandTest; |
489
|
|
|
|
|
|
|
|
490
|
1
|
|
|
|
|
11
|
$self->_exec( $self->{attributes}->CommandTest ); |
491
|
|
|
|
|
|
|
} |
492
|
|
|
|
|
|
|
|
493
|
|
|
|
|
|
|
sub _install { |
494
|
28
|
|
|
28
|
|
64
|
my $self = shift; |
495
|
|
|
|
|
|
|
|
496
|
28
|
50
|
|
|
|
194
|
if ( $self->{attributes}->CommandConfigure ) { |
497
|
28
|
|
|
|
|
165
|
$self->_exec( $self->{attributes}->CommandInstall ); |
498
|
28
|
|
|
|
|
506
|
return $self; |
499
|
|
|
|
|
|
|
} |
500
|
|
|
|
|
|
|
|
501
|
0
|
|
|
|
|
0
|
my $args = $self->{attributes}->Prefix . $self->{install}; |
502
|
|
|
|
|
|
|
|
503
|
0
|
0
|
|
|
|
0
|
if ( $self->{attributes}->AdditionalArgument ) { |
504
|
0
|
|
|
|
|
0
|
$args .= ' ' . $self->{attributes}->AdditionalArgument; |
505
|
|
|
|
|
|
|
} |
506
|
|
|
|
|
|
|
|
507
|
0
|
|
|
|
|
0
|
$self->_exec( $self->{attributes}->CommandInstall . ' ' . $args ); |
508
|
|
|
|
|
|
|
|
509
|
0
|
|
|
|
|
0
|
return $self; |
510
|
|
|
|
|
|
|
} |
511
|
|
|
|
|
|
|
|
512
|
|
|
|
|
|
|
sub _install_module { |
513
|
0
|
|
|
0
|
|
0
|
my ( $self, $condition ) = @_; |
514
|
|
|
|
|
|
|
|
515
|
0
|
|
|
|
|
0
|
require Enbld::Module; |
516
|
0
|
|
|
|
|
0
|
my $module = Enbld::Module->new( |
517
|
|
|
|
|
|
|
name => $self->{name}, |
518
|
|
|
|
|
|
|
path => $self->{install}, |
519
|
|
|
|
|
|
|
module_file => $condition->module_file, |
520
|
|
|
|
|
|
|
); |
521
|
|
|
|
|
|
|
|
522
|
0
|
|
|
|
|
0
|
$module->install; |
523
|
|
|
|
|
|
|
} |
524
|
|
|
|
|
|
|
|
525
|
|
|
|
|
|
|
sub _postbuild { |
526
|
26
|
|
|
26
|
|
74
|
my $self = shift; |
527
|
|
|
|
|
|
|
|
528
|
26
|
|
|
|
|
88
|
$self->_copy_files; |
529
|
|
|
|
|
|
|
|
530
|
26
|
|
|
|
|
748
|
my $path = File::Spec->catdir( |
531
|
|
|
|
|
|
|
Enbld::Home->depository, |
532
|
|
|
|
|
|
|
$self->{attributes}->DistName, |
533
|
|
|
|
|
|
|
); |
534
|
|
|
|
|
|
|
|
535
|
26
|
|
|
|
|
475
|
Enbld::Target::Symlink->delete_symlink( $path ); |
536
|
26
|
|
|
|
|
267
|
Enbld::Target::Symlink->create_symlink( $self->{install} ); |
537
|
|
|
|
|
|
|
} |
538
|
|
|
|
|
|
|
|
539
|
|
|
|
|
|
|
sub _copy_files { |
540
|
26
|
|
|
26
|
|
49
|
my $self = shift; |
541
|
|
|
|
|
|
|
|
542
|
26
|
50
|
|
|
|
637
|
return $self unless ( my $dirs = $self->{attributes}->CopyFiles ); |
543
|
|
|
|
|
|
|
|
544
|
26
|
|
|
|
|
58
|
for my $dir ( @{ $dirs } ) { |
|
26
|
|
|
|
|
150
|
|
545
|
0
|
|
|
|
|
0
|
rcopy( |
546
|
|
|
|
|
|
|
File::Spec->catdir( $self->{build}, $dir ), |
547
|
|
|
|
|
|
|
File::Spec->catdir( $self->{install}, $dir ) |
548
|
|
|
|
|
|
|
); |
549
|
|
|
|
|
|
|
} |
550
|
|
|
|
|
|
|
|
551
|
|
|
|
|
|
|
} |
552
|
|
|
|
|
|
|
|
553
|
|
|
|
|
|
|
sub _exec { |
554
|
86
|
|
|
86
|
|
195
|
my ( $self, $cmd ) = @_; |
555
|
|
|
|
|
|
|
|
556
|
86
|
|
|
|
|
1335
|
require Enbld::Logger; |
557
|
86
|
|
|
|
|
1348
|
my $logfile = Enbld::Logger->logfile; |
558
|
|
|
|
|
|
|
|
559
|
86
|
|
|
|
|
1453
|
Enbld::Message->notify( "--> $cmd" ); |
560
|
|
|
|
|
|
|
|
561
|
86
|
|
|
|
|
24931715
|
system( "LANG=C;$cmd >> $logfile 2>&1" ); |
562
|
|
|
|
|
|
|
|
563
|
86
|
100
|
|
|
|
3255
|
return $self unless $?; |
564
|
|
|
|
|
|
|
|
565
|
1
|
50
|
|
|
|
31
|
if ( $? == -1 ) { |
|
|
50
|
|
|
|
|
|
566
|
0
|
|
|
|
|
0
|
Enbld::Error->throw( "Failed to execute:$cmd" ); |
567
|
|
|
|
|
|
|
} elsif ( $? & 127 ) { |
568
|
0
|
|
|
|
|
0
|
Enbld::Error->new( "Child died with signal:$cmd" ); |
569
|
|
|
|
|
|
|
} else { |
570
|
1
|
|
|
|
|
28
|
Enbld::Error->throw( |
571
|
|
|
|
|
|
|
"Build fail.Command:$cmd return code:" . ( $? >> 8 ) |
572
|
|
|
|
|
|
|
); |
573
|
|
|
|
|
|
|
} |
574
|
|
|
|
|
|
|
} |
575
|
|
|
|
|
|
|
|
576
|
|
|
|
|
|
|
sub _apply_patchfiles { |
577
|
29
|
|
|
29
|
|
55
|
my $self = shift; |
578
|
|
|
|
|
|
|
|
579
|
29
|
|
|
|
|
140
|
my $patchfiles = $self->{attributes}->PatchFiles; |
580
|
|
|
|
|
|
|
|
581
|
29
|
|
|
|
|
246
|
require Enbld::HTTP; |
582
|
29
|
|
|
|
|
124
|
require Enbld::Message; |
583
|
29
|
|
|
|
|
101
|
require Enbld::Logger; |
584
|
29
|
|
|
|
|
355
|
my $logfile = Enbld::Logger->logfile; |
585
|
29
|
|
|
|
|
49
|
foreach my $patchfile ( @{ $patchfiles } ) { |
|
29
|
|
|
|
|
87
|
|
586
|
25
|
|
|
|
|
117
|
my @parse = split( /\//, $patchfile ); |
587
|
25
|
|
|
|
|
294
|
my $path = File::Spec->catfile( $self->{build}, $parse[-1] ); |
588
|
|
|
|
|
|
|
|
589
|
25
|
|
|
|
|
211
|
Enbld::HTTP->download( $patchfile, $path ); |
590
|
25
|
|
|
|
|
275
|
Enbld::Message->notify( "--> Apply patch $parse[-1]." ); |
591
|
|
|
|
|
|
|
|
592
|
25
|
|
|
|
|
140708
|
system( "patch -p0 < $path >> $logfile 2>&1" ); |
593
|
|
|
|
|
|
|
} |
594
|
|
|
|
|
|
|
} |
595
|
|
|
|
|
|
|
|
596
|
|
|
|
|
|
|
sub _setup_build_directory { |
597
|
29
|
|
|
29
|
|
47
|
my $self = shift; |
598
|
|
|
|
|
|
|
|
599
|
29
|
|
|
|
|
214
|
my $path = File::Spec->catfile( |
600
|
|
|
|
|
|
|
Enbld::Home->dists, |
601
|
|
|
|
|
|
|
$self->{attributes}->Filename |
602
|
|
|
|
|
|
|
); |
603
|
|
|
|
|
|
|
|
604
|
29
|
|
|
|
|
214
|
my $archivefile = |
605
|
|
|
|
|
|
|
Enbld::HTTP->download_archivefile( $self->{attributes}->URL, $path ); |
606
|
|
|
|
|
|
|
|
607
|
29
|
|
|
|
|
228
|
my $build = $archivefile->extract( Enbld::Home->build ); |
608
|
|
|
|
|
|
|
|
609
|
29
|
|
|
|
|
309
|
return ( $self->{build} = $build ); |
610
|
|
|
|
|
|
|
} |
611
|
|
|
|
|
|
|
|
612
|
|
|
|
|
|
|
sub _setup_install_directory { |
613
|
27
|
|
|
27
|
|
45
|
my $self = shift; |
614
|
|
|
|
|
|
|
|
615
|
27
|
|
|
|
|
260
|
my $depository = File::Spec->catdir( |
616
|
|
|
|
|
|
|
Enbld::Home->depository, |
617
|
|
|
|
|
|
|
$self->{attributes}->DistName, |
618
|
|
|
|
|
|
|
$self->{attributes}->Version, |
619
|
|
|
|
|
|
|
); |
620
|
|
|
|
|
|
|
|
621
|
27
|
50
|
|
|
|
1131
|
remove_tree( $depository ) if ( -d $depository ); |
622
|
|
|
|
|
|
|
|
623
|
27
|
|
|
|
|
82
|
return ( $self->{install} = $depository ); |
624
|
|
|
|
|
|
|
} |
625
|
|
|
|
|
|
|
|
626
|
|
|
|
|
|
|
1; |