PageRenderTime 33ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 1ms

/indra/llmessage/llmessagereader.h

https://bitbucket.org/lindenlab/viewer-beta/
C++ Header | 93 lines | 51 code | 14 blank | 28 comment | 0 complexity | 8bda53cac6a772a319d7fcce2997cbc0 MD5 | raw file
Possible License(s): LGPL-2.1
  1. /**
  2. * @file llmessagereader.h
  3. * @brief Declaration of LLMessageReader class.
  4. *
  5. * $LicenseInfo:firstyear=2007&license=viewerlgpl$
  6. * Second Life Viewer Source Code
  7. * Copyright (C) 2010, Linden Research, Inc.
  8. *
  9. * This library is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation;
  12. * version 2.1 of the License only.
  13. *
  14. * This library is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with this library; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. *
  23. * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
  24. * $/LicenseInfo$
  25. */
  26. #ifndef LL_LLMESSAGEREADER_H
  27. #define LL_LLMESSAGEREADER_H
  28. #include "stdtypes.h"
  29. class LLHost;
  30. class LLMessageBuilder;
  31. class LLMsgData;
  32. class LLQuaternion;
  33. class LLUUID;
  34. class LLVector3;
  35. class LLVector3d;
  36. class LLVector4;
  37. // Error return values for getSize() functions
  38. const S32 LL_BLOCK_NOT_IN_MESSAGE = -1;
  39. const S32 LL_VARIABLE_NOT_IN_BLOCK = -2;
  40. const S32 LL_MESSAGE_ERROR = -3;
  41. class LLMessageReader
  42. {
  43. public:
  44. virtual ~LLMessageReader();
  45. /** All get* methods expect pointers to canonical strings. */
  46. virtual void getBinaryData(const char *blockname, const char *varname, void *datap, S32 size, S32 blocknum = 0, S32 max_size = S32_MAX) = 0;
  47. virtual void getBOOL(const char *block, const char *var, BOOL &data, S32 blocknum = 0) = 0;
  48. virtual void getS8(const char *block, const char *var, S8 &data, S32 blocknum = 0) = 0;
  49. virtual void getU8(const char *block, const char *var, U8 &data, S32 blocknum = 0) = 0;
  50. virtual void getS16(const char *block, const char *var, S16 &data, S32 blocknum = 0) = 0;
  51. virtual void getU16(const char *block, const char *var, U16 &data, S32 blocknum = 0) = 0;
  52. virtual void getS32(const char *block, const char *var, S32 &data, S32 blocknum = 0) = 0;
  53. virtual void getF32(const char *block, const char *var, F32 &data, S32 blocknum = 0) = 0;
  54. virtual void getU32(const char *block, const char *var, U32 &data, S32 blocknum = 0) = 0;
  55. virtual void getU64(const char *block, const char *var, U64 &data, S32 blocknum = 0) = 0;
  56. virtual void getF64(const char *block, const char *var, F64 &data, S32 blocknum = 0) = 0;
  57. virtual void getVector3(const char *block, const char *var, LLVector3 &vec, S32 blocknum = 0) = 0;
  58. virtual void getVector4(const char *block, const char *var, LLVector4 &vec, S32 blocknum = 0) = 0;
  59. virtual void getVector3d(const char *block, const char *var, LLVector3d &vec, S32 blocknum = 0) = 0;
  60. virtual void getQuat(const char *block, const char *var, LLQuaternion &q, S32 blocknum = 0) = 0;
  61. virtual void getUUID(const char *block, const char *var, LLUUID &uuid, S32 blocknum = 0) = 0;
  62. virtual void getIPAddr(const char *block, const char *var, U32 &ip, S32 blocknum = 0) = 0;
  63. virtual void getIPPort(const char *block, const char *var, U16 &port, S32 blocknum = 0) = 0;
  64. virtual void getString(const char *block, const char *var, S32 buffer_size, char *buffer, S32 blocknum = 0) = 0;
  65. virtual void getString(const char *block, const char *var, std::string& outstr, S32 blocknum = 0) = 0;
  66. virtual S32 getNumberOfBlocks(const char *blockname) = 0;
  67. virtual S32 getSize(const char *blockname, const char *varname) = 0;
  68. virtual S32 getSize(const char *blockname, S32 blocknum, const char *varname) = 0;
  69. virtual void clearMessage() = 0;
  70. /** Returns pointer to canonical (prehashed) string. */
  71. virtual const char* getMessageName() const = 0;
  72. virtual S32 getMessageSize() const = 0;
  73. virtual void copyToBuilder(LLMessageBuilder&) const = 0;
  74. static void setTimeDecodes(BOOL b);
  75. static BOOL getTimeDecodes();
  76. static void setTimeDecodesSpamThreshold(F32 seconds);
  77. static F32 getTimeDecodesSpamThreshold();
  78. };
  79. #endif // LL_LLMESSAGEREADER_H