X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=script%2Fdbicadmin;h=60124e4b6e59f06489c5d82ca15229233b866911;hb=7e1ca6dd06c5e53e7afa3433da0f59e41ce791e8;hp=38caf6d1b533b56899f8d5cde7252cf4741d9183;hpb=71ef99d5005601cf1c000b3183d945f79af2d30d;p=dbsrgits%2FDBIx-Class.git diff --git a/script/dbicadmin b/script/dbicadmin index 38caf6d..60124e4 100755 --- a/script/dbicadmin +++ b/script/dbicadmin @@ -1,86 +1,128 @@ -#!/usr/bin/perl +#!/usr/bin/env perl use strict; use warnings; -use Getopt::Long::Descriptive; +BEGIN { + use DBIx::Class; + die ( 'The following modules are required for the dbicadmin utility: ' + . DBIx::Class::Optional::Dependencies->req_missing_for ('admin_script') + . "\n" + ) unless DBIx::Class::Optional::Dependencies->req_ok_for ('admin_script'); +} + +use DBIx::Class::Admin::Descriptive; +#use Getopt::Long::Descriptive; use DBIx::Class::Admin; +my $short_description = "utility for administrating DBIx::Class schemata"; +my $synopsis_text =q| + deploy a schema to a database + %c --schema=MyApp::Schema \ + --connect='["dbi:SQLite:my.db", "", ""]' \ + --deploy + + update an existing record + %c --schema=MyApp::Schema --class=Employee \ + --connect='["dbi:SQLite:my.db", "", ""]' \ + --op=update --set='{ "name": "New_Employee" }' +|; + my ($opts, $usage) = describe_options( - "%c: %o", + "%c: %o", ( ['Actions'], ["action" => hidden => { one_of => [ - ['create|c' => 'Create version diffs needs preversion',], - ['upgrade|u' => 'Upgrade the database to the current schema '], - ['install|i' => 'Install the schema to the database',], - ['deploy|d' => 'Deploy the schema to the database',], - ['select|s' => 'Select data from the schema', ], - ['insert|i' => 'Insert data into the schema', ], - ['update|u' => 'Update data in the schema', ], - ['delete|D' => 'Delete data from the schema',], + ['create' => 'Create version diffs needs preversion'], + ['upgrade' => 'Upgrade the database to the current schema'], + ['install' => 'Install the schema version tables to an existing database'], + ['deploy' => 'Deploy the schema to the database'], + ['select' => 'Select data from the schema'], + ['insert' => 'Insert data into the schema'], + ['update' => 'Update data in the schema'], + ['delete' => 'Delete data from the schema'], ['op:s' => 'compatiblity option all of the above can be suppied as --op='], - ['help|h' => 'display this help'], - ], required=> 1 }], - ['Options'], - ['schema-class|schema|C:s' => 'The class of the schema to load', { required => 1 } ], - ['resultset|resultset_class|class|r:s' => 'The resultset to operate on for data manipulation' ], - ['config-stanza|S:s' => 'Where in the config to find the connection_info, supply in form MyApp::Model::DB',], - ['config|f:s' => 'Supply the config file for parsing by Config::Any', { depends => 'config_stanza'} ], - ['connect-info|n:s%' => 'Supply the connect info as additonal options ie -I dsn= user= password= '], - ['connect:s' => 'Supply the connect info as a json string' ], - ['sql-dir|q:s' => 'The directory where sql diffs will be created'], - ['sql-type|t:s' => 'The RDBMs flavour you wish to use'], - ['version|v:i' => 'Supply a version install'], - ['preversion|p:s' => 'The previous version to diff against',], + ['help' => 'display this help', { implies => { schema_class => '__dummy__' } } ], + ['selfinject-pod' => 'hidden', { implies => { schema_class => '__dummy__' } } ], + ], required => 1 }], + ['Arguments'], + ["configuration" => hidden => { one_of => [ + ['config-file|config:s' => 'Supply the config file for parsing by Config::Any', { depends => 'config_stanza'} ], + ['connect-info:s%' => 'Supply the connect info as trailing options e.g. --connect-info dsn= user= password=' ], + ['connect:s' => 'Supply the connect info as a JSON-encoded structure, e.g. an --connect=["dsn","user","pass"]'], + ] }], + ['schema-class:s' => 'The class of the schema to load', { required => 1 } ], + ['config-stanza:s' => 'Where in the config to find the connection_info, supply in form MyApp::Model::DB',], + ['resultset|resultset-class|class:s' => 'The resultset to operate on for data manipulation' ], + ['sql-dir:s' => 'The directory where sql diffs will be created'], + ['sql-type:s' => 'The RDBMs flavour you wish to use'], + ['version:i' => 'Supply a version install'], + ['preversion:s' => 'The previous version to diff against',], ['set:s' => 'JSON data used to perform data operations' ], - ['lib|I:s' => 'Additonal library path to search in'], ['attrs:s' => 'JSON string to be used for the second argument for search'], ['where:s' => 'JSON string to be used for the where clause of search'], ['force' => 'Be forceful with some operations'], ['trace' => 'Turn on DBIx::Class trace output'], ['quiet' => 'Be less verbose'], + ['I:s@' => 'Same as perl\'s -I, prepended to current @INC'], ) ); +if($opts->{selfinject_pod}) { + + die "This is an internal method, do not call!!!\n" + unless $ENV{MAKELEVEL}; + + $usage->synopsis($synopsis_text); + $usage->short_description($short_description); + exec ( + $^X, + qw/-p -0777 -i -e/, + ( + 's/^# auto_pod_begin.*^# auto_pod_end/' + . quotemeta($usage->pod) + . '/ms' + ), + __FILE__ + ); +} -if ($opts->{help}) { - print $usage->text; - exit 0; +# FIXME - lowercasing will eventually go away when Getopt::Long::Descriptive is fixed +if($opts->{i}) { + require lib; + lib->import( @{delete $opts->{i}} ); } -die "please only use one of --config or --connect-info" if ($opts->{config} and $opts->{connect_info}); +if($opts->{help}) { + $usage->die(); +} # option compatability mangle +# (can not be joined in the spec, one is s% the other is s) if($opts->{connect}) { $opts->{connect_info} = delete $opts->{connect}; } my $admin = DBIx::Class::Admin->new( %$opts ); - my $action = $opts->{action}; $action = $opts->{op} if ($action eq 'op'); -my $res = $admin->$action(); -print "going to perform action $action\n"; +print "Performing action $action...\n"; + +my $res = $admin->$action(); if ($action eq 'select') { - my $csv_class; my $format = $opts->{format} || 'tsv'; die('Invalid format') if ($format!~/^tsv|csv$/s); - $csv_class = 'Text::CSV_XS'; - eval{ require Text::CSV_XS }; - if ($@) { - $csv_class = 'Text::CSV_PP'; - eval{ require Text::CSV_PP }; - die('The select op requires either the Text::CSV_XS or the Text::CSV_PP module') if ($@); - } - my $csv = $csv_class->new({ - sep_char => ( $format eq 'tsv' ? "\t" : ',' ), - }); + require Text::CSV; + + my $csv = Text::CSV->new({ + sep_char => ( $format eq 'tsv' ? "\t" : ',' ), + }); + foreach my $row (@$res) { $csv->combine( @$row ); print $csv->string()."\n"; @@ -88,14 +130,12 @@ if ($action eq 'select') { } +__END__ -=head1 AUTHOR - -Aran Deltac - -refactored by -Gordon Irving - -=head1 LICENSE +# auto_pod_begin +# +# This will be replaced by the actual pod when selfinject-pod is invoked +# +# auto_pod_end -You may distribute this code under the same terms as Perl itself. +# vim: et ft=perl