php_soap.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 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. | Authors: Brad Lafountain <rodif_bl@yahoo.com> |
  16. | Shane Caraveo <shane@caraveo.com> |
  17. | Dmitry Stogov <dmitry@php.net> |
  18. +----------------------------------------------------------------------+
  19. */
  20. #ifndef PHP_SOAP_H
  21. #define PHP_SOAP_H
  22. #include "php.h"
  23. #include "php_globals.h"
  24. #include "ext/standard/info.h"
  25. #include "ext/standard/php_standard.h"
  26. #if HAVE_PHP_SESSION && !defined(COMPILE_DL_SESSION)
  27. #include "ext/session/php_session.h"
  28. #endif
  29. #include "zend_smart_str.h"
  30. #include "php_ini.h"
  31. #include "SAPI.h"
  32. #include <libxml/parser.h>
  33. #include <libxml/xpath.h>
  34. #define PHP_SOAP_VERSION PHP_VERSION
  35. #ifndef PHP_WIN32
  36. # define TRUE 1
  37. # define FALSE 0
  38. # define stricmp strcasecmp
  39. #endif
  40. extern int le_url;
  41. typedef struct _encodeType encodeType, *encodeTypePtr;
  42. typedef struct _encode encode, *encodePtr;
  43. typedef struct _sdl sdl, *sdlPtr;
  44. typedef struct _sdlRestrictionInt sdlRestrictionInt, *sdlRestrictionIntPtr;
  45. typedef struct _sdlRestrictionChar sdlRestrictionChar, *sdlRestrictionCharPtr;
  46. typedef struct _sdlRestrictions sdlRestrictions, *sdlRestrictionsPtr;
  47. typedef struct _sdlType sdlType, *sdlTypePtr;
  48. typedef struct _sdlParam sdlParam, *sdlParamPtr;
  49. typedef struct _sdlFunction sdlFunction, *sdlFunctionPtr;
  50. typedef struct _sdlAttribute sdlAttribute, *sdlAttributePtr;
  51. typedef struct _sdlBinding sdlBinding, *sdlBindingPtr;
  52. typedef struct _sdlSoapBinding sdlSoapBinding, *sdlSoapBindingPtr;
  53. typedef struct _sdlSoapBindingFunction sdlSoapBindingFunction, *sdlSoapBindingFunctionPtr;
  54. typedef struct _sdlSoapBindingFunctionBody sdlSoapBindingFunctionBody, *sdlSoapBindingFunctionBodyPtr;
  55. typedef struct _soapMapping soapMapping, *soapMappingPtr;
  56. typedef struct _soapService soapService, *soapServicePtr;
  57. #include "php_xml.h"
  58. #include "php_encoding.h"
  59. #include "php_sdl.h"
  60. #include "php_schema.h"
  61. #include "php_http.h"
  62. #include "php_packet_soap.h"
  63. struct _soapMapping {
  64. zval to_xml;
  65. zval to_zval;
  66. };
  67. struct _soapHeader;
  68. struct _soapService {
  69. sdlPtr sdl;
  70. struct _soap_functions {
  71. HashTable *ft;
  72. int functions_all;
  73. } soap_functions;
  74. struct _soap_class {
  75. zend_class_entry *ce;
  76. zval *argv;
  77. int argc;
  78. int persistence;
  79. } soap_class;
  80. zval soap_object;
  81. HashTable *typemap;
  82. int version;
  83. int type;
  84. char *actor;
  85. char *uri;
  86. xmlCharEncodingHandlerPtr encoding;
  87. HashTable *class_map;
  88. int features;
  89. struct _soapHeader **soap_headers_ptr;
  90. int send_errors;
  91. };
  92. #define SOAP_CLASS 1
  93. #define SOAP_FUNCTIONS 2
  94. #define SOAP_OBJECT 3
  95. #define SOAP_FUNCTIONS_ALL 999
  96. #define SOAP_MAP_FUNCTION 1
  97. #define SOAP_MAP_CLASS 2
  98. #define SOAP_PERSISTENCE_SESSION 1
  99. #define SOAP_PERSISTENCE_REQUEST 2
  100. #define SOAP_1_1 1
  101. #define SOAP_1_2 2
  102. #define SOAP_ACTOR_NEXT 1
  103. #define SOAP_ACTOR_NONE 2
  104. #define SOAP_ACTOR_UNLIMATERECEIVER 3
  105. #define SOAP_1_1_ACTOR_NEXT "http://schemas.xmlsoap.org/soap/actor/next"
  106. #define SOAP_1_2_ACTOR_NEXT "http://www.w3.org/2003/05/soap-envelope/role/next"
  107. #define SOAP_1_2_ACTOR_NONE "http://www.w3.org/2003/05/soap-envelope/role/none"
  108. #define SOAP_1_2_ACTOR_UNLIMATERECEIVER "http://www.w3.org/2003/05/soap-envelope/role/ultimateReceiver"
  109. #define SOAP_COMPRESSION_ACCEPT 0x20
  110. #define SOAP_COMPRESSION_GZIP 0x00
  111. #define SOAP_COMPRESSION_DEFLATE 0x10
  112. #define SOAP_AUTHENTICATION_BASIC 0
  113. #define SOAP_AUTHENTICATION_DIGEST 1
  114. #define SOAP_SINGLE_ELEMENT_ARRAYS (1<<0)
  115. #define SOAP_WAIT_ONE_WAY_CALLS (1<<1)
  116. #define SOAP_USE_XSI_ARRAY_TYPE (1<<2)
  117. #define WSDL_CACHE_NONE 0x0
  118. #define WSDL_CACHE_DISK 0x1
  119. #define WSDL_CACHE_MEMORY 0x2
  120. #define WSDL_CACHE_BOTH 0x3
  121. /* New SOAP SSL Method Constants */
  122. #define SOAP_SSL_METHOD_TLS 0
  123. #define SOAP_SSL_METHOD_SSLv2 1
  124. #define SOAP_SSL_METHOD_SSLv3 2
  125. #define SOAP_SSL_METHOD_SSLv23 3
  126. ZEND_BEGIN_MODULE_GLOBALS(soap)
  127. HashTable defEncNs; /* mapping of default namespaces to prefixes */
  128. HashTable defEnc;
  129. HashTable defEncIndex;
  130. HashTable *typemap;
  131. int cur_uniq_ns;
  132. int soap_version;
  133. sdlPtr sdl;
  134. zend_bool use_soap_error_handler;
  135. char* error_code;
  136. zval error_object;
  137. char cache;
  138. char cache_mode;
  139. char cache_enabled;
  140. char* cache_dir;
  141. zend_long cache_ttl;
  142. zend_long cache_limit;
  143. HashTable *mem_cache;
  144. xmlCharEncodingHandlerPtr encoding;
  145. HashTable *class_map;
  146. int features;
  147. HashTable wsdl_cache;
  148. int cur_uniq_ref;
  149. HashTable *ref_map;
  150. ZEND_END_MODULE_GLOBALS(soap)
  151. #ifdef ZTS
  152. #include "TSRM.h"
  153. #endif
  154. extern zend_module_entry soap_module_entry;
  155. #define soap_module_ptr &soap_module_entry
  156. #define phpext_soap_ptr soap_module_ptr
  157. ZEND_EXTERN_MODULE_GLOBALS(soap)
  158. #define SOAP_GLOBAL(v) ZEND_MODULE_GLOBALS_ACCESSOR(soap, v)
  159. #if defined(ZTS) && defined(COMPILE_DL_SOAP)
  160. ZEND_TSRMLS_CACHE_EXTERN()
  161. #endif
  162. extern zend_class_entry* soap_var_class_entry;
  163. void add_soap_fault(zval *obj, char *fault_code, char *fault_string, char *fault_actor, zval *fault_detail);
  164. #define soap_error0(severity, format) \
  165. php_error(severity, "SOAP-ERROR: " format)
  166. #define soap_error1(severity, format, param1) \
  167. php_error(severity, "SOAP-ERROR: " format, param1)
  168. #define soap_error2(severity, format, param1, param2) \
  169. php_error(severity, "SOAP-ERROR: " format, param1, param2)
  170. #define soap_error3(severity, format, param1, param2, param3) \
  171. php_error(severity, "SOAP-ERROR: " format, param1, param2, param3)
  172. #endif