better datetime handling
[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(pq_misc);
56 PHP_MINIT_CALL(pqexc);
57
58 PHP_MINIT_CALL(pqconn);
59 PHP_MINIT_CALL(pqcancel);
60 PHP_MINIT_CALL(pqtypes);
61
62 PHP_MINIT_CALL(pqres);
63 PHP_MINIT_CALL(pqstm);
64 PHP_MINIT_CALL(pqtxn);
65
66 PHP_MINIT_CALL(pqcopy);
67 PHP_MINIT_CALL(pqlob);
68
69 return php_persistent_handle_provide(ZEND_STRL("pq\\Connection"), php_pqconn_get_resource_factory_ops(), NULL, NULL TSRMLS_CC);
70 }
71
72 static PHP_MSHUTDOWN_FUNCTION(pq)
73 {
74 php_persistent_handle_cleanup(ZEND_STRL("pq\\Connection"), NULL, 0 TSRMLS_CC);
75 return SUCCESS;
76 }
77
78 static PHP_MINFO_FUNCTION(pq)
79 {
80 #ifdef HAVE_PQLIBVERSION
81 int libpq_v;
82 #endif
83 char libpq_version[10] = "pre-9.1";
84
85 php_info_print_table_start();
86 php_info_print_table_header(2, "PQ Support", "enabled");
87 php_info_print_table_row(2, "Extension Version", PHP_PQ_EXT_VERSION);
88 php_info_print_table_end();
89
90 php_info_print_table_start();
91 php_info_print_table_header(2, "Used Library", "Version");
92 #ifdef HAVE_PQLIBVERSION
93 libpq_v = PQlibVersion();
94 slprintf(libpq_version, sizeof(libpq_version), "%d.%d.%d", libpq_v/10000%100, libpq_v/100%100, libpq_v%100);
95 #endif
96 php_info_print_table_row(2, "libpq", libpq_version);
97 php_info_print_table_end();
98 }
99
100 const zend_function_entry pq_functions[] = {
101 {0}
102 };
103
104 static zend_module_dep pq_module_deps[] = {
105 ZEND_MOD_REQUIRED("raphf")
106 ZEND_MOD_REQUIRED("spl")
107 ZEND_MOD_END
108 };
109
110 zend_module_entry pq_module_entry = {
111 STANDARD_MODULE_HEADER_EX,
112 NULL,
113 pq_module_deps,
114 "pq",
115 pq_functions,
116 PHP_MINIT(pq),
117 PHP_MSHUTDOWN(pq),
118 NULL,/*PHP_RINIT(pq),*/
119 NULL,/*PHP_RSHUTDOWN(pq),*/
120 PHP_MINFO(pq),
121 PHP_PQ_EXT_VERSION,
122 STANDARD_MODULE_PROPERTIES
123 };
124
125 #ifdef COMPILE_DL_PQ
126 ZEND_GET_MODULE(pq)
127 #endif
128
129
130 /*
131 * Local variables:
132 * tab-width: 4
133 * c-basic-offset: 4
134 * End:
135 * vim600: noet sw=4 ts=4 fdm=marker
136 * vim<600: noet sw=4 ts=4
137 */