]> git.donarmstrong.com Git - debhelper.git/blob - Debian/Debhelper/Dh_Buildsystems.pm
f43c87d4820b8d6807705368324ac4978eba83be
[debhelper.git] / Debian / Debhelper / Dh_Buildsystems.pm
1 # A module for loading and managing debhelper build system classes.
2 # This module is intended to be used by all dh_auto_* programs.
3 #
4 # Copyright: © 2009 Modestas Vainius
5 # License: GPL-2+
6
7 package Debian::Debhelper::Dh_Buildsystems;
8
9 use strict;
10 use warnings;
11 use Debian::Debhelper::Dh_Lib;
12 use File::Spec;
13
14 use base 'Exporter';
15 our @EXPORT=qw(&buildsystems_init &buildsystems_do &load_buildsystem &load_all_buildsystems);
16
17 # Historical order must be kept for backwards compatibility. New
18 # build systems MUST be added to the END of the list.
19 our @BUILDSYSTEMS = (
20         "autoconf",
21         "perl_makemaker",
22         "makefile",
23         "python_distutils",
24         "perl_build",
25         "cmake",
26         "ant",
27 );
28
29 my $opt_buildsys;
30 my $opt_sourcedir;
31 my $opt_builddir;
32 my $opt_list;
33 my $opt_parallel;
34
35 sub create_buildsystem_instance {
36         my $system=shift;
37         my %bsopts=@_;
38         my $module = "Debian::Debhelper::Buildsystem::$system";
39
40         eval "use $module";
41         if ($@) {
42                 error("unable to load build system class '$system': $@");
43         }
44
45         if (!exists $bsopts{builddir} && defined $opt_builddir) {
46                 $bsopts{builddir} = ($opt_builddir eq "") ? undef : $opt_builddir;
47         }
48         if (!exists $bsopts{sourcedir} && defined $opt_sourcedir) {
49                 $bsopts{sourcedir} = ($opt_sourcedir eq "") ? undef : $opt_sourcedir;
50         }
51         if (!exists $bsopts{parallel}) {
52                 $bsopts{parallel} = $opt_parallel;
53         }
54         return $module->new(%bsopts);
55 }
56
57 # Similar to create_build system_instance(), but it attempts to autoselect
58 # a build system if none was specified. In case autoselection fails, undef
59 # is returned.
60 sub load_buildsystem {
61         my $system=shift;
62         my $step=shift;
63         if (defined $system) {
64                 my $inst = create_buildsystem_instance($system, @_);
65                 return $inst;
66         }
67         else {
68                 # Try to determine build system automatically
69                 for $system (@BUILDSYSTEMS) {
70                         my $inst = create_buildsystem_instance($system, @_);
71                         if ($inst->check_auto_buildable($step)) {
72                                 return $inst;
73                         }
74                 }
75         }
76         return;
77 }
78
79 sub load_all_buildsystems {
80         my $incs=shift || \@INC;
81         my (%buildsystems, @buildsystems);
82
83         for my $inc (@$incs) {
84                 my $path = File::Spec->catdir($inc, "Debian/Debhelper/Buildsystem");
85                 if (-d $path) {
86                         for my $module_path (glob "$path/*.pm") {
87                                 my $name = basename($module_path);
88                                 $name =~ s/\.pm$//;
89                                 next if exists $buildsystems{$name};
90                                 $buildsystems{$name} = create_buildsystem_instance($name, @_);
91                         }
92                 }
93         }
94
95         # Standard debhelper build systems first
96         for my $name (@BUILDSYSTEMS) {
97                 error("standard debhelper build system '$name' could not be found/loaded")
98                     if not exists $buildsystems{$name};
99                 push @buildsystems, $buildsystems{$name};
100                 delete $buildsystems{$name};
101         }
102
103         # The rest are 3rd party build systems
104         for my $name (keys %buildsystems) {
105                 my $inst = $buildsystems{$name};
106                 $inst->{thirdparty} = 1;
107                 push @buildsystems, $inst;
108         }
109
110         return @buildsystems;
111 }
112
113 sub buildsystems_init {
114         my %args=@_;
115         
116         my $max_parallel=0;
117
118         # Available command line options
119         my %options = (
120             "D=s" => \$opt_sourcedir,
121             "sourcedirectory=s" => \$opt_sourcedir,
122         
123             "B:s" => \$opt_builddir,
124             "builddirectory:s" => \$opt_builddir,
125
126             "S=s" => \$opt_buildsys,
127             "buildsystem=s" => \$opt_buildsys,
128
129             "l" => \$opt_list,
130             "list" => \$opt_list,
131
132             "max-parallel:i" => \$max_parallel,
133         );
134         $args{options}{$_} = $options{$_} foreach keys(%options);
135         Debian::Debhelper::Dh_Lib::init(%args);
136         set_parallel($max_parallel);
137 }
138
139 sub set_parallel {
140         my $max=shift;
141
142         if (exists $ENV{DEB_BUILD_OPTIONS}) {
143                 # Parse parallel=n tag
144                 my $n;
145                 foreach my $opt (split(/\s+/, $ENV{DEB_BUILD_OPTIONS})) {
146                         $n = $1 if $opt =~ /^parallel=(\d+)$/;
147                 }
148                 if (defined $n && $n > 0) {
149                         if (!$max || $n < $max) {
150                                 $opt_parallel = $n;
151                         }
152                         else {
153                                 $opt_parallel = $max;
154                         }
155                 }
156                 else {
157                         # Invalid value in the parallel tag. Disable.
158                         $opt_parallel = 1;
159                 }
160         }
161         else {
162                 $opt_parallel = 1;
163         }
164 }
165
166 sub buildsystems_list {
167         my $step=shift;
168
169         # List build systems (including auto and specified status)
170         my ($auto, $specified);
171         for my $inst (load_all_buildsystems()) {
172                 my $is_specified = defined $opt_buildsys && $opt_buildsys eq $inst->NAME();
173                 if (! defined $specified && defined $opt_buildsys && $opt_buildsys eq $inst->NAME()) {
174                         $specified = $inst->NAME();
175                 }
176                 elsif (! defined $auto && ! $inst->{thirdparty} && $inst->check_auto_buildable($step)) {
177                         $auto = $inst->NAME();
178                 }
179                 printf("%-20s %s", $inst->NAME(), $inst->DESCRIPTION());
180                 print " [3rd party]" if $inst->{thirdparty};
181                 print "\n";
182         }
183         print "\n";
184         print "Auto-selected: $auto\n" if defined $auto;
185         print "Specified: $specified\n" if defined $specified;
186         print "No system auto-selected or specified\n"
187                 if ! defined $auto && ! defined $specified;
188 }
189
190 sub buildsystems_do {
191         my $step=shift;
192
193         if (!defined $step) {
194                 $step = basename($0);
195                 $step =~ s/^dh_auto_//;
196         }
197
198         if (grep(/^\Q$step\E$/, qw{configure build test install clean}) == 0) {
199                 error("unrecognized build step: " . $step);
200         }
201
202         if ($opt_list) {
203                 buildsystems_list($step);
204                 exit 0;
205         }
206
207         my $buildsystem = load_buildsystem($opt_buildsys, $step);
208         if (defined $buildsystem) {
209                 $buildsystem->pre_building_step($step);
210                 $buildsystem->$step(@_, @{$dh{U_PARAMS}});
211                 $buildsystem->post_building_step($step);
212         }
213         return 0;
214 }
215
216 1