summaryrefslogtreecommitdiff
path: root/Examples/Exceptions
diff options
context:
space:
mode:
authorJasperVanEck <jaspergkurtz@gmail.com>2013-11-28 13:34:35 +0100
committerJasperVanEck <jaspergkurtz@gmail.com>2013-11-28 13:34:35 +0100
commita6587568fe996abc6b128d5e78d61c342e95d922 (patch)
treebb5d1b76e0a7494d12cb718eca317b9487708df0 /Examples/Exceptions
parent31fcc388250bbb7761f2c9c8fb25b92b5e50ef82 (diff)
comments updated, and Exception example added
Diffstat (limited to 'Examples/Exceptions')
-rw-r--r--Examples/Exceptions/30-phpcpp.ini4
-rw-r--r--Examples/Exceptions/Makefile32
-rw-r--r--Examples/Exceptions/exception.cpp48
-rw-r--r--Examples/Exceptions/exception.php17
4 files changed, 101 insertions, 0 deletions
diff --git a/Examples/Exceptions/30-phpcpp.ini b/Examples/Exceptions/30-phpcpp.ini
new file mode 100644
index 0000000..3126aa7
--- /dev/null
+++ b/Examples/Exceptions/30-phpcpp.ini
@@ -0,0 +1,4 @@
+; configuration for phpcpp module
+; priority=30
+extension=exception.so
+
diff --git a/Examples/Exceptions/Makefile b/Examples/Exceptions/Makefile
new file mode 100644
index 0000000..d0c44fc
--- /dev/null
+++ b/Examples/Exceptions/Makefile
@@ -0,0 +1,32 @@
+CPP = g++
+RM = rm -f
+CPP_FLAGS = -Wall -c -I. -O2 -std=c++11
+
+PREFIX = /usr
+#Edit these lines to correspond with your own directories
+LIBRARY_DIR = ${PREFIX}/lib/php5/20121212
+PHP_CONFIG_DIR = /etc/php5/cli/conf.d
+
+LD = g++
+LD_FLAGS = -Wall -shared -O2
+RESULT = exception.so
+
+PHPINIFILE = 30-phpcpp.ini
+
+SOURCES = $(wildcard *.cpp)
+OBJECTS = $(SOURCES:%.cpp=%.o)
+
+all: ${OBJECTS} ${RESULT}
+
+${RESULT}: ${OBJECTS}
+ ${LD} ${LD_FLAGS} -o $@ ${OBJECTS} -lphpcpp
+
+clean:
+ ${RM} *.obj *~* ${OBJECTS} ${RESULT}
+
+${OBJECTS}:
+ ${CPP} ${CPP_FLAGS} -fpic -o $@ ${@:%.o=%.cpp}
+
+install:
+ cp -f ${RESULT} ${LIBRARY_DIR}
+ cp -f ${PHPINIFILE} ${PHP_CONFIG_DIR}
diff --git a/Examples/Exceptions/exception.cpp b/Examples/Exceptions/exception.cpp
new file mode 100644
index 0000000..9ccd3f7
--- /dev/null
+++ b/Examples/Exceptions/exception.cpp
@@ -0,0 +1,48 @@
+/**
+ * exception.cpp
+ * @author Jasper van Eck<jasper.vaneck@copernica.com>
+ *
+ * An example file to show the working of a function which throws an exception.
+ *
+ * Exceptions haven't been implemented yet.
+ * Therefore this example is not yet a working one.
+ */
+
+/**
+ * Libraries used.
+ */
+#include <phpcpp.h>
+
+/**
+ * Namespace to use
+ */
+using namespace std;
+
+/**
+ * my_throw_exception_function()
+ * Throws an exception.
+ * @return Php::Value
+ */
+Php::Value my_throw_exception_function()
+{
+ throw Php::Exception("I threw an exception in my_throw_exception_function()");
+ return "42";
+}
+
+
+// Symbols are exported according to the "C" language
+extern "C"
+{
+ // export the "get_module" function that will be called by the Zend engine
+ PHPCPP_EXPORT void *get_module()
+ {
+ // create extension
+ static Php::Extension extension("my_function_throw_exception","1.0");
+
+ // add function to extension
+ extension.add("my_throw_exception_function", my_throw_exception_function);
+
+ // return the extension module
+ return extension.module();
+ }
+}
diff --git a/Examples/Exceptions/exception.php b/Examples/Exceptions/exception.php
new file mode 100644
index 0000000..0fffff7
--- /dev/null
+++ b/Examples/Exceptions/exception.php
@@ -0,0 +1,17 @@
+<?php
+/*
+ * exception.cpp
+ * @author Jasper van Eck<jasper.vaneck@copernica.com>
+ *
+ * An example file to show the working of a function which throws an exception.
+ *
+ * Exceptions haven't been implemented yet.
+ * Therefore this example is not yet a working one.
+ */
+
+/*
+ * Run a function which throws an exception.
+ */
+
+echo "Function which throws an exception; my_throw_exception_function()\n"
+echo my_throw_exception_function() . "\n";