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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file lltemplatemessagereader.h
  3.  * @brief Declaration of LLTemplateMessageReader class.
  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_LLTEMPLATEMESSAGEREADER_H
  33. #define LL_LLTEMPLATEMESSAGEREADER_H
  34. #include "llmessagereader.h"
  35. #include <map>
  36. class LLMessageTemplate;
  37. class LLMsgData;
  38. class LLTemplateMessageReader : public LLMessageReader
  39. {
  40. public:
  41. typedef std::map<U32, LLMessageTemplate*> message_template_number_map_t;
  42. LLTemplateMessageReader(message_template_number_map_t&);
  43. virtual ~LLTemplateMessageReader();
  44. /** All get* methods expect pointers to canonical strings. */
  45. virtual void getBinaryData(const char *blockname, const char *varname, 
  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. BOOL validateMessage(const U8* buffer, S32 buffer_size, 
  95.  const LLHost& sender, bool trusted = false);
  96. BOOL readMessage(const U8* buffer, const LLHost& sender);
  97. bool isTrusted() const;
  98. bool isBanned(bool trusted_source) const;
  99. bool isUdpBanned() const;
  100. private:
  101. void getData(const char *blockname, const char *varname, void *datap, 
  102.  S32 size = 0, S32 blocknum = 0, S32 max_size = S32_MAX);
  103. BOOL decodeTemplate(const U8* buffer, S32 buffer_size,  // inputs
  104. LLMessageTemplate** msg_template ); // outputs
  105. void logRanOffEndOfPacket( const LLHost& host, const S32 where, const S32 wanted );
  106. BOOL decodeData(const U8* buffer, const LLHost& sender );
  107. S32 mReceiveSize;
  108. LLMessageTemplate* mCurrentRMessageTemplate;
  109. LLMsgData* mCurrentRMessageData;
  110. message_template_number_map_t& mMessageNumbers;
  111. };
  112. #endif // LL_LLTEMPLATEMESSAGEREADER_H