2001-10-06 14:13:28 +00:00
|
|
|
#ifndef XSYNERGY_H
|
|
|
|
#define XSYNERGY_H
|
|
|
|
|
|
|
|
#include "XBase.h"
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! Generic synergy exception
|
2001-10-06 14:13:28 +00:00
|
|
|
class XSynergy : public XBase { };
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! Client error exception
|
|
|
|
/*!
|
|
|
|
Thrown when the client fails to follow the protocol.
|
|
|
|
*/
|
2001-10-06 14:13:28 +00:00
|
|
|
class XBadClient : public XSynergy {
|
2002-04-29 14:40:01 +00:00
|
|
|
protected:
|
2001-10-06 14:13:28 +00:00
|
|
|
virtual CString getWhat() const throw();
|
|
|
|
};
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! Incompatible client exception
|
|
|
|
/*!
|
|
|
|
Thrown when a client attempting to connect has an incompatible version.
|
|
|
|
*/
|
2001-10-06 14:13:28 +00:00
|
|
|
class XIncompatibleClient : public XSynergy {
|
2002-04-29 14:40:01 +00:00
|
|
|
public:
|
2001-10-06 14:13:28 +00:00
|
|
|
XIncompatibleClient(int major, int minor);
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! @name accessors
|
|
|
|
//@{
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! Get client's major version number
|
2001-10-06 14:13:28 +00:00
|
|
|
int getMajor() const throw();
|
2002-07-29 16:07:26 +00:00
|
|
|
//! Get client's minor version number
|
2001-10-06 14:13:28 +00:00
|
|
|
int getMinor() const throw();
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//@}
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
protected:
|
2001-10-06 14:13:28 +00:00
|
|
|
virtual CString getWhat() const throw();
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
private:
|
2001-10-06 14:13:28 +00:00
|
|
|
int m_major;
|
|
|
|
int m_minor;
|
|
|
|
};
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! Client already connected exception
|
|
|
|
/*!
|
|
|
|
Thrown when a client attempting to connect is using the same name as
|
|
|
|
a client that is already connected.
|
|
|
|
*/
|
2002-05-23 14:56:03 +00:00
|
|
|
class XDuplicateClient : public XSynergy {
|
|
|
|
public:
|
|
|
|
XDuplicateClient(const CString& name);
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! @name accessors
|
|
|
|
//@{
|
2002-05-23 14:56:03 +00:00
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! Get client's name
|
2002-05-23 14:56:03 +00:00
|
|
|
virtual const CString&
|
|
|
|
getName() const throw();
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//@}
|
|
|
|
|
2002-05-23 14:56:03 +00:00
|
|
|
protected:
|
|
|
|
virtual CString getWhat() const throw();
|
|
|
|
|
|
|
|
private:
|
|
|
|
CString m_name;
|
|
|
|
};
|
|
|
|
|
2002-07-31 17:40:21 +00:00
|
|
|
//! Client not in map exception
|
2002-07-29 16:07:26 +00:00
|
|
|
/*!
|
|
|
|
Thrown when a client attempting to connect is using a name that is
|
|
|
|
unknown to the server.
|
|
|
|
*/
|
2002-05-31 18:18:29 +00:00
|
|
|
class XUnknownClient : public XSynergy {
|
|
|
|
public:
|
|
|
|
XUnknownClient(const CString& name);
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! @name accessors
|
|
|
|
//@{
|
2002-05-31 18:18:29 +00:00
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! Get the client's name
|
2002-05-31 18:18:29 +00:00
|
|
|
virtual const CString&
|
|
|
|
getName() const throw();
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//@}
|
|
|
|
|
2002-05-31 18:18:29 +00:00
|
|
|
protected:
|
|
|
|
virtual CString getWhat() const throw();
|
|
|
|
|
|
|
|
private:
|
|
|
|
CString m_name;
|
|
|
|
};
|
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
#endif
|