forked from deniskin82/httpsqs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttpsqs_client.php
More file actions
403 lines (375 loc) · 16.3 KB
/
httpsqs_client.php
File metadata and controls
403 lines (375 loc) · 16.3 KB
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
<?php
/*
----------------------------------------------------------------------------------------------------------------
HTTP Simple Queue Service - httpsqs client class for PHP v1.3
Author: Zhang Yan (http://blog.s135.com), E-mail: [email protected]
This is free software, and you are welcome to modify and redistribute it under the New BSD License
----------------------------------------------------------------------------------------------------------------
Useage:
<?php
include_once("httpsqs_client.php");
$httpsqs = new httpsqs;
//http connect without Keep-Alive (Use in Webserver)
$result = $httpsqs->put($host, $port, $charset, $name, $data); //1. PUT text message into a queue. If PUT successful, return boolean: true. If an error occurs, return boolean: false. If queue full, return text: HTTPSQS_PUT_END
$result = $httpsqs->get($host, $port, $charset, $name); //2. GET text message from a queue. Return the queue contents. If an error occurs, return boolean: false. If there is no unread queue message, return text: HTTPSQS_GET_END
$result = $httpsqs->gets($host, $port, $charset, $name); //3. GET text message and pos from a queue. Return example: array("pos" => 7, "data" => "text message"). If an error occurs, return boolean: false. If there is no unread queue message, return: array("pos" => 0, "data" => "HTTPSQS_GET_END")
$result = $httpsqs->status($host, $port, $charset, $name); //4. View queue status
$result = $httpsqs->status_json($host, $port, $charset, $name); //5. View queue status in json. Return example: {"name":"queue_name","maxqueue":5000000,"putpos":130,"putlap":1,"getpos":120,"getlap":1,"unread":10}
$result = $httpsqs->view($host, $port, $charset, $name, $pos); //6. View the contents of the specified queue pos (id). Return the contents of the specified queue pos.
$result = $httpsqs->reset($host, $port, $charset, $name); //7. Reset the queue. If reset successful, return boolean: true. If an error occurs, return boolean: false
$result = $httpsqs->maxqueue($host, $port, $charset, $name, $num); //8. Change the maximum queue length of per-queue. If change the maximum queue length successful, return boolean: true. If it be cancelled, return boolean: false
$result = $httpsqs->synctime($host, $port, $charset, $name, $num); //9. Change the interval to sync updated contents to the disk. If change the interval successful, return boolean: true. If it be cancelled, return boolean: false
//http pconnect with Keep-Alive (Very fast in Command line mode)
$result = $httpsqs->pput($host, $port, $charset, $name, $data); //1. PUT text message into a queue. If PUT successful, return boolean: true. If an error occurs, return boolean: false. If queue full, return text: HTTPSQS_PUT_END
$result = $httpsqs->pget($host, $port, $charset, $name); //2. GET text message from a queue. Return the queue contents. If an error occurs, return boolean: false. If there is no unread queue message, return text: HTTPSQS_GET_END
$result = $httpsqs->pgets($host, $port, $charset, $name); //3. GET text message and pos from a queue. Return example: array("pos" => 7, "data" => "text message"). If there is no unread queue message, return: array("pos" => 0, "data" => "HTTPSQS_GET_END")
$result = $httpsqs->pstatus($host, $port, $charset, $name); //4. View queue status
$result = $httpsqs->pstatus_json($host, $port, $charset, $name); //5. View queue status in json. Return example: {"name":"queue_name","maxqueue":5000000,"putpos":130,"putlap":1,"getpos":120,"getlap":1,"unread":10}
$result = $httpsqs->pview($host, $port, $charset, $name, $pos); //6. View the contents of the specified queue pos (id). Return the contents of the specified queue pos.
$result = $httpsqs->preset($host, $port, $charset, $name); //7. Reset the queue. If reset successful, return boolean: true. If an error occurs, return boolean: false
$result = $httpsqs->pmaxqueue($host, $port, $charset, $name, $num); //8. Change the maximum queue length of per-queue. If change the maximum queue length successful, return boolean: true. If it be cancelled, return boolean: false
$result = $httpsqs->psynctime($host, $port, $charset, $name, $num); //9. Change the interval to sync updated contents to the disk. If change the interval successful, return boolean: true. If it be cancelled, return boolean: false
?>
----------------------------------------------------------------------------------------------------------------
*/
$GLOBAL_HTTPSQS_PSOCKET = false;
class httpsqs
{
function http_get($host, $port, $query)
{
$httpsqs_socket = @fsockopen($host, $port, $errno, $errstr, 5);
if (!$httpsqs_socket)
{
return false;
}
$out = "GET ${query} HTTP/1.1\r\n";
$out .= "Host: ${host}\r\n";
$out .= "Connection: close\r\n";
$out .= "\r\n";
fwrite($httpsqs_socket, $out);
$line = trim(fgets($httpsqs_socket));
$header = $line;
list($proto, $rcode, $result) = explode(" ", $line);
$len = -1;
while (($line = trim(fgets($httpsqs_socket))) != "")
{
$header .= $line;
if (strstr($line, "Content-Length:"))
{
list($cl, $len) = explode(" ", $line);
}
if (strstr($line, "Pos:"))
{
list($pos_key, $pos_value) = explode(" ", $line);
}
}
if ($len < 0)
{
return false;
}
$body = @fread($httpsqs_socket, $len);
fclose($httpsqs_socket);
$result_array["pos"] = (int)$pos_value;
$result_array["data"] = $body;
return $result_array;
}
function http_post($host, $port, $query, $body)
{
$httpsqs_socket = @fsockopen($host, $port, $errno, $errstr, 5);
if (!$httpsqs_socket)
{
return false;
}
$out = "POST ${query} HTTP/1.1\r\n";
$out .= "Host: ${host}\r\n";
$out .= "Content-Length: " . strlen($body) . "\r\n";
$out .= "Connection: close\r\n";
$out .= "\r\n";
$out .= $body;
fwrite($httpsqs_socket, $out);
$line = trim(fgets($httpsqs_socket));
$header = $line;
list($proto, $rcode, $result) = explode(" ", $line);
$len = -1;
while (($line = trim(fgets($httpsqs_socket))) != "")
{
$header .= $line;
if (strstr($line, "Content-Length:"))
{
list($cl, $len) = explode(" ", $line);
}
if (strstr($line, "Pos:"))
{
list($pos_key, $pos_value) = explode(" ", $line);
}
}
if ($len < 0)
{
return false;
}
$body = @fread($httpsqs_socket, $len);
fclose($httpsqs_socket);
$result_array["pos"] = (int)$pos_value;
$result_array["data"] = $body;
return $result_array;
}
function http_pget($host, $port, $query)
{
global $GLOBAL_HTTPSQS_PSOCKET;
$hostport = md5($host.":".$port);
if (!$GLOBAL_HTTPSQS_PSOCKET[$hostport])
{
$GLOBAL_HTTPSQS_PSOCKET[$hostport] = @pfsockopen($host, $port, $errno, $errstr, 5);
}
if (!$GLOBAL_HTTPSQS_PSOCKET[$hostport])
{
return false;
}
$out = "GET ${query} HTTP/1.1\r\n";
$out .= "Host: ${host}\r\n";
$out .= "Connection: Keep-Alive\r\n";
$out .= "\r\n";
fwrite($GLOBAL_HTTPSQS_PSOCKET[$hostport], $out);
$line = trim(fgets($GLOBAL_HTTPSQS_PSOCKET[$hostport]));
if (empty($line) == true) {
unset($GLOBAL_HTTPSQS_PSOCKET[$hostport]);
$GLOBAL_HTTPSQS_PSOCKET[$hostport] = @pfsockopen($host, $port, $errno, $errstr, 5);
if ($GLOBAL_HTTPSQS_PSOCKET[$hostport])
{
fwrite($GLOBAL_HTTPSQS_PSOCKET[$hostport], $out);
$line = trim(fgets($GLOBAL_HTTPSQS_PSOCKET[$hostport]));
} else {
return false;
}
}
$header = $line;
list($proto, $rcode, $result) = explode(" ", $line);
$len = -1;
while (($line = trim(fgets($GLOBAL_HTTPSQS_PSOCKET[$hostport]))) != "")
{
$header .= $line;
if (strstr($line, "Content-Length:"))
{
list($cl, $len) = explode(" ", $line);
}
if (strstr($line, "Pos:"))
{
list($pos_key, $pos_value) = explode(" ", $line);
}
}
if ($len < 0)
{
return false;
}
$body = @fread($GLOBAL_HTTPSQS_PSOCKET[$hostport], $len);
$result_array["pos"] = (int)$pos_value;
$result_array["data"] = $body;
return $result_array;
}
function http_ppost($host, $port, $query, $body)
{
global $GLOBAL_HTTPSQS_PSOCKET;
$hostport = md5($host.":".$port);
if (!$GLOBAL_HTTPSQS_PSOCKET[$hostport])
{
$GLOBAL_HTTPSQS_PSOCKET[$hostport] = @pfsockopen($host, $port, $errno, $errstr, 5);
}
if (!$GLOBAL_HTTPSQS_PSOCKET[$hostport])
{
return false;
}
$out = "POST ${query} HTTP/1.1\r\n";
$out .= "Host: ${host}\r\n";
$out .= "Content-Length: " . strlen($body) . "\r\n";
$out .= "Connection: Keep-Alive\r\n";
$out .= "\r\n";
$out .= $body;
fwrite($GLOBAL_HTTPSQS_PSOCKET[$hostport], $out);
$line = trim(fgets($GLOBAL_HTTPSQS_PSOCKET[$hostport]));
if (empty($line) == true) {
unset($GLOBAL_HTTPSQS_PSOCKET[$hostport]);
$GLOBAL_HTTPSQS_PSOCKET[$hostport] = @pfsockopen($host, $port, $errno, $errstr, 5);
if ($GLOBAL_HTTPSQS_PSOCKET[$hostport])
{
fwrite($GLOBAL_HTTPSQS_PSOCKET[$hostport], $out);
$line = trim(fgets($GLOBAL_HTTPSQS_PSOCKET[$hostport]));
} else {
return false;
}
}
$header = $line;
list($proto, $rcode, $result) = explode(" ", $line);
$len = -1;
while (($line = trim(fgets($GLOBAL_HTTPSQS_PSOCKET[$hostport]))) != "")
{
$header .= $line;
if (strstr($line, "Content-Length:"))
{
list($cl, $len) = explode(" ", $line);
}
if (strstr($line, "Pos:"))
{
list($pos_key, $pos_value) = explode(" ", $line);
}
}
if ($len < 0)
{
return false;
}
$body = @fread($GLOBAL_HTTPSQS_PSOCKET[$hostport], $len);
$result_array["pos"] = (int)$pos_value;
$result_array["data"] = $body;
return $result_array;
}
/* ------------------ http connect without Keep-Alive (Use in Webserver) ------------------------ */
function put($host, $port, $charset='utf-8', $name, $data)
{
$result = $this->http_post($host, $port, "/?charset=".$charset."&name=".$name."&opt=put", $data);
if ($result["data"] == "HTTPSQS_PUT_OK") {
return true;
} else if ($result["data"] == "HTTPSQS_PUT_END") {
return $result["data"];
}
return false;
}
function get($host, $port, $charset='utf-8', $name)
{
$result = $this->http_get($host, $port, "/?charset=".$charset."&name=".$name."&opt=get");
if ($result == false || $result["data"] == "HTTPSQS_ERROR" || $result["data"] == false) {
return false;
}
return $result["data"];
}
function gets($host, $port, $charset='utf-8', $name)
{
$result = $this->http_get($host, $port, "/?charset=".$charset."&name=".$name."&opt=get");
if ($result == false || $result["data"] == "HTTPSQS_ERROR" || $result["data"] == false) {
return false;
}
return $result;
}
function status($host, $port, $charset='utf-8', $name)
{
$result = $this->http_get($host, $port, "/?charset=".$charset."&name=".$name."&opt=status");
if ($result == false || $result["data"] == "HTTPSQS_ERROR" || $result["data"] == false) {
return false;
}
return $result["data"];
}
function view($host, $port, $charset='utf-8', $name, $pos)
{
$result = $this->http_get($host, $port, "/?charset=".$charset."&name=".$name."&opt=view&pos=".$pos);
if ($result == false || $result["data"] == "HTTPSQS_ERROR" || $result["data"] == false) {
return false;
}
return $result["data"];
}
function reset($host, $port, $charset='utf-8', $name)
{
$result = $this->http_get($host, $port, "/?charset=".$charset."&name=".$name."&opt=reset");
if ($result["data"] == "HTTPSQS_RESET_OK") {
return true;
}
return false;
}
function maxqueue($host, $port, $charset='utf-8', $name, $num)
{
$result = $this->http_get($host, $port, "/?charset=".$charset."&name=".$name."&opt=maxqueue&num=".$num);
if ($result["data"] == "HTTPSQS_MAXQUEUE_OK") {
return true;
}
return false;
}
function status_json($host, $port, $charset='utf-8', $name)
{
$result = $this->http_get($host, $port, "/?charset=".$charset."&name=".$name."&opt=status_json");
if ($result == false || $result["data"] == "HTTPSQS_ERROR" || $result["data"] == false) {
return false;
}
return $result["data"];
}
function synctime($host, $port, $charset='utf-8', $name, $num)
{
$result = $this->http_get($host, $port, "/?charset=".$charset."&name=".$name."&opt=synctime&num=".$num);
if ($result["data"] == "HTTPSQS_SYNCTIME_OK") {
return true;
}
return false;
}
/* ------------------ http pconnect with Keep-Alive (Very fast in Command line mode) ------------------------ */
function pput($host, $port, $charset='utf-8', $name, $data)
{
$result = $this->http_ppost($host, $port, "/?charset=".$charset."&name=".$name."&opt=put", $data);
if ($result["data"] == "HTTPSQS_PUT_OK") {
return true;
} else if ($result["data"] == "HTTPSQS_PUT_END") {
return $result["data"];
}
return false;
}
function pget($host, $port, $charset='utf-8', $name)
{
$result = $this->http_pget($host, $port, "/?charset=".$charset."&name=".$name."&opt=get");
if ($result == false || $result["data"] == "HTTPSQS_ERROR" || $result["data"] == false) {
return false;
}
return $result["data"];
}
function pgets($host, $port, $charset='utf-8', $name)
{
$result = $this->http_pget($host, $port, "/?charset=".$charset."&name=".$name."&opt=get");
if ($result == false || $result["data"] == "HTTPSQS_ERROR" || $result["data"] == false) {
return false;
}
return $result;
}
function pstatus($host, $port, $charset='utf-8', $name)
{
$result = $this->http_pget($host, $port, "/?charset=".$charset."&name=".$name."&opt=status");
if ($result == false || $result["data"] == "HTTPSQS_ERROR" || $result["data"] == false) {
return false;
}
return $result["data"];
}
function pview($host, $port, $charset='utf-8', $name, $pos)
{
$result = $this->http_pget($host, $port, "/?charset=".$charset."&name=".$name."&opt=view&pos=".$pos);
if ($result == false || $result["data"] == "HTTPSQS_ERROR" || $result["data"] == false) {
return false;
}
return $result["data"];
}
function preset($host, $port, $charset='utf-8', $name)
{
$result = $this->http_pget($host, $port, "/?charset=".$charset."&name=".$name."&opt=reset");
if ($result["data"] == "HTTPSQS_RESET_OK") {
return true;
}
return false;
}
function pmaxqueue($host, $port, $charset='utf-8', $name, $num)
{
$result = $this->http_pget($host, $port, "/?charset=".$charset."&name=".$name."&opt=maxqueue&num=".$num);
if ($result["data"] == "HTTPSQS_MAXQUEUE_OK") {
return true;
}
return false;
}
function pstatus_json($host, $port, $charset='utf-8', $name)
{
$result = $this->http_pget($host, $port, "/?charset=".$charset."&name=".$name."&opt=status_json");
if ($result == false || $result["data"] == "HTTPSQS_ERROR" || $result["data"] == false) {
return false;
}
return $result["data"];
}
function psynctime($host, $port, $charset='utf-8', $name, $num)
{
$result = $this->http_pget($host, $port, "/?charset=".$charset."&name=".$name."&opt=synctime&num=".$num);
if ($result["data"] == "HTTPSQS_SYNCTIME_OK") {
return true;
}
return false;
}
}
?>