/usr/share/perl5/Net/DRI/Registry.pm is in libnet-dri-perl 0.96-1.
This file is owned by root:root, with mode 0o644.
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 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 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 | ## Domain Registry Interface, Registry object
##
## Copyright (c) 2005-2010 Patrick Mevzek <netdri@dotandco.com>. All rights reserved.
##
## This file is part of Net::DRI
##
## Net::DRI is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
##
## See the LICENSE file that comes with this distribution for more details.
#
#
#
####################################################################################################
package Net::DRI::Registry;
use strict;
use warnings;
use base qw(Class::Accessor::Chained::Fast Net::DRI::BaseClass);
__PACKAGE__->mk_ro_accessors(qw(name driver profile trid_factory logging)); ## READ-ONLY !!
use Time::HiRes ();
use Net::DRI::Exception;
use Net::DRI::Util;
use Net::DRI::Protocol::ResultStatus;
use Net::DRI::Data::RegistryObject;
our $AUTOLOAD;
our $VERSION=do { my @r=(q$Revision: 1.32 $=~/\d+/g); sprintf("%d".".%02d" x $#r, @r); };
=pod
=head1 NAME
Net::DRI::Registry - Specific Registry Driver Instance inside Net::DRI
=head1 DESCRIPTION
Please see the README file for details.
=head1 SUPPORT
For now, support questions should be sent to:
E<lt>netdri@dotandco.comE<gt>
Please also see the SUPPORT file in the distribution.
=head1 SEE ALSO
E<lt>http://www.dotandco.com/services/software/Net-DRI/E<gt>
=head1 AUTHOR
Patrick Mevzek, E<lt>netdri@dotandco.comE<gt>
=head1 COPYRIGHT
Copyright (c) 2005-2010 Patrick Mevzek <netdri@dotandco.com>.
All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
See the LICENSE file that comes with this distribution for more details.
=cut
####################################################################################################
sub new
{
my ($class,$name,$drd,$cache,$trid,$logging)=@_;
my $self={name => $name,
driver => $drd,
cache => $cache,
profiles => {}, ## { profile name => { protocol => X
## transport => X
## status => Net::DRI::Protocol::ResultStatus
## %extra
## }
## }
profile => undef, ## current profile
auto_target => {},
last_data => {},
last_process => {},
trid_factory => $trid,
logging => $logging,
};
bless($self,$class);
return $self;
}
sub available_profile
{
my $self=shift;
return (defined($self->{profile}))? 1 : 0;
}
sub available_profiles
{
my ($self,$full)=@_;
$full||=0;
return sort($full ? map { $_->{fullname} } values(%{$self->{profiles}}) : keys(%{$self->{profiles}}));
}
sub exist_profile
{
my ($self,$name)=@_;
return (defined($name) && exists($self->{profiles}->{$name}));
}
sub err_no_current_profile { Net::DRI::Exception->die(0,'DRI',3,'No current profile available'); }
sub err_profile_name_does_not_exist { Net::DRI::Exception->die(0,'DRI',4,'Profile name '.$_[0].' does not exist'); }
sub remote_object
{
my $self=shift;
return Net::DRI::Data::RegistryObject->new($self,@_);
}
sub _current
{
my ($self,$what,$tostore)=@_;
err_no_current_profile() unless (defined($self->{profile}));
err_profile_name_does_not_exist($self->{profile}) unless (exists($self->{profiles}->{$self->{profile}}));
Net::DRI::Exception::err_method_not_implemented($what) unless (exists($self->{profiles}->{$self->{profile}}->{$what}));
if (($what eq 'status') && $tostore)
{
$self->{profiles}->{$self->{profile}}->{$what}=$tostore;
}
return $self->{profiles}->{$self->{profile}}->{$what};
}
sub transport { return shift->_current('transport'); }
sub protocol { return shift->_current('protocol'); }
sub status { return shift->_current('status',@_); }
sub protocol_transport { my $self=shift; return ($self->protocol(),$self->transport()); }
sub local_object
{
my $self=shift;
my $f=shift;
return unless $self && $f;
return $self->_current('protocol')->create_local_object($f,@_);
}
sub _result
{
my ($self,$f)=@_;
my $p=$self->profile();
err_no_current_profile() unless (defined($p));
Net::DRI::Exception->die(0,'DRI',6,'No last status code available for current registry and profile') unless (exists($self->{profiles}->{$p}->{status}));
my $rc=$self->{profiles}->{$p}->{status}; ## a Net::DRI::Protocol::ResultStatus object !
Net::DRI::Exception->die(1,'DRI',5,'Status key is not a Net::DRI::Protocol::ResultStatus object') unless UNIVERSAL::isa($rc,'Net::DRI::Protocol::ResultStatus');
return $rc if ($f eq 'self');
Net::DRI::Exception->die(1,'DRI',5,'Method '.$f.' not implemented in Net::DRI::Protocol::ResultStatus') unless ($f && $rc->can($f));
return $rc->$f();
}
sub result_is_success { return shift->_result('is_success'); }
sub is_success { return shift->_result('is_success'); } ## Alias
sub result_code { return shift->_result('code'); }
sub result_native_code { return shift->_result('native_code'); }
sub result_message { return shift->_result('message'); }
sub result_lang { return shift->_result('lang'); }
sub result_status { return shift->_result('self'); }
sub result_extra_info { return shift->_result('info'); }
sub cache_expire { return shift->{cache}->delete_expired(); }
sub cache_clear { return shift->{cache}->delete(); }
sub set_info
{
my ($self,$type,$key,$data,$ttl)=@_;
my $p=$self->profile();
err_no_current_profile() unless defined($p);
my $regname=$self->name();
my $c=$self->{cache}->set($regname.'.'.$p,$type,$key,$data,$ttl);
$self->{last_data}=$c; ## the hash exists, since we called clear_info somewhere before
return $c;
}
## Returns a $rc object or undef if nothing found in cache for the specific object ($type/$key) and action ($action)
sub try_restore_from_cache
{
my ($self,$type,$key,$action)=@_;
if (! Net::DRI::Util::all_valid($type,$key,$action)) { Net::DRI::Exception::err_assert('try_restore_from_cache improperly called'); }
my $a=$self->get_info('action',$type,$key);
## not in cache or in cache but for some other action
if (! defined $a || ($a ne $action)) { $self->log_output('debug','core',sprintf('Cache MISS (empty cache or other action) for type=%s key=%s',$type,$key)); return; }
## retrieve from cache, copy, and do some cleanup
$self->{last_data}=$self->get_info_all($type,$key);
## since we passed the above test on get_info('action'), we know here we received something defined by get_info_all,
## but we test explicitely again (get_info_all returns an empty ref hash on problem, not undef), to avoid race conditions and such
if (! keys(%{$self->{last_data}})) { $self->log_output('debug','core',sprintf('Cache MISS (no last_data content) for type=%s key=%s',$type,$key)); return; }
## get_info_all makes a copy, but only at first level ! so this high level change is ok (no pollution), but be warned for below !
$self->{last_data}->{result_from_cache}=1;
## however we must take care of what we do in levels further below, as the same data is probably in the original $rc object (if not thrown away by application)
my $rd=$self->{last_data}->{result_status}->get_data_collection();
## we first make a copy (here it is a plain ref hash, no objects inside, otherwise a proper clone() would be needed, see Clone::* modules), then we can update it.
## If something more complex is needed, a proper clone() should be implemented
$rd->{session}={ %{$rd->{session}} };
## (if there are other keys than exchange, we do not need to copy them, since we do not change their content)
$rd->{session}->{exchange}={ %{$rd->{session}->{exchange}} };
$rd->{session}->{exchange}->{result_from_cache}=1;
## Should we delete the raw exchange (session/exchange/command,duration,reply) data too ?
$self->log_output('debug','core',sprintf('Cache HIT for type=%s key=%s',$type,$key));
return $self->get_info('result_status');
}
sub clear_info { shift->{last_data}={}; }
sub get_info
{
my ($self,$what,$type,$key)=@_;
return unless (defined($what) && $what);
if (Net::DRI::Util::all_valid($type,$key)) ## search the cache, by default same registry & profile !
{
my $p=$self->profile();
err_no_current_profile() unless defined($p);
my $regname=$self->name();
return $self->{cache}->get($type,$key,$what,$regname.'.'.$p);
} else
{
return unless exists($self->{last_data}->{$what});
return $self->{last_data}->{$what};
}
}
sub get_info_all
{
my ($self,$type,$key)=@_;
my $rh;
if (Net::DRI::Util::all_valid($type,$key))
{
my $p=$self->profile();
err_no_current_profile() unless defined($p);
my $regname=$self->name();
$rh=$self->{cache}->get($type,$key,undef,$regname.'.'.$p);
} else
{
$rh=$self->{last_data};
}
return {} unless (defined($rh) && ref($rh) && keys(%$rh));
my %h=%{ $rh }; ## create a copy, as we will delete content... ## BUGFIX !!
foreach my $k (grep { /^_/ } keys(%h)) { delete($h{$k}); }
return \%h;
}
sub get_info_keys
{
my ($self,$type,$key)=@_;
my $rh=$self->get_info_all($type,$key);
return sort { $a cmp $b } keys(%$rh);
}
####################################################################################################
## Change profile
sub target
{
my ($self,$profile)=@_;
err_profile_name_does_not_exist($profile) unless ($profile && exists($self->{profiles}->{$profile}));
$self->{profile}=$profile;
}
sub profile_auto_switch
{
my ($self,$otype,$oaction)=@_;
my $p=$self->get_auto_target($otype,$oaction);
return unless defined($p);
$self->target($p);
return;
}
sub set_auto_target
{
my ($self,$profile,$otype,$oaction)=@_; ## $otype/$oaction may be undef
err_profile_name_does_not_exist($profile) unless ($profile && exists($self->{profiles}->{$profile}));
my $rh=$self->{auto_target};
$otype||='_default';
$oaction||='_default';
$rh->{$otype}={} unless (exists($rh->{$otype}));
$rh->{$otype}->{$oaction}=$profile;
}
sub get_auto_target
{
my ($self,$otype,$oaction)=@_;
my $at=$self->{auto_target};
$otype='_default' unless (exists($at->{$otype}));
return unless (exists($at->{$otype}));
my $ac=$at->{$otype};
return unless (defined($ac) && ref($ac));
$oaction='_default' unless (exists($ac->{$oaction}));
return unless (exists($ac->{$oaction}));
return $ac->{$oaction};
}
sub add_current_profile
{
my ($self,@p)=@_;
my $rc=$self->add_profile(@p);
if ($rc->is_success()) { $self->target($p[0]); }
return $rc;
}
## Transport and Protocol parameters are merged (semantically but not chronologically, parameters coming later erase previous ones) in this order;
## - TransportConnectionClass->transport_default() [only for transport parameters]
## - Protocol->transport_default() [only for transport parameters]
## - DRD->transport_protocol_default()
## - user specified parameters to add_profile (they always have precedence over defaults stored in the 3 previous cases)
## API: profile name, profile type (types starting with "test=" are only for internal tests, and should not be used in production), transport params {}, protocol params {}
sub add_profile
{
my ($self,$name,$type,$trans_p,$prot_p)=@_;
if (! Net::DRI::Util::all_valid($name,$type)) { Net::DRI::Exception::usererr_insufficient_parameters('add_profile needs at least 2 parameters: new profile name and type'); }
if (defined $trans_p && ref $trans_p ne 'HASH') { Net::DRI::Exception::usererr_invalid_parameters('If provided, 3rd parameter of add_profile (transport data) must be a ref hash'); }
if (defined $prot_p && ref $prot_p ne 'HASH') { Net::DRI::Exception::usererr_invalid_parameters('If provided, 4th parameter of add_profile (protocol data) must be a ref hash'); }
if ($self->exist_profile($name)) { Net::DRI::Exception::usererr_invalid_parameters('New profile name "'.$name.'" already in use'); }
my $drd=$self->driver();
my ($test)=($type=~s/^test=//)? 1 : 0;
my ($tc,$tp,$pc,$pp); ## Transport Class, Transport Params, Protocol Class, Protocol Params
($tc,$tp,$pc,$pp)=$drd->transport_protocol_default($type) if (!$test || $type!~m/[A-Z]/);
if ($test)
{
$self->log_output('emergency','core','For profile "'.$name.'", using INTERNAL TESTING configuration! This should not happen in production, but only during "make test"!');
Net::DRI::Exception::err_assert('test profile types are to be used only during internal tests') unless exists $INC{'Test/More.pm'};
$tc='Dummy';
$tp=$trans_p;
$trans_p=undef;
if ($type=~m/[A-Z]/)
{
$pc=$type;
$pp=defined $prot_p ? $prot_p : {};
$prot_p=undef;
}
}
if (!Net::DRI::Util::all_valid($tc,$tp,$pc,$pp) || ref $tp ne 'HASH' || ref $pp ne 'HASH') { Net::DRI::Exception::usererr_invalid_parameters(sprintf('Registry "%s" does not provide profile type "%s")',$self->name(),$type)); }
$tp={ %$tp, %$trans_p } if defined $trans_p;
$pp={ %$pp, %$prot_p } if defined $prot_p;
$tc='Net::DRI::Transport::'.$tc unless ($tc=~m/::/);
$pc='Net::DRI::Protocol::'.$pc unless ($pc=~m/::/);
$drd->transport_protocol_init($type,$tc,$tp,$pc,$pp,$test) if $drd->can('transport_protocol_init');
$tc->require() or Net::DRI::Exception::err_failed_load_module('DRI',$tc,$@);
$pc->require() or Net::DRI::Exception::err_failed_load_module('DRI',$pc,$@);
$self->log_output('debug','core',sprintf('For profile "%s" attempting to initialize transport "%s" and protocol "%s"',$name,$tc,$pc));
my $po=$pc->new($drd,$pp); ## Protocol must come first, as it may be needed during transport setup; it should not die
$tp={ $po->transport_default(), %$tp } if ($po->can('transport_default'));
my $to;
eval
{
$to=$tc->new({registry=>$self,profile=>$name,protocol=>$po},$tp); ## this may die !
};
if ($@) ## some kind of error happened
{
return $@ if (ref($@) eq 'Net::DRI::Protocol::ResultStatus');
$@=Net::DRI::Exception->new(1,'internal',0,'Error not handled: '.$@) unless ref($@);
die($@);
}
my $fullname=sprintf('%s (%s/%s + %s/%s)',$name,$po->name(),$po->version(),$to->name(),$to->version());
$self->{profiles}->{$name}={ fullname => $fullname, transport => $to, protocol => $po, status => undef };
$self->log_output('notice','core','Successfully added profile "'.$fullname.'"');
return Net::DRI::Protocol::ResultStatus->new_success('COMMAND_SUCCESSFUL','Profile "'.$name.'" added successfully');
}
sub del_profile
{
my ($self,$name)=@_;
if (defined($name))
{
err_profile_name_does_not_exist($name) unless ($self->exist_profile($name));
} else
{
err_no_current_profile() unless (defined($self->{profile}));
$name=$self->{profile};
}
my $p=$self->{profiles}->{$name};
$p->{protocol}->end() if (ref($p->{protocol}) && $p->{protocol}->can('end'));
$p->{transport}->end({registry => $self, profile => $name}) if (ref($p->{transport}) && $p->{transport}->can('end'));
delete($self->{profiles}->{$name});
$self->{profile}=undef if $self->{profile} eq $name; ## current profile is not defined anymore
return Net::DRI::Protocol::ResultStatus->new_success('COMMAND_SUCCESSFUL','Profile '.$name.' deleted successfully');
}
sub end
{
my $self=shift;
foreach my $name (keys(%{$self->{profiles}}))
{
my $p=$self->{profiles}->{$name};
$p->{protocol}->end() if (ref($p->{protocol}) && $p->{protocol}->can('end'));
$p->{transport}->end() if (ref($p->{transport}) && $p->{transport}->can('end'));
delete $self->{profiles}->{$name}
}
$self->{driver}->end() if $self->{driver}->can('end');
}
sub can
{
my ($self,$what)=@_;
return $self->UNIVERSAL::can($what) || $self->driver->can($what);
}
####################################################################################################
####################################################################################################
sub has_action
{
my ($self,$otype,$oaction)=@_;
my ($po,$to)=$self->protocol_transport();
return $po->has_action($otype,$oaction);
}
sub process
{
my ($self,$otype,$oaction)=@_[0,1,2];
my $pa=$_[3] || []; ## store them ?
my $ta=$_[4] || [];
$self->{last_process}=[$otype,$oaction,$pa,$ta]; ## should be handled more generally by LocalStorage/Exchange
## Automated switch, if enabled
$self->profile_auto_switch($otype,$oaction);
## Current protocol/transport objects for current profile
my ($po,$to)=$self->protocol_transport();
my $trid=$self->generate_trid();
my $ctx={trid => $trid, otype => $otype, oaction => $oaction, phase => 'active' };
my $tosend;
eval { $tosend=$po->action($otype,$oaction,$trid,@$pa); }; ## TODO : this may need to be pushed in loop below if we need to change message to send when failure
return $self->format_error($@) if $@;
$self->{ops}->{$trid}=[0,$tosend,undef]; ## 0 = todo, not sent ## This will be done in/with LocalStorage
my $timeout=$to->timeout();
my $prevalarm=alarm(0); ## removes current alarm
my $pause=$to->pause();
my $start=Time::HiRes::time();
$self->{ops}->{$trid}->[2]=$start;
my $count=0;
my $r;
while (++$count <= $to->retry())
{
$self->log_output('debug','core',sprintf('New process loop iteration for TRID=%s with count=%d pause=%f timeout=%f',$trid,$count,$pause,$timeout));
Time::HiRes::sleep($pause) if (defined($pause) && $pause && ($count > 1));
$self->log_output('warning','core',sprintf('Starting try #%d for TRID=%s',$count,$trid)) if $count>1;
$r=eval
{
local $SIG{ALRM}=sub { die 'timeout' };
alarm($timeout) if ($timeout);
$self->log_output('debug','core',sprintf('Attempting to send data for TRID=%s',$trid));
## Should we also pass the current registry driver (or at least its name), and the current profile name ? This may be useful in logging
$to->send($ctx,$tosend,$count,$ta); ## either success or exception, no result code
$self->log_output('debug','core','Successfully sent data to registry for TRID='.$trid);
$self->{ops}->{$trid}->[0]=1; ## now it is sent
return $self->process_back($trid,$po,$to,$otype,$oaction,$count) if $to->is_sync();
my $rc=Net::DRI::Protocol::ResultStatus->new_success('COMMAND_SUCCESSFUL_PENDING');
$rc->_set_trid([ $trid ]);
$self->status($rc);
return $rc;
};
alarm(0) if ($timeout); ## removes our alarm
if ($@) ## some die happened inside the eval
{
return $self->format_error($@) if (ref($@) eq 'Net::DRI::Protocol::ResultStatus'); ## should probably be a return here see below TODOXXX
my $is_timeout=(!ref($@) && ($@=~m/timeout/))? 1 : 0;
$@=$is_timeout? Net::DRI::Exception->new(1,'transport',1,'timeout') : Net::DRI::Exception->new(1,'internal',0,'Error not handled: '.$@) unless ref($@);
$self->log_output('debug','core',$is_timeout? 'Got timeout for TRID='.$trid : 'Got error for TRID='.$trid.' : '.$@->as_string());
next if $to->try_again($ctx,$po,$@,$count,$is_timeout,$self->{ops}->{$trid}->[0],\$pause,\$timeout); ## will determine if 1) we break now the loop/we propagate the error (fatal error) 2) we retry
die($@);
}
last if defined($r);
} ## end of while
alarm($prevalarm) if $prevalarm; ## re-enable previous alarm (warning, time is off !!)
Net::DRI::Exception->die(0,'transport',1,sprintf('Unable to communicate with registry after %d tries for a total delay of %.03f seconds',$to->retry(),Time::HiRes::time()-$start)) unless defined $r;
return $r;
}
sub format_error
{
my ($self,$err)=@_;
if (ref($err) eq 'Net::DRI::Protocol::ResultStatus')
{
$self->status($err); ## should that be done above also ? TODOXXX
return $err;
}
$err=Net::DRI::Exception->new(1,'internal',0,'Error not handled: '.$err) unless ref($err);
die($err);
}
## also called directly , when we found something to do for asynchronous case, through TRID (TODO)
## We are already in an eval here, and a while loop for retries
sub process_back
{
my ($self,$trid,$po,$to,$otype,$oaction,$count)=@_;
my $ctx={trid => $trid, otype => $otype, oaction => $oaction }; ## How will we fill that in case of async operation (direct call here) ?
my ($rc,$ri,$oname);
$self->log_output('debug','core','Attempting to receive data from registry for TRID='.$trid);
my $res=$to->receive($ctx,$count); ## a Net::DRI::Data::Raw or die inside
my $stop=Time::HiRes::time();
$self->log_output('debug','core','Successfully received data from registry for TRID='.$trid);
Net::DRI::Exception->die(0,'transport',5,'Unable to receive message from registry') unless defined($res);
$self->{ops}->{$trid}->[0]=2; ## now it is received
$self->clear_info(); ## make sure we will overwrite current latest info
$oname=_extract_oname($otype,$oaction,$self->{last_process}->[2]); ## lc() would be good here but this breaks a lot of things !
($rc,$ri)=$po->reaction($otype,$oaction,$res,$self->{ops}->{$trid}->[1],$oname); ## $tosend needed to propagate EPP version, for example
$rc->_set_trid([ $trid ]) unless $rc->trid(); ## if not done inside Protocol::*::Message::result_status, make sure we save at least our transaction id
if ($rc->is_closing() || (exists($ri->{_internal}) && exists($ri->{_internal}->{must_reconnect}) && $ri->{_internal}->{must_reconnect}))
{
$self->log_output('notice','core','Registry closed connection, we will automatically reconnect during next exchange');
$to->current_state(0);
}
delete($ri->{_internal});
## Set latest status from what we got
$self->status($rc);
$ri->{session}->{exchange}->{result_from_cache}=0;
$ri->{session}->{exchange}->{protocol}=$po->name().'/'.$po->version();
$ri->{session}->{exchange}->{transport}=$to->name().'/'.$to->version();
$ri->{session}->{exchange}->{registry}=$self->name();
$ri->{session}->{exchange}->{profile}=$self->profile();
$ri->{session}->{exchange}->{trid}=$trid;
## set_info stores also data in last_data, so we make sure to call last for current object
foreach my $type (keys(%$ri))
{
foreach my $key (keys(%{$ri->{$type}}))
{
next if ($oname && ($type eq $otype) && ($key eq $oname));
$self->set_info($type,$key,$ri->{$type}->{$key});
}
}
## Now set the last info, the one regarding directly the object
if ($oname && $otype)
{
my $rli={ result_status => $rc };
$rli=$ri->{$otype}->{$oname} if (exists($ri->{$otype}) && exists($ri->{$otype}->{$oname})); ## result_status already done in Protocol
$self->set_info($otype,$oname,$rli);
}
## Not before !
## Remove all ResultStatus object, to avoid all circular references
foreach my $v1 (values(%$ri))
{
foreach my $v2 (values(%{$v1}))
{
delete($v2->{result_status}) if exists($v2->{result_status});
}
}
$ri->{session}->{exchange}={ %{$ri->{session}->{exchange}}, duration_seconds => $stop-$self->{ops}->{$trid}->[2], raw_command => $self->{ops}->{$trid}->[1]->as_string(), raw_reply => $res->as_string(), object_type => $otype, object_action => $oaction };
$ri->{session}->{exchange}->{object_name}=$oname if $oname;
$rc->_set_data($ri);
delete($self->{ops}->{$trid});
return $rc;
}
sub _extract_oname
{
my ($otype,$oaction,$pa)=@_;
return 'domains' if ($otype eq 'account' && $oaction eq 'list_domains');
my $o=$pa->[0];
return 'session' unless defined($o);
$o=$o->[1] if (ref($o) eq 'ARRAY'); ## should be enough for _multi but still a little strange
return (Net::DRI::Util::normalize_name($otype,$o))[1] unless ref($o); ## ?? ## TODO ## this fails t/626nominet line 306
return (Net::DRI::Util::normalize_name('nsgroup',$otype eq 'nsgroup'? $o->name() : $o->get_details(1)))[1] if Net::DRI::Util::isa_hosts($o);
return $o->srid() if Net::DRI::Util::isa_contact($o);
return 'session';
}
####################################################################################################
sub protocol_capable
{
my ($ndr,$op,$subop,$action)=@_;
return 0 unless ($op && $subop); ## $action may be undefined
my $po=$ndr->protocol();
my $cap=$po->capabilities(); ## hashref
return 0 unless ($cap && (ref($cap) eq 'HASH') && exists($cap->{$op})
&& (ref($cap->{$op}) eq 'HASH') && exists($cap->{$op}->{$subop})
&& (ref($cap->{$op}->{$subop}) eq 'ARRAY'));
return 1 unless (defined($action) && $action);
foreach my $a (@{$cap->{$op}->{$subop}})
{
return 1 if ($a eq $action);
}
return 0;
}
sub log_output
{
my ($self,$level,$where,$msg)=@_;
my $r=$self->name();
$r.='.'.$self->{profile} if (defined $self->{profile});
$msg='('.$r.') '.$msg;
return $self->SUPER::log_output($level,$where,$msg);
}
####################################################################################################
sub AUTOLOAD
{
my $self=shift;
my $attr=$AUTOLOAD;
$attr=~s/.*:://;
return unless $attr=~m/[^A-Z]/; ## skip DESTROY and all-cap methods
my $drd=$self->driver(); ## This is a DRD object
Net::DRI::Exception::err_method_not_implemented($attr.' in '.$drd) unless (ref($drd) && $drd->can($attr));
$self->log_output('debug','core',sprintf('Calling %s from Net::DRI::Registry',$attr));
return $drd->$attr($self,@_);
}
####################################################################################################
1;
|