-
Notifications
You must be signed in to change notification settings - Fork 2
/
php_midgard_key_config_file_context.c
75 lines (57 loc) · 2.6 KB
/
php_midgard_key_config_file_context.c
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
/*
* Copyright (C) 2009 Piotr Pokora <[email protected]>
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "php_midgard.h"
#include "php_midgard_gobject.h"
#include "php_midgard__helpers.h"
#include <zend_exceptions.h>
static zend_class_entry *php_midgard_key_config_file_context_class;
/* Object constructor */
static PHP_METHOD(midgard_key_config_file_context, __construct)
{
RETVAL_FALSE;
zval *object = getThis();
char *path;
int path_length;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &path, &path_length) == FAILURE)
return;
GError *error = NULL;
MidgardKeyConfigFileContext *kctx = midgard_key_config_file_context_new(path, &error);
if (error) {
zend_throw_exception_ex(NULL, 0 TSRMLS_CC,
error && error->message ? error->message : "Unknown reason");
g_clear_error (&error);
return;
}
MGD_PHP_SET_GOBJECT(object, kctx);
}
ZEND_BEGIN_ARG_INFO_EX(arginfo_midgard_key_config_file_context___construct, 0, 0, 1)
ZEND_ARG_INFO(0, context_path)
ZEND_END_ARG_INFO()
/* Initialize ZEND&PHP class */
PHP_MINIT_FUNCTION(midgard2_key_config_file_context)
{
static zend_function_entry midgard_key_config_file_context_methods[] = {
PHP_ME(midgard_key_config_file_context, __construct, arginfo_midgard_key_config_file_context___construct, ZEND_ACC_PUBLIC | ZEND_ACC_CTOR)
{NULL, NULL, NULL}
};
static zend_class_entry php_midgard_key_config_file_context_class_entry;
INIT_CLASS_ENTRY(php_midgard_key_config_file_context_class_entry, "midgard_key_config_file_context", midgard_key_config_file_context_methods);
php_midgard_key_config_file_context_class = zend_register_internal_class_ex(&php_midgard_key_config_file_context_class_entry, NULL, "midgard_key_config_context" TSRMLS_CC);
CLASS_SET_DOC_COMMENT(php_midgard_key_config_file_context_class, strdup("File based key-value (ini like) configurations"));
php_midgard_key_config_file_context_class->create_object = php_midgard_gobject_new;
return SUCCESS;
}