-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathCache_Memcached_Stats.php
151 lines (131 loc) · 3.53 KB
/
Cache_Memcached_Stats.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<?php
/**
* File: Cache_Memcached_Stats.php
*
* @package W3TC
*/
namespace W3TC;
/**
* Class Cache_Memcached_Stats
*
* Download extended statistics since module cant do it by itself
*
* phpcs:disable WordPress.PHP.NoSilencedErrors.Discouraged
* phpcs:disable WordPress.WP.AlternativeFunctions
*/
class Cache_Memcached_Stats {
/**
* Constructor to initialize the Memcached stats handler.
*
* @param string $host The hostname or IP address of the Memcached server.
* @param int $port The port number of the Memcached server.
*
* @return void
*/
public function __construct( $host, $port ) {
$this->host = $host;
$this->port = $port;
}
/**
* Sends a command to the Memcached server and retrieves the response.
*
* @param string $command The command to send to the Memcached server.
*
* @return array|null An array of response lines from the server, or null on failure.
*/
public function request( $command ) {
$handle = @fsockopen( $this->host, $this->port );
if ( ! $handle ) {
return null;
}
fwrite( $handle, $command . "\r\n" );
$response = array();
while ( ( ! feof( $handle ) ) ) {
$line = fgets( $handle );
$response[] = $line;
if ( $this->end( $line, $command ) ) {
break;
}
}
@fclose( $handle );
return $response;
}
/**
* Determines if the server response indicates the end of a command's execution.
*
* @param string $buffer The current line of the server's response.
* @param string $command The command that was sent to the server.
*
* @return bool True if the response indicates the end of the command, false otherwise.
*/
private function end( $buffer, $command ) {
// incr or decr also return integer.
if ( ( preg_match( '/^(incr|decr)/', $command ) ) ) {
if ( preg_match( '/^(END|ERROR|SERVER_ERROR|CLIENT_ERROR|NOT_FOUND|[0-9]*)/', $buffer ) ) {
return true;
}
} else {
if ( preg_match( '/^(END|DELETED|OK|ERROR|SERVER_ERROR|CLIENT_ERROR|NOT_FOUND|STORED|RESET|TOUCHED)/', $buffer ) ) {
return true;
}
}
return false;
}
/**
* Parses the response lines into an array of data.
*
* @param array $lines An array of response lines from the Memcached server.
*
* @return array A parsed array where each line is split into words.
*/
public function parse( $lines ) {
$return = array();
foreach ( $lines as $line ) {
$data = explode( ' ', $line );
$return[] = $data;
}
return $return;
}
/**
* Retrieves the IDs of all active slabs on the Memcached server.
*
* A slab is a logical unit of storage in Memcached.
*
* @return array|null An array of slab IDs, or null on failure.
*/
public function slabs() {
$result = $this->request( 'stats slabs' );
if ( is_null( $result ) ) {
return null;
}
$result = $this->parse( $result );
$slabs = array();
foreach ( $result as $line_words ) {
if ( count( $line_words ) < 2 ) {
continue;
}
$key = explode( ':', $line_words[1] );
if ( (int) $key[0] > 0 ) {
$slabs[ $key[0] ] = '*';
}
}
return array_keys( $slabs );
}
/**
* Retrieves a cachedump for a specific slab ID.
*
* A cachedump returns the cached items for the specified slab.
*
* @param int $slab_id The ID of the slab to retrieve the cachedump for.
*
* @return array|null An array of cachedump data, or null on failure.
*/
public function cachedump( $slab_id ) {
$result = $this->request( 'stats cachedump ' . $slab_id . ' 0' );
if ( is_null( $result ) ) {
return null;
}
// return pure data to limit memory usage.
return $result;
}
}