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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llsdmessagereader.h
  3.  * @brief LLSDMessageReader class Declaration
  4.  *
  5.  * $LicenseInfo:firstyear=2007&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2007-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #ifndef LL_LLSDMESSAGEREADER_H
  33. #define LL_LLSDMESSAGEREADER_H
  34. #include "llmessagereader.h"
  35. #include "llsd.h"
  36. #include <map>
  37. class LLMessageTemplate;
  38. class LLMsgData;
  39. class LLSDMessageReader : public LLMessageReader
  40. {
  41. public:
  42. LLSDMessageReader();
  43. virtual ~LLSDMessageReader();
  44. /** All get* methods expect pointers to canonical strings. */
  45. virtual void getBinaryData(const char *block, const char *var, 
  46.    void *datap, S32 size, S32 blocknum = 0, 
  47.    S32 max_size = S32_MAX);
  48. virtual void getBOOL(const char *block, const char *var, BOOL &data, 
  49.  S32 blocknum = 0);
  50. virtual void getS8(const char *block, const char *var, S8 &data, 
  51.    S32 blocknum = 0);
  52. virtual void getU8(const char *block, const char *var, U8 &data, 
  53.    S32 blocknum = 0);
  54. virtual void getS16(const char *block, const char *var, S16 &data, 
  55. S32 blocknum = 0);
  56. virtual void getU16(const char *block, const char *var, U16 &data, 
  57. S32 blocknum = 0);
  58. virtual void getS32(const char *block, const char *var, S32 &data, 
  59. S32 blocknum = 0);
  60. virtual void getF32(const char *block, const char *var, F32 &data, 
  61. S32 blocknum = 0);
  62. virtual void getU32(const char *block, const char *var, U32 &data, 
  63. S32 blocknum = 0);
  64. virtual void getU64(const char *block, const char *var, U64 &data, 
  65. S32 blocknum = 0);
  66. virtual void getF64(const char *block, const char *var, F64 &data, 
  67. S32 blocknum = 0);
  68. virtual void getVector3(const char *block, const char *var, 
  69. LLVector3 &vec, S32 blocknum = 0);
  70. virtual void getVector4(const char *block, const char *var, 
  71. LLVector4 &vec, S32 blocknum = 0);
  72. virtual void getVector3d(const char *block, const char *var, 
  73.  LLVector3d &vec, S32 blocknum = 0);
  74. virtual void getQuat(const char *block, const char *var, LLQuaternion &q, 
  75.  S32 blocknum = 0);
  76. virtual void getUUID(const char *block, const char *var, LLUUID &uuid, 
  77.  S32 blocknum = 0);
  78. virtual void getIPAddr(const char *block, const char *var, U32 &ip, 
  79.    S32 blocknum = 0);
  80. virtual void getIPPort(const char *block, const char *var, U16 &port, 
  81.    S32 blocknum = 0);
  82. virtual void getString(const char *block, const char *var, 
  83.    S32 buffer_size, char *buffer, S32 blocknum = 0);
  84. virtual void getString(const char *block, const char *var, std::string& outstr,
  85.    S32 blocknum = 0);
  86. virtual S32 getNumberOfBlocks(const char *blockname);
  87. virtual S32 getSize(const char *blockname, const char *varname);
  88. virtual S32 getSize(const char *blockname, S32 blocknum, 
  89. const char *varname);
  90. virtual void clearMessage();
  91. virtual const char* getMessageName() const;
  92. virtual S32 getMessageSize() const;
  93. virtual void copyToBuilder(LLMessageBuilder&) const;
  94. /** Expects a pointer to a canonical name string */
  95. void setMessage(const char* name, const LLSD& msg);
  96. private:
  97. const char* mMessageName; // Canonical (prehashed) string.
  98. LLSD mMessage;
  99. };
  100. #endif // LL_LLSDMESSAGEREADER_H