summaryrefslogtreecommitdiff
path: root/src/origexception.cpp
blob: 44061589601b8f373501566dbb2985ffa5216053 (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
65
66
67
68
69
70
71
72
73
74
75
76
/**
 *  Implementation of the exception that was originally thrown by PHP
 *  code or the zend engine, and that could or could not be picked
 *  up by C++ code
 *
 *  @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
 *  @copyright 2013 Copernica BV
 */
#include "includes.h"

/**
 *  Set up namespace
 */
namespace Php {

/**
 *  Constructor
 *  @param  zval
 */
OrigException::OrigException(struct _zval_struct *zval) : 
    Value(zval), 
    Exception("OrigException"), 
    _restored(false)
{
    // save the exception
    zend_exception_save();
}

/**
 *  Copy constructor
 *  @param  exception
 */
OrigException::OrigException(const OrigException &exception) : 
    Value(exception), 
    Exception("OrigException"),
    _restored(exception._restored) {}

/**
 *  Move constructor
 *  @param  exception
 */
OrigException::OrigException(OrigException &&exception) : 
    Value(std::move(exception)), 
    Exception("OrigException"),
    _restored(exception._restored) {}

/**
 *  Destructor
 */
OrigException::~OrigException() noexcept
{
    // skip if the exception was restored
    if (_restored) return;
    
    // clean up the exception
    zend_clear_exception();
}

/**
 *  Restore the exception
 *  @internal
 */
void OrigException::restore()
{
    // restore the exception
    zend_exception_restore();
    
    // mark exception as restored
    _restored = true;
}

/**
 *  End of namespace
 */
}