00001 <?php
00002 require_once dirname(__FILE__) . '/cache.xcache.impl.php';
00003
00004
00005
00006
00007
00008
00009
00010 class CacheXCache12Impl extends CacheXCacheImpl {
00011
00012
00013
00014 protected function do_clear_all() {
00015 $this->do_clear(array());
00016 }
00017
00018
00019
00020
00021 protected function do_clear($cache_keys) {
00022
00023
00024
00025
00026
00027
00028 $cleaned = $this->preprocess_keys($cache_keys, false);
00029 $ns = $this->get_keys_namespaces($cleaned);
00030 $n = array_pop($ns);
00031 if ($n) {
00032
00033
00034 xcache_inc($n, 1);
00035 }
00036 }
00037
00038
00039
00040
00041
00042
00043 protected function flatten_keys($cache_keys) {
00044 $cache_keys = $this->preprocess_keys($cache_keys);
00045 $ns_keys = $this->get_keys_namespaces($cache_keys);
00046
00047 $tmp = array();
00048 foreach($cache_keys as $key) {
00049 $tmp[] = $key . ':=' . $this->get_namespace_value(array_shift($ns_keys));
00050 }
00051
00052 return implode('_', $tmp);
00053 }
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063 protected function get_keys_namespaces($cache_keys) {
00064 $ret = array();
00065 foreach(Arr::force($cache_keys, true) as $key) {
00066 $ns_key .= 'g$ns' . $key;
00067 $ret[] = $ns_key;
00068 }
00069 return $ret;
00070 }
00071
00072
00073
00074
00075
00076
00077 protected function get_namespace_value($ns) {
00078 if (xcache_isset($ns)) {
00079 $ret = xcache_get($ns);
00080 }
00081 else {
00082
00083 $ret = rand(1, 1000);
00084 xcache_set($ns, $ret);
00085 }
00086 return $ret;
00087 }
00088 }