-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexception.cpp
More file actions
53 lines (42 loc) · 1.89 KB
/
exception.cpp
File metadata and controls
53 lines (42 loc) · 1.89 KB
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
/*
+----------------------------------------------------------------------+
| PHP Version 7 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2017 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Sara Golemon <pollita@php.net> |
+----------------------------------------------------------------------+
*/
#include "darwin.h"
#include "zend_exceptions.h"
namespace php { namespace darwin {
static zend_class_entry *exception_ce = nullptr;
DarwinException::DarwinException(zend_long code, const char *format, ...):
m_code(code) {
va_list args;
va_start(args, format);
zend_vspprintf(&m_message, 0, format, args);
va_end(args);
}
DarwinException::~DarwinException() {
if (m_message) { efree(m_message); }
}
void DarwinException::throwZendException() const {
zend_throw_exception(exception_ce, m_message, m_code);
}
PHP_MINIT_FUNCTION(darwin_Exception) {
zend_class_entry ce;
INIT_CLASS_ENTRY(ce, "Darwin\\Exception", nullptr);
exception_ce = zend_register_internal_class_ex(&ce, zend_ce_exception);
exception_ce->ce_flags |= ZEND_ACC_FINAL;
return SUCCESS;
}
}} // namespace php::darwin