forked from F-Stack/f-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmt_action.cpp
218 lines (187 loc) · 5.35 KB
/
mt_action.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
/**
* Tencent is pleased to support the open source community by making MSEC available.
*
* Copyright (C) 2016 THL A29 Limited, a Tencent company. All rights reserved.
*
* Licensed under the GNU General Public 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
*
* https://opensource.org/licenses/GPL-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.
*/
#include "micro_thread.h"
#include "mt_notify.h"
#include "mt_connection.h"
#include "mt_session.h"
#include "mt_action.h"
using namespace std;
using namespace NS_MICRO_THREAD;
void IMtAction::Init()
{
_flag = MULTI_FLAG_UNDEF;
_proto = MT_UDP;
_conn_type = CONN_TYPE_SHORT;
_errno = ERR_NONE;
_time_cost = 0;
_buff_size = 0;
_msg = NULL;
_conn = NULL;
_ntfy_name = 0;
memset(&_addr, 0, sizeof(_addr));
}
void IMtAction::Reset()
{
bool force_free = false;
if (_errno != ERR_NONE) {
force_free = true;
}
if (_conn) {
ConnectionMgr::Instance()->FreeConnection(_conn, force_free);
_conn = NULL;
}
}
KqueuerObj* IMtAction::GetNtfyObj() {
IMtConnection* conn = GetIConnection();
if (conn) {
return conn->GetNtfyObj();
} else {
return NULL;
}
};
int IMtAction::InitConnEnv()
{
MtFrame* mtframe = MtFrame::Instance();
ConnectionMgr* connmgr = ConnectionMgr::Instance();
MsgBuffPool* msgmgr = MsgBuffPool::Instance();
NtfyObjMgr* ntfymgr = NtfyObjMgr::Instance();
SessionMgr* sessionmgr = SessionMgr::Instance();
if (_conn != NULL) {
MTLOG_ERROR("Action init failed, maybe action reused in actionlist, check it!!");
return -100;
}
CONN_OBJ_TYPE conn_obj_type = OBJ_CONN_UNDEF;
NTFY_OBJ_TYPE ntfy_obj_type = NTFY_OBJ_UNDEF;
MULTI_PROTO proto = this->GetProtoType();
MULTI_CONNECT type = this->GetConnType();
if ((MT_UDP == proto) && (CONN_TYPE_SESSION == type)) // UDP session
{
conn_obj_type = OBJ_UDP_SESSION;
ntfy_obj_type = NTFY_OBJ_SESSION;
}
else if (MT_UDP == proto) // UDP
{
conn_obj_type = OBJ_SHORT_CONN;
ntfy_obj_type = NTFY_OBJ_THREAD;
}
else // TCP
{
conn_obj_type = OBJ_TCP_KEEP;
ntfy_obj_type = NTFY_OBJ_THREAD;
}
_conn = connmgr->GetConnection(conn_obj_type, this->GetMsgDstAddr());
if (!_conn) {
MTLOG_ERROR("Get conn failed, type: %d", conn_obj_type);
return -1;
}
_conn->SetIMtActon(this);
int max_len = this->GetMsgBuffSize();
MtMsgBuf* msg_buff = msgmgr->GetMsgBuf(max_len);
if (!msg_buff) {
MTLOG_ERROR("Maybe no memory, buffsize: %d, get failed", max_len);
return -2;
}
msg_buff->SetBuffType(BUFF_SEND);
_conn->SetMtMsgBuff(msg_buff);
KqueuerObj* ntfy_obj = ntfymgr->GetNtfyObj(ntfy_obj_type, _ntfy_name);
if (!ntfy_obj) {
MTLOG_ERROR("Maybe no memory, ntfy type: %d, get failed", ntfy_obj_type);
return -3;
}
_conn->SetNtfyObj(ntfy_obj);
MicroThread* thread = mtframe->GetActiveThread();
ntfy_obj->SetOwnerThread(thread);
this->SetIMsgPtr((IMtMsg*)thread->GetThreadArgs());
if (conn_obj_type == OBJ_UDP_SESSION)
{
this->SetOwnerThread(thread);
this->SetSessionConn(_conn);
this->SetSessionId(sessionmgr->GetSessionId());
sessionmgr->InsertSession(this);
}
return 0;
}
int IMtAction::DoEncode()
{
MtMsgBuf* msg_buff = NULL;
if (_conn) {
msg_buff = _conn->GetMtMsgBuff();
}
if (!_conn || !msg_buff) {
MTLOG_ERROR("conn(%p) or msgbuff(%p) null", _conn, msg_buff);
return -100;
}
int msg_len = msg_buff->GetMaxLen();
int ret = this->HandleEncode(msg_buff->GetMsgBuff(), msg_len, _msg);
if (ret < 0)
{
MTLOG_DEBUG("handleecode failed, ret %d", ret);
return ret;
}
msg_buff->SetMsgLen(msg_len);
return 0;
}
int IMtAction::DoInput()
{
MtMsgBuf* msg_buff = NULL;
if (_conn) {
msg_buff = _conn->GetMtMsgBuff();
}
if (!_conn || !msg_buff) {
MTLOG_ERROR("conn(%p) or msgbuff(%p) null", _conn, msg_buff);
return -100;
}
int msg_len = msg_buff->GetHaveRcvLen();
int ret = this->HandleInput(msg_buff->GetMsgBuff(), msg_len, _msg);
if (ret < 0)
{
MTLOG_DEBUG("HandleInput failed, ret %d", ret);
return ret;
}
return ret;
}
int IMtAction::DoProcess()
{
MtMsgBuf* msg_buff = NULL;
if (_conn) {
msg_buff = _conn->GetMtMsgBuff();
}
if (!_conn || !msg_buff) {
MTLOG_ERROR("conn(%p) or msgbuff(%p) null", _conn, msg_buff);
return -100;
}
int ret = this->HandleProcess(msg_buff->GetMsgBuff(), msg_buff->GetMsgLen(), _msg);
if (ret < 0)
{
MTLOG_DEBUG("handleprocess failed, ret %d", ret);
return ret;
}
return 0;
}
int IMtAction::DoError()
{
return this->HandleError((int)_errno, _msg);
}
IMtAction::IMtAction()
{
Init();
}
IMtAction::~IMtAction()
{
Reset();
Init();
}