implemented get_properties() object handler
[m6w6/ext-pq] / src / php_pq_module.c
1 /*
2 +--------------------------------------------------------------------+
3 | PECL :: pq |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted provided that the conditions mentioned |
7 | in the accompanying LICENSE file are met. |
8 +--------------------------------------------------------------------+
9 | Copyright (c) 2013, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 #ifdef HAVE_CONFIG_H
14 # include "config.h"
15 #endif
16
17
18 #include <php.h>
19 #include <ext/standard/info.h>
20
21 #include <libpq-fe.h>
22
23 /*
24 #include <Zend/zend_interfaces.h>
25 #include <Zend/zend_exceptions.h>
26 #include <ext/spl/spl_array.h>
27 #include <ext/spl/spl_exceptions.h>
28 #include <ext/raphf/php_raphf.h>
29
30 #include <libpq-events.h>
31 #include <libpq/libpq-fs.h>
32 #include <fnmatch.h>
33 */
34
35 #include "php_pq.h"
36 #include "php_pq_misc.h"
37 #include "php_pqcancel.h"
38 #include "php_pqconn.h"
39 #include "php_pqcopy.h"
40 #include "php_pqexc.h"
41 #include "php_pqlob.h"
42 #include "php_pqres.h"
43 #include "php_pqstm.h"
44 #include "php_pqtxn.h"
45 #include "php_pqtypes.h"
46
47 #define PHP_MINIT_CALL(i) do { \
48 if (SUCCESS != PHP_MINIT(i)(type, module_number TSRMLS_CC)) { \
49 return FAILURE; \
50 } \
51 } while(0)
52
53 static PHP_MINIT_FUNCTION(pq)
54 {
55 PHP_MINIT_CALL(pqexc);
56
57 PHP_MINIT_CALL(pqconn);
58 PHP_MINIT_CALL(pqcancel);
59 PHP_MINIT_CALL(pqtypes);
60
61 PHP_MINIT_CALL(pqres);
62 PHP_MINIT_CALL(pqstm);
63 PHP_MINIT_CALL(pqtxn);
64
65 PHP_MINIT_CALL(pqcopy);
66 PHP_MINIT_CALL(pqlob);
67
68 return php_persistent_handle_provide(ZEND_STRL("pq\\Connection"), php_pqconn_get_resource_factory_ops(), NULL, NULL TSRMLS_CC);
69 }
70
71 static PHP_MSHUTDOWN_FUNCTION(pq)
72 {
73 php_persistent_handle_cleanup(ZEND_STRL("pq\\Connection"), NULL, 0 TSRMLS_CC);
74 return SUCCESS;
75 }
76
77 static PHP_MINFO_FUNCTION(pq)
78 {
79 #ifdef HAVE_PQLIBVERSION
80 int libpq_v;
81 #endif
82 char libpq_version[10] = "pre-9.1";
83
84 php_info_print_table_start();
85 php_info_print_table_header(2, "PQ Support", "enabled");
86 php_info_print_table_row(2, "Extension Version", PHP_PQ_EXT_VERSION);
87 php_info_print_table_end();
88
89 php_info_print_table_start();
90 php_info_print_table_header(2, "Used Library", "Version");
91 #ifdef HAVE_PQLIBVERSION
92 libpq_v = PQlibVersion();
93 slprintf(libpq_version, sizeof(libpq_version), "%d.%d.%d", libpq_v/10000%100, libpq_v/100%100, libpq_v%100);
94 #endif
95 php_info_print_table_row(2, "libpq", libpq_version);
96 php_info_print_table_end();
97 }
98
99 const zend_function_entry pq_functions[] = {
100 {0}
101 };
102
103 static zend_module_dep pq_module_deps[] = {
104 ZEND_MOD_REQUIRED("raphf")
105 ZEND_MOD_REQUIRED("spl")
106 ZEND_MOD_END
107 };
108
109 zend_module_entry pq_module_entry = {
110 STANDARD_MODULE_HEADER_EX,
111 NULL,
112 pq_module_deps,
113 "pq",
114 pq_functions,
115 PHP_MINIT(pq),
116 PHP_MSHUTDOWN(pq),
117 NULL,/*PHP_RINIT(pq),*/
118 NULL,/*PHP_RSHUTDOWN(pq),*/
119 PHP_MINFO(pq),
120 PHP_PQ_EXT_VERSION,
121 STANDARD_MODULE_PROPERTIES
122 };
123
124 #ifdef COMPILE_DL_PQ
125 ZEND_GET_MODULE(pq)
126 #endif
127
128
129 /*
130 * Local variables:
131 * tab-width: 4
132 * c-basic-offset: 4
133 * End:
134 * vim600: noet sw=4 ts=4 fdm=marker
135 * vim<600: noet sw=4 ts=4
136 */