]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/perl/lib/OpenSRF/Transport/SlimJabber/XMPPReader.pm
Detect remote disconnect in Perl XMPP reader
[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 ($nbytes == 0 and $first_read) {
230         # if the first read on an active socket is 0 bytes, 
231         # the socket has been disconnected from the remote end. 
232         $logger->error("Disconnected from Jabber server");
233         throw OpenSRF::EX::Jabber("Disconnected from Jabber server");
234     }
235
236     return $self->next_msg;
237 }
238
239 # -----------------------------------------------------------
240 # Waits up to timeout seconds for a fully-formed XMPP
241 # message to arrive.  If timeout is < 0, waits indefinitely
242 # -----------------------------------------------------------
243 sub wait_msg {
244     my($self, $timeout) = @_;
245     my $xml;
246
247     $timeout = 0 unless defined $timeout;
248
249     if($timeout < 0) {
250         while(1) {
251             return $xml if $xml = $self->wait($timeout); 
252         }
253
254     } else {
255         while($timeout >= 0) {
256             my $start = time;
257             return $xml if $xml = $self->wait($timeout); 
258             $timeout -= time - $start;
259         }
260     }
261
262     return undef;
263 }
264
265
266 # -----------------------------------------------------------
267 # SAX Handlers
268 # -----------------------------------------------------------
269
270
271 sub start_element {
272     my($parser, $name, %attrs) = @_;
273     my $self = $parser->{_parent_};
274
275     if($name eq 'message') {
276
277         my $msg = $self->{message};
278         $msg->{to} = $attrs{'to'};
279         $msg->{from} = $attrs{router_from} if $attrs{router_from};
280         $msg->{from} = $attrs{from} unless $msg->{from};
281         $msg->{osrf_xid} = $attrs{'osrf_xid'};
282         $msg->{type} = $attrs{type};
283
284     } elsif($name eq 'body') {
285         $self->{xml_state} = IN_BODY;
286
287     } elsif($name eq 'thread') {
288         $self->{xml_state} = IN_THREAD;
289
290     } elsif($name eq 'stream:stream') {
291         $self->{stream_state} = CONNECT_RECV;
292
293     } elsif($name eq 'iq') {
294         if($attrs{type} and $attrs{type} eq 'result') {
295             $self->{stream_state} = CONNECTED;
296         }
297
298     } elsif($name eq 'status') {
299         $self->{xml_state } = IN_STATUS;
300
301     } elsif($name eq 'stream:error') {
302         $self->{stream_state} = DISCONNECTED;
303
304     } elsif($name eq 'error') {
305         $self->{message}->{err_type} = $attrs{'type'};
306         $self->{message}->{err_code} = $attrs{'code'};
307     }
308 }
309
310 sub characters {
311     my($parser, $chars) = @_;
312     my $self = $parser->{_parent_};
313     my $state = $self->{xml_state};
314
315     if($state == IN_BODY) {
316         $self->{message}->{body} .= $chars;
317
318     } elsif($state == IN_THREAD) {
319         $self->{message}->{thread} .= $chars;
320
321     } elsif($state == IN_STATUS) {
322         $self->{message}->{status} .= $chars;
323     }
324 }
325
326 sub end_element {
327     my($parser, $name) = @_;
328     my $self = $parser->{_parent_};
329     $self->{xml_state} = IN_NOTHING;
330
331     if($name eq 'message') {
332         $self->push_msg($self->{message});
333         $self->{message} = OpenSRF::Transport::SlimJabber::XMPPMessage->new;
334
335     } elsif($name eq 'stream:stream') {
336         $self->{stream_state} = DISCONNECTED;
337     }
338 }
339
340
341 # read all the data on the jabber socket through the 
342 # parser and drop the resulting message
343 sub flush_socket {
344         my $self = shift;
345     return 0 unless $self->connected;
346
347     while ($self->wait(0)) {
348         # TODO remove this log line
349         $logger->info("flushing data from socket...");
350     }
351
352     return $self->connected;
353 }
354
355
356
357 1;
358