Changeset 2454


Ignore:
Timestamp:
Aug 21, 2009, 12:42:41 PM (15 years ago)
Author:
quentin
Message:

Use browser-based dupe suppression, so multiple clients can connect to the same terminal and not miss updates

Location:
package_branches/invirt-web/cherrypy/code
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • package_branches/invirt-web/cherrypy/code/ajaxterm.py

    r2435 r2454  
    33""" Ajaxterm """
    44
    5 import array,cgi,fcntl,glob,mimetypes,optparse,os,pty,random,re,signal,select,sys,threading,time,termios,struct,pwd
     5import array,cgi,fcntl,glob,hashlib,mimetypes,optparse,os,pty,random,re,signal,select,sys,threading,time,termios,struct,pwd
    66
    77os.chdir(os.path.normpath(os.path.dirname(__file__)))
     
    101101                self.buf=""
    102102                self.outbuf=""
    103                 self.last_html=""
    104103        def peek(self,y1,x1,y2,x2):
    105104                return self.scr[self.width*y1+x1:self.width*y2+x2]
     
    321320        def dumplatin1(self):
    322321                return self.dump().translate(self.trl1)
    323         def dumphtml(self,color=1,force=False):
     322        def dumphtml(self,color=1,last_hash=None):
    324323                h=self.height
    325324                w=self.width
     
    343342                        if i%w==w-1:
    344343                                span+='\n'
    345                 r='<?xml version="1.0" encoding="ISO-8859-1"?><pre class="term">%s</pre>'%r
    346                 if self.last_html==r and not force:
     344                hash = hashlib.md5(r).hexdigest()
     345                r='<?xml version="1.0" encoding="ISO-8859-1"?><pre class="term" id="%s">%s</pre>'% (hash,r)
     346                if last_hash == hash:
    347347                        return '<?xml version="1.0"?><idem></idem>'
    348348                else:
    349                         self.last_html=r
    350 #                       print self
    351349                        return r
    352350        def __repr__(self):
     
    437435                except (IOError,OSError):
    438436                        self.proc_kill(fd)
    439         def dump(self,fd,color=1,force=False):
     437        def dump(self,fd,color=1,last_hash=None):
    440438                try:
    441                         return self.proc[fd]['term'].dumphtml(color, force)
     439                        return self.proc[fd]['term'].dumphtml(color, last_hash)
    442440                except KeyError:
    443441                        return False
  • package_branches/invirt-web/cherrypy/code/main.py

    r2452 r2454  
    305305        @cherrypy.tools.require_POST()
    306306        @cherrypy.tools.gzip()
    307         def at(self, machine_id, k=None, c=0, force=0):
     307        def at(self, machine_id, k=None, c=0, h=None):
    308308            machine = validation.Validate(cherrypy.request.login, cherrypy.request.state, machine_id=machine_id).machine
    309309            with self.atsessions_lock:
     
    323323                    self.atmulti.proc_write(term,k)
    324324                time.sleep(0.002)
    325                 dump=self.atmulti.dump(term,c,int(force))
     325                dump=self.atmulti.dump(term,c,h)
    326326                cherrypy.response.headers['Content-Type']='text/xml'
    327327                if isinstance(dump,str):
  • package_branches/invirt-web/cherrypy/code/static/ajaxterm/ajaxterm.js

    r2453 r2454  
    1313        var sending=0;
    1414        var rmax=1;
    15         var force=true;
    1615
    1716        var div=document.getElementById(id);
     
    9998                        }
    10099                        var query=query1+send;
    101                         if (force) {
    102                             query=query+"&force=1";
    103                             force=false;
     100                        if (dterm.firstChild && dterm.firstChild.id) {
     101                            query=query+"&h="+dterm.firstChild.id;
    104102                        }
    105103                        r.open("POST",base_path,true);
     
    263261                focus_element.onkeypress=keypress;
    264262                focus_element.onkeydown=keydown;
    265                 force=true;
    266263                timeout=window.setTimeout(update,100);
    267264        }
Note: See TracChangeset for help on using the changeset viewer.