-
-
Notifications
You must be signed in to change notification settings - Fork 665
Expand file tree
/
Copy pathBaseClass.php
More file actions
246 lines (207 loc) · 4.73 KB
/
BaseClass.php
File metadata and controls
246 lines (207 loc) · 4.73 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
<?php
namespace devilbox;
/**
* @requires devilbox::Logger
*/
class BaseClass
{
/*********************************************************************************
*
* Statics
*
*********************************************************************************/
/**
* Class instance
* @var array
*/
private static $_instance = array();
/**
* Generic singleton instance getter.
* Make sure to overwrite this in your class
* for a more complex initialization.
*
* @param string $hostname Hostname
* @param array $data Additional data (if required)
* @return object|null
*/
public static function getInstance($hostname, $data = array())
{
if (!isset(self::$_instance[$hostname])) {
self::$_instance[$hostname] = new static($hostname, $data);
}
return self::$_instance[$hostname];
}
/*********************************************************************************
*
* Instance
*
*********************************************************************************/
/**
* Hostname
* @var string
*/
private $_hostname = null;
/**
* Container is running
* @var boolean
*/
private $_available = null;
/**
* Connection error string
* @var string
*/
private $_connect_error = '';
/**
* Connection error code
* @var integer
*/
private $_connect_errno = 0;
/**
* Error string
* @var string
*/
private $_error = '';
/**
* Error code
* @var integer
*/
private $_errno = 0;
/*********************************************************************************
*
* Private constructor for singleton
*
*********************************************************************************/
/**
* DO NOT CALL ME!
* Use singleton getInstance() instead.
*
* @param string $user Username
* @param string $pass Password
* @param string $host Host
*/
public function __construct($hostname, $data = array())
{
$this->_hostname = $hostname;
}
/*********************************************************************************
*
* Public Default Interface Implementations
*
*********************************************************************************/
/**
* Check if this container is available.
* Note, this is a very basic check to see if its IP address
* can be resolved. Implement a better check in the actual class
* if it is required.
*
* @return boolean available
*/
public function isAvailable()
{
// Request was already done before and is cached
if (isset($this->_available[$this->_hostname])) {
return $this->_available[$this->_hostname];
}
// New request, check if hostname was set
if ($this->_hostname === null) {
loadClass('Logger')->error('Hostname has not been initialized. Cannot determine if it is available.');
$this->_available = false;
return false;
}
// New request, generic check
$ip = $this->getIpAddress();
$this->_available[$this->_hostname] = ($ip && $ip != $this->_hostname) ? true : false;
return $this->_available[$this->_hostname];
}
/**
* Retrieve the IP address of the container.
*
* @return string|boolean IP address or false
*/
public function getIpAddress()
{
// Check if hostname was set
if ($this->_hostname === null) {
loadClass('Logger')->error('Hostname has not been initialized. Cannot determine IP address.');
return false;
}
return loadClass('Helper')->getIpAddress($this->_hostname);
}
/*********************************************************************************
*
* Connection Error Getter/Setter
*
*********************************************************************************/
/**
* Set Connection Error Message.
*
* @param string $error Error Message
*/
public function setConnectError($error)
{
$this->_connect_error = $error;
}
/**
* Set Connection Error Code.
*
* @param integer $errno Error Code
*/
public function setConnectErrno($errno)
{
$this->_connect_errno = $errno;
}
/**
* Set Error Message.
*
* @param string $error Error message
*/
public function setError($error)
{
$this->_error = $error;
}
/**
* Set Error Code.
*
* @param integer $errno Error Code
*/
public function setErrno($errno)
{
$this->_erro = $errno;
}
/**
* Return connection error message.
*
* @return string Error message
*/
public function getConnectError()
{
return $this->_connect_error;
}
/**
* Return connection errno code.
*
* @return integer Error code
*/
public function getConnectErrno()
{
return $this->_connect_errno;
}
/**
* Return error message.
*
* @return string Error message
*/
public function getError()
{
return $this->_error;
}
/**
* Return errno code.
*
* @return integer Error code
*/
public function getErrno()
{
return $this->_errno;
}
}