]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - make/configure.pm
Make people aware that they can get support on GitHub now.
[user/henk/code/inspircd.git] / make / configure.pm
1 #
2 # InspIRCd -- Internet Relay Chat Daemon
3 #
4 #   Copyright (C) 2020 Nicole Kleinhoff <ilbelkyr@shalture.org>
5 #   Copyright (C) 2013-2020 Sadie Powell <sadie@witchery.services>
6 #   Copyright (C) 2012 Robby <robby@chatbelgie.be>
7 #   Copyright (C) 2007-2008 Craig Edwards <brain@inspircd.org>
8 #   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
9 #
10 # This file is part of InspIRCd.  InspIRCd is free software: you can
11 # redistribute it and/or modify it under the terms of the GNU General Public
12 # License as published by the Free Software Foundation, version 2.
13 #
14 # This program is distributed in the hope that it will be useful, but WITHOUT
15 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17 # details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 #
22
23
24 BEGIN {
25         require 5.10.0;
26 }
27
28 package make::configure;
29
30 use feature ':5.10';
31 use strict;
32 use warnings FATAL => qw(all);
33
34 use Exporter              qw(import);
35 use File::Basename        qw(basename dirname);
36 use File::Spec::Functions qw(abs2rel catdir catfile);
37
38 use make::common;
39 use make::console;
40
41 use constant CONFIGURE_ROOT          => dirname dirname __FILE__;
42 use constant CONFIGURE_DIRECTORY     => catdir(CONFIGURE_ROOT, '.configure');
43 use constant CONFIGURE_CACHE_FILE    => catfile(CONFIGURE_DIRECTORY, 'cache.cfg');
44 use constant CONFIGURE_CACHE_VERSION => '1';
45 use constant CONFIGURE_ERROR_PIPE    => $ENV{INSPIRCD_VERBOSE} ? '' : '1>/dev/null 2>/dev/null';
46
47 our @EXPORT = qw(CONFIGURE_CACHE_FILE
48                  CONFIGURE_CACHE_VERSION
49                  CONFIGURE_DIRECTORY
50                  cmd_clean
51                  cmd_help
52                  cmd_update
53                  run_test
54                  test_file
55                  test_header
56                  module_expand
57                  module_shrink
58                  write_configure_cache
59                  get_compiler_info
60                  find_compiler
61                  parse_templates);
62
63 sub __get_socketengines {
64         my @socketengines;
65         foreach (<${\CONFIGURE_ROOT}/src/socketengines/socketengine_*.cpp>) {
66                 s/src\/socketengines\/socketengine_(\w+)\.cpp/$1/;
67                 push @socketengines, $1;
68         }
69         return @socketengines;
70 }
71
72 # TODO: when buildtool is done this can be mostly removed with
73 #       the remainder being merged into parse_templates.
74 sub __get_template_settings($$$) {
75
76         # These are actually hash references
77         my ($config, $compiler, $version) = @_;
78
79         # Start off by populating with the config
80         my %settings = %$config;
81
82         # Compiler information
83         while (my ($key, $value) = each %{$compiler}) {
84                 $settings{'COMPILER_' . $key} = $value;
85         }
86
87         # Version information
88         while (my ($key, $value) = each %{$version}) {
89                 $settings{'VERSION_' . $key} = $value;
90         }
91
92         # Miscellaneous information
93         $settings{CONFIGURE_DIRECTORY} = CONFIGURE_DIRECTORY;
94         $settings{CONFIGURE_CACHE_FILE} = CONFIGURE_CACHE_FILE;
95         $settings{SYSTEM_NAME} = lc $^O;
96
97         return %settings;
98 }
99
100 sub __test_compiler($) {
101         my $compiler = shift;
102         return 0 unless run_test("`$compiler`", !system "$compiler -v ${\CONFIGURE_ERROR_PIPE}");
103         return 0 unless run_test("`$compiler`", test_file($compiler, 'compiler.cpp', '-fno-rtti'), 'compatible');
104         return 1;
105 }
106
107 sub cmd_clean {
108         unlink CONFIGURE_CACHE_FILE;
109 }
110
111 sub cmd_help {
112         my $SELIST = join ', ', __get_socketengines();
113         print <<EOH;
114 Usage: $0 [options]
115
116 When no options are specified, configure runs in interactive mode and you must
117 specify any required values manually. If one or more options are specified,
118 non-interactive configuration is started and any omitted values are defaulted.
119
120 PATH OPTIONS
121
122   --system                      Automatically set up the installation paths
123                                 for system-wide installation.
124   --prefix=[dir]                The root install directory. If this is set then
125                                 all subdirectories will be adjusted accordingly.
126                                 [${\CONFIGURE_ROOT}/run]
127   --binary-dir=[dir]            The location where the main server binary is
128                                 stored.
129                                 [${\CONFIGURE_ROOT}/run/bin]
130   --config-dir=[dir]            The location where the configuration files and
131                                 SSL certificates are stored.
132                                 [${\CONFIGURE_ROOT}/run/conf]
133   --data-dir=[dir]              The location where the data files, such as the
134                                 pid file, are stored.
135                                 [${\CONFIGURE_ROOT}/run/data]
136   --example-dir=[dir]           The location where the example configuration files
137                                 and SQL schemas are stored.
138                                 [${\CONFIGURE_ROOT}/run/conf/examples]
139   --log-dir=[dir]               The location where the log files are stored.
140                                 [${\CONFIGURE_ROOT}/run/logs]
141   --manual-dir=[dir]            The location where the manual files are stored.
142                                 [${\CONFIGURE_ROOT}/run/manuals]
143   --module-dir=[dir]            The location where the loadable modules are
144                                 stored.
145                                 [${\CONFIGURE_ROOT}/run/modules]
146   --script-dir=[dir]            The location where the scripts, such as the
147                                 init scripts, are stored.
148                                 [${\CONFIGURE_ROOT}/run]
149
150 EXTRA MODULE OPTIONS
151
152   --enable-extras=[extras]      Enables a comma separated list of extra modules.
153   --disable-extras=[extras]     Disables a comma separated list of extra modules.
154   --list-extras                 Shows the availability status of all extra
155                                 modules.
156
157 MISC OPTIONS
158
159   --clean                       Remove the configuration cache file and start
160                                 the interactive configuration wizard.
161   --disable-auto-extras         Disables automatically enabling extra modules
162                                 for which the dependencies are available.
163   --disable-interactive         Disables the interactive configuration wizard.
164   --distribution-label=[text]   Sets a distribution specific version label in
165                                 the build configuration.
166   --gid=[id|name]               Sets the group to run InspIRCd as.
167   --help                        Show this message and exit.
168   --socketengine=[name]         Sets the socket engine to be used. Possible
169                                 values are $SELIST.
170   --uid=[id|name]               Sets the user to run InspIRCd as.
171   --update                      Updates the build environment with the settings
172                                 from the cache.
173
174
175 FLAGS
176
177   CXX=[name]                    Sets the C++ compiler to use when building the
178                                 server. If not specified then the build system
179                                 will search for c++, g++, clang++ or icpc.
180
181 If you have any problems with configuring InspIRCd then visit our IRC channel
182 at irc.inspircd.org #InspIRCd or create a support discussion at
183 https://github.com/inspircd/inspircd/discussions.
184
185 Packagers: see https://docs.inspircd.org/packaging/ for packaging advice.
186 EOH
187         exit 0;
188 }
189
190 sub cmd_update {
191         print_error "You have not run $0 before. Please do this before trying to update the generated files." unless -f CONFIGURE_CACHE_FILE;
192         say 'Updating...';
193         my %config = read_config_file(CONFIGURE_CACHE_FILE);
194         my %compiler = get_compiler_info($config{CXX});
195         my %version = get_version $config{DISTRIBUTION};
196         parse_templates(\%config, \%compiler, \%version);
197         say 'Update complete!';
198         exit 0;
199 }
200
201 sub run_test($$;$) {
202         my ($what, $result, $adjective) = @_;
203         $adjective //= 'available';
204         print_format "Checking whether <|GREEN $what|> is $adjective ... ";
205         print_format $result ? "<|GREEN yes|>\n" : "<|RED no|>\n";
206         return $result;
207 }
208
209 sub test_file($$;$) {
210         my ($compiler, $file, $args) = @_;
211         my $status = 0;
212         $args //= '';
213         $status ||= system "$compiler -o ${\CONFIGURE_ROOT}/__test_$file ${\CONFIGURE_ROOT}/make/test/$file $args ${\CONFIGURE_ERROR_PIPE}";
214         $status ||= system "${\CONFIGURE_ROOT}/__test_$file ${\CONFIGURE_ERROR_PIPE}";
215         unlink "${\CONFIGURE_ROOT}/__test_$file";
216         return !$status;
217 }
218
219 sub test_header($$;$) {
220         my ($compiler, $header, $args) = @_;
221         $args //= '';
222         open(my $fh, "| $compiler -E - $args ${\CONFIGURE_ERROR_PIPE}") or return 0;
223         print $fh "#include <$header>";
224         close $fh;
225         return !$?;
226 }
227
228 sub module_expand($) {
229         my $module = shift;
230         $module = "m_$module" unless $module =~ /^(?:m|core)_/;
231         $module = "$module.cpp" unless $module =~ /\.cpp$/;
232         return $module;
233 }
234
235 sub module_shrink($) {
236         my $module = basename shift;
237         return $module =~ s/(?:^m_|\.cpp$)//gr;
238 }
239
240 sub write_configure_cache(%) {
241         unless (-e CONFIGURE_DIRECTORY) {
242                 print_format "Creating <|GREEN ${\abs2rel CONFIGURE_DIRECTORY, CONFIGURE_ROOT}|> ...\n";
243                 create_directory CONFIGURE_DIRECTORY, 0750 or print_error "unable to create ${\CONFIGURE_DIRECTORY}: $!";
244         }
245
246         print_format "Writing <|GREEN ${\abs2rel CONFIGURE_CACHE_FILE, CONFIGURE_ROOT}|> ...\n";
247         my %config = @_;
248         write_config_file CONFIGURE_CACHE_FILE, %config;
249 }
250
251 sub get_compiler_info($) {
252         my $binary = shift;
253         my %info = (NAME => 'Unknown', VERSION => '0.0');
254         return %info if system "$binary -o __compiler_info ${\CONFIGURE_ROOT}/make/test/compiler_info.cpp ${\CONFIGURE_ERROR_PIPE}";
255         open(my $fh, '-|', './__compiler_info 2>/dev/null');
256         while (my $line = <$fh>) {
257                 $info{$1} = $2 if $line =~ /^([A-Z]+)\s(.+)$/;
258         }
259         close $fh;
260         unlink './__compiler_info';
261         return %info;
262 }
263
264 sub find_compiler {
265         my @compilers = qw(c++ g++ clang++ icpc);
266         foreach my $compiler (shift // @compilers) {
267                 return $compiler if __test_compiler $compiler;
268                 return "xcrun $compiler" if $^O eq 'darwin' && __test_compiler "xcrun $compiler";
269         }
270 }
271
272 sub parse_templates($$$) {
273
274         # These are actually hash references
275         my ($config, $compiler, $version) = @_;
276
277         # Collect settings to be used when generating files
278         my %settings = __get_template_settings($config, $compiler, $version);
279
280         # Iterate through files in make/template.
281         foreach my $template (<${\CONFIGURE_ROOT}/make/template/*>) {
282                 print_format "Parsing <|GREEN ${\abs2rel $template, CONFIGURE_ROOT}|> ...\n";
283                 open(my $fh, $template) or print_error "unable to read $template: $!";
284                 my (@lines, $mode, @platforms, @targets);
285
286                 # First pass: parse template variables and directives.
287                 while (my $line = <$fh>) {
288                         chomp $line;
289
290                         # Does this line match a variable?
291                         while ($line =~ /(@(\w+?)(?:\|(\w*))?@)/) {
292                                 my ($variable, $name, $default) = ($1, $2, $3);
293                                 if (defined $settings{$name}) {
294                                         $line =~ s/\Q$variable\E/$settings{$name}/;
295                                 } elsif (defined $default) {
296                                         $line =~ s/\Q$variable\E/$default/;
297                                 } else {
298                                         print_warning "unknown template variable '$name' in $template!";
299                                         last;
300                                 }
301                         }
302
303                         # Does this line match a directive?
304                         if ($line =~ /^(\s*)%(\w+)\s+(.+)$/) {
305                                 if ($2 eq 'define') {
306                                         if ($settings{$3}) {
307                                                 push @lines, "#$1define $3";
308                                         } else {
309                                                 push @lines, "#$1undef $3";
310                                         }
311                                 } elsif ($2 eq 'mode') {
312                                         $mode = oct $3;
313                                 } elsif ($2 eq 'platform') {
314                                         push @platforms, $3;
315                                 } elsif ($2 eq 'target') {
316                                         push @targets, catfile CONFIGURE_ROOT, $3;
317                                 } else {
318                                         print_warning "unknown template command '$2' in $template!";
319                                         push @lines, $line;
320                                 }
321                                 next;
322                         }
323                         push @lines, $line;
324                 }
325                 close $fh;
326
327                 # Only proceed if this file should be templated on this platform.
328                 if ($#platforms < 0 || grep { $_ eq $^O } @platforms) {
329
330                         # Add a default target if the template has not defined one.
331                         unless (@targets) {
332                                 push @targets, catfile(CONFIGURE_DIRECTORY, basename $template);
333                         }
334
335                         # Write the templated files to disk.
336                         for my $target (@targets) {
337
338                                 # Create the directory if it doesn't already exist.
339                                 my $directory = dirname $target;
340                                 unless (-e $directory) {
341                                         print_format "Creating <|GREEN ${\abs2rel $directory, CONFIGURE_ROOT}|> ...\n";
342                                         create_directory $directory, 0750 or print_error "unable to create $directory: $!";
343                                 };
344
345                                 # Write the template file.
346                                 print_format "Writing <|GREEN ${\abs2rel $target, CONFIGURE_ROOT}|> ...\n";
347                                 open(my $fh, '>', $target) or print_error "unable to write $target: $!";
348                                 foreach (@lines) {
349                                         say $fh $_;
350                                 }
351                                 close $fh;
352
353                                 # Set file permissions.
354                                 if (defined $mode) {
355                                         chmod $mode, $target;
356                                 }
357                         }
358                 }
359         }
360 }
361
362 1;