-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApi.php
More file actions
123 lines (108 loc) · 3.29 KB
/
Api.php
File metadata and controls
123 lines (108 loc) · 3.29 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
<?php
/**
* Novutec Domain Tools
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @category Novutec
* @package MessagePackRpcClient
* @copyright Copyright (c) 2007 - 2013 Novutec Inc. (http://www.novutec.com)
* @license http://www.apache.org/licenses/LICENSE-2.0
*/
/**
* @namespace Novutec\MessagePackRpcClient
*/
namespace Novutec\MessagePackRpcClient;
/**
* define MessagePackRpcClient Path
*/
define('MSGPACK_PATH', dirname(__FILE__));
/**
* @see Client
*/
require_once MSGPACK_PATH . '/Client.php';
/**
* @see Exception
*/
require_once MSGPACK_PATH . '/Exception/AbstractException.php';
/**
* Api class of MessagePackRpcClient
*
* @category Novutec
* @package MessagePackRpcClient
* @copyright Copyright (c) 2007 - 2013 Novutec Inc. (http://www.novutec.com)
* @license http://www.apache.org/licenses/LICENSE-2.0
*/
class Api extends Client
{
/**
* Should the exceptions be thrown or caugth and trapped in the response?
*
* @var boolean
* @access protected
*/
protected $throwExceptions = false;
/**
* Call parent constructer
*
* @param string $socket
* @param integer $length
* @param integer $timeout
* @param boolean $debug
* @param string $destination
* @return boolean
*/
public function __construct($socket = 'tcp://localhost:8000', $length = 1024, $timeout = 30, $debug = false,
$destination = '/log/msgpack-rpc-client.log')
{
parent::__construct($socket, $length, $timeout, $debug, $destination);
}
/**
* Calls parent call() method to send data to the socket and to receive the response
*
* @throws instance of AbstractException
* @param string $method
* @param array $params
* @return mixed
*/
public function __call($method, $params)
{
try {
$return = parent::call($method, $params);
if (is_object($return)) {
} else {
}
return $return;
} catch (\Novutec\MessagePackRpcClient\AbstractException $e) {
if ($this->throwExceptions) {
throw $e;
}
return array('code' => $e->getCode(), 'msg' => $e->getMessage());
}
}
/**
* Set the throwExceptions flag
*
* Set whether exceptions encounted in the dispatch loop should be thrown
* or caught and trapped in the response object.
*
* Default behaviour is to trap them in the response object; call this
* method to have them thrown.
*
* @param boolean $throwExceptions
* @return void
*/
public function throwExceptions($throwExceptions = false)
{
$this->throwExceptions = filter_var($throwExceptions, FILTER_VALIDATE_BOOLEAN);
}
}