SessionDynamicStore.py :  » Web-Frameworks » Webware » Webware-1.0.2 » WebKit » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Web Frameworks » Webware 
Webware » Webware 1.0.2 » WebKit » SessionDynamicStore.py
import time, threading

from SessionStore import SessionStore
import SessionMemoryStore, SessionFileStore

debug = 0


class SessionDynamicStore(SessionStore):
  """Stores the session in Memory and Files.

  This can be used either in a persistent app server or a cgi framework.

  To use this Session Store, set SessionStore in Application.config
  to 'Dynamic'. Other variables which can be set in Application.config are:

  'MaxDynamicMemorySessions', which sets the maximum number of sessions
  that can be in the Memory SessionStore at one time. Default is 10,000.

  'DynamicSessionTimeout', which sets the default time for a session to stay
  in memory with no activity. Default is 15 minutes. When specifying this in
  Application.config, use minutes.

  One-shot session (usually created by crawler bots) aren't moved to FileStore
  on periodical clean-up. They are still saved on SessionStore shutdown. This
  reduces the number of files in the Sessions directory.

  """


  ## Init ##

  def __init__(self, app):
    # Create both a file store and a memory store
    SessionStore.__init__(self, app)
    self._fileStore = SessionFileStore.SessionFileStore(app)
    self._memoryStore = SessionMemoryStore.SessionMemoryStore(
      app, restoreFiles=0)
    self._memoryStore.clear()  #fileStore will have the files on disk

    # moveToFileInterval specifies after what period of time
    # a session is automatically moved to file
    self._moveToFileInterval = self.application().setting(
      'DynamicSessionTimeout', 15) * 60

    # maxDynamicMemorySessions is what the user actually sets
    # in Application.config
    self._maxDynamicMemorySessions = self.application().setting(
      'MaxDynamicMemorySessions', 10000)

    # Used to keep track of sweeping the file store
    self._fileSweepCount = 0

    # Create a re-entrant lock for thread synchronization. The lock is used
    # to protect all code that modifies the contents of the file store and
    # all code that moves sessions between the file and memory stores, and
    # is also used to protect code that searches in the file store for a
    # session. Using the lock in this way avoids a bug that used to be in
    #this code, where a session was temporarily neither in the file store
    # nor in the memory store while it was being moved from file to memory.
    self._lock = threading.RLock()

    if debug:
      print "SessionDynamicStore Initialized"


  ## Access ##

  def __len__(self):
    self._lock.acquire()
    try:
      return len(self._memoryStore) + len(self._fileStore)
    finally:
      self._lock.release()

  def __getitem__(self, key):
    # First try to grab the session from the memory store without locking,
    # for efficiency. Only if that fails do we acquire the lock and look
    # in the file store.
    try:
      return self._memoryStore[key]
    except KeyError:
      self._lock.acquire()
      try:
        if self._fileStore.has_key(key):
          self.moveToMemory(key)
        # let it raise a KeyError otherwise
        return self._memoryStore[key]
      finally:
        self._lock.release()

  def __setitem__(self, key, item):
    self._memoryStore[key] = item

  def __delitem__(self, key):
    self._lock.acquire()
    try:
      try:
        del self._memoryStore[key]
      except KeyError:
        pass
      try:
        del self._fileStore[key]
      except KeyError:
        pass
    finally:
      self._lock.release()

  def has_key(self, key):
    # First try to find the session in the memory store without locking,
    # for efficiency.  Only if that fails do we acquire the lock and
    # look in the file store.
    if self._memoryStore.has_key(key):
      return 1
    self._lock.acquire()
    try:
      return self._memoryStore.has_key(key) or self._fileStore.has_key(key)
    finally:
      self._lock.release()

  def keys(self):
    self._lock.acquire()
    try:
      return self._memoryStore.keys() + self._fileStore.keys()
    finally:
      self._lock.release()

  def clear(self):
    self._lock.acquire()
    try:
      self._memoryStore.clear()
      self._fileStore.clear()
    finally:
      self._lock.release()

  def setdefault(self, key, default):
    self._lock.acquire()
    try:
      try:
        return self[key]
      except KeyError:
        self[key] = default
        return default
    finally:
      self._lock.release()

  def moveToMemory(self, key):
    self._lock.acquire()
    try:
      if debug:
        print ">> Moving %s to Memory" % key
      self._memoryStore[key] = self._fileStore[key]
      self._fileStore.removeKey(key)
    finally:
      self._lock.release()

  def moveToFile(self, key):
    self._lock.acquire()
    try:
      if debug:
        print ">> Moving %s to File" % key
      self._fileStore[key] = self._memoryStore[key]
      del self._memoryStore[key]
    finally:
      self._lock.release()

  def setEncoderDecoder(self, encoder, decoder):
    # @@ 2002-11-26 jdh: # propogate the encoder/decoder to the
    # underlying SessionFileStore
    self._fileStore.setEncoderDecoder(encoder, decoder)
    SessionStore.setEncoderDecoder(self, encoder, decoder)


  ## Application support ##

  def storeSession(self, session):
    pass

  def storeAllSessions(self):
    self._lock.acquire()
    try:
      for i in self._memoryStore.keys():
        self.moveToFile(i)
    finally:
      self._lock.release()

  def cleanStaleSessions(self, task=None):
    """Clean stale sessions.

    Called by the Application to tell this store to clean out all sessions
    that have exceeded their lifetime.
    We want to have their native class functions handle it, though.

    Ideally, intervalSweep would be run more often than the
    cleanStaleSessions functions for the actual stores.
    This may need to wait until we get the TaskKit in place, though.

    The problem is the FileStore.cleanStaleSessions can take a while to run.
    So here, we only run the file sweep every fourth time.

    """
    if debug:
      print "Session Sweep started"
    try:
      if self._fileSweepCount == 0:
        self._fileStore.cleanStaleSessions(task)
      self._memoryStore.cleanStaleSessions(task)
    except KeyError:
      pass
    if self._fileSweepCount < 4:
      self._fileSweepCount += 1
    else:
      self._fileSweepCount = 0
    # Now move sessions from memory to file as necessary:
    self.intervalSweep()
    # It's OK for a session to be moved from memory to file or vice versa
    # in between the time we get the keys and the time we actually ask
    # for the session's access time. It may take a while for the fileStore
    # sweep to get completed.

  def intervalSweep(self):
    """The session sweeper interval function.

    The interval function moves sessions from memory to file
    and can be run more often than the full cleanStaleSessions function.

    """
    if debug:
      print "Starting interval Sweep at %s" % time.ctime(time.time())
      print "Memory Sessions: %s   FileSessions: %s" % (
        len(self._memoryStore), len(self._fileStore))
      print "maxDynamicMemorySessions = %s" % self._maxDynamicMemorySessions
      print "moveToFileInterval = %s" % self._moveToFileInterval

    now = time.time()

    delta = now - self._moveToFileInterval
    for i in self._memoryStore.keys():
      try:
        if self._memoryStore[i].lastAccessTime() < delta:
          if self._memoryStore[i].isNew():
            if debug:
              print "trashing one-shot session", i
          else:
            self.moveToFile(i)
      except KeyError:
        pass

    if len(self._memoryStore) > self._maxDynamicMemorySessions:
      keys = self.memoryKeysInAccessTimeOrder()
      excess = len(self._memoryStore) - self._maxDynamicMemorySessions
      if debug:
        print excess, "sessions beyond the limit"
      for i in keys[:excess]:
        try:
          self.moveToFile(i)
        except KeyError:
          pass

    if debug:
      print "Finished interval Sweep at %s" % time.ctime(time.time())
      print "Memory Sessions: %s   FileSessions: %s" % (
        len(self._memoryStore), len(self._fileStore))

  def memoryKeysInAccessTimeOrder(self):
    """Return memory store's keys in ascending order of last access time."""
    # This sorting technique is faster than using a comparison function.
    accessTimeAndKeys = []
    for key in self._memoryStore.keys():
      try:
        accessTimeAndKeys.append(
          (self._memoryStore[key].lastAccessTime(), key))
      except KeyError:
        pass
    accessTimeAndKeys.sort()
    return [key for accessTime, key in accessTimeAndKeys]
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.