Class: CGI::Session::MemoryStore

Inherits:
Object
  • Object
show all
Defined in:
lib/rubysl/cgi/session/session.rb

Overview

In-memory session storage class.

Implements session storage as a global in-memory hash. Session data will only persist for as long as the Ruby interpreter instance does.

Constant Summary collapse

GLOBAL_HASH_TABLE =

:nodoc:

{}

Instance Method Summary collapse

Constructor Details

#initialize(session, option = nil) ⇒ MemoryStore

Create a new MemoryStore instance.

session is the session this instance is associated with. option is a list of initialisation options. None are currently recognized.



459
460
461
462
463
464
465
466
467
# File 'lib/rubysl/cgi/session/session.rb', line 459

def initialize(session, option=nil)
  @session_id = session.session_id
  unless GLOBAL_HASH_TABLE.key?(@session_id)
    unless session.new_session
      raise CGI::Session::NoSession, "uninitialized session"
    end
    GLOBAL_HASH_TABLE[@session_id] = {}
  end
end

Instance Method Details

#closeObject

Close session storage.

A no-op.



486
487
488
# File 'lib/rubysl/cgi/session/session.rb', line 486

def close
  # don't need to close
end

#deleteObject

Delete the session state.



491
492
493
# File 'lib/rubysl/cgi/session/session.rb', line 491

def delete
  GLOBAL_HASH_TABLE.delete(@session_id)
end

#restoreObject

Restore session state.

Returns session data as a hash.



472
473
474
# File 'lib/rubysl/cgi/session/session.rb', line 472

def restore
  GLOBAL_HASH_TABLE[@session_id]
end

#updateObject

Update session state.

A no-op.



479
480
481
# File 'lib/rubysl/cgi/session/session.rb', line 479

def update
  # don't need to update; hash is shared
end