split source
[m6w6/ext-pq] / src / php_pqconn.h
diff --git a/src/php_pqconn.h b/src/php_pqconn.h
new file mode 100644 (file)
index 0000000..1e5c822
--- /dev/null
@@ -0,0 +1,66 @@
+/*
+    +--------------------------------------------------------------------+
+    | PECL :: pq                                                         |
+    +--------------------------------------------------------------------+
+    | Redistribution and use in source and binary forms, with or without |
+    | modification, are permitted provided that the conditions mentioned |
+    | in the accompanying LICENSE file are met.                          |
+    +--------------------------------------------------------------------+
+    | Copyright (c) 2013, Michael Wallner <mike@php.net>                 |
+    +--------------------------------------------------------------------+
+*/
+
+
+#ifndef PHP_PQCONN_H
+#define PHP_PQCONN_H
+
+#define PHP_PQCONN_ASYNC      0x01
+#define PHP_PQCONN_PERSISTENT 0x02
+
+#include <ext/raphf/php_raphf.h>
+#include "php_pq_callback.h"
+
+typedef struct php_pqconn {
+       PGconn *conn;
+       int (*poller)(PGconn *);
+       php_resource_factory_t factory;
+       HashTable listeners;
+       HashTable eventhandlers;
+       php_pq_callback_t onevent;
+       unsigned unbuffered:1;
+} php_pqconn_t;
+
+typedef struct php_pqconn_object {
+       zend_object zo;
+       zend_object_value zv;
+       HashTable *prophandler;
+       php_pqconn_t *intern;
+} php_pqconn_object_t;
+
+typedef struct php_pqconn_resource_factory_data {
+       char *dsn;
+       long flags;
+} php_pqconn_resource_factory_data_t;
+
+php_resource_factory_ops_t *php_pqconn_get_resource_factory_ops(void);
+
+zend_class_entry *php_pqconn_class_entry;
+zend_object_value php_pqconn_create_object_ex(zend_class_entry *ce, php_pqconn_t *intern, php_pqconn_object_t **ptr TSRMLS_DC);
+void php_pqconn_notify_listeners(php_pqconn_object_t *obj TSRMLS_DC);
+STATUS php_pqconn_prepare(zval *object, php_pqconn_object_t *obj, const char *name, const char *query, HashTable *typest TSRMLS_DC);
+STATUS php_pqconn_prepare_async(zval *object, php_pqconn_object_t *obj, const char *name, const char *query, HashTable *typest TSRMLS_DC);
+STATUS php_pqconn_start_transaction(zval *zconn, php_pqconn_object_t *conn_obj, long isolation, zend_bool readonly, zend_bool deferrable TSRMLS_DC);
+STATUS php_pqconn_start_transaction_async(zval *zconn, php_pqconn_object_t *conn_obj, long isolation, zend_bool readonly, zend_bool deferrable TSRMLS_DC);
+
+PHP_MINIT_FUNCTION(pqconn);
+
+#endif
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: noet sw=4 ts=4 fdm=marker
+ * vim<600: noet sw=4 ts=4
+ */