php_incomplete_class.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP 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.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Sascha Schumann <sascha@schumann.cx> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #ifndef PHP_INCOMPLETE_CLASS_H
  20. #define PHP_INCOMPLETE_CLASS_H
  21. #include "ext/standard/basic_functions.h"
  22. #define PHP_IC_ENTRY \
  23. BG(incomplete_class)
  24. #define PHP_SET_CLASS_ATTRIBUTES(struc) \
  25. /* OBJECTS_FIXME: Fix for new object model */ \
  26. if (Z_OBJ_HT_P(struc)->get_class_entry && \
  27. Z_OBJCE_P(struc) == BG(incomplete_class)) { \
  28. class_name = php_lookup_class_name(struc, &name_len); \
  29. if (!class_name) { \
  30. name_len = sizeof(INCOMPLETE_CLASS) - 1; \
  31. class_name = estrndup(INCOMPLETE_CLASS, name_len); \
  32. } \
  33. free_class_name = 1; \
  34. incomplete_class = 1; \
  35. } else { \
  36. free_class_name = !zend_get_object_classname(struc, (const char **)&class_name, &name_len TSRMLS_CC);\
  37. }
  38. #define PHP_CLEANUP_CLASS_ATTRIBUTES() \
  39. if (free_class_name) efree(class_name)
  40. #define PHP_CLASS_ATTRIBUTES \
  41. char *class_name; \
  42. zend_uint name_len; \
  43. zend_bool free_class_name = 0; \
  44. zend_bool incomplete_class = 0
  45. #define INCOMPLETE_CLASS "__PHP_Incomplete_Class"
  46. #define MAGIC_MEMBER "__PHP_Incomplete_Class_Name"
  47. #ifdef __cplusplus
  48. extern "C" {
  49. #endif
  50. PHPAPI zend_class_entry *php_create_incomplete_class(TSRMLS_D);
  51. PHPAPI char *php_lookup_class_name(zval *object, zend_uint *nlen);
  52. PHPAPI void php_store_class_name(zval *object, const char *name, zend_uint len);
  53. #ifdef __cplusplus
  54. };
  55. #endif
  56. #endif