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 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
|
/**
* PHP bindings to the rrdtool
*
* This source file is subject to the BSD license that is bundled
* with this package in the file LICENSE.
* ---------------------------------------------------------------
* Author: Miroslav Kubelik <koubel@php.net>
* ---------------------------------------------------------------
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php.h"
#include "zend_exceptions.h"
#include "ext/standard/php_smart_str.h"
#include <rrd.h>
#include "php_rrd.h"
#include "rrd_info.h"
#include "rrd_graph.h"
/* declare class entry */
static zend_class_entry *ce_rrd_graph;
/* declare class handlers */
static zend_object_handlers rrd_graph_handlers;
/**
* overloading the standard zend object structure (std property) in the need
* of having dedicated creating/cloning/destruction functions
*/
typedef struct _rrd_graph_object {
zend_object std;
char *file_path;
zval *zv_arr_options;
} rrd_graph_object;
/* {{{ rrd_graph_object_dtor
close all resources and the memory allocated for our internal object
*/
static void rrd_graph_object_dtor(void *object TSRMLS_DC)
{
rrd_graph_object *intern_obj = (rrd_graph_object *)object;
if (intern_obj->file_path)
efree(intern_obj->file_path);
if (intern_obj->zv_arr_options) {
zval_dtor(intern_obj->zv_arr_options);
}
zend_object_std_dtor(&intern_obj->std TSRMLS_CC);
efree(intern_obj);
}
/* }}} */
/* {{{ rrd_graph_object_new
creates new rrd graph object
*/
static zend_object_value rrd_graph_object_new(zend_class_entry *ce TSRMLS_DC)
{
rrd_graph_object *intern_obj;
zend_object_value retval;
#if ZEND_MODULE_API_NO < 20100409
zval *tmp;
#endif
intern_obj = ecalloc(1, sizeof(*intern_obj));
zend_object_std_init(&intern_obj->std, ce TSRMLS_CC);
intern_obj->file_path = NULL;
intern_obj->zv_arr_options = NULL;
#if ZEND_MODULE_API_NO >= 20100409
object_properties_init(&intern_obj->std, ce);
#else
zend_hash_copy(intern_obj->std.properties, &ce->default_properties,
(copy_ctor_func_t) zval_add_ref, (void *) &tmp, sizeof(zval*)
);
#endif
retval.handle = zend_objects_store_put(intern_obj,
(zend_objects_store_dtor_t)zend_objects_destroy_object,
(zend_objects_free_object_storage_t)rrd_graph_object_dtor,
NULL TSRMLS_CC
);
retval.handlers = &rrd_graph_handlers;
return retval;
}
/* }}} */
/* {{{ proto void RRDGraph::__construct(string path)
creates new object for rrd graph function
*/
PHP_METHOD(RRDGraph, __construct)
{
rrd_graph_object *intern_obj;
char *path;
int path_length;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &path, &path_length) == FAILURE) {
return;
}
intern_obj = (rrd_graph_object*)zend_object_store_get_object(getThis() TSRMLS_CC);
intern_obj->file_path = estrdup(path);
}
/* }}} */
/* {{{ proto void RRDGraph::setOptions(array options)
set command options for rrd graph call
*/
PHP_METHOD(RRDGraph, setOptions)
{
rrd_graph_object *intern_obj;
zval *zv_arr_options;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a", &zv_arr_options) == FAILURE) {
return;
}
intern_obj = (rrd_graph_object*)zend_object_store_get_object(getThis() TSRMLS_CC);
/* if our array is initialized, so delete it first */
if (intern_obj->zv_arr_options) {
zval_dtor(intern_obj->zv_arr_options);
}
/* copy array from parameter */
MAKE_STD_ZVAL(intern_obj->zv_arr_options);
*intern_obj->zv_arr_options = *zv_arr_options;
zval_copy_ctor(intern_obj->zv_arr_options);
}
/* }}} */
/* {{{
creates arguments for rrd_graph call for RRDGraph instance options
*/
static rrd_args *rrd_graph_obj_create_argv(const char *command_name, const rrd_graph_object *obj TSRMLS_DC)
{
/* iterated item */
zval **zv_option_val;
/* arguments for rrd_graph call as php array - temporary storage */
zval *zv_argv;
rrd_args *result;
MAKE_STD_ZVAL(zv_argv);
array_init(zv_argv);
zend_hash_internal_pointer_reset(Z_ARRVAL_P(obj->zv_arr_options));
while (zend_hash_get_current_data(Z_ARRVAL_P(obj->zv_arr_options), (void**)&zv_option_val) == SUCCESS) {
/* copy for converted non-string value, because we don't want to modify
* original array item
*/
zval option_str_copy;
/* pointer for current value, either on zv_option_val (current array item)
* or on option_str_copy (string converted item)
*/
zval *option_ptr = *zv_option_val;
char *str_key;
ulong num_key;
smart_str option = {0}; /* one argument option */
/* option with string key means long option, hence they are used as
* "key=value" e.g. "--start=920804400"
*/
if (zend_hash_get_current_key(Z_ARRVAL_P(obj->zv_arr_options), &str_key, &num_key, 0) == HASH_KEY_IS_STRING) {
smart_str_appends(&option, str_key);
smart_str_appendc(&option, '=');
};
/* if option isn't string, use new value as old one casted to string */
if (Z_TYPE_PP(zv_option_val) != IS_STRING) {
option_str_copy = **zv_option_val;
zval_copy_ctor(&option_str_copy);
convert_to_string(&option_str_copy);
option_ptr = &option_str_copy;
}
smart_str_appendl(&option, Z_STRVAL_P(option_ptr), Z_STRLEN_P(option_ptr));
smart_str_0(&option);
add_next_index_string(zv_argv, option.c, 1);
smart_str_free(&option);
if (option_ptr != *zv_option_val) {
zval_dtor(&option_str_copy);
}
zend_hash_move_forward(Z_ARRVAL_P(obj->zv_arr_options));
}
result = rrd_args_init_by_phparray(command_name, obj->file_path, zv_argv TSRMLS_CC);
zval_dtor(zv_argv);
return result;
}
/* }}} */
/* {{{ proto array RRDGraph::save()
Saves graph according to current option
*/
PHP_METHOD(RRDGraph, save)
{
rrd_graph_object *intern_obj = (rrd_graph_object *)zend_object_store_get_object(getThis() TSRMLS_CC);
/* returned values if rrd_graph doesn't fail */
int xsize, ysize;
double ymin,ymax;
char **calcpr;
/* arguments for rrd_graph call */
rrd_args *graph_argv;
if (!intern_obj->zv_arr_options || Z_TYPE_P(intern_obj->zv_arr_options) != IS_ARRAY) {
zend_throw_exception(zend_exception_get_default(TSRMLS_C),
"options aren't correctly set", 0 TSRMLS_CC);
return;
}
if (php_check_open_basedir(intern_obj->file_path TSRMLS_CC)) {
RETURN_FALSE;
}
graph_argv = rrd_graph_obj_create_argv("graph", intern_obj TSRMLS_CC);
if (!graph_argv) {
zend_error(E_WARNING, "cannot allocate arguments options");
RETURN_FALSE;
}
if (rrd_test_error()) rrd_clear_error();
/* call rrd graph and test if fails */
if (rrd_graph(graph_argv->count - 1, &graph_argv->args[1], &calcpr, &xsize,
&ysize, NULL, &ymin, &ymax) == -1) {
/* throw exception with rrd error string */
zend_throw_exception(zend_exception_get_default(TSRMLS_C), rrd_get_error(), 0 TSRMLS_CC);
rrd_clear_error();
rrd_args_free(graph_argv);
return;
}
/* making return array */
array_init(return_value);
add_assoc_long(return_value, "xsize", xsize);
add_assoc_long(return_value, "ysize", ysize);
/* add calcpr return values under "calcpr" key
*
* if calcpr isn't presented add PHP NULL value
*/
if (!calcpr) {
add_assoc_null(return_value, "calcpr");
} else {
/* calcpr is presented, hence create array for it, and add it to return array */
zval *zv_calcpr_array;
MAKE_STD_ZVAL(zv_calcpr_array)
array_init(zv_calcpr_array);
if (calcpr) {
uint i;
for (i = 0; calcpr[i]; i++) {
add_next_index_string(zv_calcpr_array, calcpr[i], 1);
free(calcpr[i]);
}
free(calcpr);
}
add_assoc_zval(return_value, "calcpr", zv_calcpr_array);
}
rrd_args_free(graph_argv);
}
/* }}} */
/* {{{ proto array RRDGraph::saveVerbose()
Saves graph according to current option with return an extra information about
saved image.
*/
PHP_METHOD(RRDGraph, saveVerbose)
{
rrd_graph_object *intern_obj = (rrd_graph_object *)zend_object_store_get_object(getThis() TSRMLS_CC);
/* return value from rrd_graphv */
rrd_info_t *rrd_info_data;
/* arguments for rrd_graph call */
rrd_args *graph_argv;
if (!intern_obj->zv_arr_options || Z_TYPE_P(intern_obj->zv_arr_options) != IS_ARRAY) {
zend_throw_exception(zend_exception_get_default(TSRMLS_C),
"options aren't correctly set", 0 TSRMLS_CC);
return;
}
graph_argv = rrd_graph_obj_create_argv("graphv", intern_obj TSRMLS_CC);
if (!graph_argv) {
zend_error(E_WARNING, "cannot allocate arguments options");
RETURN_FALSE;
}
if (rrd_test_error()) rrd_clear_error();
/* call rrd graphv and test if fails */
rrd_info_data = rrd_graph_v(graph_argv->count - 1, &graph_argv->args[1]);
if (!rrd_info_data) {
/* throw exception with rrd error string */
zend_throw_exception(zend_exception_get_default(TSRMLS_C), rrd_get_error(), 0 TSRMLS_CC);
rrd_clear_error();
rrd_args_free(graph_argv);
return;
}
/* making return array */
array_init(return_value);
rrd_info_toarray(rrd_info_data, return_value TSRMLS_CC);
rrd_info_free(rrd_info_data);
rrd_args_free(graph_argv);
}
/* }}} */
/* {{{ proto array rrd_graph(string file, array options)
Ceates a graph based on options passed via an array.
*/
PHP_FUNCTION(rrd_graph)
{
char *filename;
int filename_length;
zval *zv_arr_options;
rrd_args *argv;
/* returned values if rrd_graph doesn't fail */
int xsize, ysize;
double ymin,ymax;
char **calcpr;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sa", &filename,
&filename_length, &zv_arr_options) == FAILURE) {
return;
}
if (php_check_open_basedir(filename TSRMLS_CC)) RETURN_FALSE;
argv = rrd_args_init_by_phparray("graph", filename, zv_arr_options TSRMLS_CC);
if (!argv) {
zend_error(E_WARNING, "cannot allocate arguments options");
RETURN_FALSE;
}
if (rrd_test_error()) rrd_clear_error();
/* call rrd graph and test if fails */
if (rrd_graph(argv->count - 1, &argv->args[1], &calcpr, &xsize, &ysize,
NULL, &ymin, &ymax) == -1) {
rrd_args_free(argv);
RETURN_FALSE;
}
/* making return array*/
array_init(return_value);
add_assoc_long(return_value, "xsize", xsize);
add_assoc_long(return_value, "ysize", ysize);
/* add calcpr return values under "calcpr" key
*
* if calcpr isn't presented add PHP NULL value
*/
if (!calcpr) {
add_assoc_null(return_value, "calcpr");
} else {
/* calcpr is presented, hence create array for it, and add it to return array */
zval *zv_calcpr_array;
MAKE_STD_ZVAL(zv_calcpr_array)
array_init(zv_calcpr_array);
if (calcpr) {
uint i;
for (i=0; calcpr[i]; i++) {
add_next_index_string(zv_calcpr_array, calcpr[i], 1);
free(calcpr[i]);
}
free(calcpr);
}
add_assoc_zval(return_value, "calcpr", zv_calcpr_array);
}
rrd_args_free(argv);
}
/* }}} */
/* arguments */
ZEND_BEGIN_ARG_INFO_EX(arginfo_rrd_path, 0, 0, 1)
ZEND_ARG_INFO(0, path)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_rrd_options, 0, 0, 1)
ZEND_ARG_INFO(0, options)
ZEND_END_ARG_INFO()
/* class method table */
static zend_function_entry rrd_graph_methods[] = {
PHP_ME(RRDGraph, __construct, arginfo_rrd_path, ZEND_ACC_PUBLIC)
PHP_ME(RRDGraph, save, NULL, ZEND_ACC_PUBLIC)
PHP_ME(RRDGraph, saveVerbose, NULL, ZEND_ACC_PUBLIC)
PHP_ME(RRDGraph, setOptions, arginfo_rrd_options, ZEND_ACC_PUBLIC)
{NULL, NULL, NULL}
};
/* minit hook, called from main module minit */
void rrd_graph_minit(TSRMLS_D)
{
zend_class_entry ce;
INIT_CLASS_ENTRY(ce, "RRDGraph", rrd_graph_methods);
ce.create_object = rrd_graph_object_new;
ce_rrd_graph = zend_register_internal_class(&ce TSRMLS_CC);
memcpy(&rrd_graph_handlers, zend_get_std_object_handlers(), sizeof(zend_object_handlers));
rrd_graph_handlers.clone_obj = NULL;
}
|