Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
e4cc44cf80 | ||
![]() |
5e891d67a7 | ||
![]() |
c99c33e2e9 | ||
![]() |
71fcbd8bc5 |
@ -60,7 +60,6 @@ namespace a8
|
||||
|
||||
void AsioTcpClient::SendBuff(const char* buff, unsigned int bufflen)
|
||||
{
|
||||
//a8::XPrintf("SendBuff bufflen:%d\n", {bufflen});
|
||||
if (bufflen > 0) {
|
||||
a8::SendQueueNode* p = (a8::SendQueueNode*)malloc(sizeof(a8::SendQueueNode));
|
||||
memset(p, 0, sizeof(SendQueueNode));
|
||||
@ -141,11 +140,10 @@ namespace a8
|
||||
}
|
||||
DoRead();
|
||||
} else {
|
||||
a8::XPrintf("DoRead error %s\n", {ec.message()});
|
||||
actived_ = false;
|
||||
connected_ = false;
|
||||
if (on_disconnect) {
|
||||
on_disconnect(this, ec.value());
|
||||
on_disconnect(this);
|
||||
}
|
||||
}
|
||||
});
|
||||
@ -160,8 +158,7 @@ namespace a8
|
||||
bot_node_ = nullptr;
|
||||
send_buffer_mutex_->unlock();
|
||||
}
|
||||
if (work_node_ && !sending_) {
|
||||
sending_ = true;
|
||||
if (work_node_) {
|
||||
char* buf = work_node_->buff + work_node_->sent_bytes;
|
||||
int buf_len = work_node_->bufflen - work_node_->sent_bytes;
|
||||
asio::async_write
|
||||
@ -170,8 +167,6 @@ namespace a8
|
||||
[this] (const asio::error_code& ec, std::size_t bytes_transferred)
|
||||
{
|
||||
if (!ec) {
|
||||
send_buffer_mutex_->lock();
|
||||
if (work_node_) {
|
||||
work_node_->sent_bytes += bytes_transferred;
|
||||
if (work_node_->sent_bytes >= work_node_->bufflen) {
|
||||
auto pdelnode = work_node_;
|
||||
@ -179,21 +174,9 @@ namespace a8
|
||||
free(pdelnode->buff);
|
||||
free((void*)pdelnode);
|
||||
}
|
||||
if (!work_node_) {
|
||||
sending_ = false;
|
||||
}
|
||||
send_buffer_mutex_->unlock();
|
||||
DoSend();
|
||||
return;
|
||||
}
|
||||
send_buffer_mutex_->unlock();
|
||||
} else {
|
||||
a8::XPrintf("DoSend error %s\n", {ec.message()});
|
||||
actived_ = false;
|
||||
connected_ = false;
|
||||
if (on_disconnect) {
|
||||
on_disconnect(this, ec.value());
|
||||
}
|
||||
abort();
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -14,7 +14,7 @@ namespace a8
|
||||
public:
|
||||
std::function<void (a8::AsioTcpClient*, int)> on_error;
|
||||
std::function<void (a8::AsioTcpClient*)> on_connect;
|
||||
std::function<void (a8::AsioTcpClient*, int)> on_disconnect;
|
||||
std::function<void (a8::AsioTcpClient*)> on_disconnect;
|
||||
std::function<void (a8::AsioTcpClient*, char*, unsigned int)> on_socketread;
|
||||
AsioTcpClient(std::shared_ptr<asio::io_context> io_context,
|
||||
const std::string& remote_ip,
|
||||
@ -47,7 +47,6 @@ namespace a8
|
||||
SendQueueNode *top_node_ = nullptr;
|
||||
SendQueueNode *bot_node_ = nullptr;
|
||||
volatile SendQueueNode *work_node_ = nullptr;
|
||||
volatile bool sending_ = false;
|
||||
std::array<char, 1024 * 64> buffer_;
|
||||
|
||||
void SetActive(bool active);
|
||||
|
@ -1,6 +1,8 @@
|
||||
#include <a8/a8.h>
|
||||
#include <a8/perfmonitor.h>
|
||||
|
||||
#include <mutex>
|
||||
|
||||
namespace a8
|
||||
{
|
||||
|
||||
@ -10,10 +12,60 @@ namespace a8
|
||||
|
||||
void PerfMonitor::Init()
|
||||
{
|
||||
mutex_ = std::make_shared<std::mutex>();
|
||||
}
|
||||
|
||||
void PerfMonitor::UnInit()
|
||||
{
|
||||
}
|
||||
|
||||
long long PerfMonitor::AddV(const std::string key, long long val)
|
||||
{
|
||||
long long result = 0;
|
||||
mutex_->lock();
|
||||
auto itr = dyn_hash_.find(key);
|
||||
if (itr == dyn_hash_.end()) {
|
||||
dyn_hash_[key] = val;
|
||||
result = val;
|
||||
} else {
|
||||
itr->second = itr->second + val;
|
||||
result = itr->second;
|
||||
}
|
||||
mutex_->unlock();
|
||||
return result;
|
||||
}
|
||||
|
||||
long long PerfMonitor::SubV(const std::string key, long long val)
|
||||
{
|
||||
return AddV(key, -val);
|
||||
}
|
||||
|
||||
void PerfMonitor::SetV(const std::string key, long long val)
|
||||
{
|
||||
mutex_->lock();
|
||||
dyn_hash_[key] = val;
|
||||
mutex_->unlock();
|
||||
}
|
||||
|
||||
long long PerfMonitor::GetV(const std::string key)
|
||||
{
|
||||
long long result = 0;
|
||||
mutex_->lock();
|
||||
auto itr = dyn_hash_.find(key);
|
||||
if (itr != dyn_hash_.end()) {
|
||||
result = itr->second;
|
||||
}
|
||||
mutex_->unlock();
|
||||
return result;
|
||||
}
|
||||
|
||||
void PerfMonitor::Dump()
|
||||
{
|
||||
mutex_->lock();
|
||||
for (auto& pair : dyn_hash_) {
|
||||
a8::XPrintf("Perfmonitor::V %s = %d\n", {pair.first, pair.second});
|
||||
}
|
||||
mutex_->unlock();
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,7 +1,5 @@
|
||||
#pragma once
|
||||
|
||||
#include <atomic>
|
||||
|
||||
#include <a8/singleton.h>
|
||||
|
||||
namespace a8
|
||||
@ -17,16 +15,21 @@ namespace a8
|
||||
void Init();
|
||||
void UnInit();
|
||||
|
||||
long long AddV(const std::string key, long long val);
|
||||
long long SubV(const std::string key, long long val);
|
||||
void SetV(const std::string key, long long val);
|
||||
long long GetV(const std::string key);
|
||||
void Dump();
|
||||
|
||||
public:
|
||||
long long send_eagain_times = 0;
|
||||
long long recv_eagain_times = 0;
|
||||
long long max_send_time = 0;
|
||||
long long max_recv_time = 0;
|
||||
std::atomic<long long> server_send_bytes = {0};
|
||||
std::atomic<long long> server_consume_bytes = {0};
|
||||
std::atomic<long long> conn_send_bytes = {0};
|
||||
std::atomic<long long> conn_consume_bytes = {0};
|
||||
|
||||
private:
|
||||
std::shared_ptr<std::mutex> mutex_;
|
||||
std::map<std::string, long long> dyn_hash_;
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -342,4 +342,13 @@ namespace a8
|
||||
abort();
|
||||
}
|
||||
|
||||
void TestSleep(int count, int interval, const std::string text)
|
||||
{
|
||||
int i = 0;
|
||||
while (i++ < count) {
|
||||
sleep(interval);
|
||||
}
|
||||
XPrintf("TestSleep %s\n", {text});
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -97,4 +97,5 @@ namespace a8
|
||||
void ClearSendQueue(a8::SendQueueNode* node);
|
||||
|
||||
void Abort();
|
||||
void TestSleep(int count, int interval, const std::string text);
|
||||
}
|
||||
|
@ -12,8 +12,8 @@
|
||||
#include <netinet/tcp.h>
|
||||
|
||||
#include <a8/a8.h>
|
||||
#include <a8/tcpclient.h>
|
||||
#include <a8/perfmonitor.h>
|
||||
#include <a8/tcpclient.h>
|
||||
|
||||
const int MAX_RECV_BUFFERSIZE = 1024 * 64;
|
||||
|
||||
@ -66,9 +66,6 @@ namespace a8
|
||||
void TcpClient::SendBuff(const char* buff, unsigned int bufflen)
|
||||
{
|
||||
if (bufflen > 0) {
|
||||
#ifdef A8_PERFT
|
||||
PerfMonitor::Instance()->conn_send_bytes += bufflen;
|
||||
#endif
|
||||
a8::SendQueueNode* p = (a8::SendQueueNode*)malloc(sizeof(a8::SendQueueNode));
|
||||
memset(p, 0, sizeof(SendQueueNode));
|
||||
p->buff = (char*)malloc(bufflen);
|
||||
@ -84,6 +81,9 @@ namespace a8
|
||||
}
|
||||
send_buffer_mutex_->unlock();
|
||||
NotifySendCond();
|
||||
#ifdef MMCHK
|
||||
a8::PerfMonitor::Instance()->AddV("a8.TcpClient.count", 1);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
@ -221,9 +221,6 @@ namespace a8
|
||||
currnode->buff + currnode->sent_bytes,
|
||||
currnode->bufflen - currnode->sent_bytes,
|
||||
0);
|
||||
#ifdef A8_PERFT
|
||||
PerfMonitor::Instance()->conn_consume_bytes += len;
|
||||
#endif
|
||||
if (len > 0) {
|
||||
currnode->sent_bytes += len;
|
||||
} else {
|
||||
@ -235,6 +232,9 @@ namespace a8
|
||||
worknode = worknode->next;
|
||||
free(currnode->buff);
|
||||
free(currnode);
|
||||
#ifdef MMCHK
|
||||
a8::PerfMonitor::Instance()->SubV("a8.TcpClient.count", 1);
|
||||
#endif
|
||||
}
|
||||
|
||||
}
|
||||
@ -248,6 +248,9 @@ namespace a8
|
||||
worknode = worknode->next;
|
||||
free(currnode->buff);
|
||||
free(currnode);
|
||||
#ifdef MMCHK
|
||||
a8::PerfMonitor::Instance()->SubV("a8.TcpClient.count", 1);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -24,10 +24,16 @@ namespace a8
|
||||
{
|
||||
INIT_LIST_HEAD(&session_entry);
|
||||
max_packet_len_ = DEFAULT_MAX_PACKET_LEN;
|
||||
#ifdef MMCHK
|
||||
a8::PerfMonitor::Instance()->AddV("a8.TcpSession.count", 1);
|
||||
#endif
|
||||
}
|
||||
|
||||
TcpSession::~TcpSession()
|
||||
{
|
||||
#ifdef MMCHK
|
||||
a8::PerfMonitor::Instance()->SubV("a8.TcpSession.count", 1);
|
||||
#endif
|
||||
}
|
||||
|
||||
void TcpSession::SetMaxPacketLen(int max_packet_len)
|
||||
@ -68,9 +74,6 @@ namespace a8
|
||||
return;
|
||||
}
|
||||
if (bufflen > 0) {
|
||||
#ifdef A8_PERFT
|
||||
PerfMonitor::Instance()->server_send_bytes += bufflen;
|
||||
#endif
|
||||
a8::SendQueueNode* p = (a8::SendQueueNode*)malloc(sizeof(a8::SendQueueNode));
|
||||
memset(p, 0, sizeof(a8::SendQueueNode));
|
||||
p->buff = (char*)malloc(bufflen);
|
||||
@ -89,6 +92,9 @@ namespace a8
|
||||
}
|
||||
send_buffer_mutex_.unlock();
|
||||
++master->send_node_num;
|
||||
#ifdef MMCHK
|
||||
a8::PerfMonitor::Instance()->AddV("a8.TcpSession.sendBuf", 1);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
@ -269,6 +275,9 @@ namespace a8
|
||||
}
|
||||
free(pdelnode);
|
||||
--master->send_node_num;
|
||||
#ifdef MMCHK
|
||||
a8::PerfMonitor::Instance()->SubV("a8.TcpSession.sendBuf", 1);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
@ -282,6 +291,9 @@ namespace a8
|
||||
}
|
||||
free(pdelnode);
|
||||
--master->send_node_num;
|
||||
#ifdef MMCHK
|
||||
a8::PerfMonitor::Instance()->SubV("a8.TcpSession.sendBuf", 1);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
@ -302,13 +314,13 @@ namespace a8
|
||||
}
|
||||
}
|
||||
work_node_->sent_bytes += sentbytes;
|
||||
#ifdef A8_PERFT
|
||||
PerfMonitor::Instance()->server_consume_bytes += sentbytes;
|
||||
#endif
|
||||
if (work_node_->sent_bytes >= work_node_->bufflen) {
|
||||
a8::SendQueueNode *pdelnode = work_node_;
|
||||
work_node_ = work_node_->next;
|
||||
--master->send_node_num;
|
||||
#ifdef MMCHK
|
||||
a8::PerfMonitor::Instance()->SubV("a8.TcpSession.sendBuf", 1);
|
||||
#endif
|
||||
++master->sent_node_num;
|
||||
master->sent_bytes_num += pdelnode->sent_bytes;
|
||||
if (!work_node_) {
|
||||
|
@ -51,7 +51,7 @@ namespace a8
|
||||
ClearTimeOutSocket();
|
||||
a8::TcpSession* p = nullptr;
|
||||
if (top_node_) {
|
||||
if (time(nullptr) - top_node_->addtime >= 30) {
|
||||
if (time(nullptr) - top_node_->addtime >= 20) {
|
||||
p = top_node_->session;
|
||||
a8::TcpSessionPool::TcpSessionNode* pdelnode = top_node_;
|
||||
top_node_ = top_node_->next;
|
||||
@ -68,12 +68,13 @@ namespace a8
|
||||
void TcpSessionPool::ClearTimeOutSocket()
|
||||
{
|
||||
while (top_node_) {
|
||||
if(time(nullptr) - top_node_->addtime > 60 * 5){
|
||||
if(time(nullptr) - top_node_->addtime > 30){
|
||||
a8::TcpSessionPool::TcpSessionNode* pdelnode = top_node_;
|
||||
top_node_ = top_node_->next;
|
||||
if (!top_node_) {
|
||||
bot_node_ = NULL;
|
||||
}
|
||||
pdelnode->session->Destory();
|
||||
delete pdelnode->session;
|
||||
delete pdelnode;
|
||||
count_--;
|
||||
|
@ -66,10 +66,10 @@ namespace a8
|
||||
socket->SendBuff(data.data(), data.size());
|
||||
};
|
||||
tcp_client_->on_disconnect =
|
||||
[this] (a8::AsioTcpClient* socket, int err)
|
||||
[this] (a8::AsioTcpClient* socket)
|
||||
{
|
||||
if (on_disconnect) {
|
||||
on_disconnect(this, err);
|
||||
on_disconnect(this);
|
||||
}
|
||||
};
|
||||
tcp_client_->on_socketread =
|
||||
|
@ -19,7 +19,7 @@ namespace a8
|
||||
|
||||
std::function<void (a8::WebSocketClient*, int)> on_error;
|
||||
std::function<void (a8::WebSocketClient*)> on_connect;
|
||||
std::function<void (a8::WebSocketClient*, int)> on_disconnect;
|
||||
std::function<void (a8::WebSocketClient*)> on_disconnect;
|
||||
std::function<void (char*, int&, unsigned int)> on_decode_userpacket;
|
||||
|
||||
void Open();
|
||||
|
39
a8/xtimer.cc
39
a8/xtimer.cc
@ -45,7 +45,6 @@ struct xtimer_list {
|
||||
TimerType_e timer_type;
|
||||
long long expires;
|
||||
int expire_time;
|
||||
int deleting;
|
||||
struct xtvec_base *base;
|
||||
|
||||
a8::TimerCb cb;
|
||||
@ -221,10 +220,6 @@ namespace a8
|
||||
if (!timer) {
|
||||
abort();
|
||||
}
|
||||
if (timer->deleting) {
|
||||
abort();
|
||||
}
|
||||
timer->deleting = 1;
|
||||
if (base_->running_timer == timer) {
|
||||
base_->running_timer = nullptr;
|
||||
}
|
||||
@ -232,16 +227,6 @@ namespace a8
|
||||
if (!list_empty(&timer->attach_entry)) {
|
||||
list_del_init(&timer->attach_entry);
|
||||
}
|
||||
#if 1
|
||||
while (!list_empty(&timer->destory_handle_list)) {
|
||||
XTimerDestoryHandleNode* node = list_first_entry(&timer->destory_handle_list,
|
||||
XTimerDestoryHandleNode,
|
||||
entry);
|
||||
list_del_init(&node->entry);
|
||||
node->cb(timer);
|
||||
delete node;
|
||||
}
|
||||
#endif
|
||||
if (is_destory) {
|
||||
if (timer->cb) {
|
||||
timer->cb(TIMER_DESTORY_EVENT, nullptr);
|
||||
@ -252,7 +237,6 @@ namespace a8
|
||||
}
|
||||
}
|
||||
timer->cb = nullptr;
|
||||
#if 0
|
||||
while (!list_empty(&timer->destory_handle_list)) {
|
||||
XTimerDestoryHandleNode* node = list_first_entry(&timer->destory_handle_list,
|
||||
XTimerDestoryHandleNode,
|
||||
@ -261,7 +245,6 @@ namespace a8
|
||||
node->cb(timer);
|
||||
delete node;
|
||||
}
|
||||
#endif
|
||||
if (to_free_list) {
|
||||
AddToFreeList(timer);
|
||||
} else {
|
||||
@ -290,36 +273,22 @@ namespace a8
|
||||
|
||||
void ClearAttacher(Attacher* attacher)
|
||||
{
|
||||
#if 1
|
||||
while (!list_empty(&attacher->timer_list_)) {
|
||||
xtimer_list* tmp_timer = list_first_entry(&attacher->timer_list_, struct xtimer_list, attach_entry);
|
||||
InternalDelete(tmp_timer, false, true);
|
||||
}
|
||||
#else
|
||||
struct list_head* pos = nullptr;
|
||||
struct list_head* n = nullptr;
|
||||
list_for_each_safe(pos, n, &attacher->timer_list_) {
|
||||
xtimer_list* tmp_timer = list_entry(pos, struct xtimer_list, attach_entry);
|
||||
InternalDelete(tmp_timer, false, true);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void DestoryAttacher(Attacher* attacher)
|
||||
{
|
||||
#if 1
|
||||
while (!list_empty(&attacher->timer_list_)) {
|
||||
xtimer_list* tmp_timer = list_first_entry(&attacher->timer_list_, struct xtimer_list, attach_entry);
|
||||
InternalDelete(tmp_timer, true, true);
|
||||
}
|
||||
#else
|
||||
struct list_head* pos = nullptr;
|
||||
struct list_head* n = nullptr;
|
||||
list_for_each_safe(pos, n, &attacher->timer_list_) {
|
||||
xtimer_list* tmp_timer = list_entry(pos, struct xtimer_list, attach_entry);
|
||||
InternalDelete(tmp_timer, true, true);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void UpdateTimer()
|
||||
@ -421,14 +390,11 @@ namespace a8
|
||||
void ClearTimer()
|
||||
{
|
||||
auto free_timers =
|
||||
[this] (list_head* head, bool force_no_deleteing = false)
|
||||
[this] (list_head* head)
|
||||
{
|
||||
while (!list_empty(head)) {
|
||||
struct xtimer_list *timer;
|
||||
timer = list_first_entry(head, struct xtimer_list,entry);
|
||||
if (force_no_deleteing) {
|
||||
timer->deleting = 0;
|
||||
}
|
||||
InternalDelete(timer, true, false);
|
||||
}
|
||||
};
|
||||
@ -441,7 +407,7 @@ namespace a8
|
||||
for (int j = 0; j < TVR_SIZE; j++) {
|
||||
free_timers(base_->tv1.vec + j);
|
||||
}
|
||||
free_timers(&base_->free_timer, true);
|
||||
free_timers(&base_->free_timer);
|
||||
}
|
||||
|
||||
void AddTimerDestoryHandle(std::weak_ptr<XTimerPtr>& timer_ptr,
|
||||
@ -465,7 +431,6 @@ namespace a8
|
||||
timer->expires = expires;
|
||||
timer->expire_time = expire_time;
|
||||
timer->base = base_;
|
||||
timer->deleting = 0;
|
||||
timer->cb = std::move(cb);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user