/[meteor]/googlecode.com/svn/trunk/Meteor/Subscriber.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /googlecode.com/svn/trunk/Meteor/Subscriber.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 9 by andrew.betts, Fri Dec 8 16:52:58 2006 UTC revision 32 by andrew.betts, Thu Dec 20 21:24:24 2007 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl -w  #!/usr/bin/perl -w
2  ###############################################################################  ###############################################################################
3  #   Meteor  #   Meteor
4  #   An HTTP server for the 2.0 web  #   An HTTP server for the 2.0 web
5  #   Copyright (c) 2006 contributing authors  #   Copyright (c) 2006 contributing authors
6  #  #
7  #   Subscriber.pm  #   Subscriber.pm
8  #  #
9  #       Description:  #       Description:
10  #       A Meteor Subscriber  #       A Meteor Subscriber
11  #  #
12  ###############################################################################  ###############################################################################
13  #  #
14  #   This program is free software; you can redistribute it and/or modify it  #   This program is free software; you can redistribute it and/or modify it
15  #   under the terms of the GNU General Public License as published by the Free  #   under the terms of the GNU General Public License as published by the Free
16  #   Software Foundation; either version 2 of the License, or (at your option)  #   Software Foundation; either version 2 of the License, or (at your option)
17  #   any later version.  #   any later version.
18  #  #
19  #   This program is distributed in the hope that it will be useful, but WITHOUT  #   This program is distributed in the hope that it will be useful, but WITHOUT
20  #   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or  #   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21  #   FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for  #   FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
22  #   more details.  #   more details.
23  #  #
24  #   You should have received a copy of the GNU General Public License along  #   You should have received a copy of the GNU General Public License along
25  #   with this program; if not, write to the Free Software Foundation, Inc.,  #   with this program; if not, write to the Free Software Foundation, Inc.,
26  #   59 Temple Place, Suite 330, Boston, MA 02111-1307 USA  #   59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27  #  #
28  #   For more information visit www.meteorserver.org  #   For more information visit www.meteorserver.org
29  #  #
30  ###############################################################################  ###############################################################################
31    
32  package Meteor::Subscriber;  package Meteor::Subscriber;
33  ###############################################################################  ###############################################################################
34  # Configuration  # Configuration
35  ###############################################################################  ###############################################################################
36                    
37          use strict;          use strict;
38                    
39          use Meteor::Connection;          use Meteor::Connection;
40          use Meteor::Channel;          use Meteor::Channel;
41          use Meteor::Document;          use Meteor::Document;
42                    
43          @Meteor::Subscriber::ISA=qw(Meteor::Connection);          @Meteor::Subscriber::ISA=qw(Meteor::Connection);
44                    
45          our %PersistentConnections=();          our %PersistentConnections=();
46            our $NumAcceptedConnections=0;
47  ###############################################################################  
48  # Factory methods  ###############################################################################
49  ###############################################################################  # Factory methods
50  sub newFromServer {  ###############################################################################
51          my $class=shift;  sub newFromServer {
52                    my $class=shift;
53          my $self=$class->SUPER::newFromServer(shift);          
54                    my $self=$class->SUPER::newFromServer(shift);
55          $self->{'headerBuffer'}='';          
56          $self->{'MessageCount'}=0;          $self->{'headerBuffer'}='';
57          $self->{'MaxMessageCount'}=0;          $self->{'MessageCount'}=0;
58                    $self->{'MaxMessageCount'}=0;
59          $self->{'ConnectionStart'}=time;          
60          my $maxTime=$::CONF{'MaxTime'};          $self->{'ConnectionStart'}=time;
61          if($maxTime>0)          my $maxTime=$::CONF{'MaxTime'};
62          {          if($maxTime>0)
63                  $self->{'ConnectionTimeLimit'}=$self->{'ConnectionStart'}+$maxTime;          {
64          }                  $self->{'ConnectionTimeLimit'}=$self->{'ConnectionStart'}+$maxTime;
65                    }
66          $self;          
67  }          $::Statistics->{'current_subscribers'}++;
68            $::Statistics->{'subscriber_connections_accepted'}++;
69  ###############################################################################          
70  # Class methods          $self;
71  ###############################################################################  }
72  sub deleteSubscriberWithID {  
73          my $class=shift;  ###############################################################################
74          my $id=shift;  # Class methods
75            ###############################################################################
76          if(exists($PersistentConnections{$id}))  sub deleteSubscriberWithID {
77          {          my $class=shift;
78                  $PersistentConnections{$id}->close(1);          my $id=shift;
79          }          
80  }          if(exists($PersistentConnections{$id}))
81            {
82  sub pingPersistentConnections {                  $PersistentConnections{$id}->close(1);
83          my $class=shift;          }
84            }
85          my $msg=$::CONF{'PingMessage'};  
86          my @cons=values %PersistentConnections;  sub pingPersistentConnections {
87                    my $class=shift;
88          map { $_->write($msg) } @cons;          
89  }          my $msg=$::CONF{'PingMessage'};
90            my @cons=values %PersistentConnections;
91  sub checkPersistentConnectionsForMaxTime {          
92          my $class=shift;          map { $_->write($msg) } @cons;
93            }
94          my $time=time;  
95          my @cons=values %PersistentConnections;  sub checkPersistentConnectionsForMaxTime {
96                    my $class=shift;
97          map { $_->checkForMaxTime($time) } @cons;          
98  }          my $time=time;
99            my @cons=values %PersistentConnections;
100  ###############################################################################          
101  # Instance methods          map { $_->checkForMaxTime($time) } @cons;
102  ###############################################################################  }
103  sub processLine {  
104          my $self=shift;  sub numSubscribers {
105          my $line=shift;          
106                    return scalar(keys %PersistentConnections);
107          # Once the header was processed we ignore any input  }
108          return unless(exists($self->{'headerBuffer'}));  
109            ###############################################################################
110          if($line ne '')  # Instance methods
111          {  ###############################################################################
112                  #  sub processLine {
113                  # Accumulate header          my $self=shift;
114                  #          my $line=shift;
115                  $self->{'headerBuffer'}.="$line\n";          
116          }          # Once the header was processed we ignore any input
117          else          return unless(exists($self->{'headerBuffer'}));
118          {          
119                  #          if($line ne '')
120                  # Empty line signals end of header.          {
121                  # Analyze header, register with appropiate channel                  #
122                  # and send pending messages.                  # Accumulate header
123                  #                  #
124                  # GET $::CONF{'SubscriberDynamicPageAddress'}?channel=ml123&restartfrom=1 HTTP/1.1                  $self->{'headerBuffer'}.="$line\n";
125                  #          }
126                  # Find the 'GET' line          else
127                  #          {
128                  if($self->{'headerBuffer'}=~/GET\s+$::CONF{'SubscriberDynamicPageAddress'}\?(\S+)/)                  #
129                  {                  # Empty line signals end of header.
130                          my @formData=split('&',$1);                  # Analyze header, register with appropiate channel
131                          my $channelName=undef;                  # and send pending messages.
132                          my $startIndex=undef;                  #
133                          my $backtrack=undef;                  # GET $::CONF{'SubscriberDynamicPageAddress'}/hostid/streamtype/channeldefs HTTP/1.1
134                          my $persist=1;                  #
135                          my $subscriberID=undef;                  # Find the 'GET' line
136                          foreach my $formElement (@formData)                  #
137                          {                  if($self->{'headerBuffer'}=~/GET\s+$::CONF{'SubscriberDynamicPageAddress'}\/([0-9a-z]+)\/([0-9a-z]+)\/(\S+)/i)
138                                  if($formElement=~/^channel=(.+)$/)                  {
139                                  {                          my $subscriberID=$1;
140                                          $channelName=$1;                          my $persist=0;
141                                  }                          $self->{'mode'}=$2;
142                                  elsif($formElement=~/^restartfrom=(\d*)$/)                          if ($self->{'mode'} eq "xhrinteractive" || $self->{'mode'} eq "iframe" || $self->{'mode'} eq "serversent" || $self->{'mode'} eq "longpoll") {
143                                  {                                  $persist=1;
144                                          $startIndex=$1;                                  $self->{'MaxMessageCount'}=1 unless(!($self->{'mode'} eq "longpoll"));
145                                          $startIndex='' unless(defined($startIndex));                          }
146                                  }                          if ($self->{'mode'} eq "iframe") {
147                                  elsif($formElement=~/^backtrack=(\d+)$/)                                  $self->{'HeaderTemplateNumber'}=1;
148                                  {                          } else {
149                                          $backtrack=$1;                                  $self->{'HeaderTemplateNumber'}=2;
150                                          $backtrack=0 unless(defined($backtrack));                          }
151                                  }                          my @channelData=split('/',$3);
152                                  elsif($formElement=~/^persist=(?i)(yes|true|1|no|false|0)$/)                          my $channels={};
153                                  {                          my $channelName;
154                                          $persist=0 if($1=~/(no|false|0)/i);                          my $offset;
155                                  }                          foreach my $chandef (@channelData)
156                                  elsif($formElement=~/^id=(.+)$/)                          {
157                                  {                                  if($chandef=~/^([a-z0-9]+)(.(r|b|h)([0-9]*))?$/)
158                                          $subscriberID=$1;                                  {
159                                  }                                          $channelName = $1;
160                                  elsif($formElement=~/^maxmessages=(\d+)$/i)                                          $channels->{$channelName}->{'startIndex'} = undef;
161                                  {                                          for ($3) {
162                                          $self->{'MaxMessageCount'}=$1;                                                  $offset = $4;
163                                  }                                                  /r/ && do { $channels->{$channelName}->{'startIndex'} = $offset; last; };
164                                  elsif($formElement=~/^template=(\d+)$/i)                                                  /b/ && do { $channels->{$channelName}->{'startIndex'} = -$offset; last; };
165                                  {                                                  /h/ && do { $channels->{$channelName}->{'startIndex'} = 0; last; };
166                                          $self->{'HeaderTemplateNumber'}=$1;                                          }
167                                  }                                  }
168                                  elsif($formElement=~/^maxtime=(\d+)$/i)                          }
169                                  {                          
170                                          my $clientRequest=$1;                          delete($self->{'headerBuffer'});
171                                          my $serverDefault=$::CONF{'MaxTime'};                          
172                                                                    if($persist)
173                                          if($serverDefault==0 || $serverDefault>$clientRequest)                          {
174                                          {                                  $self->{'subscriberID'}=$subscriberID;
175                                                  $self->{'ConnectionTimeLimit'}=$self->{'ConnectionStart'}+$clientRequest;                                  $self->deleteSubscriberWithID($subscriberID);
176                                          }                                  $PersistentConnections{$subscriberID}=$self;
177                                  }                          }
178                          }                          
179                                                                            if(scalar(keys %{$channels}))
180                          delete($self->{'headerBuffer'});                          {
181                                                            $self->emitOKHeader();
182                          if(defined($startIndex) && defined($backtrack))                                  $self->setChannels($channels,$persist);
183                          {                                  $self->close(1) unless($persist);
184                                  $self->emitHeader("404 Cannot use both 'restartfrom' and 'backtrack'");                                  return;
185                                  $self->close();                          }
186                                                    }
187                                  return;                  elsif($self->{'headerBuffer'}=~/GET\s+\/disconnect\/(\S+)/)
188                          }                  {
189                                                    $self->deleteSubscriberWithID($1);
190                          if(defined($subscriberID) && $persist)                          $self->emitOKHeader();
191                          {                          $self->close(1);
192                                  $self->{'subscriberID'}=$subscriberID;                          return;
193                                  $self->deleteSubscriberWithID($subscriberID);                  }
194                                  $PersistentConnections{$subscriberID}=$self;                  elsif($self->{'headerBuffer'}=~/GET\s+([^\s\?]+)/)
195                          }                  {
196                                                    Meteor::Document->serveFileToClient($1,$self);
197                          if(defined($channelName))                          $self->close(1);
198                          {                          return;
199                                  $self->emitOKHeader();                  }
200                                                    
201                                  $startIndex=-$backtrack if(!defined($startIndex) && defined($backtrack));                  #
202                                                    # If we fall through we did not understand the request
203                                  $self->setChannelName($channelName,$startIndex,$persist);                  #
204                                                    $self->emitErrorHeader();
205                                  $self->close(1) unless($persist);          }
206                                    }
207                                  return;  
208                          }  sub setChannels {
209                  }          my $self=shift;
210                  elsif($self->{'headerBuffer'}=~/GET\s+([^\s\?]+)/)          my $channels=shift;
211                  {          my $persist=shift;
212                          Meteor::Document->serveFileToClient($1,$self);          
213                                    foreach my $channelName (keys %{$channels})
214                          $self->close(1);          {
215                                            my $startIndex=$channels->{$channelName}->{'startIndex'};
216                          return;                  
217                  }                  my $channel=Meteor::Channel->channelWithName($channelName);
218                                    
219                  #                  $self->{'channels'}->{$channelName}=$channel if($persist);
220                  # If we fall through we did not understand the request                  
221                  #                  $channel->addSubscriber($self,$startIndex,$persist);
222                  $self->emitErrorHeader();          }
223          }  }
224  }  
225    sub emitOKHeader {
226  sub setChannelName {          my $self=shift;
227          my $self=shift;          
228          my $channelName=shift;          $self->emitHeader('200 OK');
229          my $startIndex=shift;  }
230          my $persist=shift;  
231            sub emitErrorHeader {
232          my $channel=Meteor::Channel->channelWithName($channelName);          my $self=shift;
233          $self->{'channel'}=$channel if($persist);          
234                    $self->emitHeader('404 Not Found');
235          $channel->addSubscriber($self,$startIndex,$persist);          $::Statistics->{'errors_served'}++;
236  }          
237            # close up shop here!
238  sub emitOKHeader {          $self->close();
239          my $self=shift;  }
240            
241          $self->emitHeader('200 OK');  sub emitHeader {
242  }          my $self=shift;
243            my $status=shift;
244  sub emitErrorHeader {          
245          my $self=shift;          my $header=undef;
246                    if(exists($self->{'HeaderTemplateNumber'}))
247          $self->emitHeader('404 Not Found');          {
248                            my $hn='HeaderTemplate'.$self->{'HeaderTemplateNumber'};
249          # close up shop here!                  
250          $self->close();                  $header=$::CONF{$hn};
251  }          }
252            $header=$::CONF{'HeaderTemplate'} unless(defined($header));
253  sub emitHeader {          
254          my $self=shift;          $header=~s/~([^~]+)~/
255          my $status=shift;                  if(!defined($1) || $1 eq '')
256                            {
257          my $header=undef;                          '~';
258          if(exists($self->{'HeaderTemplateNumber'}))                  }
259          {                  elsif($1 eq 'server')
260                  my $hn='HeaderTemplate'.$self->{'HeaderTemplateNumber'};                  {
261                                            $::PGM;
262                  $header=$::CONF{$hn};                  }
263          }                  elsif($1 eq 'status')
264          $header=$::CONF{'HeaderTemplate'} unless(defined($header));                  {
265                                    $status;
266          $header=~s/~([^~]+)~/                  }
267                  if(!defined($1) || $1 eq '')                  elsif($1 eq 'servertime')
268                  {                  {
269                          '~';                          time;
270                  }                  }
271                  elsif($1 eq 'server')                  else
272                  {                  {
273                          $::PGM;                          '';
274                  }                  }
275                  elsif($1 eq 'status')          /gex;
276                  {          
277                          $status;          $self->write($header);
278                  }  }
279                  elsif($1 eq 'servertime')  
280                  {  sub sendMessage {
281                          time;          my $self=shift;
282                  }          my $msg=shift;
283                  else          my $numMsgInThisBatch=shift;
284                  {          
285                          '';          $numMsgInThisBatch=1 unless(defined($numMsgInThisBatch));
286                  }          
287          /gex;          $self->write($msg);
288                    
289          $self->write($header);          $::Statistics->{'messages_served'}+=$numMsgInThisBatch;
290  }          
291            my $msgCount=++$self->{'MessageCount'};
292  sub sendMessage {          
293          my $self=shift;          my $maxMsg=$::CONF{'MaxMessages'};
294          my $msg=shift;          if(defined($maxMsg) && $maxMsg>0 && $msgCount>=$maxMsg)
295                    {
296          $self->write($msg);                  $self->close(1);
297                    }
298          my $msgCount=++$self->{'MessageCount'};          
299                    if($self->{'MaxMessageCount'}>0 && $msgCount>=$self->{'MaxMessageCount'})
300          my $maxMsg=$::CONF{'MaxMessages'};          {
301          if(defined($maxMsg) && $maxMsg>0 && $msgCount>=$maxMsg)                  $self->close(1);
302          {          }
303                  $self->close(1);  }
304          }  
305            sub closeChannel {
306          if($self->{'MaxMessageCount'}>0 && $msgCount>=$self->{'MaxMessageCount'})          my $self=shift;
307          {          my $channelName=shift;
308                  $self->close(1);          
309          }          return unless(exists($self->{'channels'}->{$channelName}));
310  }          
311            my $channel=$self->{'channels'}->{$channelName};
312  sub close {          $channel->removeSubscriber($self);
313          my $self=shift;          
314          my $noShutdownMsg=shift;          delete($self->{'channels'}->{$channelName});
315                    
316          $self->{'channel'}->removeSubscriber($self) if($self->{'channel'});          $self->close() if(scalar(keys %{$self->{'channels'}})==0);
317          delete($self->{'channel'});  }
318            
319          if(exists($self->{'subscriberID'}))  sub close {
320          {          my $self=shift;
321                  delete($PersistentConnections{$self->{'subscriberID'}});          my $noShutdownMsg=shift;
322          }          
323                    foreach my $channelName (keys %{$self->{'channels'}})
324          #          {
325          # Send shutdown message unless remote closed or                  my $channel=$self->{'channels'}->{$channelName};
326          # connection not yet established                  $channel->removeSubscriber($self);
327          #          }
328          unless($noShutdownMsg || $self->{'remoteClosed'} || exists($self->{'headerBuffer'}))          delete($self->{'channels'});
329          {          
330                  my $msg=$::CONF{'SubscriberShutdownMsg'};          if(exists($self->{'subscriberID'}))
331                  if(defined($msg) && $msg ne '')          {
332                  {                  delete($PersistentConnections{$self->{'subscriberID'}});
333                          $self->write($msg);          }
334                  }          
335          }          #
336                    # Send shutdown message unless remote closed or
337          $self->SUPER::close();          # connection not yet established
338  }          #
339            unless($noShutdownMsg || $self->{'remoteClosed'} || exists($self->{'headerBuffer'}))
340  sub checkForMaxTime {          {
341          my $self=shift;                  my $msg=$::CONF{'SubscriberShutdownMsg'};
342          my $time=shift;                  if(defined($msg) && $msg ne '')
343                            {
344          $self->close(1) if(exists($self->{'ConnectionTimeLimit'}) && $self->{'ConnectionTimeLimit'}<$time);                          $self->write($msg);
345  }                  }
346            }
347  1;          
348            $::Statistics->{'current_subscribers'}--;
349            
350            $self->SUPER::close();
351    }
352    
353    sub checkForMaxTime {
354            my $self=shift;
355            my $time=shift;
356            
357            $self->close(1) if(exists($self->{'ConnectionTimeLimit'}) && $self->{'ConnectionTimeLimit'}<$time);
358    }
359    
360    1;
361  ############################################################################EOF  ############################################################################EOF

Legend:
Removed from v.9  
changed lines
  Added in v.32

  ViewVC Help
Powered by ViewVC 1.1.26