]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/perl/lib/OpenSRF/Transport/SlimJabber/XMPPReader.pm
OpenSRF client disconnect robustification (Perl)
[OpenSRF.git] / src / perl / lib / OpenSRF / Transport / SlimJabber / XMPPReader.pm
1 package OpenSRF::Transport::SlimJabber::XMPPReader;
2 use strict; use warnings;
3 use XML::Parser;
4 use Fcntl qw(F_GETFL F_SETFL O_NONBLOCK);
5 use Time::HiRes qw/time/;
6 use OpenSRF::Transport::SlimJabber::XMPPMessage;
7 use OpenSRF::Utils::Logger qw/$logger/;
8 use OpenSRF::EX;
9
10 # -----------------------------------------------------------
11 # Connect, disconnect, and authentication messsage templates
12 # -----------------------------------------------------------
13 use constant JABBER_CONNECT =>
14     "<stream:stream to='%s' xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams'>";
15
16 use constant JABBER_BASIC_AUTH =>
17     "<iq id='123' type='set'><query xmlns='jabber:iq:auth'>" .
18     "<username>%s</username><password>%s</password><resource>%s</resource></query></iq>";
19
20 use constant JABBER_DISCONNECT => "</stream:stream>";
21
22
23 # -----------------------------------------------------------
24 # XMPP Stream states
25 # -----------------------------------------------------------
26 use constant DISCONNECTED   => 1;
27 use constant CONNECT_RECV   => 2;
28 use constant CONNECTED      => 3;
29
30
31 # -----------------------------------------------------------
32 # XMPP Message states
33 # -----------------------------------------------------------
34 use constant IN_NOTHING => 1;
35 use constant IN_BODY    => 2;
36 use constant IN_THREAD  => 3;
37 use constant IN_STATUS  => 4;
38
39
40 # -----------------------------------------------------------
41 # Constructor, getter/setters
42 # -----------------------------------------------------------
43 sub new {
44     my $class = shift;
45     my $socket = shift;
46
47     my $self = bless({}, $class);
48
49     $self->{queue} = [];
50     $self->{stream_state} = DISCONNECTED;
51     $self->{xml_state} = IN_NOTHING;
52     $self->socket($socket);
53
54     my $p = new XML::Parser(Handlers => {
55         Start => \&start_element,
56         End   => \&end_element,
57         Char  => \&characters,
58     });
59
60     $self->parser($p->parse_start); # create a push parser
61     $self->parser->{_parent_} = $self;
62     $self->{message} = OpenSRF::Transport::SlimJabber::XMPPMessage->new;
63     return $self;
64 }
65
66 sub push_msg {
67     my($self, $msg) = @_; 
68     push(@{$self->{queue}}, $msg) if $msg;
69 }
70
71 sub next_msg {
72     my $self = shift;
73     return shift @{$self->{queue}};
74 }
75
76 sub peek_msg {
77     my $self = shift;
78     return (@{$self->{queue}} > 0);
79 }
80
81 sub parser {
82     my($self, $parser) = @_;
83     $self->{parser} = $parser if $parser;
84     return $self->{parser};
85 }
86
87 sub socket {
88     my($self, $socket) = @_;
89     $self->{socket} = $socket if $socket;
90     return $self->{socket};
91 }
92
93 sub stream_state {
94     my($self, $stream_state) = @_;
95     $self->{stream_state} = $stream_state if $stream_state;
96     return $self->{stream_state};
97 }
98
99 sub xml_state {
100     my($self, $xml_state) = @_;
101     $self->{xml_state} = $xml_state if $xml_state;
102     return $self->{xml_state};
103 }
104
105 sub message {
106     my($self, $message) = @_;
107     $self->{message} = $message if $message;
108     return $self->{message};
109 }
110
111
112 # -----------------------------------------------------------
113 # Stream and connection handling methods
114 # -----------------------------------------------------------
115
116 sub connect {
117     my($self, $domain, $username, $password, $resource) = @_;
118     
119     $self->send(sprintf(JABBER_CONNECT, $domain));
120     $self->wait(10);
121
122     unless($self->{stream_state} == CONNECT_RECV) {
123         $logger->error("No initial XMPP response from server");
124         return 0;
125     }
126
127     $self->send(sprintf(JABBER_BASIC_AUTH, $username, $password, $resource));
128     $self->wait(10);
129
130     unless($self->connected) {
131         $logger->error('XMPP connect failed');
132         return 0;
133     }
134
135     return 1;
136 }
137
138 sub disconnect {
139     my $self = shift;
140     return unless $self->socket;
141     if($self->tcp_connected) {
142         $self->send(JABBER_DISCONNECT); 
143         shutdown($self->socket, 2);
144     }
145     close($self->socket);
146 }
147
148 # -----------------------------------------------------------
149 # returns true if this stream is connected to the server
150 # -----------------------------------------------------------
151 sub connected {
152     my $self = shift;
153     return ($self->tcp_connected and $self->{stream_state} == CONNECTED);
154 }
155
156 # -----------------------------------------------------------
157 # returns true if the socket is connected
158 # -----------------------------------------------------------
159 sub tcp_connected {
160     my $self = shift;
161     return ($self->socket and $self->socket->connected);
162 }
163
164 # -----------------------------------------------------------
165 # sends pre-formated XML
166 # -----------------------------------------------------------
167 sub send {
168     my($self, $xml) = @_;
169     $self->{socket}->print($xml);
170 }
171
172 # -----------------------------------------------------------
173 # Puts a file handle into blocking mode
174 # -----------------------------------------------------------
175 sub set_block {
176     my $fh = shift;
177     my  $flags = fcntl($fh, F_GETFL, 0);
178     $flags &= ~O_NONBLOCK;
179     fcntl($fh, F_SETFL, $flags);
180 }
181
182
183 # -----------------------------------------------------------
184 # Puts a file handle into non-blocking mode
185 # -----------------------------------------------------------
186 sub set_nonblock {
187     my $fh = shift;
188     my  $flags = fcntl($fh, F_GETFL, 0);
189     fcntl($fh, F_SETFL, $flags | O_NONBLOCK);
190 }
191
192
193 sub wait {
194     my($self, $timeout) = @_;
195      
196     return $self->next_msg if $self->peek_msg;
197
198     $timeout ||= 0;
199     $timeout = undef if $timeout < 0;
200     my $socket = $self->{socket};
201
202     set_block($socket);
203     
204     # build the select readset
205     my $infile = '';
206     vec($infile, $socket->fileno, 1) = 1;
207
208     my $nfound = select($infile, undef, undef, $timeout);
209     return undef if !$nfound or $nfound == -1;
210
211     # now slurp the data off the socket
212     my $buf;
213     my $read_size = 1024;
214     my $nonblock = 0;
215     my $nbytes;
216     my $first_read = 1;
217
218     while($nbytes = sysread($socket, $buf, $read_size)) {
219         $self->{parser}->parse_more($buf) if $buf;
220         if($nbytes < $read_size or $self->peek_msg) {
221             set_block($socket) if $nonblock;
222             last;
223         }
224         set_nonblock($socket) unless $nonblock;
225         $nonblock = 1;
226         $first_read = 0;
227     }
228
229     if ($first_read and defined $nbytes and $nbytes == 0) {
230         # if the first read on an active socket is 0 bytes, 
231         # the socket has been disconnected from the remote end. 
232         $self->{stream_state} = DISCONNECTED;
233         $logger->error("Disconnected from Jabber server");
234         throw OpenSRF::EX::Jabber("Disconnected from Jabber server");
235     }
236
237     return $self->next_msg;
238 }
239
240 # -----------------------------------------------------------
241 # Waits up to timeout seconds for a fully-formed XMPP
242 # message to arrive.  If timeout is < 0, waits indefinitely
243 # -----------------------------------------------------------
244 sub wait_msg {
245     my($self, $timeout) = @_;
246     my $xml;
247
248     $timeout = 0 unless defined $timeout;
249
250     if($timeout < 0) {
251         while(1) {
252             return $xml if $xml = $self->wait($timeout); 
253         }
254
255     } else {
256         while($timeout >= 0) {
257             my $start = time;
258             return $xml if $xml = $self->wait($timeout); 
259             $timeout -= time - $start;
260         }
261     }
262
263     return undef;
264 }
265
266
267 # -----------------------------------------------------------
268 # SAX Handlers
269 # -----------------------------------------------------------
270
271
272 sub start_element {
273     my($parser, $name, %attrs) = @_;
274     my $self = $parser->{_parent_};
275
276     if($name eq 'message') {
277
278         my $msg = $self->{message};
279         $msg->{to} = $attrs{'to'};
280         $msg->{from} = $attrs{router_from} if $attrs{router_from};
281         $msg->{from} = $attrs{from} unless $msg->{from};
282         $msg->{osrf_xid} = $attrs{'osrf_xid'};
283         $msg->{type} = $attrs{type};
284
285     } elsif($name eq 'body') {
286         $self->{xml_state} = IN_BODY;
287
288     } elsif($name eq 'thread') {
289         $self->{xml_state} = IN_THREAD;
290
291     } elsif($name eq 'stream:stream') {
292         $self->{stream_state} = CONNECT_RECV;
293
294     } elsif($name eq 'iq') {
295         if($attrs{type} and $attrs{type} eq 'result') {
296             $self->{stream_state} = CONNECTED;
297         }
298
299     } elsif($name eq 'status') {
300         $self->{xml_state } = IN_STATUS;
301
302     } elsif($name eq 'stream:error') {
303         $self->{stream_state} = DISCONNECTED;
304
305     } elsif($name eq 'error') {
306         $self->{message}->{err_type} = $attrs{'type'};
307         $self->{message}->{err_code} = $attrs{'code'};
308     }
309 }
310
311 sub characters {
312     my($parser, $chars) = @_;
313     my $self = $parser->{_parent_};
314     my $state = $self->{xml_state};
315
316     if($state == IN_BODY) {
317         $self->{message}->{body} .= $chars;
318
319     } elsif($state == IN_THREAD) {
320         $self->{message}->{thread} .= $chars;
321
322     } elsif($state == IN_STATUS) {
323         $self->{message}->{status} .= $chars;
324     }
325 }
326
327 sub end_element {
328     my($parser, $name) = @_;
329     my $self = $parser->{_parent_};
330     $self->{xml_state} = IN_NOTHING;
331
332     if($name eq 'message') {
333         $self->push_msg($self->{message});
334         $self->{message} = OpenSRF::Transport::SlimJabber::XMPPMessage->new;
335
336     } elsif($name eq 'stream:stream') {
337         $self->{stream_state} = DISCONNECTED;
338     }
339 }
340
341
342 # read all the data on the jabber socket through the 
343 # parser and drop the resulting message
344 sub flush_socket {
345         my $self = shift;
346     return 0 unless $self->connected;
347
348     while ($self->wait(0)) {
349         # TODO remove this log line
350         $logger->info("flushing data from socket...");
351     }
352
353     return $self->connected;
354 }
355
356
357
358 1;
359