]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - make/common.pm
Merge pull request #1159 from SaberUK/master+configure
[user/henk/code/inspircd.git] / make / common.pm
1 #
2 # InspIRCd -- Internet Relay Chat Daemon
3 #
4 #   Copyright (C) 2013-2014 Peter Powell <petpow@saberuk.com>
5 #
6 # This file is part of InspIRCd.  InspIRCd is free software: you can
7 # redistribute it and/or modify it under the terms of the GNU General Public
8 # License as published by the Free Software Foundation, version 2.
9 #
10 # This program is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13 # details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 #
18
19
20 BEGIN {
21         require 5.10.0;
22 }
23
24 package make::common;
25
26 use feature ':5.10';
27 use strict;
28 use warnings FATAL => qw(all);
29
30 use Exporter              qw(import);
31 use File::Path            qw(mkpath);
32 use File::Spec::Functions qw(rel2abs);
33
34 our @EXPORT = qw(create_directory
35                  get_cpu_count
36                  get_version
37                  module_installed);
38
39 sub create_directory($$) {
40         my ($location, $permissions) = @_;
41         return eval {
42                 mkpath($location, 0, $permissions);
43                 return 1;
44         } // 0;
45 }
46
47 sub get_version {
48         state %version;
49         return %version if %version;
50
51         # Attempt to retrieve version information from src/version.sh
52         chomp(my $vf = `sh src/version.sh 2>/dev/null`);
53         if ($vf =~ /^InspIRCd-([0-9]+)\.([0-9]+)\.([0-9]+)(?:\+(\w+))?$/) {
54                 %version = ( MAJOR => $1, MINOR => $2, PATCH => $3, LABEL => $4 );
55         }
56
57         # Attempt to retrieve missing version information from Git
58         chomp(my $gr = `git describe --tags 2>/dev/null`);
59         if ($gr =~ /^v([0-9]+)\.([0-9]+)\.([0-9]+)(?:-\d+-g(\w+))?$/) {
60                 $version{MAJOR} //= $1;
61                 $version{MINOR} //= $2;
62                 $version{PATCH} //= $3;
63                 $version{LABEL} = $4 if defined $4;
64         }
65
66         # The user is using a stable release which does not have
67         # a label attached.
68         $version{LABEL} //= 'release';
69
70         # If any of these fields are missing then the user has deleted the
71         # version file and is not running from Git. Fill in the fields with
72         # dummy data so we don't get into trouble with undef values later.
73         $version{MAJOR} //= '0';
74         $version{MINOR} //= '0';
75         $version{PATCH} //= '0';
76
77         return %version;
78 }
79
80 sub module_installed($) {
81         my $module = shift;
82         eval("use $module;");
83         return !$@;
84 }
85
86 sub get_cpu_count {
87         my $count = 1;
88         if ($^O =~ /bsd/) {
89                 $count = `sysctl -n hw.ncpu 2>/dev/null` || 1;
90         } elsif ($^O eq 'darwin') {
91                 $count = `sysctl -n hw.activecpu 2>/dev/null` || 1;
92         } elsif ($^O eq 'linux') {
93                 $count = `getconf _NPROCESSORS_ONLN 2>/dev/null` || 1;
94         } elsif ($^O eq 'solaris') {
95                 $count = `psrinfo -p 2>/dev/null` || 1;
96         }
97         chomp($count);
98         return $count;
99 }
100
101 1;