xmlrpc_private.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*
  2. This file is part of libXMLRPC - a C library for xml-encoded function calls.
  3. Author: Dan Libby (dan@libby.com)
  4. Epinions.com may be contacted at feedback@epinions-inc.com
  5. */
  6. /*
  7. Copyright 2000 Epinions, Inc.
  8. Subject to the following 3 conditions, Epinions, Inc. permits you, free
  9. of charge, to (a) use, copy, distribute, modify, perform and display this
  10. software and associated documentation files (the "Software"), and (b)
  11. permit others to whom the Software is furnished to do so as well.
  12. 1) The above copyright notice and this permission notice shall be included
  13. without modification in all copies or substantial portions of the
  14. Software.
  15. 2) THE SOFTWARE IS PROVIDED "AS IS", WITHOUT ANY WARRANTY OR CONDITION OF
  16. ANY KIND, EXPRESS, IMPLIED OR STATUTORY, INCLUDING WITHOUT LIMITATION ANY
  17. IMPLIED WARRANTIES OF ACCURACY, MERCHANTABILITY, FITNESS FOR A PARTICULAR
  18. PURPOSE OR NONINFRINGEMENT.
  19. 3) IN NO EVENT SHALL EPINIONS, INC. BE LIABLE FOR ANY DIRECT, INDIRECT,
  20. SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OR LOST PROFITS ARISING OUT
  21. OF OR IN CONNECTION WITH THE SOFTWARE (HOWEVER ARISING, INCLUDING
  22. NEGLIGENCE), EVEN IF EPINIONS, INC. IS AWARE OF THE POSSIBILITY OF SUCH
  23. DAMAGES.
  24. */
  25. /* only non-public things should be in this file. It is fine for any .c file
  26. * in xmlrpc/src to include it, but users of the public API should never
  27. * include it, and thus *.h files that are part of the public API should
  28. * never include it, or they would break if this file is not present.
  29. */
  30. #ifndef XMLRPC_PRIVATE_ALREADY_INCLUDED
  31. /*
  32. * Avoid include redundancy.
  33. */
  34. #define XMLRPC_PRIVATE_ALREADY_INCLUDED
  35. #ifdef __cplusplus
  36. extern "C" {
  37. #endif
  38. /*----------------------------------------------------------------------------
  39. * xmlrpc_private.h
  40. *
  41. * Purpose:
  42. * define non-public intra-library routines & data
  43. * Comments:
  44. */
  45. /*----------------------------------------------------------------------------
  46. * Constants
  47. */
  48. /*----------------------------------------------------------------------------
  49. * Includes
  50. */
  51. /*----------------------------------------------------------------------------
  52. * Structures
  53. */
  54. /* Some of these are typedef'd in xmlrpc.h for public use */
  55. typedef struct _xmlrpc_vector* XMLRPC_VECTOR;
  56. /****s* VALUE/XMLRPC_VALUE
  57. * NAME
  58. * XMLRPC_VALUE
  59. * NOTES
  60. * A value of variable data type. The most important object in this API. :)
  61. *
  62. * This struct is opaque to callers and should be accessed only via accessor functions.
  63. * SEE ALSO
  64. * XMLRPC_REQUEST
  65. * XMLRPC_CreateValueEmpty ()
  66. * XMLRPC_CleanupValue ()
  67. * SOURCE
  68. */
  69. typedef struct _xmlrpc_value {
  70. XMLRPC_VALUE_TYPE type; /* data type of this value */
  71. XMLRPC_VECTOR v; /* vector type specific info */
  72. simplestring str; /* string value buffer */
  73. simplestring id; /* id of this value. possibly empty. */
  74. int i; /* integer value. */
  75. double d; /* double value */
  76. int iRefCount; /* So we know when we can delete the value . */
  77. } STRUCT_XMLRPC_VALUE;
  78. /******/
  79. /****s* VALUE/XMLRPC_REQUEST
  80. * NAME
  81. * XMLRPC_REQUEST
  82. * NOTES
  83. * Internal representation of an XML request.
  84. *
  85. * This struct is opaque to callers and should be accessed only via accessor functions.
  86. *
  87. * SEE ALSO
  88. * XMLRPC_VALUE
  89. * XMLRPC_RequestNew ()
  90. * XMLRPC_RequestFree ()
  91. * SOURCE
  92. */
  93. typedef struct _xmlrpc_request {
  94. XMLRPC_VALUE io; /* data associated with this request */
  95. simplestring methodName; /* name of method being called */
  96. XMLRPC_REQUEST_TYPE request_type; /* type of request */
  97. STRUCT_XMLRPC_REQUEST_OUTPUT_OPTIONS output; /* xml output options */
  98. XMLRPC_VALUE error; /* error codes */
  99. } STRUCT_XMLRPC_REQUEST;
  100. /******/
  101. /* Vector type. Used by XMLRPC_VALUE. Never visible to users of the API. */
  102. typedef struct _xmlrpc_vector {
  103. XMLRPC_VECTOR_TYPE type; /* vector type */
  104. queue *q; /* list of child values */
  105. } STRUCT_XMLRPC_VECTOR;
  106. /******/
  107. /****s* VALUE/XMLRPC_SERVER
  108. * NAME
  109. * XMLRPC_SERVER
  110. * NOTES
  111. * internal representation of an xmlrpc server
  112. *
  113. * This struct is opaque to callers and should be accessed only via accessor functions.
  114. *
  115. * SEE ALSO
  116. * XMLRPC_ServerCreate ()
  117. * XMLRPC_ServerDestroy ()
  118. * SOURCE
  119. */
  120. typedef struct _xmlrpc_server {
  121. queue methodlist; /* list of callback methods */
  122. queue docslist; /* list of introspection callbacks */
  123. XMLRPC_VALUE xIntrospection;
  124. } STRUCT_XMLRPC_SERVER;
  125. /******/
  126. typedef struct _server_method {
  127. char* name;
  128. XMLRPC_VALUE desc;
  129. XMLRPC_Callback method;
  130. } server_method;
  131. /*----------------------------------------------------------------------------
  132. * Globals
  133. */
  134. /*----------------------------------------------------------------------------
  135. * Functions
  136. */
  137. server_method* find_method(XMLRPC_SERVER server, const char* name);
  138. const char* type_to_str(XMLRPC_VALUE_TYPE type, XMLRPC_VECTOR_TYPE vtype);
  139. /*----------------------------------------------------------------------------
  140. * Macros
  141. */
  142. #define my_free(thing) if(thing) {free(thing); thing = 0;}
  143. #ifdef __cplusplus
  144. }
  145. #endif
  146. #endif /* XMLRPC_PRIVATE_ALREADY_INCLUDED */