summaryrefslogtreecommitdiff
path: root/Examples/Exceptions/ExceptionCatch/exceptionCatch.cpp
blob: a5f7b96fa8798b50eb97e9beb9d9ce40b097d1fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/**
 *  exception.cpp
 *  @author Jasper van Eck<jasper.vaneck@copernica.com>
 * 
 *  An example file to show the working of a C++ function that 
 *  takes a callback function as parameter, and handles the 
 *  exception thrown by the callback function.
 */

/**
 *  Libraries used.
 */
#include <phpcpp.h>

/**
 *  Namespace to use
 */
using namespace std;

/**
 *  my_catch_exception_function()
 *  Catches the exception thrown by the PHP callback function.
 *  @param      Php::Parameters
 */
void my_catch_exception_function(Php::Parameters &params)
{
    // the first parameter should be a callback
    Php::Value callback = params[0];

    // this must be a callable type
    if (!callback.isCallable()) throw Php::Exception("Parameter 0 is not a function");

    // we're going to call a function that could throw an exception, start a 
    // try-catch block to deal with that
    try
    {
        // call the function
        callback("some","example","parameters");
    }
    catch (Php::Exception &exception)
    {
        // @todo handle the exception that was thrown from PHP space
    }
}


// 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_exception_catch","1.0");
        
        // add function to extension
        extension.add("my_catch_exception_function", my_catch_exception_function, {
            Php::ByVal("callback", Php::callableType);
            });
        
        // return the extension module
        return extension.module();
    }
}