summaryrefslogtreecommitdiffstats
path: root/bindings/php5/wrapper_header.py
diff options
context:
space:
mode:
Diffstat (limited to 'bindings/php5/wrapper_header.py')
-rw-r--r--bindings/php5/wrapper_header.py62
1 files changed, 62 insertions, 0 deletions
diff --git a/bindings/php5/wrapper_header.py b/bindings/php5/wrapper_header.py
new file mode 100644
index 00000000..3cf895af
--- /dev/null
+++ b/bindings/php5/wrapper_header.py
@@ -0,0 +1,62 @@
+# Lasso - A free implementation of the Liberty Alliance specifications.
+#
+# Copyright (C) 2004-2007 Entr'ouvert
+# http://lasso.entrouvert.org
+#
+# Authors: See AUTHORS file in top-level directory.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+class WrapperHeader:
+ def __init__(self, binding_data, fd, functions_list):
+ self.binding_data = binding_data
+ self.fd = fd
+ self.functions_list = functions_list
+
+ def generate(self):
+ self.generate_header()
+ self.generate_functions_list()
+ self.generate_footer()
+
+ def generate_header(self):
+ # FIXME: Get the current version and name
+ print >> self.fd, '''\
+/* this file has been generated automatically; do not edit */
+
+#ifndef PHP_LASSO_H
+#define PHP_LASSO_H 1
+
+#define PHP_LASSO_EXTNAME "lasso"
+#define PHP_LASSO_VERSION "2.1.1"
+
+#define PHP_LASSO_SERVER_RES_NAME "Lasso Server"
+
+PHP_MINIT_FUNCTION(lasso);
+PHP_MSHUTDOWN_FUNCTION(lasso);
+'''
+
+ def generate_functions_list(self):
+ for m in self.functions_list:
+ print >> self.fd, 'PHP_FUNCTION(%s);' % m
+ print >> self.fd, ''
+
+ def generate_footer(self):
+ print >> self.fd, '''\
+extern zend_module_entry lasso_module_entry;
+#define phpext_lasso_ptr &lasso_module_entry
+
+#endif
+'''
+