]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/perlmods/OpenSRF/Transport/SlimJabber/PeerConnection.pm
Added support for multi-router registration
[OpenSRF.git] / src / perlmods / OpenSRF / Transport / SlimJabber / PeerConnection.pm
1 package OpenSRF::Transport::SlimJabber::PeerConnection;
2 use strict;
3 use base qw/OpenSRF::Transport::SlimJabber::Client/;
4 use OpenSRF::Utils::Config;
5 use OpenSRF::Utils::Logger qw(:level);
6 use OpenSRF::EX qw/:try/;
7
8 =head1 Description
9
10 Represents a single connection to a remote peer.  The 
11 Jabber values are loaded from the config file.  
12
13 Subclasses OpenSRF::Transport::SlimJabber::Client.
14
15 =cut
16
17 =head2 new()
18
19         new( $appname );
20
21         The $appname parameter tells this class how to find the correct
22         Jabber username, password, etc to connect to the server.
23
24 =cut
25
26 our %apps_hash;
27 our $_singleton_connection;
28
29 sub retrieve { 
30         my( $class, $app ) = @_;
31         return $_singleton_connection;
32 #       my @keys = keys %apps_hash;
33 #       OpenSRF::Utils::Logger->transport( 
34 #                       "Requesting peer for $app and we have @keys", INFO );
35 #       return $apps_hash{$app};
36 }
37
38
39
40 # !! In here we use the bootstrap config ....
41 sub new {
42         my( $class, $app ) = @_;
43
44         my $peer_con = $class->retrieve;
45         return $peer_con if ($peer_con and $peer_con->tcp_connected);
46
47         my $config = OpenSRF::Utils::Config->current;
48
49         if( ! $config ) {
50                 throw OpenSRF::EX::Config( "No suitable config found for PeerConnection" );
51         }
52
53         my $conf                        = OpenSRF::Utils::Config->current;
54         my $domain = $conf->bootstrap->domain;
55         my $h = $conf->env->hostname;
56         OpenSRF::Utils::Logger->error("use of <domains/> is deprecated") if $conf->bootstrap->domains;
57
58         my $username    = $conf->bootstrap->username;
59         my $password    = $conf->bootstrap->passwd;
60         my $port        = $conf->bootstrap->port;
61         my $resource    = "${app}_drone_at_$h";
62         my $host        = $domain; # XXX for now...
63
64         if( $app eq "client" ) { $resource = "client_at_$h"; }
65
66 #       unless ( $conf->bootstrap->router_name ) {
67 #               $username = 'router';
68 #               $resource = $app;
69 #       }
70
71
72         OpenSRF::EX::Config->throw( "JPeer could not load all necesarry values from config" )
73                 unless ( $username and $password and $resource and $host and $port );
74
75         OpenSRF::Utils::Logger->transport( "Built Peer with", INTERNAL );
76
77         my $self = __PACKAGE__->SUPER::new( 
78                 username                => $username,
79                 resource                => $resource,
80                 password                => $password,
81                 host                    => $host,
82                 port                    => $port,
83                 );      
84                                         
85         bless( $self, $class );
86
87         $self->app($app);
88
89         $_singleton_connection = $self;
90         $apps_hash{$app} = $self;
91
92         return $_singleton_connection;
93         return $apps_hash{$app};
94 }
95
96 sub process {
97
98         my $self = shift;
99         my $val = $self->SUPER::process(@_);
100         return 0 unless $val;
101
102         OpenSRF::Utils::Logger->transport( "Calling transport handler for ".$self->app." with: $val", INTERNAL );
103         my $t;
104         $t = OpenSRF::Transport->handler($self->app, $val);
105
106         return $t;
107 }
108
109 sub app {
110         my $self = shift;
111         my $app = shift;
112         if( $app ) {
113                 OpenSRF::Utils::Logger->transport( "PEER changing app to $app: ".$self->jid, INTERNAL );
114         }
115
116         $self->{app} = $app if ($app);
117         return $self->{app};
118 }
119
120 1;
121