acl/app/wizard_demo/httpd_proxy/tcp_transfer.cpp

75 lines
1.4 KiB
C++
Raw Normal View History

#include "stdafx.h"
#include "tcp_transfer.h"
2019-03-14 15:24:11 +08:00
tcp_transfer::tcp_transfer(ACL_FIBER* parent, acl::socket_stream& in,
acl::socket_stream& out, bool running)
: acl::fiber(running)
, parent_(parent)
, me_(NULL)
, in_(in)
, out_(out)
, peer_(NULL)
2019-03-14 15:24:11 +08:00
{
}
2022-01-19 23:47:53 +08:00
tcp_transfer::~tcp_transfer(void)
2019-03-14 15:24:11 +08:00
{
}
2022-01-19 23:47:53 +08:00
void tcp_transfer::set_peer(tcp_transfer& peer)
2019-03-14 15:24:11 +08:00
{
2022-01-19 23:47:53 +08:00
peer_ = &peer;
2019-03-14 15:24:11 +08:00
}
2022-02-16 23:01:54 +08:00
void tcp_transfer::unset_peer(void)
{
peer_ = NULL;
}
void tcp_transfer::close(void)
{
printf(">>>close sockfd=%d, curr=%p, me=%p, parent=%p\r\n",
in_.sock_handle(), acl_fiber_running(), me_, parent_);
int fd = in_.sock_handle();
//in_.close();
in_.unbind_sock();
acl_fiber_close(fd);
//printf(">>>after close sockfd=%d\r\n", in_.sock_handle());
}
void tcp_transfer::wait(void)
2019-03-14 15:24:11 +08:00
{
(void) box_.pop();
}
void tcp_transfer::run(void)
2019-03-14 15:24:11 +08:00
{
me_ = acl_fiber_running();
2019-03-14 15:24:11 +08:00
char buf[8192];
while (true) {
int fd = in_.sock_handle();
2019-03-14 15:24:11 +08:00
int ret = in_.read(buf, sizeof(buf) - 1, false);
if (ret == -1) {
printf("%s: me=%p, parent=%p, peer=%p, read error %s,"
" fd=%d, %d\r\n", __FUNCTION__, me_, parent_,
peer_ ? peer_->peer_fiber() : NULL,
acl::last_serror(), in_.sock_handle(), fd);
2019-03-14 15:24:11 +08:00
break;
}
if (out_.write(buf, ret) == -1) {
break;
}
}
if (peer_) {
2022-02-16 23:01:54 +08:00
peer_->unset_peer();
//peer_->kill();
peer_->close();
2019-03-14 15:24:11 +08:00
}
//printf("fd=%d, push\n", in_.sock_handle());
2019-03-14 15:24:11 +08:00
box_.push(NULL);
//printf("fd=%d, push done\n", in_.sock_handle());
2019-03-14 15:24:11 +08:00
}