00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 abstract class Mage_Core_Model_Session_Abstract_Zend extends Varien_Object
00035 {
00036
00037
00038
00039
00040
00041 protected $_namespace;
00042
00043 public function getNamespace()
00044 {
00045 return $this->_namespace;
00046 }
00047
00048 public function start()
00049 {
00050 Varien_Profiler::start(__METHOD__.'/setOptions');
00051 $options = array(
00052 'save_path'=>Mage::getBaseDir('session'),
00053 'use_only_cookies'=>'off',
00054 );
00055 if ($this->getCookieDomain()) {
00056 $options['cookie_domain'] = $this->getCookieDomain();
00057 }
00058 if ($this->getCookiePath()) {
00059 $options['cookie_path'] = $this->getCookiePath();
00060 }
00061 if ($this->getCookieLifetime()) {
00062 $options['cookie_lifetime'] = $this->getCookieLifetime();
00063 }
00064 Zend_Session::setOptions($options);
00065 Varien_Profiler::stop(__METHOD__.'/setOptions');
00066
00067
00068
00069
00070
00071
00072
00073
00074 Varien_Profiler::start(__METHOD__.'/start');
00075 Zend_Session::start();
00076 Varien_Profiler::stop(__METHOD__.'/start');
00077
00078 return $this;
00079 }
00080
00081
00082
00083
00084
00085
00086 public function init($namespace)
00087 {
00088 if (!Zend_Session::sessionExists()) {
00089 $this->start();
00090 }
00091
00092 Varien_Profiler::start(__METHOD__.'/init');
00093 $this->_namespace = new Zend_Session_Namespace($namespace, Zend_Session_Namespace::SINGLE_INSTANCE);
00094 Varien_Profiler::stop(__METHOD__.'/init');
00095 return $this;
00096 }
00097
00098
00099
00100
00101
00102
00103
00104
00105 public function setData($key, $value='', $isChanged = false)
00106 {
00107 if (!$this->_namespace->data) {
00108 $this->_namespace->data = new Varien_Object();
00109 }
00110 $this->_namespace->data->setData($key, $value, $isChanged);
00111 return $this;
00112 }
00113
00114
00115
00116
00117
00118
00119
00120
00121 public function getData($var=null, $clear=false)
00122 {
00123 if (!$this->_namespace->data) {
00124 $this->_namespace->data = new Varien_Object();
00125 }
00126
00127 $data = $this->_namespace->data->getData($var);
00128
00129 if ($clear) {
00130 $this->_namespace->data->unsetData($var);
00131 }
00132
00133 return $data;
00134 }
00135
00136
00137
00138
00139
00140
00141 public function unsetAll()
00142 {
00143 $this->_namespace->unsetAll();
00144 return $this;
00145 }
00146
00147
00148
00149
00150
00151
00152 public function getSessionId()
00153 {
00154 return Zend_Session::getId();
00155 }
00156
00157 public function setSessionId($id=null)
00158 {
00159 if (!is_null($id)) {
00160 Zend_Session::setId($id);
00161 }
00162 return $this;
00163 }
00164 }