barrier/src/lib/net/TCPSocket.h

92 lines
2.4 KiB
C
Raw Normal View History

2012-06-10 16:50:54 +00:00
/*
* synergy -- mouse and keyboard sharing utility
* Copyright (C) 2012 Synergy Si 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/>.
*/
#pragma once
2012-06-10 16:50:54 +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
2014-11-11 13:51:47 +00:00
class Mutex;
class Thread;
2012-06-10 16:50:54 +00:00
class ISocketMultiplexerJob;
class IEventQueue;
2014-11-11 13:51:47 +00:00
class SocketMultiplexer;
2012-06-10 16:50:54 +00:00
//! TCP data socket
/*!
A data socket using TCP.
*/
class CTCPSocket : public IDataSocket {
public:
2014-11-11 13:51:47 +00:00
CTCPSocket(IEventQueue* events, SocketMultiplexer* socketMultiplexer);
CTCPSocket(IEventQueue* events, SocketMultiplexer* socketMultiplexer, ArchSocket socket);
2012-06-10 16:50:54 +00:00
~CTCPSocket();
// ISocket overrides
2014-11-11 13:51:47 +00:00
virtual void bind(const NetworkAddress&);
2012-06-10 16:50:54 +00:00
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
2014-11-11 13:51:47 +00:00
virtual void connect(const NetworkAddress&);
2012-06-10 16:50:54 +00:00
private:
void init();
void setJob(ISocketMultiplexerJob*);
ISocketMultiplexerJob* newJob();
void sendConnectionFailedEvent(const char*);
2014-11-11 13:51:47 +00:00
void sendEvent(Event::Type);
2012-06-10 16:50:54 +00:00
void onConnected();
void onInputShutdown();
void onOutputShutdown();
void onDisconnected();
ISocketMultiplexerJob*
serviceConnecting(ISocketMultiplexerJob*,
bool, bool, bool);
ISocketMultiplexerJob*
serviceConnected(ISocketMultiplexerJob*,
bool, bool, bool);
private:
2014-11-11 13:51:47 +00:00
Mutex m_mutex;
ArchSocket m_socket;
StreamBuffer m_inputBuffer;
StreamBuffer m_outputBuffer;
CondVar<bool> m_flushed;
2012-06-10 16:50:54 +00:00
bool m_connected;
bool m_readable;
bool m_writable;
IEventQueue* m_events;
2014-11-11 13:51:47 +00:00
SocketMultiplexer* m_socketMultiplexer;
2012-06-10 16:50:54 +00:00
};