resourcebundle_class.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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: Hans-Peter Oeri (University of St.Gallen) <hp@oeri.ch> |
  14. +----------------------------------------------------------------------+
  15. */
  16. #ifndef RESOURCEBUNDLE_CLASS_H
  17. #define RESOURCEBUNDLE_CLASS_H
  18. #include <unicode/ures.h>
  19. #include <zend.h>
  20. #include "php.h"
  21. #include "intl_error.h"
  22. typedef struct {
  23. intl_error error;
  24. UResourceBundle *me;
  25. UResourceBundle *child;
  26. zend_object zend;
  27. } ResourceBundle_object;
  28. static inline ResourceBundle_object *php_intl_resourcebundle_fetch_object(zend_object *obj) {
  29. return (ResourceBundle_object *)((char*)(obj) - XtOffsetOf(ResourceBundle_object, zend));
  30. }
  31. #define Z_INTL_RESOURCEBUNDLE_P(zv) php_intl_resourcebundle_fetch_object(Z_OBJ_P(zv))
  32. #define RESOURCEBUNDLE_METHOD_INIT_VARS INTL_METHOD_INIT_VARS(ResourceBundle, rb)
  33. #define RESOURCEBUNDLE_METHOD_FETCH_OBJECT_NO_CHECK INTL_METHOD_FETCH_OBJECT(INTL_RESOURCEBUNDLE, rb)
  34. #define RESOURCEBUNDLE_METHOD_FETCH_OBJECT \
  35. INTL_METHOD_FETCH_OBJECT(INTL_RESOURCEBUNDLE, rb); \
  36. if (RESOURCEBUNDLE_OBJECT(rb) == NULL) { \
  37. intl_errors_set(&rb->error, U_ILLEGAL_ARGUMENT_ERROR, \
  38. "Found unconstructed ResourceBundle", 0); \
  39. RETURN_FALSE; \
  40. }
  41. #define RESOURCEBUNDLE_OBJECT(rb) (rb)->me
  42. void resourcebundle_register_class( void );
  43. extern zend_class_entry *ResourceBundle_ce_ptr;
  44. PHP_FUNCTION( resourcebundle_create );
  45. PHP_FUNCTION( resourcebundle_get );
  46. PHP_FUNCTION( resourcebundle_count );
  47. PHP_FUNCTION( resourcebundle_locales );
  48. PHP_FUNCTION( resourcebundle_get_error_code );
  49. PHP_FUNCTION( resourcebundle_get_error_message );
  50. #endif // #ifndef RESOURCEBUNDLE_CLASS_H