intl_convertcpp.cpp 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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: Gustavo Lopes <cataphract@php.net> |
  14. +----------------------------------------------------------------------+
  15. */
  16. #include "intl_cppshims.h"
  17. #include "intl_convertcpp.h"
  18. #include <unicode/ustring.h>
  19. extern "C" {
  20. #include <php.h>
  21. }
  22. /* {{{ intl_stringFromChar */
  23. int intl_stringFromChar(UnicodeString &ret, char *str, size_t str_len, UErrorCode *status)
  24. {
  25. if(str_len > INT32_MAX) {
  26. *status = U_BUFFER_OVERFLOW_ERROR;
  27. ret.setToBogus();
  28. return FAILURE;
  29. }
  30. //the number of UTF-16 code units is not larger than that of UTF-8 code
  31. //units, + 1 for the terminator
  32. int32_t capacity = (int32_t)str_len + 1;
  33. //no check necessary -- if NULL will fail ahead
  34. UChar *utf16 = ret.getBuffer(capacity);
  35. int32_t utf16_len = 0;
  36. *status = U_ZERO_ERROR;
  37. u_strFromUTF8WithSub(utf16, ret.getCapacity(), &utf16_len,
  38. str, str_len, U_SENTINEL /* no substitution */, NULL,
  39. status);
  40. ret.releaseBuffer(utf16_len);
  41. if (U_FAILURE(*status)) {
  42. ret.setToBogus();
  43. return FAILURE;
  44. }
  45. return SUCCESS;
  46. }
  47. /* }}} */
  48. /* {{{ intl_charFromString
  49. * faster than doing intl_convert_utf16_to_utf8(
  50. * from.getBuffer(), from.length(), &status),
  51. * but consumes more memory */
  52. zend_string* intl_charFromString(const UnicodeString &from, UErrorCode *status)
  53. {
  54. zend_string *u8res;
  55. if (from.isBogus()) {
  56. return NULL;
  57. }
  58. //the number of UTF-8 code units is not larger than that of UTF-16 code
  59. //units * 3
  60. int32_t capacity = from.length() * 3;
  61. if (from.isEmpty()) {
  62. return ZSTR_EMPTY_ALLOC();
  63. }
  64. u8res = zend_string_alloc(capacity, 0);
  65. const UChar *utf16buf = from.getBuffer();
  66. int32_t actual_len;
  67. u_strToUTF8WithSub(ZSTR_VAL(u8res), capacity, &actual_len, utf16buf, from.length(),
  68. U_SENTINEL, NULL, status);
  69. if (U_FAILURE(*status)) {
  70. zend_string_free(u8res);
  71. return NULL;
  72. }
  73. ZSTR_VAL(u8res)[actual_len] = '\0';
  74. ZSTR_LEN(u8res) = actual_len;
  75. return u8res;
  76. }
  77. /* }}} */