/[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 47 by knops.gerd, Mon Feb 4 21:06:42 2008 UTC revision 64 by andrew.betts, Mon Jan 19 11:19:41 2009 UTC
# Line 55  sub newFromServer { Line 55  sub newFromServer {
55          my $self=$class->SUPER::newFromServer(shift);          my $self=$class->SUPER::newFromServer(shift);
56                    
57          $self->{'headerBuffer'}='';          $self->{'headerBuffer'}='';
58          $self->{'MessageCount'}=0;          $self->{'messageCount'}=0;
         $self->{'MaxMessageCount'}=0;  
           
         $self->{'ConnectionStart'}=time;  
         my $maxTime=$::CONF{'MaxTime'};  
         if($maxTime>0)  
         {  
                 $self->{'ConnectionTimeLimit'}=$self->{'ConnectionStart'}+$maxTime;  
         }  
59                    
60          $::Statistics->{'current_subscribers'}++;          $::Statistics->{'current_subscribers'}++;
61          $::Statistics->{'subscriber_connections_accepted'}++;          $::Statistics->{'subscriber_connections_accepted'}++;
# Line 80  sub deleteSubscriberWithID { Line 72  sub deleteSubscriberWithID {
72                    
73          if(exists($PersistentConnections{$id}))          if(exists($PersistentConnections{$id}))
74          {          {
75                  $PersistentConnections{$id}->close();                  $PersistentConnections{$id}->close(0,'newSubscriberWithSameID');
76          }          }
77  }  }
78    
79    sub subscriberExists {
80            my $class=shift;
81            my $id=shift;
82    
83            return exists($PersistentConnections{$id});
84    }
85    
86  sub pingPersistentConnections {  sub pingPersistentConnections {
87          my $class=shift;          my $class=shift;
88                    
# Line 106  sub numSubscribers { Line 105  sub numSubscribers {
105          return scalar(keys %PersistentConnections);          return scalar(keys %PersistentConnections);
106  }  }
107    
108    sub listSubscribers {
109            my $class=shift;
110            my $list='';
111            foreach my $subscriber (keys %PersistentConnections)
112            {
113                    my $sub = $PersistentConnections{$subscriber};
114                    $list .= $subscriber.' '.$sub->{'ip'}.' '.$sub->{'connectionStart'}.' '.$sub->{'connectionTimeLimit'}.' '.($sub->{'connectionTimeLimit'}-time).' '.$sub->{'messageCount'}.' "'.$sub->{'useragent'}."\"$::CRLF";
115            }
116            $list;
117    }
118    
119  ###############################################################################  ###############################################################################
120  # Instance methods  # Instance methods
121  ###############################################################################  ###############################################################################
# Line 113  sub processLine { Line 123  sub processLine {
123          my $self=shift;          my $self=shift;
124          my $line=shift;          my $line=shift;
125                    
126          # Once the header was processed we ignore any input          # Once the header was processed we ignore any input - Meteor does not accept or process request bodies
127          return unless(exists($self->{'headerBuffer'}));          return unless(exists($self->{'headerBuffer'}));
128                    
129          if($line ne '')          if($line ne '')
# Line 134  sub processLine { Line 144  sub processLine {
144                  #                  #
145                  # Find the 'GET' line                  # Find the 'GET' line
146                  #                  #
147                  if($self->{'headerBuffer'}=~/GET\s+$::CONF{'SubscriberDynamicPageAddress'}\/([0-9a-z]+)\/([0-9a-z]+)\/(\S+)/i)                  if($self->{'headerBuffer'}=~/GET\s+$::CONF{'SubscriberDynamicPageAddress'}\/([0-9a-z]+)\/([0-9a-z]+)\/([a-z0-9_\-\%\.\/]+).*?/i)
148                  {                  {
149                          my $subscriberID=$1;                          $self->{'subscriberID'}=$1;
150                          $self->{'mode'}=$2;                          $self->{'mode'}=$2;
151                          my $persist=$self->getConf('Persist');                          my $persist=$self->getConf('Persist');
                           
                         if ($self->{'mode'} eq "xhrinteractive" || $self->{'mode'} eq "iframe" || $self->{'mode'} eq "serversent" || $self->{'mode'} eq "longpoll") {  
                                 $persist=1;  
                                 $self->{'MaxMessageCount'}=1 unless(!($self->{'mode'} eq "longpoll"));  
                         }  
                         if ($self->{'mode'} eq "iframe") {  
                                 $self->{'HeaderTemplateNumber'}=1;  
                         } else {  
                                 $self->{'HeaderTemplateNumber'}=2;  
                         }  
                           
152                          my $maxTime=$self->getConf('MaxTime');                          my $maxTime=$self->getConf('MaxTime');
153                          if($maxTime>0)                          $self->{'connectionTimeLimit'} = ($self->{'connectionStart'}+$maxTime) if ($maxTime>0);
                         {  
                                 $self->{'ConnectionTimeLimit'}=$self->{'ConnectionStart'}+$maxTime;  
                         }  
154                                                    
155                          my @channelData=split('/',$3);                          my @channelData=split('/',$3);
156                          my $channels={};                          my $channels={};
157                          my $channelName;                          my $channelName;
158                          my $offset;                          my $offset;
159                          foreach my $chandef (@channelData) {                          foreach my $chandef (@channelData) {
160                                  if($chandef=~/^([a-z0-9]+)(.(r|b|h)([0-9]*))?$/i) {                                  if($chandef=~/^([a-z0-9_\-\%]+)(.(r|b|h)([0-9]*))?$/i) {
161                                          $channelName = $1;                                          $channelName = $1;
162                                          $channels->{$channelName}->{'startIndex'} = undef;                                          $channels->{$channelName}->{'startIndex'} = undef;
163                                          if ($3) {                                          if ($3) {
# Line 172  sub processLine { Line 168  sub processLine {
168                                          }                                          }
169                                  }                                  }
170                          }                          }
171                            $self->{'useragent'} = ($self->{'headerBuffer'}=~/User-Agent: (.+)/i) ? $1 : "-";
172                                                    
173                          delete($self->{'headerBuffer'});                          if ($persist) {
174                                                            # New persistent connection: kill any existing connection with same ID
175                          if($persist)                                  $self->deleteSubscriberWithID($self->{'subscriberID'});
176                          {                                  # Add new persistent connection to collection
177                                  $self->{'subscriberID'}=$subscriberID;                                  $PersistentConnections{$self->{'subscriberID'}}=$self;
178                                  $self->deleteSubscriberWithID($subscriberID);                          } else {
179                                  $PersistentConnections{$subscriberID}=$self;                                  $::Pollers->{$self->{'subscriberID'}} = time;
180                          }                          }
181                                                    
182                          if(scalar(keys %{$channels}))                          if(scalar(keys %{$channels})) {
183                          {  
184                                    $self->{'channelinfo'} = '';
185                                    my $citemplate = $self->getConf('ChannelInfoTemplate');
186                                    foreach $channelName (keys %{$channels}) {
187                                            my $channel=Meteor::Channel->channelWithName($channelName);
188                                            $self->{'channels'}->{$channelName}=$channel;
189                                            if (defined($self->{'channels'}->{$channelName}->{'startIndex'}) && $self->{'channels'}->{$channelName}->{'startIndex'} > 0) {
190                                                    $self->{'channelinfo'} .= $channel->descriptionWithTemplate($citemplate);
191                                            }
192                                    }
193                                  $self->emitOKHeader();                                  $self->emitOKHeader();
194                                  $self->setChannels($channels,$persist,$self->{'mode'},'');                                  foreach $channelName (keys %{$channels}) {
195                                  $self->close(1) unless($persist);                                          my $startIndex=$channels->{$channelName}->{'startIndex'};
196                                            $self->{'channels'}->{$channelName}->addSubscriber($self,$startIndex,$persist,$self->{'mode'},$self->{'useragent'});
197                                    }
198                                    if (!$persist) {
199                                            delete ($self->{'channels'});
200                                            $self->close(1, 'responseComplete');
201                                    }
202                                    delete($self->{'headerBuffer'});
203    
204                                    # If long polling, close connection immediately if any messages have been sent
205                                    if ($self->{'messageCount'} > 0 && $self->{'mode'} eq 'longpoll') {
206                                            $self->close(1, 'closedOnEvent');
207                                    }
208                                  return;                                  return;
209                          }                          }
210                  }                  }
# Line 194  sub processLine { Line 212  sub processLine {
212                  {                  {
213                          $self->deleteSubscriberWithID($1);                          $self->deleteSubscriberWithID($1);
214                          $self->emitOKHeader();                          $self->emitOKHeader();
215                          $self->close(1);                          $self->close(1, 'disconnectRequested');
216                          return;                          return;
217                  }                  }
218                  elsif($self->{'headerBuffer'}=~/GET\s+([^\s\?]+)/)                  elsif($self->{'headerBuffer'}=~/GET\s+([^\s\?]+)/)
219                  {                  {
220                          Meteor::Document->serveFileToClient($1,$self);                          Meteor::Document->serveFileToClient($1,$self);
221                          $self->close(1);                          $self->SUPER::close();
222                          return;                          return;
223                  }                  }
224                                    
# Line 211  sub processLine { Line 229  sub processLine {
229          }          }
230  }  }
231    
 sub setChannels {  
         my $self=shift;  
         my $channels=shift;  
         my $persist=shift;  
         my $mode=shift || '';  
         my $userAgent=shift || '';  
           
         foreach my $channelName (keys %{$channels})  
         {  
                 my $startIndex=$channels->{$channelName}->{'startIndex'};  
                   
                 my $channel=Meteor::Channel->channelWithName($channelName);  
                   
                 $self->{'channels'}->{$channelName}=$channel if($persist);  
                   
                 $channel->addSubscriber($self,$startIndex,$persist,$mode,$userAgent);  
         }  
 }  
   
