/[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 44 by knops.gerd, Sun Feb 3 23:53:55 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                    
         my $msg=$::CONF{'PingMessage'};  
89          my @cons=values %PersistentConnections;          my @cons=values %PersistentConnections;
90                    
91          map { $_->write($msg) } @cons;          map { $_->ping() } @cons;
92  }  }
93    
94  sub checkPersistentConnectionsForMaxTime {  sub checkPersistentConnectionsForMaxTime {
# Line 107  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 114  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 135  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;
                         my $persist=0;  
150                          $self->{'mode'}=$2;                          $self->{'mode'}=$2;
151                          if ($self->{'mode'} eq "xhrinteractive" || $self->{'mode'} eq "iframe" || $self->{'mode'} eq "serversent" || $self->{'mode'} eq "longpoll") {                          my $persist=$self->getConf('Persist');
152                                  $persist=1;                          my $maxTime=$self->getConf('MaxTime');
153                                  $self->{'MaxMessageCount'}=1 unless(!($self->{'mode'} eq "longpoll"));                          $self->{'connectionTimeLimit'} = ($self->{'connectionStart'}+$maxTime) if ($maxTime>0);
154                          }                          
                         if ($self->{'mode'} eq "iframe") {  
                                 $self->{'HeaderTemplateNumber'}=1;  
                         } else {  
                                 $self->{'HeaderTemplateNumber'}=2;  
                         }  
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 165  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);                                  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 187  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 204  sub processLine { Line 229  sub processLine {
229          }          }
230  }  }
231    
 sub setChannels {  
         my $self=shift;  
         my $channels=shift;  
         my $persist=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);  
         }  
 }  
   
232  sub emitOKHeader {  sub emitOKHeader {
233          my $self=shift;          my $self=shift;
234                    
# Line 234  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=$::CONF{$hn};  
         }  
         $header=$::CONF{'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                  else                          $self->{'channelinfo'};
265                  {                  } else {
266                          '';                          '';
267                  }                  }
268          /gex;          /gex;
# Line 276  sub emitHeader { Line 270  sub emitHeader {
270          $self->write($header);          $self->write($header);
271  }  }
272    
273  sub sendMessage {  sub sendMessages {
274          my $self=shift;          my $self=shift;
         my $msg=shift;  
         my $numMsgInThisBatch=shift;  
275                    
276          $numMsgInThisBatch=1 unless(defined($numMsgInThisBatch));          my $numMessages=0;
277            my $msgTemplate=$self->getConf('MessageTemplate');
278            my $msgData='';
279                    
280          $self->write($msg);          foreach my $message (@_)
281            {
282                    $msgData.=$message->messageWithTemplate($msgTemplate);
283                    $numMessages++;
284            }
285                    
286          $::Statistics->{'messages_served'}+=$numMsgInThisBatch;          return if($numMessages<1);
287                    
288          my $msgCount=++$self->{'MessageCount'};          $self->write($msgData);
289                    
290          my $maxMsg=$::CONF{'MaxMessages'};          $::Statistics->{'messages_served'}+=$numMessages;
         if(defined($maxMsg) && $maxMsg>0 && $msgCount>=$maxMsg)  
         {  
                 $self->close(1);  
         }  
291                    
292          if($self->{'MaxMessageCount'}>0 && $msgCount>=$self->{'MaxMessageCount'})          my $msgCount=$self->{'messageCount'};
293          {          $msgCount+=$numMessages;
294                  $self->close(1);          $self->{'messageCount'}=$msgCount;
295            
296            # 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            if($self->getConf('CloseOnEvent') && !exists($self->{'headerBuffer'})) {
299                    $self->close(1, 'closedOnEvent');
300          }          }
301  }  }
302    
303    sub ping {
304            my $self=shift;
305            my $msg=$self->getConf('PingMessage');
306            
307            $self->write($msg);
308    }
309    
310  sub closeChannel {  sub closeChannel {
311          my $self=shift;          my $self=shift;
312          my $channelName=shift;          my $channelName=shift;
# Line 308  sub closeChannel { Line 314  sub closeChannel {
314          return unless(exists($self->{'channels'}->{$channelName}));          return unless(exists($self->{'channels'}->{$channelName}));
315                    
316          my $channel=$self->{'channels'}->{$channelName};          my $channel=$self->{'channels'}->{$channelName};
317          $channel->removeSubscriber($self);          $channel->removeSubscriber($self,'channelClose');
318                    
319          delete($self->{'channels'}->{$channelName});          delete($self->{'channels'}->{$channelName});
320                    
321          $self->close() 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);                  $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=$::CONF{'SubscriberShutdownMsg'};                  my $msg=$self->getConf('SubscriberShutdownMsg');
349                  if(defined($msg) && $msg ne '')                  if(defined($msg) && $msg ne '')
350                  {                  {
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 356  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 {
377            my $self=shift;
378            my $key=shift;
379            
380            if(exists($self->{'mode'}) && $self->{'mode'} ne '') {
381                    my $k=$key.$self->{'mode'};            
382                    if(exists($::CONF{$k})) {
383                            return $::CONF{$k};
384                    }
385            }
386            
387            $::CONF{$key};
388  }  }
389    
390  1;  1;

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

  ViewVC Help
Powered by ViewVC 1.1.26