<?php

/* vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4: */
// +----------------------------------------------------------------------+
// | PHP version 4                                                        |
// +----------------------------------------------------------------------+
// | Copyright (c) 1997-2002 The PHP Group                                |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.0 of the PHP license,       |
// | that is bundled with this package in the file LICENSE, and is        |
// | available at through the world-wide-web at                           |
// | http://www.php.net/license/2_02.txt.                                 |
// | If you did not receive a copy of the PHP license and are unable to   |
// | obtain it through the world-wide-web, please send a note to          |
// | license@php.net so we can mail you a copy immediately.               |
// +----------------------------------------------------------------------+
// | Authors: Evgeny Stepanischev <imbolk@gmail.com>                      |
// +----------------------------------------------------------------------+
// Project home page (Russian): http://bolknote.ru/files/shared/
//
// $Id$

require_once 'System/SharedMemory/Common.php';

class 
System_SharedMemory_Memache extends System_SharedMemory_Common
{
    
/**
    * true if plugin was connected to backend
    *
    * @var bool
    *
    * @access private
    */
    
var $_connected;

    
/**
    * Memcache object instance
    *
    * @var object
    *
    * @access private
    */
    
var $_mc;

    
/**
     * Constructor. Init all variables.
     *
     * @param array $options
     *
     * @access public
     */
    
function System_SharedMemory_Memcache($options)
    {
        
extract($this->_default($options, array
        (
                
'host'  => '127.0.0.1',
                
'port'  => 11211,
                
'timeout' => false,
                
'persistent' => false,
                )));

                
$func $persistent 'pconnect' 'connect';

        
$this->_mc  = &new Memcache;
        
$this->_connected $timeout === false ?
            
$this->_mc->$func($host$port) :
            
$this->_mc->$func($host$port$timeout);
    }

    
/**
     * returns true if plugin was
     * successfully connected to backend
     *
     * @return bool true if connected
     * @access public
     */
    
function isConnected()
    {
        return 
$this->_connected;
    }

    
/**
     * returns value of variable in shared mem
     *
     * @param string $name name of variable
     *
     * @return mixed value of the variable
     * @access public
     */
    
function get($name)
    {
        return 
$this->_mc->get($name);
    }

    
/**
     * returns value of variable in shared mem
     *
     * @param string $name  name of the variable
     * @param string $value value of the variable
     * @param int $ttl (optional) time to life of the variable
     *
     * @return bool true on success
     * @access public
     */
    
function set($name$value$ttl 0)
    {
        return 
$this->_mc->set($name$value0$ttl);
    }

    
/**
     * remove variable from memory
     *
     * @param string $name  name of the variable
     *
     * @return bool true on success
     * @access public
     */
    
function rm($name$ttl false)
    {
        return 
$ttl === false ?
            
$this->_mc->delete($name) :
            
$this->_mc->delete($name$ttl);
    }
}
?>