b3ef4e8ef0daf50e4da52cdd900d91e993935a17
[m6w6/ext-pq] / src / php_pqconn.h
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
14 #ifndef PHP_PQCONN_H
15 #define PHP_PQCONN_H
16
17 #define PHP_PQCONN_ASYNC 0x01
18 #define PHP_PQCONN_PERSISTENT 0x02
19
20 #include <ext/raphf/php_raphf.h>
21 #include "php_pq_callback.h"
22 #include "php_pq_params.h"
23
24 typedef struct php_pqconn {
25 PGconn *conn;
26 int (*poller)(PGconn *);
27 php_resource_factory_t factory;
28 HashTable listeners;
29 HashTable converters;
30 HashTable eventhandlers;
31 php_pq_callback_t onevent;
32 unsigned unbuffered:1;
33 } php_pqconn_t;
34
35 typedef struct php_pqconn_object {
36 zend_object zo;
37 zend_object_value zv;
38 HashTable *prophandler;
39 php_pqconn_t *intern;
40 } php_pqconn_object_t;
41
42 typedef struct php_pqconn_resource_factory_data {
43 char *dsn;
44 long flags;
45 } php_pqconn_resource_factory_data_t;
46
47 php_resource_factory_ops_t *php_pqconn_get_resource_factory_ops(void);
48
49 zend_class_entry *php_pqconn_class_entry;
50 zend_object_value php_pqconn_create_object_ex(zend_class_entry *ce, php_pqconn_t *intern, php_pqconn_object_t **ptr TSRMLS_DC);
51 void php_pqconn_notify_listeners(php_pqconn_object_t *obj TSRMLS_DC);
52 STATUS php_pqconn_prepare(zval *object, php_pqconn_object_t *obj, const char *name, const char *query, php_pq_params_t *params TSRMLS_DC);
53 STATUS php_pqconn_prepare_async(zval *object, php_pqconn_object_t *obj, const char *name, const char *query, php_pq_params_t *params TSRMLS_DC);
54 STATUS php_pqconn_start_transaction(zval *zconn, php_pqconn_object_t *conn_obj, long isolation, zend_bool readonly, zend_bool deferrable TSRMLS_DC);
55 STATUS php_pqconn_start_transaction_async(zval *zconn, php_pqconn_object_t *conn_obj, long isolation, zend_bool readonly, zend_bool deferrable TSRMLS_DC);
56
57 PHP_MINIT_FUNCTION(pqconn);
58 PHP_MSHUTDOWN_FUNCTION(pqconn);
59
60 #endif
61
62 /*
63 * Local variables:
64 * tab-width: 4
65 * c-basic-offset: 4
66 * End:
67 * vim600: noet sw=4 ts=4 fdm=marker
68 * vim<600: noet sw=4 ts=4
69 */