mirror of
https://gitee.com/ldcsaa/HP-Socket.git
synced 2024-11-30 02:38:02 +08:00
83 lines
1.8 KiB
C++
83 lines
1.8 KiB
C++
/*
|
|
* Copyright: JessMA Open Source (ldcsaa@gmail.com)
|
|
*
|
|
* Author : Bruce Liang
|
|
* Website : https://github.com/ldcsaa
|
|
* Project : https://github.com/ldcsaa/HP-Socket
|
|
* Blog : http://www.cnblogs.com/ldcsaa
|
|
* Wiki : http://www.oschina.net/p/hp-socket
|
|
* QQ Group : 44636872, 75375912
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "TcpClient.h"
|
|
#include "MiscHelper.h"
|
|
#include "Common/BufferPool.h"
|
|
|
|
template<class T> class CTcpPullClientT : public IPullClient, public T
|
|
{
|
|
public:
|
|
virtual EnFetchResult Fetch(BYTE* pData, int iLength)
|
|
{
|
|
return ::FetchBuffer(&m_lsBuffer, pData, iLength);
|
|
}
|
|
|
|
virtual EnFetchResult Peek(BYTE* pData, int iLength)
|
|
{
|
|
return ::PeekBuffer(&m_lsBuffer, pData, iLength);
|
|
}
|
|
|
|
protected:
|
|
virtual EnHandleResult DoFireReceive(ITcpClient* pSender, const BYTE* pData, int iLength)
|
|
{
|
|
m_lsBuffer.Cat(pData, iLength);
|
|
|
|
return __super::DoFireReceive(pSender, m_lsBuffer.Length());
|
|
}
|
|
|
|
virtual void Reset()
|
|
{
|
|
m_lsBuffer.Clear();
|
|
|
|
__super::Reset();
|
|
}
|
|
|
|
public:
|
|
CTcpPullClientT(ITcpClientListener* pListener)
|
|
: T (pListener)
|
|
, m_lsBuffer(m_itPool)
|
|
{
|
|
|
|
}
|
|
|
|
virtual ~CTcpPullClientT()
|
|
{
|
|
ENSURE_STOP();
|
|
}
|
|
|
|
private:
|
|
TItemListEx m_lsBuffer;
|
|
};
|
|
|
|
typedef CTcpPullClientT<CTcpClient> CTcpPullClient;
|
|
|
|
#ifdef _SSL_SUPPORT
|
|
|
|
#include "SSLClient.h"
|
|
typedef CTcpPullClientT<CSSLClient> CSSLPullClient;
|
|
|
|
#endif
|