2012-06-10 16:50:54 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
2012-09-04 02:09:56 +00:00
|
|
|
* Copyright (C) 2012 Bolton Software Ltd.
|
|
|
|
* Copyright (C) 2002 Chris Schoeneman
|
2012-06-10 16:50:54 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2014-02-28 12:36:45 +00:00
|
|
|
#pragma once
|
2012-06-10 16:50:54 +00:00
|
|
|
|
2014-02-28 12:36:45 +00:00
|
|
|
#include "net/IDataSocket.h"
|
|
|
|
#include "io/StreamBuffer.h"
|
|
|
|
#include "mt/CondVar.h"
|
|
|
|
#include "mt/Mutex.h"
|
|
|
|
#include "arch/IArchNetwork.h"
|
2012-06-10 16:50:54 +00:00
|
|
|
|
|
|
|
class CMutex;
|
|
|
|
class CThread;
|
|
|
|
class ISocketMultiplexerJob;
|
2013-06-29 14:17:49 +00:00
|
|
|
class IEventQueue;
|
2013-07-16 19:02:30 +00:00
|
|
|
class CSocketMultiplexer;
|
2012-06-10 16:50:54 +00:00
|
|
|
|
|
|
|
//! TCP data socket
|
|
|
|
/*!
|
|
|
|
A data socket using TCP.
|
|
|
|
*/
|
|
|
|
class CTCPSocket : public IDataSocket {
|
|
|
|
public:
|
2013-07-16 19:02:30 +00:00
|
|
|
CTCPSocket(IEventQueue* events, CSocketMultiplexer* socketMultiplexer);
|
|
|
|
CTCPSocket(IEventQueue* events, CSocketMultiplexer* socketMultiplexer, CArchSocket socket);
|
2012-06-10 16:50:54 +00:00
|
|
|
~CTCPSocket();
|
|
|
|
|
|
|
|
// ISocket overrides
|
|
|
|
virtual void bind(const CNetworkAddress&);
|
|
|
|
virtual void close();
|
|
|
|
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 bool isReady() const;
|
|
|
|
virtual UInt32 getSize() const;
|
|
|
|
|
|
|
|
// IDataSocket overrides
|
|
|
|
virtual void connect(const CNetworkAddress&);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void init();
|
|
|
|
|
|
|
|
void setJob(ISocketMultiplexerJob*);
|
|
|
|
ISocketMultiplexerJob* newJob();
|
|
|
|
void sendConnectionFailedEvent(const char*);
|
|
|
|
void sendEvent(CEvent::Type);
|
|
|
|
|
|
|
|
void onConnected();
|
|
|
|
void onInputShutdown();
|
|
|
|
void onOutputShutdown();
|
|
|
|
void onDisconnected();
|
|
|
|
|
|
|
|
ISocketMultiplexerJob*
|
|
|
|
serviceConnecting(ISocketMultiplexerJob*,
|
|
|
|
bool, bool, bool);
|
|
|
|
ISocketMultiplexerJob*
|
|
|
|
serviceConnected(ISocketMultiplexerJob*,
|
|
|
|
bool, bool, bool);
|
|
|
|
|
|
|
|
private:
|
|
|
|
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;
|
2013-06-29 14:17:49 +00:00
|
|
|
IEventQueue* m_events;
|
2013-07-16 19:02:30 +00:00
|
|
|
CSocketMultiplexer* m_socketMultiplexer;
|
2012-06-10 16:50:54 +00:00
|
|
|
};
|