Switch Admin/dbicadmin to Opt::Deps
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Optional / Dependencies.pm
CommitLineData
8057ed01 1package DBIx::Class::Optional::Dependencies;
2
3use warnings;
4use strict;
5
fb39747c 6use Carp;
7
8# NO EXTERNAL NON-5.8.1 CORE DEPENDENCIES EVER (e.g. C::A::G)
8057ed01 9# This module is to be loaded by Makefile.PM on a pristine system
10
f6b26571 11# POD is generated automatically by calling _gen_pod from the
12# Makefile.PL in $AUTHOR mode
13
2b48ebff 14my $moose_basic = {
15 'Moose' => '0.98',
16 'MooseX::Types' => '0.21',
17};
18
ebcd0e4f 19my $admin_basic = {
20 %$moose_basic,
21 'MooseX::Types::Path::Class' => '0.05',
22 'MooseX::Types::JSON' => '0.02',
23 'namespace::autoclean' => '0.09',
24 'parent' => '0.223',
25};
26
8057ed01 27my $reqs = {
28 dist => {
29 #'Module::Install::Pod::Inherit' => '0.01',
30 },
31
32 replicated => {
f6b26571 33 req => {
2b48ebff 34 %$moose_basic,
f6b26571 35 'namespace::clean' => '0.11',
36 'Hash::Merge' => '0.11',
37 },
38 pod => {
39 title => 'Storage::Replicated',
40 desc => 'Modules required for L<DBIx::Class::Storage::DBI::Replicated>',
41 },
8057ed01 42 },
43
44 admin => {
2b48ebff 45 req => {
ebcd0e4f 46 %$admin_basic,
47 },
48 pod => {
49 title => 'DBIx::Class::Admin',
50 desc => 'Modules required for the DBIx::Class administrative library',
51 },
52 },
53
a4a02f15 54 admin_script => {
ebcd0e4f 55 req => {
2b48ebff 56 %$moose_basic,
ebcd0e4f 57 %$admin_basic,
2b48ebff 58 'Getopt::Long::Descriptive' => '0.081',
59 'JSON::Any' => '1.22',
60 'Text::CSV' => '1.16',
61 },
e144415f 62 pod => {
63 title => 'dbicadmin',
64 desc => 'Modules required for the CLI DBIx::Class interface dbicadmin',
65 },
8057ed01 66 },
67
68 deploy => {
f6b26571 69 req => {
70 'SQL::Translator' => '0.11002',
71 },
72 pod => {
73 title => 'Storage::DBI::deploy()',
74 desc => 'Modules required for L<DBIx::Class::Storage::DBI/deploy> and L<DBIx::Class::Storage::DBI/deploymen_statements>',
75 },
8057ed01 76 },
77
78 author => {
f6b26571 79 req => {
80 'Test::Pod' => '1.26',
81 'Test::Pod::Coverage' => '1.08',
82 'Pod::Coverage' => '0.20',
83 #'Test::NoTabs' => '0.9',
84 #'Test::EOL' => '0.6',
85 },
8057ed01 86 },
87
88 core => {
f6b26571 89 req => {
90 # t/52cycle.t
91 'Test::Memory::Cycle' => '0',
92 'Devel::Cycle' => '1.10',
93
94 # t/36datetime.t
95 # t/60core.t
96 'DateTime::Format::SQLite' => '0',
97
98 # t/96_is_deteministic_value.t
99 'DateTime::Format::Strptime'=> '0',
100 },
8057ed01 101 },
102
103 cdbicompat => {
f6b26571 104 req => {
105 'DBIx::ContextualFetch' => '0',
106 'Class::DBI::Plugin::DeepAbstractSearch' => '0',
107 'Class::Trigger' => '0',
108 'Time::Piece::MySQL' => '0',
109 'Clone' => '0',
110 'Date::Simple' => '3.03',
111 },
8057ed01 112 },
113
114 rdbms_pg => {
f6b26571 115 req => {
116 $ENV{DBICTEST_PG_DSN}
117 ? (
118 'Sys::SigAction' => '0',
119 'DBD::Pg' => '2.009002',
120 'DateTime::Format::Pg' => '0',
121 ) : ()
122 },
8057ed01 123 },
124
125 rdbms_mysql => {
f6b26571 126 req => {
127 $ENV{DBICTEST_MYSQL_DSN}
128 ? (
129 'DateTime::Format::MySQL' => '0',
130 'DBD::mysql' => '0',
131 ) : ()
132 },
8057ed01 133 },
134
135 rdbms_oracle => {
f6b26571 136 req => {
137 $ENV{DBICTEST_ORA_DSN}
138 ? (
139 'DateTime::Format::Oracle' => '0',
140 ) : ()
141 },
8057ed01 142 },
143
144 rdbms_ase => {
f6b26571 145 req => {
146 $ENV{DBICTEST_SYBASE_DSN}
147 ? (
148 'DateTime::Format::Sybase' => 0,
149 ) : ()
150 },
8057ed01 151 },
152
153 rdbms_asa => {
f6b26571 154 req => {
155 grep $_, @ENV{qw/DBICTEST_SYBASE_ASA_DSN DBICTEST_SYBASE_ASA_ODBC_DSN/}
156 ? (
157 'DateTime::Format::Strptime' => 0,
158 ) : ()
159 },
8057ed01 160 },
161};
162
f6b26571 163
0d4740b3 164sub _all_optional_requirements {
f6b26571 165 return { map { %{ $reqs->{$_}{req} || {} } } (keys %$reqs) };
8057ed01 166}
167
fb39747c 168sub req_list_for {
169 my ($class, $group) = @_;
170
f6b26571 171 croak "req_list_for() expects a requirement group name"
fb39747c 172 unless $group;
173
f6b26571 174 my $deps = $reqs->{$group}{req}
175 or croak "Requirement group '$group' does not exist";
fb39747c 176
177 return { %$deps };
178}
179
180
181our %req_availability_cache;
182sub req_ok_for {
183 my ($class, $group) = @_;
184
185 croak "req_ok_for() expects a requirement group name"
186 unless $group;
187
188 $class->_check_deps ($group) unless $req_availability_cache{$group};
189
190 return $req_availability_cache{$group}{status};
191}
192
193sub req_missing_for {
194 my ($class, $group) = @_;
195
196 croak "req_missing_for() expects a requirement group name"
197 unless $group;
198
199 $class->_check_deps ($group) unless $req_availability_cache{$group};
200
201 return $req_availability_cache{$group}{missing};
202}
203
204sub req_errorlist_for {
205 my ($class, $group) = @_;
206
207 croak "req_errorlist_for() expects a requirement group name"
208 unless $group;
209
210 $class->_check_deps ($group) unless $req_availability_cache{$group};
211
212 return $req_availability_cache{$group}{errorlist};
213}
214
215sub _check_deps {
216 my ($class, $group) = @_;
217
f6b26571 218 my $deps = $class->req_list_for ($group);
fb39747c 219
220 my %errors;
221 for my $mod (keys %$deps) {
222 if (my $ver = $deps->{$mod}) {
223 eval "use $mod $ver ()";
224 }
225 else {
226 eval "require $mod";
227 }
228
229 $errors{$mod} = $@ if $@;
230 }
231
232 if (keys %errors) {
f6b26571 233 my $missing = join (', ', map { $deps->{$_} ? "$_ >= $deps->{$_}" : $_ } (sort keys %errors) );
234 $missing .= " (see $class for details)" if $reqs->{$group}{pod};
fb39747c 235 $req_availability_cache{$group} = {
236 status => 0,
237 errorlist => { %errors },
f6b26571 238 missing => $missing,
fb39747c 239 };
240 }
241 else {
242 $req_availability_cache{$group} = {
243 status => 1,
244 errorlist => {},
245 missing => '',
246 };
247 }
248}
249
f6b26571 250sub _gen_pod {
251 my $class = shift;
252
253 my @chunks = (
254 '=head1 NAME',
255 "$class - Optional module dependency specifications",
256 '=head1 DESCRIPTION',
257 <<'EOD',
258Some of the less-frequently used features of L<DBIx::Class> have external
259module dependencies on their own. In order not to burden the average user
260with modules he will never use, these optional dependencies are not included
261in the base Makefile.PL. Instead an exception with a descriptive message is
262thrown when a specific feature is missing one or several modules required for
263its operation. This module is the central holding place for the current list
264of such dependencies.
265EOD
266 '=head1 CURRENT REQUIREMENT GROUPS',
267 <<'EOD',
268Dependencies are organized in C<groups> and each group can list one or more
269required modules, with an optional minimum version (or 0 for any version).
270The group name can be used in the
271EOD
272 );
273
274 for my $group (sort keys %$reqs) {
275 my $p = $reqs->{$group}{pod}
276 or next;
277
278 my $modlist = $reqs->{$group}{req}
279 or next;
280
281 next unless keys %$modlist;
282
283 push @chunks, (
284 "=head2 $p->{title}",
285 "$p->{desc}",
286 '=over',
287 ( map { "=item * $_" . ($modlist->{$_} ? " >= $modlist->{$_}" : '') } (sort keys %$modlist) ),
288 '=back',
289 "Requirement group: B<$group>",
290 );
291 }
292
293 push @chunks, (
294 '=head1 METHODS',
295 '=head2 req_list_for',
296 '=over',
297 '=item Arguments: $group_name',
298 '=item Returns: \%list_of_module_version_pairs',
299 '=back',
300 <<EOD,
301This method should be used by DBIx::Class extension authors, to determine the
302version of modules which a specific feature requires in the current version of
303DBIx::Class. For example if you write a module/extension that requires
304DBIx::Class and also requires the availability of
305L<DBIx::Class::Storage::DBI/deploy>, you can do the following in your
306C<Makefile.PL> or C<Build.PL>
307
308 require $class;
309 my \$dep_list = $class->req_list_for ('deploy');
310
311Which will give you a list of module/version pairs necessary for the particular
312feature to function with this version of DBIx::Class.
313EOD
314
315 '=head2 req_ok_for',
316 '=over',
317 '=item Arguments: $group_name',
318 '=item Returns: 1|0',
319 '=back',
320 'Returns true or false depending on whether all modules required by $group_name are present on the system and loadable',
321
322 '=head2 req_missing_for',
323 '=over',
324 '=item Arguments: $group_name',
325 '=item Returns: $error_message_string',
326 '=back',
327 <<EOD,
328Returns a single line string suitable for inclusion in larger error messages.
329This method would normally be used by DBIx::Class core-module author, to
330indicate to the user that he needs to install specific modules before he will
331be able to use a specific feature.
332
333For example if the requirements for C<replicated> are not available, the
334returned string would look like:
335
336 Moose >= 0.98, MooseX::Types >= 0.21, namespace::clean (see $class for details)
337
338The author is expected to prepend the necessary text to this message before
339returning the actual error seen by the user.
340EOD
341
342 '=head2 req_errorlist_for',
343 '=over',
344 '=item Arguments: $group_name',
345 '=item Returns: \%list_of_loaderrors_per_module',
346 '=back',
347 <<'EOD',
348Returns a hashref containing the actual errors that occured while attempting
349to load each module in the requirement group.
350EOD
351
352 );
353
354 my $fn = __FILE__;
355 $fn =~ s/\.pm$/\.pod/;
356
357 open (my $fh, '>', $fn) or croak "Unable to write to $fn: $!";
358 print $fh join ("\n\n", @chunks);
359 close ($fh);
360}
361
8057ed01 3621;