232  sub emitOKHeader {  sub emitOKHeader {
233          my $self=shift;          my $self=shift;
234                    
# Line 243  sub emitErrorHeader { Line 242  sub emitErrorHeader {
242          $::Statistics->{'errors_served'}++;          $::Statistics->{'errors_served'}++;
243                    
244          # close up shop here!          # close up shop here!
245          $self->close();          $self->close(0, 'error');
246  }  }
247    
248  sub emitHeader {  sub emitHeader {
249          my $self=shift;          my $self=shift;
250          my $status=shift;          my $status=shift;
251                    
252          my $header=undef;          my $header=$self->getConf('HeaderTemplate');
         if(exists($self->{'HeaderTemplateNumber'}))  
         {  
                 my $hn='HeaderTemplate'.$self->{'HeaderTemplateNumber'};  
                   
                 $header=$self->getConf($hn);  
         }  
         $header=$self->getConf('HeaderTemplate') unless(defined($header));  
253                    
254          $header=~s/~([^~]*)~/          $header=~s/~([^~]*)~/
255                  if(!defined($1) || $1 eq '')                  if(!defined($1) || $1 eq '') {
                 {  
256                          '~';                          '~';
257                  }                  } elsif($1 eq 'server') {
                 elsif($1 eq 'server')  
                 {  
258                          $::PGM;                          $::PGM;
259                  }                  } elsif($1 eq 'status') {
                 elsif($1 eq 'status')  
                 {  
260                          $status;                          $status;
261                  }                  } elsif($1 eq 'servertime') {
                 elsif($1 eq 'servertime')  
                 {  
262                          time;                          time;
263                  }                  } elsif($1 eq 'channelinfo') {
264                  elsif($1 eq 'channelinfo')                          $self->{'channelinfo'};
265                  {                  } else {
                         Meteor::Channel->listChannelsUsingTemplate($self->getConf('ChannelInfoTemplate'));  
                 }  
                 else  
                 {  
266                          '';                          '';
267                  }                  }
268          /gex;          /gex;
# Line 293  sub sendMessages { Line 274  sub sendMessages {
274          my $self=shift;          my $self=shift;
275                    
276          my $numMessages=0;          my $numMessages=0;
277          my $msgTemplate=$self->getConf('Messagetemplate');          my $msgTemplate=$self->getConf('MessageTemplate');
278          my $msgData='';          my $msgData='';
279                    
280          foreach my $message (@_)          foreach my $message (@_)
# Line 308  sub sendMessages { Line 289  sub sendMessages {
289                    
290          $::Statistics->{'messages_served'}+=$numMessages;          $::Statistics->{'messages_served'}+=$numMessages;
291                    
292          my $msgCount=$self->{'MessageCount'};          my $msgCount=$self->{'messageCount'};
293          $msgCount+=$numMessages;          $msgCount+=$numMessages;
294          $self->{'MessageCount'}=$msgCount;          $self->{'messageCount'}=$msgCount;
           
         my $maxMsg=$self->getConf('MaxMessages');  
         if(defined($maxMsg) && $maxMsg>0 && $msgCount>=$maxMsg)  
         {  
                 $self->close(1);  
         }  
295                    
296          if($self->{'MaxMessageCount'}>0 && $msgCount>=$self->{'MaxMessageCount'})          # If long polling, close connection, as a message has now been sent.
297          {          # Don't close if still processing the header (we may be sending a backlog from multiple channels)
298                  $self->close(1);          if($self->getConf('CloseOnEvent') && !exists($self->{'headerBuffer'})) {
299                    $self->close(1, 'closedOnEvent');
300          }          }
           
301  }  }
302    
303  sub ping {  sub ping {
# Line 343  sub closeChannel { Line 318  sub closeChannel {
318                    
319          delete($self->{'channels'}->{$channelName});          delete($self->{'channels'}->{$channelName});
320                    
321          $self->close(0,'channelsClosed') if(scalar(keys %{$self->{'channels'}})==0);          $self->close(0,'channelClose') if(scalar(keys %{$self->{'channels'}})==0);
322  }  }
323    
324  sub close {  sub close {
325          my $self=shift;          my $self=shift;
326          my $noShutdownMsg=shift;          my $noShutdownMsg=shift;
327            my $reason=shift;
328                    
329          foreach my $channelName (keys %{$self->{'channels'}})          foreach my $channelName (keys %{$self->{'channels'}})
330          {          {
331                  my $channel=$self->{'channels'}->{$channelName};                  my $channel=$self->{'channels'}->{$channelName};
332                  $channel->removeSubscriber($self,'subscriberClose');                  $channel->removeSubscriber($self,$reason);
333          }          }
334          delete($self->{'channels'});          delete($self->{'channels'});
335                    
336          if(exists($self->{'subscriberID'}))          # If this connection is in the PersistentConnections array, delete it, then anonymise
337          {          # it so that if we have to wait for the write buffer to empty before close, it's only
338            # removed once.
339            if(exists($self->{'subscriberID'})) {
340                  delete($PersistentConnections{$self->{'subscriberID'}});                  delete($PersistentConnections{$self->{'subscriberID'}});
341                    delete($self->{'subscriberID'});
342          }          }
343                    
         #  
344          # Send shutdown message unless remote closed or          # Send shutdown message unless remote closed or
345          # connection not yet established          # connection not yet established
         #  
346          unless($noShutdownMsg || $self->{'remoteClosed'} || exists($self->{'headerBuffer'}))          unless($noShutdownMsg || $self->{'remoteClosed'} || exists($self->{'headerBuffer'}))
347          {          {
348                  my $msg=$self->getConf('SubscriberShutdownMsg');                  my $msg=$self->getConf('SubscriberShutdownMsg');
# Line 374  sub close { Line 351  sub close {
351                          $self->write($msg);                          $self->write($msg);
352                  }                  }
353          }          }
354            
355            my $fmsg=$self->getConf('FooterTemplate');
356            if(defined($fmsg) && $fmsg ne '')
357            {
358                    $self->write($fmsg);
359            }
360    
361          $self->SUPER::close();          $self->SUPER::close();
362  }  }
363    
# Line 387  sub checkForMaxTime { Line 370  sub checkForMaxTime {
370          my $self=shift;          my $self=shift;
371          my $time=shift;          my $time=shift;
372                    
373          $self->close(1) if(exists($self->{'ConnectionTimeLimit'}) && $self->{'ConnectionTimeLimit'}<$time);          $self->close(1,'maxTime') if(exists($self->{'connectionTimeLimit'}) && $self->{'connectionTimeLimit'}<$time);
374  }  }
375    
376  sub getConf {  sub getConf {
377          my $self=shift;          my $self=shift;
378          my $key=shift;          my $key=shift;
379                    
380          if(exists($self->{'mode'}) && $self->{'mode'} ne '')          if(exists($self->{'mode'}) && $self->{'mode'} ne '') {
381          {                  my $k=$key.$self->{'mode'};            
382                  my $k=$key.'.'.$self->{'mode'};                  if(exists($::CONF{$k})) {
383                                            return $::CONF{$k};
384                  return $::CONF{$k} if(exists($::CONF{$k}));                  }
385          }          }
386                    
387          $::CONF{$key};          $::CONF{$key};

Legend:
Removed from v.47  
changed lines
  Added in v.64

  ViewVC Help
Powered by ViewVC 1.1.26