1 /* 2 +----------------------------------------------------------------------+ 3 | PHP Version 7 | 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 28 #include "msgformat_data.h" 29 30 typedef struct { 31 msgformat_data mf_data; 32 zend_object zo; 33 } MessageFormatter_object; 34 35 php_intl_messageformatter_fetch_object(zend_object * obj)36static inline MessageFormatter_object *php_intl_messageformatter_fetch_object(zend_object *obj) { 37 return (MessageFormatter_object *)((char*)(obj) - XtOffsetOf(MessageFormatter_object, zo)); 38 } 39 #define Z_INTL_MESSAGEFORMATTER_P(zv) php_intl_messageformatter_fetch_object(Z_OBJ_P(zv)) 40 41 void msgformat_register_class( void ); 42 extern zend_class_entry *MessageFormatter_ce_ptr; 43 44 /* Auxiliary macros */ 45 46 #define MSG_FORMAT_METHOD_INIT_VARS INTL_METHOD_INIT_VARS(MessageFormatter, mfo) 47 #define MSG_FORMAT_METHOD_FETCH_OBJECT_NO_CHECK INTL_METHOD_FETCH_OBJECT(INTL_MESSAGEFORMATTER, mfo) 48 #define MSG_FORMAT_METHOD_FETCH_OBJECT \ 49 MSG_FORMAT_METHOD_FETCH_OBJECT_NO_CHECK; \ 50 if (MSG_FORMAT_OBJECT(mfo) == NULL) { \ 51 intl_errors_set(&mfo->mf_data.error, U_ILLEGAL_ARGUMENT_ERROR, \ 52 "Found unconstructed MessageFormatter", 0); \ 53 RETURN_FALSE; \ 54 } 55 56 #define MSG_FORMAT_OBJECT(mfo) (mfo)->mf_data.umsgf 57 58 #endif // #ifndef MSG_FORMAT_CLASS_H 59