php_sdl.h 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  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_SDL_H
  21. #define PHP_SDL_H
  22. #define XSD_WHITESPACE_COLLAPSE 1
  23. #define XSD_WHITESPACE_PRESERVE 1
  24. #define XSD_WHITESPACE_REPLACE 1
  25. typedef enum _sdlBindingType {
  26. BINDING_SOAP = 1,
  27. BINDING_HTTP = 2
  28. } sdlBindingType;
  29. typedef enum _sdlEncodingStyle {
  30. SOAP_RPC = 1,
  31. SOAP_DOCUMENT = 2
  32. } sdlEncodingStyle;
  33. typedef enum _sdlRpcEncodingStyle {
  34. SOAP_ENCODING_DEFAULT = 0,
  35. SOAP_ENCODING_1_1 = 1,
  36. SOAP_ENCODING_1_2 = 2
  37. } sdlRpcEncodingStyle;
  38. typedef enum _sdlEncodingUse {
  39. SOAP_ENCODED = 1,
  40. SOAP_LITERAL = 2
  41. } sdlEncodingUse;
  42. typedef enum _sdlTransport {
  43. SOAP_TRANSPORT_HTTP = 1
  44. } sdlTransport;
  45. struct _sdl {
  46. HashTable functions; /* array of sdlFunction */
  47. HashTable *types; /* array of sdlTypesPtr */
  48. HashTable *elements; /* array of sdlTypesPtr */
  49. HashTable *encoders; /* array of encodePtr */
  50. HashTable *bindings; /* array of sdlBindings (key'd by name) */
  51. HashTable *requests; /* array of sdlFunction (references) */
  52. HashTable *groups; /* array of sdlTypesPtr */
  53. char *target_ns;
  54. char *source;
  55. zend_bool is_persistent;
  56. };
  57. typedef struct sdlCtx {
  58. sdlPtr sdl;
  59. HashTable docs; /* array of xmlDocPtr */
  60. HashTable messages; /* array of xmlNodePtr */
  61. HashTable bindings; /* array of xmlNodePtr */
  62. HashTable portTypes; /* array of xmlNodePtr */
  63. HashTable services; /* array of xmlNodePtr */
  64. HashTable *attributes; /* array of sdlAttributePtr */
  65. HashTable *attributeGroups; /* array of sdlTypesPtr */
  66. php_stream_context *context;
  67. zval old_header;
  68. } sdlCtx;
  69. struct _sdlBinding {
  70. char *name;
  71. char *location;
  72. sdlBindingType bindingType;
  73. void *bindingAttributes; /* sdlSoapBindingPtr */
  74. };
  75. /* Soap Binding Specific stuff */
  76. struct _sdlSoapBinding {
  77. sdlEncodingStyle style;
  78. sdlTransport transport; /* not implemented yet */
  79. };
  80. typedef struct _sdlSoapBindingFunctionHeader {
  81. char *name;
  82. char *ns;
  83. sdlEncodingUse use;
  84. sdlTypePtr element;
  85. encodePtr encode;
  86. sdlRpcEncodingStyle encodingStyle; /* not implemented yet */
  87. HashTable *headerfaults; /* array of sdlSoapBindingFunctionHeaderPtr */
  88. } sdlSoapBindingFunctionHeader, *sdlSoapBindingFunctionHeaderPtr;
  89. typedef struct _sdlSoapBindingFunctionFault {
  90. char *ns;
  91. sdlEncodingUse use;
  92. sdlRpcEncodingStyle encodingStyle; /* not implemented yet */
  93. } sdlSoapBindingFunctionFault, *sdlSoapBindingFunctionFaultPtr;
  94. struct _sdlSoapBindingFunctionBody {
  95. char *ns;
  96. sdlEncodingUse use;
  97. sdlRpcEncodingStyle encodingStyle; /* not implemented yet */
  98. HashTable *headers; /* array of sdlSoapBindingFunctionHeaderPtr */
  99. };
  100. struct _sdlSoapBindingFunction {
  101. char *soapAction;
  102. sdlEncodingStyle style;
  103. sdlSoapBindingFunctionBody input;
  104. sdlSoapBindingFunctionBody output;
  105. };
  106. struct _sdlRestrictionInt {
  107. int value;
  108. char fixed;
  109. };
  110. struct _sdlRestrictionChar {
  111. char *value;
  112. char fixed;
  113. };
  114. struct _sdlRestrictions {
  115. HashTable *enumeration; /* array of sdlRestrictionCharPtr */
  116. sdlRestrictionIntPtr minExclusive;
  117. sdlRestrictionIntPtr minInclusive;
  118. sdlRestrictionIntPtr maxExclusive;
  119. sdlRestrictionIntPtr maxInclusive;
  120. sdlRestrictionIntPtr totalDigits;
  121. sdlRestrictionIntPtr fractionDigits;
  122. sdlRestrictionIntPtr length;
  123. sdlRestrictionIntPtr minLength;
  124. sdlRestrictionIntPtr maxLength;
  125. sdlRestrictionCharPtr whiteSpace;
  126. sdlRestrictionCharPtr pattern;
  127. };
  128. typedef enum _sdlContentKind {
  129. XSD_CONTENT_ELEMENT,
  130. XSD_CONTENT_SEQUENCE,
  131. XSD_CONTENT_ALL,
  132. XSD_CONTENT_CHOICE,
  133. XSD_CONTENT_GROUP_REF,
  134. XSD_CONTENT_GROUP,
  135. XSD_CONTENT_ANY
  136. } sdlContentKind;
  137. typedef struct _sdlContentModel sdlContentModel, *sdlContentModelPtr;
  138. struct _sdlContentModel {
  139. sdlContentKind kind;
  140. int min_occurs;
  141. int max_occurs;
  142. union {
  143. sdlTypePtr element; /* pointer to element */
  144. sdlTypePtr group; /* pointer to group */
  145. HashTable *content; /* array of sdlContentModel for sequnce,all,choice*/
  146. char *group_ref; /* reference to group */
  147. } u;
  148. };
  149. typedef enum _sdlTypeKind {
  150. XSD_TYPEKIND_SIMPLE,
  151. XSD_TYPEKIND_LIST,
  152. XSD_TYPEKIND_UNION,
  153. XSD_TYPEKIND_COMPLEX,
  154. XSD_TYPEKIND_RESTRICTION,
  155. XSD_TYPEKIND_EXTENSION
  156. } sdlTypeKind;
  157. typedef enum _sdlUse {
  158. XSD_USE_DEFAULT,
  159. XSD_USE_OPTIONAL,
  160. XSD_USE_PROHIBITED,
  161. XSD_USE_REQUIRED
  162. } sdlUse;
  163. typedef enum _sdlForm {
  164. XSD_FORM_DEFAULT,
  165. XSD_FORM_QUALIFIED,
  166. XSD_FORM_UNQUALIFIED
  167. } sdlForm;
  168. struct _sdlType {
  169. sdlTypeKind kind;
  170. char *name;
  171. char *namens;
  172. char nillable;
  173. HashTable *elements; /* array of sdlTypePtr */
  174. HashTable *attributes; /* array of sdlAttributePtr */
  175. sdlRestrictionsPtr restrictions;
  176. encodePtr encode;
  177. sdlContentModelPtr model;
  178. char *def;
  179. char *fixed;
  180. char *ref;
  181. sdlForm form;
  182. };
  183. struct _sdlParam {
  184. int order;
  185. sdlTypePtr element;
  186. encodePtr encode;
  187. char *paramName;
  188. };
  189. typedef struct _sdlFault {
  190. char *name;
  191. HashTable *details; /* array of sdlParamPtr */
  192. void *bindingAttributes; /* sdlSoapBindingFunctionFaultPtr */
  193. } sdlFault, *sdlFaultPtr;
  194. struct _sdlFunction {
  195. char *functionName;
  196. char *requestName;
  197. char *responseName;
  198. HashTable *requestParameters; /* array of sdlParamPtr */
  199. HashTable *responseParameters; /* array of sdlParamPtr (this should only be one) */
  200. struct _sdlBinding *binding;
  201. void *bindingAttributes; /* sdlSoapBindingFunctionPtr */
  202. HashTable *faults; /* array of sdlFaultPtr */
  203. };
  204. typedef struct _sdlExtraAttribute {
  205. char *ns;
  206. char *val;
  207. } sdlExtraAttribute, *sdlExtraAttributePtr;
  208. struct _sdlAttribute {
  209. char *name;
  210. char *namens;
  211. char *ref;
  212. char *def;
  213. char *fixed;
  214. sdlForm form;
  215. sdlUse use;
  216. HashTable *extraAttributes; /* array of sdlExtraAttribute */
  217. encodePtr encode;
  218. };
  219. sdlPtr get_sdl(zval *this_ptr, char *uri, zend_long cache_wsdl);
  220. encodePtr get_encoder_from_prefix(sdlPtr sdl, xmlNodePtr data, const xmlChar *type);
  221. encodePtr get_encoder(sdlPtr sdl, const char *ns, const char *type);
  222. encodePtr get_encoder_ex(sdlPtr sdl, const char *nscat, int len);
  223. sdlBindingPtr get_binding_from_type(sdlPtr sdl, sdlBindingType type);
  224. sdlBindingPtr get_binding_from_name(sdlPtr sdl, char *name, char *ns);
  225. void delete_sdl(void *handle);
  226. void delete_sdl_impl(void *handle);
  227. void sdl_set_uri_credentials(sdlCtx *ctx, char *uri);
  228. void sdl_restore_uri_credentials(sdlCtx *ctx);
  229. #endif