zend_interfaces.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. +----------------------------------------------------------------------+
  3. | Zend Engine |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) Zend Technologies Ltd. (http://www.zend.com) |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 2.00 of the Zend license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.zend.com/license/2_00.txt. |
  11. | If you did not receive a copy of the Zend license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@zend.com so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Marcus Boerger <helly@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifndef ZEND_INTERFACES_H
  19. #define ZEND_INTERFACES_H
  20. #include "zend.h"
  21. #include "zend_API.h"
  22. BEGIN_EXTERN_C()
  23. extern ZEND_API zend_class_entry *zend_ce_traversable;
  24. extern ZEND_API zend_class_entry *zend_ce_aggregate;
  25. extern ZEND_API zend_class_entry *zend_ce_iterator;
  26. extern ZEND_API zend_class_entry *zend_ce_arrayaccess;
  27. extern ZEND_API zend_class_entry *zend_ce_serializable;
  28. extern ZEND_API zend_class_entry *zend_ce_countable;
  29. extern ZEND_API zend_class_entry *zend_ce_stringable;
  30. typedef struct _zend_user_iterator {
  31. zend_object_iterator it;
  32. zend_class_entry *ce;
  33. zval value;
  34. } zend_user_iterator;
  35. ZEND_API zval* zend_call_method(zend_object *object, zend_class_entry *obj_ce, zend_function **fn_proxy, const char *function_name, size_t function_name_len, zval *retval, uint32_t param_count, zval* arg1, zval* arg2);
  36. #define zend_call_method_with_0_params(obj, obj_ce, fn_proxy, function_name, retval) \
  37. zend_call_method(obj, obj_ce, fn_proxy, function_name, sizeof(function_name)-1, retval, 0, NULL, NULL)
  38. #define zend_call_method_with_1_params(obj, obj_ce, fn_proxy, function_name, retval, arg1) \
  39. zend_call_method(obj, obj_ce, fn_proxy, function_name, sizeof(function_name)-1, retval, 1, arg1, NULL)
  40. #define zend_call_method_with_2_params(obj, obj_ce, fn_proxy, function_name, retval, arg1, arg2) \
  41. zend_call_method(obj, obj_ce, fn_proxy, function_name, sizeof(function_name)-1, retval, 2, arg1, arg2)
  42. ZEND_API void zend_user_it_rewind(zend_object_iterator *_iter);
  43. ZEND_API zend_result zend_user_it_valid(zend_object_iterator *_iter);
  44. ZEND_API void zend_user_it_get_current_key(zend_object_iterator *_iter, zval *key);
  45. ZEND_API zval *zend_user_it_get_current_data(zend_object_iterator *_iter);
  46. ZEND_API void zend_user_it_move_forward(zend_object_iterator *_iter);
  47. ZEND_API void zend_user_it_invalidate_current(zend_object_iterator *_iter);
  48. ZEND_API HashTable *zend_user_it_get_gc(zend_object_iterator *_iter, zval **table, int *n);
  49. ZEND_API void zend_user_it_new_iterator(zend_class_entry *ce, zval *object, zval *iterator);
  50. ZEND_API zend_object_iterator *zend_user_it_get_new_iterator(zend_class_entry *ce, zval *object, int by_ref);
  51. ZEND_API void zend_register_interfaces(void);
  52. ZEND_API int zend_user_serialize(zval *object, unsigned char **buffer, size_t *buf_len, zend_serialize_data *data);
  53. ZEND_API int zend_user_unserialize(zval *object, zend_class_entry *ce, const unsigned char *buf, size_t buf_len, zend_unserialize_data *data);
  54. ZEND_API zend_result zend_create_internal_iterator_zval(zval *return_value, zval *obj);
  55. END_EXTERN_C()
  56. #endif /* ZEND_INTERFACES_H */