version
[m6w6/ext-pq] / src / php_pqres.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_PQRES_H
15 #define PHP_PQRES_H
16
17 #include "php_pqconn.h"
18 typedef enum php_pqres_fetch {
19 PHP_PQRES_FETCH_ARRAY,
20 PHP_PQRES_FETCH_ASSOC,
21 PHP_PQRES_FETCH_OBJECT
22 } php_pqres_fetch_t;
23
24 typedef struct php_pqres_iterator {
25 zend_object_iterator zi;
26 zval *current_val;
27 unsigned index;
28 php_pqres_fetch_t fetch_type;
29 } php_pqres_iterator_t;
30
31 typedef struct php_pqres {
32 PGresult *res;
33 php_pqres_iterator_t *iter;
34 HashTable bound;
35 HashTable converters;
36 } php_pqres_t;
37
38 typedef struct php_pqres_object {
39 zend_object zo;
40 zend_object_value zv;
41 HashTable *prophandler;
42 php_pqres_t *intern;
43 } php_pqres_object_t;
44
45 STATUS php_pqres_success(PGresult *res TSRMLS_DC);
46 void php_pqres_init_instance_data(PGresult *res, php_pqconn_object_t *obj, php_pqres_object_t **ptr TSRMLS_DC);
47 zval *php_pqres_row_to_zval(PGresult *res, unsigned row, php_pqres_fetch_t fetch_type, zval **data_ptr TSRMLS_DC);
48
49 #include "php_pq_object.h"
50 #include "php_pqconn_event.h"
51 #define PHP_PQclear(_r) do { \
52 php_pqres_object_t *_o = PQresultInstanceData((_r), php_pqconn_event); \
53 if (_o) { \
54 php_pq_object_delref(_o TSRMLS_CC); \
55 } else { \
56 PQclear(_r); \
57 } \
58 } while(0)
59
60 zend_class_entry *php_pqres_class_entry;
61 zend_object_value php_pqres_create_object_ex(zend_class_entry *ce, php_pqres_t *intern, php_pqres_object_t **ptr TSRMLS_DC);
62
63 PHP_MINIT_FUNCTION(pqres);
64 PHP_MSHUTDOWN_FUNCTION(pqres);
65
66 #endif
67
68 /*
69 * Local variables:
70 * tab-width: 4
71 * c-basic-offset: 4
72 * End:
73 * vim600: noet sw=4 ts=4 fdm=marker
74 * vim<600: noet sw=4 ts=4
75 */