#ifndef FIX_NULLSTORE_H
#define FIX_NULLSTORE_H
#ifdef _MSC_VER
#pragma warning(disable : 4503 4355 4786 4290)
#endif
#include "MessageStore.h"
#include "SessionSettings.h"
#include <string>
namespace FIX {
class Session;
class NullStoreFactory : public MessageStoreFactory {
public:
MessageStore *create(const UtcTimeStamp &, const SessionID &);
void destroy(MessageStore *);
};
class NullStore : public MessageStore {
public:
NullStore(const UtcTimeStamp &now)
: m_nextSenderMsgSeqNum(1),
m_nextTargetMsgSeqNum(1),
m_creationTime(now) {}
bool set(SEQNUM, const std::string &) EXCEPT(IOException);
void get(SEQNUM, SEQNUM, std::vector<std::string> &) const EXCEPT(IOException);
SEQNUM getNextSenderMsgSeqNum() const EXCEPT(IOException) { return m_nextSenderMsgSeqNum; }
SEQNUM getNextTargetMsgSeqNum() const EXCEPT(IOException) { return m_nextTargetMsgSeqNum; }
void setNextSenderMsgSeqNum(SEQNUM value) EXCEPT(IOException) { m_nextSenderMsgSeqNum = value; }
void setNextTargetMsgSeqNum(SEQNUM value) EXCEPT(IOException) { m_nextTargetMsgSeqNum = value; }
void incrNextSenderMsgSeqNum() EXCEPT(IOException) { ++m_nextSenderMsgSeqNum; }
void incrNextTargetMsgSeqNum() EXCEPT(IOException) { ++m_nextTargetMsgSeqNum; }
void setCreationTime(const UtcTimeStamp &creationTime) EXCEPT(IOException) { m_creationTime = creationTime; }
UtcTimeStamp getCreationTime() const EXCEPT(IOException) { return m_creationTime; }
void reset(const UtcTimeStamp &now) EXCEPT(IOException) {
m_nextSenderMsgSeqNum = 1;
m_nextTargetMsgSeqNum = 1;
m_creationTime = now;
}
void refresh() EXCEPT(IOException) {}
private:
SEQNUM m_nextSenderMsgSeqNum;
SEQNUM m_nextTargetMsgSeqNum;
UtcTimeStamp m_creationTime;
};
}
#endif