<?php
namespace ticky\cache\driver;
use ticky\cache\contract;
class file extends contract {
public function __construct($config) {
$this->config = $config;
}
public function exists($key) {
$file = $this->_file($key);
if (!is_file($file)) {
return false;
}
return true;
}
public function get($key) {
if (!$this->exists($key)) {
return false;
}
$file = $this->_file($key);
$data = $this->_filegetcontents($file);
if ($data['expire'] == 0 || SYS_TIME < $data['expire']) {
return $data['contents'];
}
return false;
}
public function set($key, $value, $expire = 0) {
if (empty($value)) {
return false;
}
$cache = array();
$cache['key'] = $key;
$cache['contents'] = $value;
$cache['expire'] = $expire === 0 ? 0 : NOW_TIME + $expire;
$cache['mtime'] = NOW_TIME;
if (!is_dir($this->config['save_path'])) {
@mkdir($this->config['save_path'], 0777, true);
}
$file = $this->_file($key);
return $this->_fileputcontents($file, $cache);
}
public function delete($key) {
if (!$this->exists($key)) {
return false;
}
$file = $this->_file($key);
return unlink($file);
}
public function clean() {
$glob = glob($this->config['save_path'] . '*' . $this->config['suffix']);
if (empty($glob)) {
return false;
}
foreach ($glob as $v) {
$id = $this->_filenametoid(basename($v));
$this->delete($id);
}
return true;
}
protected function _file($id) {
$filenmae = $this->_idtofilename($id);
return $this->config['save_path'] . DS . $filenmae;
}
protected function _idtofilename($id) {
return $id . $this->config['suffix'];
}
protected function _filenametoid($filename) {
return str_replace($this->config['suffix'], '', $filename);
}
protected function _fileputcontents($file, $contents) {
if ($this->config['mode'] == 1) {
$contents = serialize($contents);
} else {
$contents = "<?php\nreturn " . var_export($contents, true) . ";\n?>";
}
$filesize = file_put_contents($file, $contents, LOCK_EX);
return $filesize ? $filesize : false;
}
protected function _filegetcontents($file) {
if (!file_exists($file)) {
return false;
}
if ($this->config['mode'] == 1) {
return unserialize(file_get_contents($file));
} else {
return @require $file;
}
}
}