2011-08-28 15:17:58 +02:00
|
|
|
/*
|
2013-01-08 19:21:54 +01:00
|
|
|
* Copyright (c) 2010-2013 OTClient <https://github.com/edubart/otclient>
|
2011-08-28 15:17:58 +02:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2011-05-21 21:02:37 +02:00
|
|
|
#ifndef INPUTMESSAGE_H
|
|
|
|
#define INPUTMESSAGE_H
|
|
|
|
|
2011-08-15 16:06:15 +02:00
|
|
|
#include "declarations.h"
|
2012-07-14 03:10:24 +02:00
|
|
|
#include <framework/luaengine/luaobject.h>
|
2011-05-21 21:02:37 +02:00
|
|
|
|
2012-06-22 05:14:13 +02:00
|
|
|
// @bindclass
|
2012-05-14 23:36:54 +02:00
|
|
|
class InputMessage : public LuaObject
|
2011-05-21 21:02:37 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum {
|
2012-07-26 16:03:57 +02:00
|
|
|
BUFFER_MAXSIZE = 65536,
|
2012-07-17 16:36:27 +02:00
|
|
|
MAX_HEADER_SIZE = 8
|
2011-05-21 21:02:37 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
InputMessage();
|
|
|
|
|
2012-05-15 01:13:48 +02:00
|
|
|
void setBuffer(const std::string& buffer);
|
|
|
|
|
2012-05-11 20:02:57 +02:00
|
|
|
void skipBytes(uint16 bytes) { m_readPos += bytes; }
|
2012-07-18 01:49:21 +02:00
|
|
|
void setReadPos(uint16 readPos) { m_readPos = readPos; }
|
2012-05-15 02:04:04 +02:00
|
|
|
uint8 getU8();
|
|
|
|
uint16 getU16();
|
|
|
|
uint32 getU32();
|
|
|
|
uint64 getU64();
|
2011-05-21 21:02:37 +02:00
|
|
|
std::string getString();
|
2012-12-26 14:56:06 +01:00
|
|
|
double getDouble();
|
2011-05-21 21:02:37 +02:00
|
|
|
|
2012-05-15 02:04:04 +02:00
|
|
|
uint8 peekU8() { uint8 v = getU8(); m_readPos-=1; return v; }
|
|
|
|
uint16 peekU16() { uint16 v = getU16(); m_readPos-=2; return v; }
|
|
|
|
uint32 peekU32() { uint32 v = getU32(); m_readPos-=4; return v; }
|
|
|
|
uint64 peekU64() { uint64 v = getU64(); m_readPos-=8; return v; }
|
|
|
|
|
2012-08-04 15:54:35 +02:00
|
|
|
bool decryptRsa(int size);
|
2012-05-14 23:36:54 +02:00
|
|
|
|
|
|
|
int getReadSize() { return m_readPos - m_headerPos; }
|
2012-07-18 01:49:21 +02:00
|
|
|
int getReadPos() { return m_readPos; }
|
2012-05-14 23:36:54 +02:00
|
|
|
int getUnreadSize() { return m_messageSize - (m_readPos - m_headerPos); }
|
2012-05-15 02:04:04 +02:00
|
|
|
uint16 getMessageSize() { return m_messageSize; }
|
2012-05-14 23:36:54 +02:00
|
|
|
|
|
|
|
bool eof() { return (m_readPos - m_headerPos) >= m_messageSize; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void reset();
|
|
|
|
void fillBuffer(uint8 *buffer, uint16 size);
|
|
|
|
|
|
|
|
void setHeaderSize(uint16 size);
|
|
|
|
void setMessageSize(uint16 size) { m_messageSize = size; }
|
|
|
|
|
2012-05-11 20:02:57 +02:00
|
|
|
uint8* getReadBuffer() { return m_buffer + m_readPos; }
|
|
|
|
uint8* getHeaderBuffer() { return m_buffer + m_headerPos; }
|
|
|
|
uint8* getDataBuffer() { return m_buffer + MAX_HEADER_SIZE; }
|
|
|
|
uint16 getHeaderSize() { return (MAX_HEADER_SIZE - m_headerPos); }
|
|
|
|
|
2012-05-14 23:36:54 +02:00
|
|
|
uint16 readSize() { return getU16(); }
|
|
|
|
bool readChecksum();
|
|
|
|
|
|
|
|
friend class Protocol;
|
2011-05-21 21:02:37 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool canRead(int bytes);
|
2011-12-01 23:25:32 +01:00
|
|
|
void checkRead(int bytes);
|
2012-06-06 16:10:35 +02:00
|
|
|
void checkWrite(int bytes);
|
2011-05-21 21:02:37 +02:00
|
|
|
|
2012-05-11 20:02:57 +02:00
|
|
|
uint16 m_headerPos;
|
2011-05-30 05:11:12 +02:00
|
|
|
uint16 m_readPos;
|
|
|
|
uint16 m_messageSize;
|
|
|
|
uint8 m_buffer[BUFFER_MAXSIZE];
|
2011-05-21 21:02:37 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|