/usr/bin/dbicadmin is in libdbix-class-perl 0.08250-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 | #!/usr/bin/env perl
use strict;
use warnings;
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",
(
['Actions'],
["action" => hidden => { one_of => [
['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=<action>'],
['help' => 'display this help', { implies => { schema_class => '__dummy__' } } ],
['documentation-as-pod:s' => '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=<dsn> user=<user> password=<pass>' ],
['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' ],
['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(defined (my $fn = $opts->{documentation_as_pod}) ) {
$usage->synopsis($synopsis_text);
$usage->short_description($short_description);
if ($fn) {
require File::Spec;
require File::Path;
my $dir = File::Spec->catpath( (File::Spec->splitpath($fn))[0,1] );
File::Path::mkpath([$dir]);
}
local *STDOUT if $fn;
open (STDOUT, '>', $fn) or die "Unable to open $fn: $!\n" if $fn;
print STDOUT "\n";
print STDOUT $usage->pod;
print STDOUT "\n";
close STDOUT if $fn;
exit 0;
}
# FIXME - lowercasing will eventually go away when Getopt::Long::Descriptive is fixed
if($opts->{i}) {
require lib;
lib->import( @{delete $opts->{i}} );
}
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');
print "Performing action $action...\n";
my $res = $admin->$action();
if ($action eq 'select') {
my $format = $opts->{format} || 'tsv';
die('Invalid format') if ($format!~/^tsv|csv$/s);
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";
}
}
1;
__END__
=head1 NAME
dbicadmin - utility for administrating DBIx::Class schemata
=head1 SYNOPSIS
dbicadmin: [-I] [long options...]
deploy a schema to a database
dbicadmin --schema=MyApp::Schema \
--connect='["dbi:SQLite:my.db", "", ""]' \
--deploy
update an existing record
dbicadmin --schema=MyApp::Schema --class=Employee \
--connect='["dbi:SQLite:my.db", "", ""]' \
--op=update --set='{ "name": "New_Employee" }'
=head1 OPTIONS
=over
=back
=head2 Actions
=cut
=over
=item B<--create>
Create version diffs needs preversion
=cut
=item B<--upgrade>
Upgrade the database to the current schema
=cut
=item B<--install>
Install the schema version tables to an existing database
=cut
=item B<--deploy>
Deploy the schema to the database
=cut
=item B<--select>
Select data from the schema
=cut
=item B<--insert>
Insert data into the schema
=cut
=item B<--update>
Update data in the schema
=cut
=item B<--delete>
Delete data from the schema
=cut
=item B<--op>
compatiblity option all of the above can be suppied as --op=<action>
=cut
=item B<--help>
display this help
=cut
=back
=head2 Arguments
=cut
=over
=item B<--config-file> or B<--config>
Supply the config file for parsing by Config::Any
=cut
=item B<--connect-info>
Supply the connect info as trailing options e.g. --connect-info dsn=<dsn> user=<user> password=<pass>
=cut
=item B<--connect>
Supply the connect info as a JSON-encoded structure, e.g. an --connect=["dsn","user","pass"]
=cut
=item B<--schema-class>
The class of the schema to load
=cut
=item B<--config-stanza>
Where in the config to find the connection_info, supply in form MyApp::Model::DB
=cut
=item B<--resultset> or B<--resultset-class> or B<--class>
The resultset to operate on for data manipulation
=cut
=item B<--sql-dir>
The directory where sql diffs will be created
=cut
=item B<--sql-type>
The RDBMs flavour you wish to use
=cut
=item B<--version>
Supply a version install
=cut
=item B<--preversion>
The previous version to diff against
=cut
=item B<--set>
JSON data used to perform data operations
=cut
=item B<--attrs>
JSON string to be used for the second argument for search
=cut
=item B<--where>
JSON string to be used for the where clause of search
=cut
=item B<--force>
Be forceful with some operations
=cut
=item B<--trace>
Turn on DBIx::Class trace output
=cut
=item B<--quiet>
Be less verbose
=cut
=item B<-I>
Same as perl's -I, prepended to current @INC
=cut
=back
=head1 AUTHORS
See L<DBIx::Class/CONTRIBUTORS>
=head1 LICENSE
You may distribute this code under the same terms as Perl itself
=cut
|