Completed
Pull Request — final (#340)
by
unknown
02:44
created

Driver::driverDelete()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 11
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 2
eloc 5
c 1
b 0
f 1
nc 2
nop 1
dl 0
loc 11
rs 9.4285
1
<?php
2
/**
3
 *
4
 * This file is part of phpFastCache.
5
 *
6
 * @license MIT License (MIT)
7
 *
8
 * For full copyright and license information, please see the docs/CREDITS.txt file.
9
 *
10
 * @author Lucas Brucksch <[email protected]>
11
 *
12
 */
13
14
namespace phpFastCache\Drivers\Zendshm;
15
16
use phpFastCache\Core\DriverAbstract;
17
use phpFastCache\Core\StandardPsr6StructureTrait;
18
use phpFastCache\Entities\driverStatistic;
19
use phpFastCache\Exceptions\phpFastCacheDriverCheckException;
20
use phpFastCache\Exceptions\phpFastCacheDriverException;
21
use Psr\Cache\CacheItemInterface;
22
23
/**
24
 * Class Driver (zend memory cache)
25
 * Requires Zend Data Cache Functions from ZendServer
26
 * @package phpFastCache\Drivers
27
 */
28
class Driver extends DriverAbstract
29
{
30
    /**
31
     * Driver constructor.
32
     * @param array $config
33
     * @throws phpFastCacheDriverException
34
     */
35
    public function __construct(array $config = [])
36
    {
37
        $this->setup($config);
38
39
        if (!$this->driverCheck()) {
40
            throw new phpFastCacheDriverCheckException(sprintf(self::DRIVER_CHECK_FAILURE, $this->getDriverName()));
41
        }
42
    }
43
44
    /**
45
     * @return bool
46
     */
47
    public function driverCheck()
48
    {
49
        if (extension_loaded('Zend Data Cache') && function_exists('zend_shm_cache_store')) {
50
            return true;
51
        } else {
52
            return false;
53
        }
54
    }
55
56
    /**
57
     * @param \Psr\Cache\CacheItemInterface $item
58
     * @return mixed
59
     * @throws \InvalidArgumentException
60
     */
61
    protected function driverWrite(CacheItemInterface $item)
62
    {
63
        /**
64
         * Check for Cross-Driver type confusion
65
         */
66
        if ($item instanceof Item) {
67
            $ttl = $item->getExpirationDate()->getTimestamp() - time();
68
69
            return zend_shm_cache_store($item->getKey(), $this->driverPreWrap($item), ($ttl > 0 ? $ttl : 0));
70
        } else {
71
            throw new \InvalidArgumentException('Cross-Driver type confusion detected');
72
        }
73
    }
74
75
    /**
76
     * @param \Psr\Cache\CacheItemInterface $item
77
     * @return mixed
78
     */
79
    protected function driverRead(CacheItemInterface $item)
80
    {
81
        $data = zend_shm_cache_fetch($item->getKey());
82
        if ($data === false) {
83
            return null;
84
        }
85
86
        return $data;
87
    }
88
89
    /**
90
     * @param \Psr\Cache\CacheItemInterface $item
91
     * @return bool
92
     * @throws \InvalidArgumentException
93
     */
94
    protected function driverDelete(CacheItemInterface $item)
95
    {
96
        /**
97
         * Check for Cross-Driver type confusion
98
         */
99
        if ($item instanceof Item) {
100
            return zend_shm_cache_delete($item->getKey());
101
        } else {
102
            throw new \InvalidArgumentException('Cross-Driver type confusion detected');
103
        }
104
    }
105
106
    /**
107
     * @return bool
108
     */
109
    protected function driverClear()
110
    {
111
        return @zend_shm_cache_clear();
112
    }
113
114
    /**
115
     * @return bool
116
     */
117
    protected function driverConnect()
118
    {
119
        return true;
120
    }
121
122
    /********************
123
     *
124
     * PSR-6 Extended Methods
125
     *
126
     *******************/
127
128
    /**
129
     * @return driverStatistic
130
     */
131
    public function getStats()
132
    {
133
        if(function_exists('zend_shm_cache_info')) {
134
            $stats = (array)zend_shm_cache_info();
135
            return (new driverStatistic())
136
                ->setData(implode(', ', array_keys($this->namespaces)))
0 ignored issues
show
Bug introduced by
The property namespaces does not exist. Did you maybe forget to declare it?

In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:

class MyClass { }

$x = new MyClass();
$x->foo = true;

Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion:

class MyClass {
    public $foo;
}

$x = new MyClass();
$x->foo = true;
Loading history...
137
                ->setInfo(sprintf("The Zend memory have %d item(s) in cache.\n For more information see RawData.", $stats['items_total']))
138
                ->setRawData($stats)
139
                ->setSize($stats['memory_total']);
140
        } else {
141
            /** zend_shm_cache_info supported V8 or higher */
142
            return (new driverStatistic())
143
                ->setData(implode(', ', array_keys($this->namespaces)))
144
                ->setInfo("The Zend memory statistics is only supported by ZendServer V8 or higher")
145
                ->setRawData(null)
146
                ->setSize(0);
147
        }
148
    }
149
}