This source file includes following definitions.
- numfmt_ctor
- PHP_FUNCTION
- PHP_METHOD
- PHP_FUNCTION
- PHP_FUNCTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 #ifdef HAVE_CONFIG_H
18 #include "config.h"
19 #endif
20
21 #include <unicode/ustring.h>
22
23 #include "php_intl.h"
24 #include "formatter_class.h"
25 #include "intl_convert.h"
26
27
28 static int numfmt_ctor(INTERNAL_FUNCTION_PARAMETERS, zend_bool is_constructor)
29 {
30 const char* locale;
31 char* pattern = NULL;
32 size_t locale_len = 0, pattern_len = 0;
33 zend_long style;
34 UChar* spattern = NULL;
35 int32_t spattern_len = 0;
36 int zpp_flags = is_constructor ? ZEND_PARSE_PARAMS_THROW : 0;
37 FORMATTER_METHOD_INIT_VARS;
38
39
40 if( zend_parse_parameters_ex( zpp_flags, ZEND_NUM_ARGS(), "sl|s",
41 &locale, &locale_len, &style, &pattern, &pattern_len ) == FAILURE )
42 {
43 intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
44 "numfmt_create: unable to parse input parameters", 0 );
45 return FAILURE;
46 }
47
48 INTL_CHECK_LOCALE_LEN_OR_FAILURE(locale_len);
49 object = return_value;
50 FORMATTER_METHOD_FETCH_OBJECT_NO_CHECK;
51
52
53 if(pattern && pattern_len) {
54 intl_convert_utf8_to_utf16(&spattern, &spattern_len, pattern, pattern_len, &INTL_DATA_ERROR_CODE(nfo));
55 INTL_CTOR_CHECK_STATUS(nfo, "numfmt_create: error converting pattern to UTF-16");
56 }
57
58 if(locale_len == 0) {
59 locale = intl_locale_get_default();
60 }
61
62
63 FORMATTER_OBJECT(nfo) = unum_open(style, spattern, spattern_len, locale, NULL, &INTL_DATA_ERROR_CODE(nfo));
64
65 if(spattern) {
66 efree(spattern);
67 }
68
69 INTL_CTOR_CHECK_STATUS(nfo, "numfmt_create: number formatter creation failed");
70 return SUCCESS;
71 }
72
73
74
75
76
77
78
79 PHP_FUNCTION( numfmt_create )
80 {
81 object_init_ex( return_value, NumberFormatter_ce_ptr );
82 if (numfmt_ctor(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0) == FAILURE) {
83 zval_ptr_dtor(return_value);
84 RETURN_NULL();
85 }
86 }
87
88
89
90
91
92 PHP_METHOD( NumberFormatter, __construct )
93 {
94 zend_error_handling error_handling;
95
96 zend_replace_error_handling(EH_THROW, IntlException_ce_ptr, &error_handling);
97 return_value = getThis();
98 if (numfmt_ctor(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1) == FAILURE) {
99 if (!EG(exception)) {
100 zend_throw_exception(IntlException_ce_ptr, "Constructor failed", 0);
101 }
102 }
103 zend_restore_error_handling(&error_handling);
104 }
105
106
107
108
109
110
111
112 PHP_FUNCTION( numfmt_get_error_code )
113 {
114 FORMATTER_METHOD_INIT_VARS
115
116
117 if( zend_parse_method_parameters( ZEND_NUM_ARGS(), getThis(), "O",
118 &object, NumberFormatter_ce_ptr ) == FAILURE )
119 {
120 intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
121 "numfmt_get_error_code: unable to parse input params", 0 );
122
123 RETURN_FALSE;
124 }
125
126 nfo = Z_INTL_NUMBERFORMATTER_P(object);
127
128
129 RETURN_LONG( INTL_DATA_ERROR_CODE(nfo) );
130 }
131
132
133
134
135
136
137
138 PHP_FUNCTION( numfmt_get_error_message )
139 {
140 zend_string *message = NULL;
141 FORMATTER_METHOD_INIT_VARS
142
143
144 if( zend_parse_method_parameters( ZEND_NUM_ARGS(), getThis(), "O",
145 &object, NumberFormatter_ce_ptr ) == FAILURE )
146 {
147 intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR,
148 "numfmt_get_error_message: unable to parse input params", 0 );
149
150 RETURN_FALSE;
151 }
152
153 nfo = Z_INTL_NUMBERFORMATTER_P(object);
154
155
156 message = intl_error_get_message( INTL_DATA_ERROR_P(nfo) );
157 RETURN_STR(message);
158 }
159
160
161
162
163
164
165
166
167
168