intl_error.c 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  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: Vadim Savchuk <vsavchuk@productengine.com> |
  14. | Dmitry Lakhtyuk <dlakhtyuk@productengine.com> |
  15. | Stanislav Malyshev <stas@zend.com> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifdef HAVE_CONFIG_H
  19. #include "config.h"
  20. #endif
  21. #include <php.h>
  22. #include <zend_exceptions.h>
  23. #include "php_intl.h"
  24. #include "intl_error.h"
  25. #include "intl_convert.h"
  26. ZEND_EXTERN_MODULE_GLOBALS( intl )
  27. zend_class_entry *IntlException_ce_ptr;
  28. /* {{{ intl_error* intl_g_error_get()
  29. * Return global error structure.
  30. */
  31. static intl_error* intl_g_error_get( void )
  32. {
  33. return &INTL_G( g_error );
  34. }
  35. /* }}} */
  36. /* {{{ void intl_free_custom_error_msg( intl_error* err )
  37. * Free mem.
  38. */
  39. static void intl_free_custom_error_msg( intl_error* err )
  40. {
  41. if( !err && !( err = intl_g_error_get( ) ) )
  42. return;
  43. if(err->free_custom_error_message ) {
  44. efree( err->custom_error_message );
  45. }
  46. err->custom_error_message = NULL;
  47. err->free_custom_error_message = 0;
  48. }
  49. /* }}} */
  50. /* {{{ intl_error* intl_error_create()
  51. * Create and initialize internals of 'intl_error'.
  52. */
  53. intl_error* intl_error_create( void )
  54. {
  55. intl_error* err = ecalloc( 1, sizeof( intl_error ) );
  56. intl_error_init( err );
  57. return err;
  58. }
  59. /* }}} */
  60. /* {{{ void intl_error_init( intl_error* coll_error )
  61. * Initialize internals of 'intl_error'.
  62. */
  63. void intl_error_init( intl_error* err )
  64. {
  65. if( !err && !( err = intl_g_error_get( ) ) )
  66. return;
  67. err->code = U_ZERO_ERROR;
  68. err->custom_error_message = NULL;
  69. err->free_custom_error_message = 0;
  70. }
  71. /* }}} */
  72. /* {{{ void intl_error_reset( intl_error* err )
  73. * Set last error code to 0 and unset last error message
  74. */
  75. void intl_error_reset( intl_error* err )
  76. {
  77. if( !err && !( err = intl_g_error_get( ) ) )
  78. return;
  79. err->code = U_ZERO_ERROR;
  80. intl_free_custom_error_msg( err );
  81. }
  82. /* }}} */
  83. /* {{{ void intl_error_set_custom_msg( intl_error* err, char* msg, int copyMsg )
  84. * Set last error message to msg copying it if needed.
  85. */
  86. void intl_error_set_custom_msg( intl_error* err, const char* msg, int copyMsg )
  87. {
  88. if( !msg )
  89. return;
  90. if( !err ) {
  91. if( INTL_G( error_level ) )
  92. php_error_docref( NULL, INTL_G( error_level ), "%s", msg );
  93. if( INTL_G( use_exceptions ) )
  94. zend_throw_exception_ex( IntlException_ce_ptr, 0, "%s", msg );
  95. }
  96. if( !err && !( err = intl_g_error_get( ) ) )
  97. return;
  98. /* Free previous message if any */
  99. intl_free_custom_error_msg( err );
  100. /* Mark message copied if any */
  101. err->free_custom_error_message = copyMsg;
  102. /* Set user's error text message */
  103. err->custom_error_message = copyMsg ? estrdup( msg ) : (char *) msg;
  104. }
  105. /* }}} */
  106. /* {{{ const char* intl_error_get_message( intl_error* err )
  107. * Create output message in format "<intl_error_text>: <extra_user_error_text>".
  108. */
  109. zend_string * intl_error_get_message( intl_error* err )
  110. {
  111. const char *uErrorName = NULL;
  112. zend_string *errMessage = 0;
  113. if( !err && !( err = intl_g_error_get( ) ) )
  114. return ZSTR_EMPTY_ALLOC();
  115. uErrorName = u_errorName( err->code );
  116. /* Format output string */
  117. if( err->custom_error_message )
  118. {
  119. errMessage = strpprintf(0, "%s: %s", err->custom_error_message, uErrorName );
  120. }
  121. else
  122. {
  123. errMessage = strpprintf(0, "%s", uErrorName );
  124. }
  125. return errMessage;
  126. }
  127. /* }}} */
  128. /* {{{ void intl_error_set_code( intl_error* err, UErrorCode err_code )
  129. * Set last error code.
  130. */
  131. void intl_error_set_code( intl_error* err, UErrorCode err_code )
  132. {
  133. if( !err && !( err = intl_g_error_get( ) ) )
  134. return;
  135. err->code = err_code;
  136. }
  137. /* }}} */
  138. /* {{{ void intl_error_get_code( intl_error* err )
  139. * Return last error code.
  140. */
  141. UErrorCode intl_error_get_code( intl_error* err )
  142. {
  143. if( !err && !( err = intl_g_error_get( ) ) )
  144. return U_ZERO_ERROR;
  145. return err->code;
  146. }
  147. /* }}} */
  148. /* {{{ void intl_error_set( intl_error* err, UErrorCode code, char* msg, int copyMsg )
  149. * Set error code and message.
  150. */
  151. void intl_error_set( intl_error* err, UErrorCode code, const char* msg, int copyMsg )
  152. {
  153. intl_error_set_code( err, code );
  154. intl_error_set_custom_msg( err, msg, copyMsg );
  155. }
  156. /* }}} */
  157. /* {{{ void intl_errors_set( intl_error* err, UErrorCode code, char* msg, int copyMsg )
  158. * Set error code and message.
  159. */
  160. void intl_errors_set( intl_error* err, UErrorCode code, const char* msg, int copyMsg )
  161. {
  162. intl_errors_set_code( err, code );
  163. intl_errors_set_custom_msg( err, msg, copyMsg );
  164. }
  165. /* }}} */
  166. /* {{{ void intl_errors_reset( intl_error* err )
  167. */
  168. void intl_errors_reset( intl_error* err )
  169. {
  170. if(err) {
  171. intl_error_reset( err );
  172. }
  173. intl_error_reset( NULL );
  174. }
  175. /* }}} */
  176. /* {{{ void intl_errors_set_custom_msg( intl_error* err, char* msg, int copyMsg )
  177. */
  178. void intl_errors_set_custom_msg( intl_error* err, const char* msg, int copyMsg )
  179. {
  180. if(err) {
  181. intl_error_set_custom_msg( err, msg, copyMsg );
  182. }
  183. intl_error_set_custom_msg( NULL, msg, copyMsg );
  184. }
  185. /* }}} */
  186. /* {{{ intl_errors_set_code( intl_error* err, UErrorCode err_code )
  187. */
  188. void intl_errors_set_code( intl_error* err, UErrorCode err_code )
  189. {
  190. if(err) {
  191. intl_error_set_code( err, err_code );
  192. }
  193. intl_error_set_code( NULL, err_code );
  194. }
  195. /* }}} */
  196. void intl_register_IntlException_class( void )
  197. {
  198. zend_class_entry ce;
  199. /* Create and register 'IntlException' class. */
  200. INIT_CLASS_ENTRY_EX( ce, "IntlException", sizeof( "IntlException" ) - 1, NULL );
  201. IntlException_ce_ptr = zend_register_internal_class_ex( &ce,
  202. zend_ce_exception );
  203. IntlException_ce_ptr->create_object = zend_ce_exception->create_object;
  204. }
  205. smart_str intl_parse_error_to_string( UParseError* pe )
  206. {
  207. smart_str ret = {0};
  208. zend_string *u8str;
  209. UErrorCode status;
  210. int any = 0;
  211. assert( pe != NULL );
  212. smart_str_appends( &ret, "parse error " );
  213. if( pe->line > 0 )
  214. {
  215. smart_str_appends( &ret, "on line " );
  216. smart_str_append_long( &ret, (zend_long ) pe->line );
  217. any = 1;
  218. }
  219. if( pe->offset >= 0 ) {
  220. if( any )
  221. smart_str_appends( &ret, ", " );
  222. else
  223. smart_str_appends( &ret, "at " );
  224. smart_str_appends( &ret, "offset " );
  225. smart_str_append_long( &ret, (zend_long ) pe->offset );
  226. any = 1;
  227. }
  228. if (pe->preContext[0] != 0 ) {
  229. if( any )
  230. smart_str_appends( &ret, ", " );
  231. smart_str_appends( &ret, "after \"" );
  232. u8str = intl_convert_utf16_to_utf8(pe->preContext, -1, &status );
  233. if( !u8str )
  234. {
  235. smart_str_appends( &ret, "(could not convert parser error pre-context to UTF-8)" );
  236. }
  237. else {
  238. smart_str_append( &ret, u8str );
  239. zend_string_release_ex( u8str, 0 );
  240. }
  241. smart_str_appends( &ret, "\"" );
  242. any = 1;
  243. }
  244. if( pe->postContext[0] != 0 )
  245. {
  246. if( any )
  247. smart_str_appends( &ret, ", " );
  248. smart_str_appends( &ret, "before or at \"" );
  249. u8str = intl_convert_utf16_to_utf8(pe->postContext, -1, &status );
  250. if( !u8str )
  251. {
  252. smart_str_appends( &ret, "(could not convert parser error post-context to UTF-8)" );
  253. }
  254. else
  255. {
  256. smart_str_append( &ret, u8str );
  257. zend_string_release_ex( u8str, 0 );
  258. }
  259. smart_str_appends( &ret, "\"" );
  260. any = 1;
  261. }
  262. if( !any )
  263. {
  264. smart_str_free( &ret );
  265. smart_str_appends( &ret, "no parse error" );
  266. }
  267. smart_str_0( &ret );
  268. return ret;
  269. }
  270. /*
  271. * Local variables:
  272. * tab-width: 4
  273. * c-basic-offset: 4
  274. * End:
  275. * vim600: noet sw=4 ts=4 fdm=marker
  276. * vim<600: noet sw=4 ts=4
  277. */