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 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586
|
use utf8;
use strict;
use warnings;
package DR::Tarantool::Spaces;
use Carp;
$Carp::Internal{ (__PACKAGE__) }++;
=head1 NAME
DR::Tarantool::Spaces - spaces container
=head1 SYNOPSIS
use DR::Tarantool::Spaces;
my $s = new DR::Tarantool::Spaces({
1 => {
name => 'users', # space name
default_type => 'STR', # undescribed fields
fields => [
qw(login password role),
{
name => 'counter',
type => 'NUM'
},
{
name => 'something',
type => 'UTF8STR',
},
{
name => 'opts',
type => 'JSON',
}
],
indexes => {
0 => 'login',
1 => [ qw(login password) ],
2 => {
name => 'my_idx',
fields => 'login',
},
3 => {
name => 'my_idx2',
fields => [ 'counter', 'something' ]
}
}
},
0 => {
...
}
});
my $f = $s->pack_field('users', 'counter', 10);
my $f = $s->pack_field('users', 1, 10); # the same
my $f = $s->pack_field(1, 1, 10); # the same
my $ts = $s->pack_keys([1,2,3] => 'my_idx');
my $t = $s->pack_primary_key([1,2,3]);
=head1 DESCRIPTION
The package describes all spaces that You use. It supports the following
field types:
=over
=item NUM, NUM64, STR
- standard L<tarantool|http://tarantool.org> types.
=item UTF8STR
- the same as B<STR>, but string will be utf8-decoded after extracting
from database.
=item INT & INT64
- the same as B<NUM> and B<NUM64>, but contain signed values.
=item JSON
- the filed will be encoded by L<JSON::XS> before inserting and decoded
after extracting from database.
=back
=head1 METHODS
=head2 new
my $spaces = DR::Tarantool::Spaces->new( $spaces );
=cut
sub new {
my ($class, $spaces) = @_;
croak 'spaces must be a HASHREF' unless 'HASH' eq ref $spaces;
croak "'spaces' is empty" unless %$spaces;
my (%spaces, %fast);
for (keys %$spaces) {
my $s = new DR::Tarantool::Space($_ => $spaces->{ $_ });
$spaces{ $s->name } = $s;
$fast{ $_ } = $s->name;
}
return bless {
spaces => \%spaces,
fast => \%fast,
} => ref($class) || $class;
}
=head2 space
Returns space object by number or name.
my $space = $spaces->space('name');
my $space = $spaces->space(0);
=cut
sub space {
my ($self, $space) = @_;
croak 'space name or number is not defined' unless defined $space;
if ($space =~ /^\d+$/) {
croak "space '$space' is not defined"
unless exists $self->{fast}{$space};
return $self->{spaces}{ $self->{fast}{$space} };
}
croak "space '$space' is not defined"
unless exists $self->{spaces}{$space};
return $self->{spaces}{$space};
}
=head2 pack_field
packs one field before making database request
my $field = $spaces->pack_field('space', 'field', $data);
=cut
sub pack_field {
my ($self, $space, $field, $value) = @_;
croak q{Usage: $spaces->pack_field('space', 'field', $value)}
unless @_ == 4;
return $self->space($space)->pack_field($field => $value);
}
=head2 unpack_field
unpacks one field after extracting data from database
my $field = $spaces->unpack_field('space', 'field', $data);
=cut
sub unpack_field {
my ($self, $space, $field, $value) = @_;
croak q{Usage: $spaces->unpack_field('space', 'field', $value)}
unless @_ == 4;
return $self->space($space)->unpack_field($field => $value);
}
=head2 pack_tuple
packs tuple before making database request
my $t = $spaces->pack_tuple('space', [ 1, 2, 3 ]);
=cut
sub pack_tuple {
my ($self, $space, $tuple) = @_;
croak q{Usage: $spaces->pack_tuple('space', $tuple)} unless @_ == 3;
return $self->space($space)->pack_tuple( $tuple );
}
=head2 unpack_tuple
unpacks tuple after extracting data from database
my $t = $spaces->unpack_tuple('space', \@fields);
=cut
sub unpack_tuple {
my ($self, $space, $tuple) = @_;
croak q{Usage: $spaces->unpack_tuple('space', $tuple)} unless @_ == 3;
return $self->space($space)->unpack_tuple( $tuple );
}
package DR::Tarantool::Space;
use Carp;
$Carp::Internal{ (__PACKAGE__) }++;
use JSON::XS ();
=head1 SPACES methods
=head2 new
constructor
use DR::Tarantool::Spaces;
my $space = DR::Tarantool::Space->new($no, $space);
=cut
sub new {
my ($class, $no, $space) = @_;
croak 'space number must conform the regexp qr{^\d+}' unless $no ~~ /^\d+$/;
croak "'fields' not defined in space hash"
unless 'ARRAY' eq ref $space->{fields};
croak "wrong 'indexes' hash"
if !$space->{indexes} or 'HASH' ne ref $space->{indexes};
my $name = $space->{name};
croak 'wrong space name: ' . ($name // 'undef')
unless $name and $name =~ /^[a-z_]\w*$/i;
my $fqr = qr{^(?:STR|NUM|NUM64|INT|INT64|UTF8STR|JSON|MONEY|BIGMONEY)$};
my (@fields, %fast, $default_type);
$default_type = $space->{default_type} || 'STR';
croak "wrong 'default_type'" unless $default_type =~ $fqr;
for (my $no = 0; $no < @{ $space->{fields} }; $no++) {
my $f = $space->{ fields }[ $no ];
if (ref $f eq 'HASH') {
push @fields => {
name => $f->{name} || "f$no",
idx => $no,
type => $f->{type}
};
} elsif(ref $f) {
croak 'wrong field name or description';
} else {
push @fields => {
name => $f,
idx => $no,
type => $default_type,
}
}
my $s = $fields[ -1 ];
croak 'unknown field type: ' . ($s->{type} // 'undef')
unless $s->{type} and $s->{type} =~ $fqr;
croak 'wrong field name: ' . ($s->{name} // 'undef')
unless $s->{name} and $s->{name} =~ /^[a-z_]\w*$/i;
croak "Duplicate field name: $s->{name}" if exists $fast{ $s->{name} };
$fast{ $s->{name} } = $no;
}
my %indexes;
if ($space->{indexes}) {
for my $no (keys %{ $space->{indexes} }) {
my $l = $space->{indexes}{ $no };
croak "wrong index number: $no" unless $no =~ /^\d+$/;
my ($name, $fields);
if ('ARRAY' eq ref $l) {
$name = "i$no";
$fields = $l;
} elsif ('HASH' eq ref $l) {
$name = $l->{name} || "i$no";
$fields =
[ ref($l->{fields}) ? @{ $l->{fields} } : $l->{fields} ];
} else {
$name = "i$no";
$fields = [ $l ];
}
croak "wrong index name: $name" unless $name =~ /^[a-z_]\w*$/i;
for (@$fields) {
croak "field '$_' is presend in index but isn't in fields"
unless exists $fast{ $_ };
}
$indexes{ $name } = {
no => $no,
name => $name,
fields => $fields
};
}
}
bless {
fields => \@fields,
fast => \%fast,
name => $name,
number => $no,
default_type => $default_type,
indexes => \%indexes,
} => ref($class) || $class;
}
=head2 name
returns space name
=cut
sub name { $_[0]{name} }
=head2 number
returns space number
=cut
sub number { $_[0]{number} }
sub _field {
my ($self, $field) = @_;
croak 'field name or number is not defined' unless defined $field;
if ($field =~ /^\d+$/) {
return $self->{fields}[ $field ] if $field < @{ $self->{fields} };
return undef;
}
croak "field with name '$field' is not defined in this space"
unless exists $self->{fast}{$field};
return $self->{fields}[ $self->{fast}{$field} ];
}
=head2 pack_field
packs field before making database request
=cut
sub pack_field {
my ($self, $field, $value) = @_;
croak q{Usage: $space->pack_field('field', $value)}
unless @_ == 3;
my $f = $self->_field($field);
my $type = $f ? $f->{type} : $self->{default_type};
if ($type eq 'JSON') {
my $v = eval { JSON::XS->new->allow_nonref->utf8->encode( $value ) };
croak "Can't pack json: $@" if $@;
return $v;
}
my $v = $value;
utf8::encode( $v ) if utf8::is_utf8( $v );
return $v if $type eq 'STR' or $type eq 'UTF8STR';
return pack 'L<' => $v if $type eq 'NUM';
return pack 'l<' => $v if $type eq 'INT';
return pack 'Q<' => $v if $type eq 'NUM64';
return pack 'q<' => $v if $type eq 'INT64';
if ($type eq 'MONEY' or $type eq 'BIGMONEY') {
my ($r, $k) = split /\./, $v;
for ($k) {
$_ //= '.00';
s/^\.//;
$_ .= '0' if length $_ < 2;
$_ = substr $_, 0, 2;
}
$r ||= 0;
if ($r < 0) {
$v = $r * 100 - $k;
} else {
$v = $r * 100 + $k;
}
return pack 'l<', $v if $type eq 'MONEY';
return pack 'q<', $v;
}
croak 'Unknown field type:' . $type;
}
=head2 unpack_field
unpacks field after extracting data from database
=cut
sub unpack_field {
my ($self, $field, $value) = @_;
croak q{Usage: $space->pack_field('field', $value)}
unless @_ == 3;
my $f = $self->_field($field);
my $type = $f ? $f->{type} : $self->{default_type};
my $v = $value;
utf8::encode( $v ) if utf8::is_utf8( $v );
if ($type eq 'JSON') {
$v = JSON::XS->new->allow_nonref->utf8->decode( $v );
croak "Can't unpack json: $@" if $@;
return $v;
}
$v = unpack 'L<' => $v if $type eq 'NUM';
$v = unpack 'l<' => $v if $type eq 'INT';
$v = unpack 'Q<' => $v if $type eq 'NUM64';
$v = unpack 'q<' => $v if $type eq 'INT64';
utf8::decode( $v ) if $type eq 'UTF8STR';
if ($type eq 'MONEY' or $type eq 'BIGMONEY') {
$v = unpack 'l<' => $v if $type eq 'MONEY';
$v = unpack 'q<' => $v if $type eq 'BIGMONEY';
my $s = '';
if ($v < 0) {
$v = -$v;
$s = '-';
}
my $k = $v % 100;
my $r = ($v - $k) / 100;
$v = sprintf '%s%d.%02d', $s, $r, $k;
}
return $v;
}
=head2 pack_tuple
packs tuple before making database request
=cut
sub pack_tuple {
my ($self, $tuple) = @_;
croak 'tuple must be ARRAYREF' unless 'ARRAY' eq ref $tuple;
my @res;
for (my $i = 0; $i < @$tuple; $i++) {
push @res => $self->pack_field($i, $tuple->[ $i ]);
}
return \@res;
}
=head2 unpack_tuple
unpacks tuple after extracting data from database
=cut
sub unpack_tuple {
my ($self, $tuple) = @_;
croak 'tuple must be ARRAYREF' unless 'ARRAY' eq ref $tuple;
my @res;
for (my $i = 0; $i < @$tuple; $i++) {
push @res => $self->unpack_field($i, $tuple->[ $i ]);
}
return \@res;
}
sub _index {
my ($self, $index) = @_;
if ($index =~ /^\d+$/) {
for (values %{ $self->{indexes} }) {
return $_ if $_->{no} == $index;
}
croak "index $index is not defined";
}
return $self->{indexes}{$index} if exists $self->{indexes}{$index};
croak "index `$index' is not defined";
}
sub pack_keys {
my ($self, $keys, $idx, $disable_warn) = @_;
$idx = $self->_index($idx);
my $ksize = @{ $idx->{fields} };
$keys = [[ $keys ]] unless 'ARRAY' eq ref $keys;
unless('ARRAY' eq ref $keys->[0]) {
if ($ksize == @$keys) {
$keys = [ $keys ];
carp "Ambiguous keys list (it was used as ONE key), ".
"Use brackets to solve the trouble."
if $ksize > 1 and !$disable_warn;
} else {
$keys = [ map { [ $_ ] } @$keys ];
}
}
my @res;
for my $k (@$keys) {
croak "key must have $ksize elements" unless $ksize >= @$k;
my @packed;
for (my $i = 0; $i < @$k; $i++) {
my $f = $self->_field($idx->{fields}[$i]);
push @packed => $self->pack_field($f->{name}, $k->[$i])
}
push @res => \@packed;
}
return \@res;
}
sub pack_primary_key {
my ($self, $key) = @_;
croak 'wrong key format'
if 'ARRAY' eq ref $key and 'ARRAY' eq ref $key->[0];
my $t = $self->pack_keys($key, 0, 1);
return $t->[0];
}
sub pack_operation {
my ($self, $op) = @_;
croak 'wrong operation' unless 'ARRAY' eq ref $op and @$op > 1;
my $fno = $op->[0];
my $opname = $op->[1];
my $f = $self->_field($fno);
if ($opname eq 'delete') {
croak 'wrong operation' unless @$op == 2;
return [ $f->{idx} => $opname ];
}
if ($opname =~ /^(?:set|insert|add|and|or|xor)$/) {
croak 'wrong operation' unless @$op == 3;
return [ $f->{idx} => $opname, $self->pack_field($fno, $op->[2]) ];
}
if ($opname eq 'substr') {
croak 'wrong operation11' unless @$op >= 4;
croak 'wrong offset in substr operation' unless $op->[2] =~ /^\d+$/;
croak 'wrong length in substr operation' unless $op->[3] =~ /^\d+$/;
return [ $f->{idx}, $opname, $op->[2], $op->[3], $op->[4] ];
}
croak "unknown operation: $opname";
}
sub pack_operations {
my ($self, $ops) = @_;
croak 'wrong operation' unless 'ARRAY' eq ref $ops and @$ops >= 1;
$ops = [ $ops ] unless 'ARRAY' eq ref $ops->[ 0 ];
my @res;
push @res => $self->pack_operation( $_ ) for @$ops;
return \@res;
}
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2011 Dmitry E. Oboukhov <unera@debian.org>
Copyright (C) 2011 Roman V. Nikolaev <rshadow@rambler.ru>
This program is free software, you can redistribute it and/or
modify it under the terms of the Artistic License.
=head1 VCS
The project is placed git repo on github:
L<https://github.com/unera/dr-tarantool/>.
=cut
1;
|