llfiltersd2xmlrpc.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:7k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llfiltersd2xmlrpc.h
  3.  * @author Phoenix
  4.  * @date 2005-04-26
  5.  *
  6.  * $LicenseInfo:firstyear=2005&license=viewergpl$
  7.  * 
  8.  * Copyright (c) 2005-2010, Linden Research, Inc.
  9.  * 
  10.  * Second Life Viewer Source Code
  11.  * The source code in this file ("Source Code") is provided by Linden Lab
  12.  * to you under the terms of the GNU General Public License, version 2.0
  13.  * ("GPL"), unless you have obtained a separate licensing agreement
  14.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  15.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  16.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  17.  * 
  18.  * There are special exceptions to the terms and conditions of the GPL as
  19.  * it is applied to this Source Code. View the full text of the exception
  20.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  21.  * online at
  22.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  23.  * 
  24.  * By copying, modifying or distributing this software, you acknowledge
  25.  * that you have read and understood your obligations described above,
  26.  * and agree to abide by those obligations.
  27.  * 
  28.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  29.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  30.  * COMPLETENESS OR PERFORMANCE.
  31.  * $/LicenseInfo$
  32.  */
  33. #ifndef LL_LLFILTERSD2XMLRPC_H
  34. #define LL_LLFILTERSD2XMLRPC_H
  35. /**
  36.  * These classes implement the necessary pipes for translating between
  37.  * xmlrpc and llsd rpc. The llsd rpcs mechanism was developed as an
  38.  * extensible and easy to parse serialization grammer which maintains
  39.  * a time efficient in-memory representation.
  40.  */
  41. #include <iosfwd>
  42. #include "lliopipe.h"
  43. /** 
  44.  * @class LLFilterSD2XMLRPC
  45.  * @brief Filter from serialized LLSD to an XMLRPC method call 
  46.  *
  47.  * This clas provides common functionality for the LLFilterSD2XMLRPRC
  48.  * request and response classes.
  49.  */
  50. class LLFilterSD2XMLRPC : public LLIOPipe
  51. {
  52. public:
  53. LLFilterSD2XMLRPC();
  54. virtual ~LLFilterSD2XMLRPC();
  55. protected:
  56. /** 
  57.  * @brief helper method
  58.  */
  59. void streamOut(std::ostream& ostr, const LLSD& sd);
  60. };
  61. /** 
  62.  * @class LLFilterSD2XMLRPCResponse
  63.  * @brief Filter from serialized LLSD to an XMLRPC response 
  64.  *
  65.  * This class filters a serialized LLSD object to an xmlrpc
  66.  * repsonse. Since resonses are limited to a single param, the xmlrprc
  67.  * response only serializes it as one object.
  68.  * This class correctly handles normal llsd responses as well as llsd
  69.  * rpc faults.
  70.  *
  71.  * For example, if given:
  72.  * <code>{'response':[ i200, r3.4, {"foo":"bar"} ]}</code>
  73.  * Would generate:
  74.  * <code>
  75.  *  <?xml version="1.0"?>
  76.  *  <methodResponse><params><param><array><data>
  77.  *    <value><int>200</int></value>
  78.  *    <value><double>3.4</double></value>
  79.  *    <value><struct><member>
  80.  *      <name>foo</name><value><string>bar</string></value></member>
  81.  *      </struct></value>
  82.  *  </data></array></param></params></methodResponse>
  83.  * </code>
  84.  */
  85. class LLFilterSD2XMLRPCResponse : public LLFilterSD2XMLRPC
  86. {
  87. public:
  88. // constructor
  89. LLFilterSD2XMLRPCResponse();
  90. // destructor
  91. virtual ~LLFilterSD2XMLRPCResponse();
  92. /* @name LLIOPipe virtual implementations
  93.  */
  94. //@{
  95. protected:
  96. /** 
  97.  * @brief Process the data in buffer.
  98.  */
  99. virtual EStatus process_impl(
  100. const LLChannelDescriptors& channels,
  101. buffer_ptr_t& buffer,
  102. bool& eos,
  103. LLSD& context,
  104. LLPumpIO* pump);
  105. //@}
  106. };
  107. /** 
  108.  * @class LLFilterSD2XMLRPCRequest
  109.  * @brief Filter from serialized LLSD to an XMLRPC method call 
  110.  *
  111.  * This class will accept any kind of serialized LLSD object, but you
  112.  * probably want to have an array on the outer boundary since this
  113.  * object will interpret each element in the top level LLSD as a
  114.  * parameter into the xmlrpc spec.
  115.  *
  116.  * For example, you would represent 3 params as:
  117.  * <code>
  118.  *  {'method'='foo', 'parameter':[i200, r3.4, {"foo":"bar"}]}
  119.  * </code>
  120.  * To generate:
  121.  * <code>
  122.  *  <?xml version="1.0"?>
  123.  *  <methodCall><params>
  124.  *  <param><value><int>200</int></value></param>
  125.  *  <param><value><double>3.4</double></value></param>
  126.  *  <param><value><struct><member>
  127.  *    <name>foo</name><value><string>bar</string></value></member>
  128.  *    </struct></value></param>
  129.  *  </params></methodCall>
  130.  *
  131.  * This class will accept 2 different kinds of encodings. The first
  132.  * just an array of params as long as you specify the method in the
  133.  * constructor. It will also accept a structured data in the form:
  134.  * {'method':'$method_name', 'parameter':[...] } In the latter form, the
  135.  * encoded 'method' will be used regardless of the construction of the
  136.  * object, and the 'parameter' will be used as parameter to the call.
  137.  */
  138. class LLFilterSD2XMLRPCRequest : public LLFilterSD2XMLRPC
  139. {
  140. public:
  141. // constructor
  142. LLFilterSD2XMLRPCRequest();
  143. // constructor
  144. LLFilterSD2XMLRPCRequest(const char* method);
  145. // destructor
  146. virtual ~LLFilterSD2XMLRPCRequest();
  147. /* @name LLIOPipe virtual implementations
  148.  */
  149. //@{
  150. protected:
  151. /** 
  152.  * @brief Process the data in buffer.
  153.  */
  154. virtual EStatus process_impl(
  155. const LLChannelDescriptors& channels,
  156. buffer_ptr_t& buffer,
  157. bool& eos,
  158. LLSD& context,
  159. LLPumpIO* pump);
  160. //@}
  161. protected:
  162. // The method name of this request.
  163. std::string mMethod;
  164. };
  165. /** 
  166.  * @class LLFilterXMLRPCResponse2LLSD
  167.  * @brief Filter from serialized XMLRPC method response to LLSD 
  168.  *
  169.  * The xmlrpc spec states that responses can only have one element
  170.  * which can be of any supported type.
  171.  * This takes in  xml of the form:
  172.  * <code>
  173.  * <?xml version="1.0"?><methodResponse><params><param>
  174.  * <value><string>ok</string></value></param></params></methodResponse>
  175.  * </code>
  176.  * And processes it into:
  177.  *  <code>'ok'</code>
  178.  *
  179.  */
  180. class LLFilterXMLRPCResponse2LLSD : public LLIOPipe
  181. {
  182. public:
  183. // constructor
  184. LLFilterXMLRPCResponse2LLSD();
  185. // destructor
  186. virtual ~LLFilterXMLRPCResponse2LLSD();
  187. /* @name LLIOPipe virtual implementations
  188.  */
  189. //@{
  190. protected:
  191. /** 
  192.  * @brief Process the data in buffer.
  193.  */
  194. virtual EStatus process_impl(
  195. const LLChannelDescriptors& channels,
  196. buffer_ptr_t& buffer,
  197. bool& eos,
  198. LLSD& context,
  199. LLPumpIO* pump);
  200. //@}
  201. protected:
  202. };
  203. /** 
  204.  * @class LLFilterXMLRPCRequest2LLSD
  205.  * @brief Filter from serialized XMLRPC method call to LLSD 
  206.  *
  207.  * This takes in  xml of the form:
  208.  * <code>
  209.  *  <?xml version="1.0"?><methodCall>
  210.  *  <methodName>repeat</methodName>
  211.  *  <params>
  212.  *  <param><value><i4>4</i4></value></param>
  213.  *  <param><value><string>ok</string></value></param>
  214.  *  </params></methodCall>
  215.  * </code>
  216.  * And processes it into:
  217.  *  <code>{ 'method':'repeat', 'params':[i4, 'ok'] }</code>
  218.  */
  219. class LLFilterXMLRPCRequest2LLSD : public LLIOPipe
  220. {
  221. public:
  222. // constructor
  223. LLFilterXMLRPCRequest2LLSD();
  224. // destructor
  225. virtual ~LLFilterXMLRPCRequest2LLSD();
  226. /* @name LLIOPipe virtual implementations
  227.  */
  228. //@{
  229. protected:
  230. /** 
  231.  * @brief Process the data in buffer.
  232.  */
  233. virtual EStatus process_impl(
  234. const LLChannelDescriptors& channels,
  235. buffer_ptr_t& buffer,
  236. bool& eos,
  237. LLSD& context,
  238. LLPumpIO* pump);
  239. //@}
  240. protected:
  241. };
  242. /**
  243.  * @brief This function takes string, and escapes it appropritately
  244.  * for inclusion as xml data.
  245.  */
  246. std::string xml_escape_string(const std::string& in);
  247. /**
  248.  * @brief Externally available constants
  249.  */
  250. extern const char LLSDRPC_REQUEST_HEADER_1[];
  251. extern const char LLSDRPC_REQUEST_HEADER_2[];
  252. extern const char LLSDRPC_REQUEST_FOOTER[];
  253. #endif // LL_LLFILTERSD2XMLRPC_H