2002-08-02 19:57:46 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
|
|
|
* Copyright (C) 2002 Chris Schoeneman
|
|
|
|
*
|
|
|
|
* This package is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* found in the file COPYING that should have accompanied this file.
|
|
|
|
*
|
|
|
|
* This package is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
#ifndef CTCPSOCKET_H
|
|
|
|
#define CTCPSOCKET_H
|
|
|
|
|
2002-06-17 12:02:26 +00:00
|
|
|
#include "IDataSocket.h"
|
2004-02-01 21:09:22 +00:00
|
|
|
#include "CStreamBuffer.h"
|
|
|
|
#include "CCondVar.h"
|
|
|
|
#include "CMutex.h"
|
2003-01-04 22:01:32 +00:00
|
|
|
#include "IArchNetwork.h"
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
class CMutex;
|
|
|
|
class CThread;
|
2004-01-24 16:09:25 +00:00
|
|
|
class ISocketMultiplexerJob;
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-07-28 19:06:52 +00:00
|
|
|
//! TCP data socket
|
|
|
|
/*!
|
|
|
|
A data socket using TCP.
|
|
|
|
*/
|
2002-06-17 12:02:26 +00:00
|
|
|
class CTCPSocket : public IDataSocket {
|
2002-04-29 14:40:01 +00:00
|
|
|
public:
|
2001-10-14 16:58:01 +00:00
|
|
|
CTCPSocket();
|
2003-01-04 22:01:32 +00:00
|
|
|
CTCPSocket(CArchSocket);
|
2001-10-06 14:13:28 +00:00
|
|
|
~CTCPSocket();
|
|
|
|
|
|
|
|
// ISocket overrides
|
2001-10-14 16:58:01 +00:00
|
|
|
virtual void bind(const CNetworkAddress&);
|
|
|
|
virtual void close();
|
2004-02-01 21:09:22 +00:00
|
|
|
virtual void* getEventTarget() const;
|
|
|
|
|
|
|
|
// IStream overrides
|
|
|
|
virtual UInt32 read(void* buffer, UInt32 n);
|
|
|
|
virtual void write(const void* buffer, UInt32 n);
|
|
|
|
virtual void flush();
|
|
|
|
virtual void shutdownInput();
|
|
|
|
virtual void shutdownOutput();
|
|
|
|
virtual void setEventFilter(IEventJob* filter);
|
|
|
|
virtual bool isReady() const;
|
|
|
|
virtual UInt32 getSize() const;
|
|
|
|
virtual IEventJob* getEventFilter() const;
|
2002-06-17 12:02:26 +00:00
|
|
|
|
|
|
|
// IDataSocket overrides
|
|
|
|
virtual void connect(const CNetworkAddress&);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
private:
|
2001-10-14 16:58:01 +00:00
|
|
|
void init();
|
2004-01-24 16:09:25 +00:00
|
|
|
|
2004-02-01 21:09:22 +00:00
|
|
|
void setJob(ISocketMultiplexerJob*);
|
|
|
|
ISocketMultiplexerJob* newJob();
|
|
|
|
void sendSocketEvent(CEvent::Type);
|
2004-02-15 17:32:11 +00:00
|
|
|
void sendConnectionFailedEvent(const char*);
|
2004-02-01 21:09:22 +00:00
|
|
|
void sendStreamEvent(CEvent::Type);
|
2004-01-24 16:09:25 +00:00
|
|
|
|
2004-02-01 21:09:22 +00:00
|
|
|
void onConnected();
|
|
|
|
void onInputShutdown();
|
|
|
|
void onOutputShutdown();
|
|
|
|
void onDisconnected();
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2004-01-24 16:09:25 +00:00
|
|
|
ISocketMultiplexerJob*
|
|
|
|
serviceConnecting(ISocketMultiplexerJob*,
|
|
|
|
bool, bool, bool);
|
|
|
|
ISocketMultiplexerJob*
|
|
|
|
serviceConnected(ISocketMultiplexerJob*,
|
|
|
|
bool, bool, bool);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2004-01-24 16:09:25 +00:00
|
|
|
private:
|
2004-02-01 21:09:22 +00:00
|
|
|
CMutex m_mutex;
|
|
|
|
CArchSocket m_socket;
|
|
|
|
CStreamBuffer m_inputBuffer;
|
|
|
|
CStreamBuffer m_outputBuffer;
|
|
|
|
CCondVar<bool> m_flushed;
|
|
|
|
bool m_connected;
|
|
|
|
bool m_readable;
|
|
|
|
bool m_writable;
|
|
|
|
IEventJob* m_eventFilter;
|
2001-10-06 14:13:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|