debug and include_dirs integration between dbicadmin and DBIx::Class::Admin
[dbsrgits/DBIx-Class.git] / script / dbicadmin
CommitLineData
9274250d 1#!/usr/bin/perl
a705b175 2
a94aa524 3use strict;
4use warnings;
5
a4a02f15 6BEGIN {
7 use DBIx::Class;
3abee566 8 die ( 'The following modules are required for the dbicadmin utility: '
a4a02f15 9 . DBIx::Class::Optional::Dependencies->req_missing_for ('admin_script')
3abee566 10 . "\n"
a4a02f15 11 ) unless DBIx::Class::Optional::Dependencies->req_ok_for ('admin_script');
12}
13
e5279977 14use DBIx::Class::Admin::Descriptive;
15#use Getopt::Long::Descriptive;
fd27648a 16use DBIx::Class::Admin;
17
e5279977 18my $short_description = "utility for administrating DBIx::Class schemata";
82b08554 19my $synopsis_text =q|
e5279977 20 deploy a schema to a database
21 %c --schema=MyApp::Schema \
22 --connect='["dbi:SQLite:my.db", "", ""]' \
23 --deploy
24
25 update an existing record
26 %c --schema=MyApp::Schema --class=Employee \
27 --connect='["dbi:SQLite:my.db", "", ""]' \
28 --op=update --set='{ "name": "New_Employee" }'
82b08554 29|;
e5279977 30
fd27648a 31my ($opts, $usage) = describe_options(
e5279977 32 "%c: %o",
a705b175 33 (
34 ['Actions'],
35 ["action" => hidden => { one_of => [
19a59b9e 36 ['create' => 'Create version diffs needs preversion',],
37 ['upgrade' => 'Upgrade the database to the current schema '],
38 ['install' => 'Install the schema version tables to an existing database',],
39 ['deploy' => 'Deploy the schema to the database',],
40 ['select' => 'Select data from the schema', ],
41 ['insert' => 'Insert data into the schema', ],
b13aab4f 42 ['update' => 'Update data in the schema', ],
19a59b9e 43 ['delete' => 'Delete data from the schema',],
a705b175 44 ['op:s' => 'compatiblity option all of the above can be suppied as --op=<action>'],
19a59b9e 45 ['help' => 'display this help', { implies => { schema_class => '__dummy__' } } ],
7d6f6a6e 46 ['selfinject-pod' => 'hidden', { implies => { schema_class => '__dummy__' } } ],
a705b175 47 ], required=> 1 }],
d26b9726 48 ['Arguments'],
19a59b9e 49 ['schema-class:s' => 'The class of the schema to load', { required => 1 } ],
50 ['resultset|resultset-class|class:s' => 'The resultset to operate on for data manipulation' ],
51 ['config-stanza:s' => 'Where in the config to find the connection_info, supply in form MyApp::Model::DB',],
52 ['config:s' => 'Supply the config file for parsing by Config::Any', { depends => 'config_stanza'} ],
53 ['connect-info:s%' => 'Supply the connect info as additonal options ie -I dsn=<dsn> user=<user> password=<pass> '],
a705b175 54 ['connect:s' => 'Supply the connect info as a json string' ],
19a59b9e 55 ['sql-dir:s' => 'The directory where sql diffs will be created'],
56 ['sql-type:s' => 'The RDBMs flavour you wish to use'],
57 ['version:i' => 'Supply a version install'],
58 ['preversion:s' => 'The previous version to diff against',],
a705b175 59 ['set:s' => 'JSON data used to perform data operations' ],
a705b175 60 ['attrs:s' => 'JSON string to be used for the second argument for search'],
61 ['where:s' => 'JSON string to be used for the where clause of search'],
62 ['force' => 'Be forceful with some operations'],
63 ['trace' => 'Turn on DBIx::Class trace output'],
a705b175 64 ['quiet' => 'Be less verbose'],
4e2873b1 65 ['debug' => 'Print debug information'],
66 ['I:s@' => 'Same as perl\'s -I'],
a705b175 67 )
2bbc85c9 68);
a94aa524 69
ad81fe7d 70die "please only use one of --config or --connect-info\n" if ($opts->{config} and $opts->{connect_info});
a94aa524 71
7d6f6a6e 72if($opts->{selfinject_pod}) {
a2a769ba 73
74 die "This is an internal method, do not call!!!\n"
75 unless $ENV{MAKELEVEL};
76
e5279977 77 $usage->synopsis($synopsis_text);
78 $usage->short_description($short_description);
7d6f6a6e 79 exec (
80 $^X,
81 qw/-p -0777 -i -e/,
82 (
83 's/^# auto_pod_begin.*^# auto_pod_end/'
84 . quotemeta($usage->pod)
85 . '/ms'
86 ),
87 __FILE__
88 );
e5279977 89}
90
4e2873b1 91if($opts->{i}) {
92 $opts->{include_dirs} = delete $opts->{i};
b13aab4f 93}
94
e5279977 95if($opts->{help}) {
96 $usage->die();
97}
98
fd27648a 99# option compatability mangle
100if($opts->{connect}) {
a705b175 101 $opts->{connect_info} = delete $opts->{connect};
b04e5d3e 102}
fd27648a 103my $admin = DBIx::Class::Admin->new( %$opts );
104
fd27648a 105my $action = $opts->{action};
c57f1cf7 106
107$action = $opts->{op} if ($action eq 'op');
fd27648a 108
b13aab4f 109print "Performing action $action...\n";
ad81fe7d 110
111my $res = $admin->$action();
fd27648a 112if ($action eq 'select') {
113
a705b175 114 my $format = $opts->{format} || 'tsv';
115 die('Invalid format') if ($format!~/^tsv|csv$/s);
a705b175 116
ad81fe7d 117 require Text::CSV;
118
119 my $csv = Text::CSV->new({
120 sep_char => ( $format eq 'tsv' ? "\t" : ',' ),
121 });
122
a705b175 123 foreach my $row (@$res) {
124 $csv->combine( @$row );
125 print $csv->string()."\n";
126 }
a94aa524 127}
e5279977 128
e5279977 129
7d6f6a6e 130__END__
131
132# auto_pod_begin
6f720a19 133#
7d6f6a6e 134# This will be replaced by the actual pod when selfinject-pod is invoked
6f720a19 135#
7d6f6a6e 136# auto_pod_end
e5279977 137
138# vim: et ft=perl