barrier/lib/net/CTCPSocket.h

87 lines
2.1 KiB
C
Raw Normal View History

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
#include "IDataSocket.h"
#include "CStreamBuffer.h"
#include "CCondVar.h"
#include "CMutex.h"
#include "IArchNetwork.h"
2001-10-06 14:13:28 +00:00
class CMutex;
class CThread;
class ISocketMultiplexerJob;
2001-10-06 14:13:28 +00:00
//! TCP data socket
/*!
A data socket using TCP.
*/
class CTCPSocket : public IDataSocket {
2002-04-29 14:40:01 +00:00
public:
CTCPSocket();
CTCPSocket(CArchSocket);
2001-10-06 14:13:28 +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&);
2001-10-06 14:13:28 +00:00
2002-04-29 14:40:01 +00:00
private:
void init();
void setJob(ISocketMultiplexerJob*);
ISocketMultiplexerJob* newJob();
void sendConnectionFailedEvent(const char*);
void sendEvent(CEvent::Type);
void onConnected();
void onInputShutdown();
void onOutputShutdown();
void onDisconnected();
2001-10-06 14:13:28 +00:00
ISocketMultiplexerJob*
serviceConnecting(ISocketMultiplexerJob*,
bool, bool, bool);
ISocketMultiplexerJob*
serviceConnected(ISocketMultiplexerJob*,
bool, bool, bool);
2001-10-06 14:13:28 +00:00
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;
2001-10-06 14:13:28 +00:00
};
#endif