@@ -1115,28 +1115,21 @@ ecma_builtin_json_stringify (ecma_value_t this_arg __attr_unused___, /**< 'this'
1115
1115
}
1116
1116
else
1117
1117
{
1118
- ecma_length_t string_len = ecma_string_get_length (space_str_p);
1118
+ ecma_length_t string_size = ecma_string_get_size (space_str_p);
1119
1119
1120
- MEM_DEFINE_LOCAL_ARRAY (zt_string_buff, string_len , lit_utf8_byte_t );
1120
+ MEM_DEFINE_LOCAL_ARRAY (string_buff, string_size , lit_utf8_byte_t );
1121
1121
1122
- size_t string_buf_size = (size_t ) (string_len) * sizeof (lit_utf8_byte_t );
1123
1122
ssize_t bytes_copied = ecma_string_to_utf8_string (space_str_p,
1124
- zt_string_buff ,
1125
- (ssize_t ) string_buf_size );
1123
+ string_buff ,
1124
+ (ssize_t ) string_size );
1126
1125
JERRY_ASSERT (bytes_copied > 0 );
1127
1126
1128
- /* Buffer for the first 10 characters. */
1129
- MEM_DEFINE_LOCAL_ARRAY (space_buff , 10 , lit_utf8_byte_t );
1127
+ lit_utf8_iterator_t iter = lit_utf8_iterator_create (string_buff, string_size);
1128
+ lit_utf8_iterator_advance (&iter , 10 );
1130
1129
1131
- for (uint32_t i = 0 ; i < 10 ; i++)
1132
- {
1133
- space_buff[i] = zt_string_buff[i];
1134
- }
1130
+ context_p.gap_str_p = ecma_new_ecma_string_from_utf8 (string_buff, iter.buf_pos .offset );
1135
1131
1136
- context_p.gap_str_p = ecma_new_ecma_string_from_utf8 ((lit_utf8_byte_t *) space_buff, 10 );
1137
-
1138
- MEM_FINALIZE_LOCAL_ARRAY (space_buff);
1139
- MEM_FINALIZE_LOCAL_ARRAY (zt_string_buff);
1132
+ MEM_FINALIZE_LOCAL_ARRAY (string_buff);
1140
1133
}
1141
1134
}
1142
1135
/* 8. */
@@ -1198,23 +1191,24 @@ ecma_builtin_json_quote (ecma_string_t *string_p) /**< string that should be quo
1198
1191
ecma_string_t *product_str_p = ecma_copy_or_ref_ecma_string (quote_str_p);
1199
1192
ecma_string_t *tmp_str_p;
1200
1193
1201
- ecma_length_t string_len = ecma_string_get_length (string_p);
1194
+ ecma_length_t string_size = ecma_string_get_size (string_p);
1202
1195
1203
- MEM_DEFINE_LOCAL_ARRAY (zt_string_buff, string_len , lit_utf8_byte_t );
1196
+ MEM_DEFINE_LOCAL_ARRAY (string_buff, string_size , lit_utf8_byte_t );
1204
1197
1205
- size_t string_buf_size = (size_t ) (string_len) * sizeof (lit_utf8_byte_t );
1206
1198
ssize_t bytes_copied = ecma_string_to_utf8_string (string_p,
1207
- zt_string_buff,
1208
- (ssize_t ) string_buf_size);
1209
- JERRY_ASSERT (bytes_copied > 0 || !string_len);
1199
+ string_buff,
1200
+ (ssize_t ) string_size);
1210
1201
1211
- /* 2. */
1212
- for (ecma_length_t i = 0 ; i < string_len; i++)
1202
+ JERRY_ASSERT (bytes_copied > 0 || !string_size);
1203
+
1204
+ lit_utf8_iterator_t iter = lit_utf8_iterator_create (string_buff, string_size);
1205
+
1206
+ while (!lit_utf8_iterator_is_eos (&iter))
1213
1207
{
1214
- lit_utf8_byte_t c = zt_string_buff[i] ;
1208
+ ecma_char_t current_char = lit_utf8_iterator_read_next (&iter) ;
1215
1209
1216
1210
/* 2.a */
1217
- if (c == LIT_CHAR_BACKSLASH || c == LIT_CHAR_DOUBLE_QUOTE)
1211
+ if (current_char == LIT_CHAR_BACKSLASH || current_char == LIT_CHAR_DOUBLE_QUOTE)
1218
1212
{
1219
1213
ecma_string_t *backslash_str_p = ecma_get_magic_string (LIT_MAGIC_STRING_BACKSLASH_CHAR);
1220
1214
@@ -1225,16 +1219,19 @@ ecma_builtin_json_quote (ecma_string_t *string_p) /**< string that should be quo
1225
1219
product_str_p = tmp_str_p;
1226
1220
1227
1221
/* 2.a.ii */
1228
- ecma_string_t *c_str_p = ecma_new_ecma_string_from_utf8 (&c, 1 );
1222
+ ecma_string_t *current_char_str_p = ecma_new_ecma_string_from_code_unit (current_char );
1229
1223
1230
- tmp_str_p = ecma_concat_ecma_strings (product_str_p, c_str_p );
1224
+ tmp_str_p = ecma_concat_ecma_strings (product_str_p, current_char_str_p );
1231
1225
ecma_deref_ecma_string (product_str_p);
1232
- ecma_deref_ecma_string (c_str_p );
1226
+ ecma_deref_ecma_string (current_char_str_p );
1233
1227
product_str_p = tmp_str_p;
1234
1228
}
1235
1229
/* 2.b */
1236
- else if (c == LIT_CHAR_BS || c == LIT_CHAR_FF || c == LIT_CHAR_LF
1237
- || c == LIT_CHAR_CR || c == LIT_CHAR_TAB)
1230
+ else if (current_char == LIT_CHAR_BS
1231
+ || current_char == LIT_CHAR_FF
1232
+ || current_char == LIT_CHAR_LF
1233
+ || current_char == LIT_CHAR_CR
1234
+ || current_char == LIT_CHAR_TAB)
1238
1235
{
1239
1236
ecma_string_t *backslash_str_p = ecma_get_magic_string (LIT_MAGIC_STRING_BACKSLASH_CHAR);
1240
1237
@@ -1247,7 +1244,7 @@ ecma_builtin_json_quote (ecma_string_t *string_p) /**< string that should be quo
1247
1244
/* 2.b.ii */
1248
1245
lit_utf8_byte_t abbrev = LIT_CHAR_SP;
1249
1246
1250
- switch (c )
1247
+ switch (current_char )
1251
1248
{
1252
1249
case LIT_CHAR_BS:
1253
1250
{
@@ -1285,7 +1282,7 @@ ecma_builtin_json_quote (ecma_string_t *string_p) /**< string that should be quo
1285
1282
product_str_p = tmp_str_p;
1286
1283
}
1287
1284
/* 2.c */
1288
- else if (c < LIT_CHAR_SP)
1285
+ else if (current_char < LIT_CHAR_SP)
1289
1286
{
1290
1287
ecma_string_t *backslash_str_p = ecma_get_magic_string (LIT_MAGIC_STRING_BACKSLASH_CHAR);
1291
1288
@@ -1305,7 +1302,7 @@ ecma_builtin_json_quote (ecma_string_t *string_p) /**< string that should be quo
1305
1302
product_str_p = tmp_str_p;
1306
1303
1307
1304
/* 2.c.iii */
1308
- ecma_string_t *hex_str_p = ecma_builtin_helper_json_create_hex_digit_ecma_string (c );
1305
+ ecma_string_t *hex_str_p = ecma_builtin_helper_json_create_hex_digit_ecma_string (( uint8_t ) current_char );
1309
1306
1310
1307
/* 2.c.iv */
1311
1308
tmp_str_p = ecma_concat_ecma_strings (product_str_p, hex_str_p);
@@ -1316,16 +1313,16 @@ ecma_builtin_json_quote (ecma_string_t *string_p) /**< string that should be quo
1316
1313
/* 2.d */
1317
1314
else
1318
1315
{
1319
- ecma_string_t *c_str_p = ecma_new_ecma_string_from_utf8 (&c, 1 );
1316
+ ecma_string_t *current_char_str_p = ecma_new_ecma_string_from_code_unit (current_char );
1320
1317
1321
- tmp_str_p = ecma_concat_ecma_strings (product_str_p, c_str_p );
1318
+ tmp_str_p = ecma_concat_ecma_strings (product_str_p, current_char_str_p );
1322
1319
ecma_deref_ecma_string (product_str_p);
1323
- ecma_deref_ecma_string (c_str_p );
1320
+ ecma_deref_ecma_string (current_char_str_p );
1324
1321
product_str_p = tmp_str_p;
1325
1322
}
1326
1323
}
1327
1324
1328
- MEM_FINALIZE_LOCAL_ARRAY (zt_string_buff );
1325
+ MEM_FINALIZE_LOCAL_ARRAY (string_buff );
1329
1326
1330
1327
/* 3. */
1331
1328
tmp_str_p = ecma_concat_ecma_strings (product_str_p, quote_str_p);
0 commit comments