normalizer_class.c 2.8 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: Ed Batutis <ed@batutis.com> |
  14. +----------------------------------------------------------------------+
  15. */
  16. #include "normalizer_class.h"
  17. #include "php_intl.h"
  18. #include "normalizer_normalize.h"
  19. #include "intl_error.h"
  20. #include <unicode/unorm.h>
  21. zend_class_entry *Normalizer_ce_ptr = NULL;
  22. /*
  23. * 'Normalizer' class registration structures & functions
  24. */
  25. /* {{{ Normalizer methods arguments info */
  26. ZEND_BEGIN_ARG_INFO_EX( normalizer_args, 0, 0, 1 )
  27. ZEND_ARG_INFO( 0, input )
  28. ZEND_ARG_INFO( 0, form )
  29. ZEND_END_ARG_INFO()
  30. #if U_ICU_VERSION_MAJOR_NUM >= 56
  31. ZEND_BEGIN_ARG_INFO_EX( decomposition_args, 0, 0, 1 )
  32. ZEND_ARG_INFO( 0, input )
  33. ZEND_END_ARG_INFO();
  34. #endif
  35. /* }}} */
  36. /* {{{ Normalizer_class_functions
  37. * Every 'Normalizer' class method has an entry in this table
  38. */
  39. static const zend_function_entry Normalizer_class_functions[] = {
  40. ZEND_FENTRY( normalize, ZEND_FN( normalizer_normalize ), normalizer_args, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC )
  41. ZEND_FENTRY( isNormalized, ZEND_FN( normalizer_is_normalized ), normalizer_args, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC )
  42. #if U_ICU_VERSION_MAJOR_NUM >= 56
  43. ZEND_FENTRY( getRawDecomposition, ZEND_FN( normalizer_get_raw_decomposition ), decomposition_args, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC )
  44. #endif
  45. PHP_FE_END
  46. };
  47. /* }}} */
  48. /* {{{ normalizer_register_Normalizer_class
  49. * Initialize 'Normalizer' class
  50. */
  51. void normalizer_register_Normalizer_class( void )
  52. {
  53. zend_class_entry ce;
  54. /* Create and register 'Normalizer' class. */
  55. INIT_CLASS_ENTRY( ce, "Normalizer", Normalizer_class_functions );
  56. ce.create_object = NULL;
  57. Normalizer_ce_ptr = zend_register_internal_class( &ce );
  58. /* Declare 'Normalizer' class properties. */
  59. if( !Normalizer_ce_ptr )
  60. {
  61. zend_error( E_ERROR,
  62. "Normalizer: attempt to create properties "
  63. "on a non-registered class." );
  64. return;
  65. }
  66. }
  67. /* }}} */
  68. /*
  69. * Local variables:
  70. * tab-width: 4
  71. * c-basic-offset: 4
  72. * End:
  73. * vim600: noet sw=4 ts=4 fdm=marker
  74. * vim<600: noet sw=4 ts=4
  75. */