1 /*
2 +----------------------------------------------------------------------+
3 | PHP Version 5 |
4 +----------------------------------------------------------------------+
5 | This source file is subject to version 3.01 of the PHP license, |
6 | that is bundled with this package in the file LICENSE, and is |
7 | available through the world-wide-web at the following url: |
8 | http://www.php.net/license/3_01.txt |
9 | If you did not receive a copy of the PHP license and are unable to |
10 | obtain it through the world-wide-web, please send a note to |
11 | license@php.net so we can mail you a copy immediately. |
12 +----------------------------------------------------------------------+
13 | Authors: Stanislav Malyshev <stas@zend.com> |
14 +----------------------------------------------------------------------+
15 */
16
17 #ifndef MSG_FORMAT_CLASS_H
18 #define MSG_FORMAT_CLASS_H
19
20 #include <php.h>
21
22 #include <unicode/uconfig.h>
23
24 #include "../intl_common.h"
25 #include "../intl_error.h"
26 #include "../intl_data.h"
27 #include "msgformat_data.h"
28
29 typedef struct {
30 zend_object zo;
31 msgformat_data mf_data;
32 } MessageFormatter_object;
33
34 void msgformat_register_class( TSRMLS_D );
35 extern zend_class_entry *MessageFormatter_ce_ptr;
36
37 /* Auxiliary macros */
38
39 #define MSG_FORMAT_METHOD_INIT_VARS INTL_METHOD_INIT_VARS(MessageFormatter, mfo)
40 #define MSG_FORMAT_METHOD_FETCH_OBJECT_NO_CHECK INTL_METHOD_FETCH_OBJECT(MessageFormatter, mfo)
41 #define MSG_FORMAT_METHOD_FETCH_OBJECT \
42 MSG_FORMAT_METHOD_FETCH_OBJECT_NO_CHECK; \
43 if (MSG_FORMAT_OBJECT(mfo) == NULL) { \
44 intl_errors_set(&mfo->mf_data.error, U_ILLEGAL_ARGUMENT_ERROR, \
45 "Found unconstructed MessageFormatter", 0 TSRMLS_CC); \
46 RETURN_FALSE; \
47 }
48
49 #define MSG_FORMAT_OBJECT(mfo) (mfo)->mf_data.umsgf
50
51 #if U_ICU_VERSION_MAJOR_NUM * 10 + U_ICU_VERSION_MINOR_NUM < 48
52 # define MSG_FORMAT_QUOTE_APOS 1
53 #endif
54
55 #endif // #ifndef MSG_FORMAT_CLASS_H