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: Kirti Velankar <kirtig@yahoo-inc.com> |
14 +----------------------------------------------------------------------+
15 */
16
17 #ifdef HAVE_CONFIG_H
18 #include "config.h"
19 #endif
20
21 #include <unicode/ustring.h>
22 #include <math.h>
23
24 #include "php_intl.h"
25 #include "intl_convert.h"
26 #include "dateformat.h"
27 #include "dateformat_class.h"
28 #include "dateformat_parse.h"
29 #include "dateformat_data.h"
30
31 /* {{{
32 * Internal function which calls the udat_parse
33 * param int store_error acts like a boolean
34 * if set to 1 - store any error encountered in the parameter parse_error
35 * if set to 0 - no need to store any error encountered in the parameter parse_error
36 */
internal_parse_to_timestamp(IntlDateFormatter_object * dfo,char * text_to_parse,size_t text_len,int32_t * parse_pos,zval * return_value)37 static void internal_parse_to_timestamp(IntlDateFormatter_object *dfo, char* text_to_parse, size_t text_len, int32_t *parse_pos, zval *return_value)
38 {
39 double result = 0;
40 UDate timestamp =0;
41 UChar* text_utf16 = NULL;
42 int32_t text_utf16_len = 0;
43
44 /* Convert timezone to UTF-16. */
45 intl_convert_utf8_to_utf16(&text_utf16, &text_utf16_len, text_to_parse, text_len, &INTL_DATA_ERROR_CODE(dfo));
46 INTL_METHOD_CHECK_STATUS(dfo, "Error converting timezone to UTF-16" );
47
48 timestamp = udat_parse( DATE_FORMAT_OBJECT(dfo), text_utf16, text_utf16_len, parse_pos, &INTL_DATA_ERROR_CODE(dfo));
49 if( text_utf16 ){
50 efree(text_utf16);
51 }
52
53 INTL_METHOD_CHECK_STATUS( dfo, "Date parsing failed" );
54
55 /* Since return is in sec. */
56 result = (double)timestamp / U_MILLIS_PER_SECOND;
57 if(result > LONG_MAX || result < -LONG_MAX) {
58 ZVAL_DOUBLE(return_value, result<0?ceil(result):floor(result));
59 } else {
60 ZVAL_LONG(return_value, (zend_long)result);
61 }
62 }
63 /* }}} */
64
add_to_localtime_arr(IntlDateFormatter_object * dfo,zval * return_value,const UCalendar * parsed_calendar,zend_long calendar_field,char * key_name)65 static void add_to_localtime_arr( IntlDateFormatter_object *dfo, zval* return_value, const UCalendar *parsed_calendar, zend_long calendar_field, char* key_name)
66 {
67 zend_long calendar_field_val = ucal_get( parsed_calendar, calendar_field, &INTL_DATA_ERROR_CODE(dfo));
68 INTL_METHOD_CHECK_STATUS( dfo, "Date parsing - localtime failed : could not get a field from calendar" );
69
70 if( strcmp(key_name, CALENDAR_YEAR )==0 ){
71 /* since tm_year is years from 1900 */
72 add_assoc_long( return_value, key_name,( calendar_field_val-1900) );
73 }else if( strcmp(key_name, CALENDAR_WDAY )==0 ){
74 /* since tm_wday starts from 0 whereas ICU WDAY start from 1 */
75 add_assoc_long( return_value, key_name,( calendar_field_val-1) );
76 }else{
77 add_assoc_long( return_value, key_name, calendar_field_val );
78 }
79 }
80
81 /* {{{
82 * Internal function which calls the udat_parseCalendar
83 */
internal_parse_to_localtime(IntlDateFormatter_object * dfo,char * text_to_parse,size_t text_len,int32_t * parse_pos,zval * return_value)84 static void internal_parse_to_localtime(IntlDateFormatter_object *dfo, char* text_to_parse, size_t text_len, int32_t *parse_pos, zval *return_value)
85 {
86 UCalendar *parsed_calendar = NULL;
87 UChar* text_utf16 = NULL;
88 int32_t text_utf16_len = 0;
89 zend_long isInDST = 0;
90
91 /* Convert timezone to UTF-16. */
92 intl_convert_utf8_to_utf16(&text_utf16, &text_utf16_len, text_to_parse, text_len, &INTL_DATA_ERROR_CODE(dfo));
93 INTL_METHOD_CHECK_STATUS(dfo, "Error converting timezone to UTF-16" );
94
95 parsed_calendar = (UCalendar *)udat_getCalendar(DATE_FORMAT_OBJECT(dfo));
96 udat_parseCalendar( DATE_FORMAT_OBJECT(dfo), parsed_calendar, text_utf16, text_utf16_len, parse_pos, &INTL_DATA_ERROR_CODE(dfo));
97
98 if (text_utf16) {
99 efree(text_utf16);
100 }
101
102 INTL_METHOD_CHECK_STATUS( dfo, "Date parsing failed" );
103
104
105 array_init( return_value );
106 /* Add entries from various fields of the obtained parsed_calendar */
107 add_to_localtime_arr( dfo, return_value, parsed_calendar, UCAL_SECOND, CALENDAR_SEC);
108 add_to_localtime_arr( dfo, return_value, parsed_calendar, UCAL_MINUTE, CALENDAR_MIN);
109 add_to_localtime_arr( dfo, return_value, parsed_calendar, UCAL_HOUR_OF_DAY, CALENDAR_HOUR);
110 add_to_localtime_arr( dfo, return_value, parsed_calendar, UCAL_YEAR, CALENDAR_YEAR);
111 add_to_localtime_arr( dfo, return_value, parsed_calendar, UCAL_DAY_OF_MONTH, CALENDAR_MDAY);
112 add_to_localtime_arr( dfo, return_value, parsed_calendar, UCAL_DAY_OF_WEEK, CALENDAR_WDAY);
113 add_to_localtime_arr( dfo, return_value, parsed_calendar, UCAL_DAY_OF_YEAR, CALENDAR_YDAY);
114 add_to_localtime_arr( dfo, return_value, parsed_calendar, UCAL_MONTH, CALENDAR_MON);
115
116 /* Is in DST? */
117 isInDST = ucal_inDaylightTime(parsed_calendar , &INTL_DATA_ERROR_CODE(dfo));
118 INTL_METHOD_CHECK_STATUS( dfo, "Date parsing - localtime failed : while checking if currently in DST." );
119 add_assoc_long( return_value, CALENDAR_ISDST,isInDST==1);
120 }
121 /* }}} */
122
123
124 /* {{{ proto int IntlDateFormatter::parse( string $text_to_parse [, int $parse_pos] )
125 * Parse the string $value starting at parse_pos to a Unix timestamp -int }}}*/
126 /* {{{ proto int datefmt_parse( IntlDateFormatter $fmt, string $text_to_parse [, int $parse_pos] )
127 * Parse the string $value starting at parse_pos to a Unix timestamp -int }}}*/
PHP_FUNCTION(datefmt_parse)128 PHP_FUNCTION(datefmt_parse)
129 {
130 char* text_to_parse = NULL;
131 size_t text_len =0;
132 zval* z_parse_pos = NULL;
133 int32_t parse_pos = -1;
134
135 DATE_FORMAT_METHOD_INIT_VARS;
136
137 /* Parse parameters. */
138 if( zend_parse_method_parameters( ZEND_NUM_ARGS(), getThis(), "Os|z!",
139 &object, IntlDateFormatter_ce_ptr, &text_to_parse, &text_len, &z_parse_pos ) == FAILURE ){
140 intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR, "datefmt_parse: unable to parse input params", 0 );
141 RETURN_FALSE;
142 }
143
144 /* Fetch the object. */
145 DATE_FORMAT_METHOD_FETCH_OBJECT;
146
147 if (z_parse_pos) {
148 zend_long long_parse_pos;
149 ZVAL_DEREF(z_parse_pos);
150 long_parse_pos = zval_get_long(z_parse_pos);
151 if (ZEND_LONG_INT_OVFL(long_parse_pos)) {
152 intl_error_set_code(NULL, U_ILLEGAL_ARGUMENT_ERROR);
153 intl_error_set_custom_msg(NULL, "String index is out of valid range.", 0);
154 RETURN_FALSE;
155 }
156 parse_pos = (int32_t)long_parse_pos;
157 if((size_t)parse_pos > text_len) {
158 RETURN_FALSE;
159 }
160 }
161 internal_parse_to_timestamp( dfo, text_to_parse, text_len, z_parse_pos?&parse_pos:NULL, return_value);
162 if(z_parse_pos) {
163 zval_ptr_dtor(z_parse_pos);
164 ZVAL_LONG(z_parse_pos, parse_pos);
165 }
166 }
167 /* }}} */
168
169 /* {{{ proto int IntlDateFormatter::localtime( string $text_to_parse[, int $parse_pos] )
170 * Parse the string $value to a localtime array }}}*/
171 /* {{{ proto int datefmt_localtime( IntlDateFormatter $fmt, string $text_to_parse[, int $parse_pos ])
172 * Parse the string $value to a localtime array }}}*/
PHP_FUNCTION(datefmt_localtime)173 PHP_FUNCTION(datefmt_localtime)
174 {
175 char* text_to_parse = NULL;
176 size_t text_len =0;
177 zval* z_parse_pos = NULL;
178 int32_t parse_pos = -1;
179
180 DATE_FORMAT_METHOD_INIT_VARS;
181
182 /* Parse parameters. */
183 if( zend_parse_method_parameters( ZEND_NUM_ARGS(), getThis(), "Os|z!",
184 &object, IntlDateFormatter_ce_ptr, &text_to_parse, &text_len, &z_parse_pos ) == FAILURE ){
185 intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR, "datefmt_parse_to_localtime: unable to parse input params", 0 );
186 RETURN_FALSE;
187 }
188
189 /* Fetch the object. */
190 DATE_FORMAT_METHOD_FETCH_OBJECT;
191
192 if (z_parse_pos) {
193 zend_long long_parse_pos;
194 ZVAL_DEREF(z_parse_pos);
195 long_parse_pos = zval_get_long(z_parse_pos);
196 if (ZEND_LONG_INT_OVFL(long_parse_pos)) {
197 intl_error_set_code(NULL, U_ILLEGAL_ARGUMENT_ERROR);
198 intl_error_set_custom_msg(NULL, "String index is out of valid range.", 0);
199 RETURN_FALSE;
200 }
201 parse_pos = (int32_t)long_parse_pos;
202 if((size_t)parse_pos > text_len) {
203 RETURN_FALSE;
204 }
205 }
206 internal_parse_to_localtime( dfo, text_to_parse, text_len, z_parse_pos?&parse_pos:NULL, return_value);
207 if (z_parse_pos) {
208 zval_ptr_dtor(z_parse_pos);
209 ZVAL_LONG(z_parse_pos, parse_pos);
210 }
211 }
212 /* }}} */
213