Explore Enterprise Education Gitee Premium Gitee AI AI teammates
Fetch the repository succeeded.
Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
Already have an account? Sign in
文件
master
Branches (1)
master
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
The license selected for the repository is subject to the license used by the main branch of the repository.
master
Branches (1)
master
Clone or Download
Clone/Download
Prompt
To download the code, please copy the following command and execute it in the terminal
To ensure that your submitted code identity is correctly recognized by Gitee, please execute the following command.
When using the SSH protocol for the first time to clone or push code, follow the prompts below to complete the SSH configuration.
1 Generate RSA keys.
2 Obtain the content of the RSA public key and configure it in SSH Public Keys
To use SVN on Gitee, please visit the usage guide
When using the HTTPS protocol, the command line will prompt for account and password verification as follows. For security reasons, Gitee recommends configure and use personal access tokens instead of login passwords for cloning, pushing, and other operations.
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # Private Token
master
Branches (1)
master
ProtoPushBatchBasic.cpp 9.88 KB
Copy Edit Raw Blame History
timeroses authored 2017年10月10日 13:27 +08:00 . first vision
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 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
#include "stdafx.h"
#include "ProtoPushBatchBasic.h"
#include "CppJsonConv.h"
#include "../JsonCpp/json_op.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
CProtoPushBatchBasic::CProtoPushBatchBasic()
{
m_pReqData = NULL;
m_pAckData = NULL;
}
CProtoPushBatchBasic::~CProtoPushBatchBasic()
{
}
bool CProtoPushBatchBasic::ParseJson_Req(const Json::Value &jsnVal)
{
CHECK_RET(m_pReqData != NULL, false);
bool bSuc = true;
do
{
bSuc &= ParseProtoHead_Req(jsnVal, m_pReqData->head);
CHECK_OP(bSuc, break);
bSuc &= ParseProtoBody_Req(jsnVal, *m_pReqData);
CHECK_OP(bSuc, break);
} while (0);
return bSuc;
}
bool CProtoPushBatchBasic::ParseJson_Ack(const Json::Value &jsnVal)
{
CHECK_RET(m_pAckData != NULL, false);
bool bSuc = true;
do
{
bSuc &= ParseProtoHead_Ack(jsnVal, m_pAckData->head);
CHECK_OP(bSuc, break);
if ( m_pAckData->head.ddwErrCode == PROTO_ERR_NO_ERROR )
{
bSuc &= ParseProtoBody_Ack(jsnVal, *m_pAckData);
CHECK_OP(bSuc, break);
}
} while (0);
return bSuc;
}
bool CProtoPushBatchBasic::MakeJson_Req(Json::Value &jsnVal)
{
CHECK_RET(m_pReqData != NULL, false);
bool bSuc = true;
do
{
bSuc &= MakeProtoHead_Req(jsnVal, m_pReqData->head);
CHECK_OP(bSuc, break);
bSuc &= MakeProtoBody_Req(jsnVal, *m_pReqData);
CHECK_OP(bSuc, break);
} while (0);
return bSuc;
}
bool CProtoPushBatchBasic::MakeJson_Ack(Json::Value &jsnVal)
{
CHECK_RET(m_pAckData != NULL, false);
bool bSuc = true;
do
{
bSuc &= MakeProtoHead_Ack(jsnVal, m_pAckData->head);
CHECK_OP(bSuc, break);
if ( m_pAckData->head.ddwErrCode == PROTO_ERR_NO_ERROR )
{
bSuc &= MakeProtoBody_Ack(jsnVal, *m_pAckData);
CHECK_OP(bSuc, break);
}
} while (0);
return bSuc;
}
void CProtoPushBatchBasic::SetProtoData_Req(ProtoReqDataType *pData)
{
m_pReqData = pData;
}
void CProtoPushBatchBasic::SetProtoData_Ack(ProtoAckDataType *pData)
{
m_pAckData = pData;
}
//tomodify 3(数组等复杂结构或单层的结构体)
bool CProtoPushBatchBasic::ParseProtoBody_Req(const Json::Value &jsnVal, ProtoReqDataType &data)
{
if ( !warn_if_prop_not_set(jsnVal, KEY_REQ_PARAM) )
return true;
VT_PROTO_FIELD vtField;
GetProtoBodyField_Req(vtField, data.body);
const Json::Value &jsnBody = jsnVal[KEY_REQ_PARAM];
bool bSuc = CProtoParseBase::ParseProtoFields(jsnBody, vtField);
CHECK_OP(bSuc, NOOP);
if ( bSuc )
{
bSuc &= ParseReqBatchBasicArr(jsnBody, data.body);
}
return true;
}
//tomodify 4(数组等复杂结构或单层的结构体)
bool CProtoPushBatchBasic::ParseProtoBody_Ack(const Json::Value &jsnVal, ProtoAckDataType &data)
{
CHECK_RET(warn_if_prop_not_set(jsnVal, KEY_ACK_DATA), false);
VT_PROTO_FIELD vtField;
GetProtoBodyField_Ack(vtField, data.body);
const Json::Value &jsnBody = jsnVal[KEY_ACK_DATA];
bool bSuc = CProtoParseBase::ParseProtoFields(jsnBody, vtField);
CHECK_OP(bSuc, NOOP);
if ( bSuc )
{
bSuc &= ParseAckBatchBasicArr(jsnBody, data.body);
}
return bSuc;
}
//tomodify 5(数组等复杂结构或单层的结构体)
bool CProtoPushBatchBasic::MakeProtoBody_Req(Json::Value &jsnVal, const ProtoReqDataType &data)
{
CHECK_RET(warn_if_prop_exists(jsnVal, KEY_REQ_PARAM), false);
VT_PROTO_FIELD vtField;
GetProtoBodyField_Req(vtField, data.body);
Json::Value &jsnBody = jsnVal[KEY_REQ_PARAM];
bool bSuc = CProtoParseBase::MakeProtoFields(jsnBody, vtField);
CHECK_OP(bSuc, NOOP);
if ( bSuc )
{
bSuc &= MakeReqBatchBasicArr(jsnBody, data.body);
}
return bSuc;
}
//tomodify 6(数组等复杂结构或单层的结构体)
bool CProtoPushBatchBasic::MakeProtoBody_Ack(Json::Value &jsnVal, const ProtoAckDataType &data)
{
CHECK_RET(warn_if_prop_exists(jsnVal, KEY_ACK_DATA), false);
VT_PROTO_FIELD vtField;
GetProtoBodyField_Ack(vtField, data.body);
Json::Value &jsnBody = jsnVal[KEY_ACK_DATA];
bool bSuc = CProtoParseBase::MakeProtoFields(jsnBody, vtField);
CHECK_OP(bSuc, NOOP);
if ( bSuc )
{
bSuc &= MakeAckBatchBasicArr(jsnBody, data.body);
}
return bSuc;
}
//tomodify 7
void CProtoPushBatchBasic::GetProtoBodyField_Req(VT_PROTO_FIELD &vtField, const ProtoReqBodyType &reqData)
{
}
//tomodify 8
void CProtoPushBatchBasic::GetProtoBodyField_Ack(VT_PROTO_FIELD &vtField, const ProtoAckBodyType &ackData)
{
}
bool CProtoPushBatchBasic::ParseAckBatchBasicArr(const Json::Value &jsnRetData, ProtoAckBodyType &data)
{
CHECK_RET(warn_if_prop_not_set(jsnRetData, "SubSnapshotArr"), false);
const Json::Value &jsnGearArr = jsnRetData["SubSnapshotArr"];
CHECK_RET(jsnGearArr.isArray(), false);
bool bSuc = true;
int nArrSize = jsnGearArr.size();
for ( int n = 0; n < nArrSize; n++ )
{
PushBatchBasicAckItem item;
VT_PROTO_FIELD vtField;
GetAckBatchBasicArrField(vtField, item);
const Json::Value jsnItem = jsnGearArr[n];
CHECK_OP(!jsnItem.isNull(), continue);
bSuc = CProtoParseBase::ParseProtoFields(jsnItem, vtField);
CHECK_OP(bSuc, break);
data.vtAckBatchBasic.push_back(item);
}
return bSuc;
}
bool CProtoPushBatchBasic::MakeAckBatchBasicArr(Json::Value &jsnRetData, const ProtoAckBodyType &data)
{
CHECK_RET(warn_if_prop_exists(jsnRetData, "SubSnapshotArr"), false);
Json::Value &jsnGearArr = jsnRetData["SubSnapshotArr"];
bool bSuc = true;
for ( int n = 0; n < (int)data.vtAckBatchBasic.size(); n++ )
{
const PushBatchBasicAckItem &item = data.vtAckBatchBasic[n];
VT_PROTO_FIELD vtField;
GetAckBatchBasicArrField(vtField, item);
Json::Value &jsnItem = jsnGearArr[n];
bSuc = CProtoParseBase::MakeProtoFields(jsnItem, vtField);
CHECK_OP(bSuc, break);
}
return bSuc;
}
void CProtoPushBatchBasic::GetAckBatchBasicArrField(VT_PROTO_FIELD &vtField, const PushBatchBasicAckItem &ackItem)
{
static BOOL arOptional[] = {
FALSE, FALSE, FALSE,
FALSE, FALSE, FALSE,
FALSE, FALSE, FALSE,
FALSE, FALSE, FALSE,
FALSE, FALSE, FALSE,
};
static EProtoFildType arFieldType[] = {
ProtoFild_Int32, ProtoFild_StringA, ProtoFild_Int32,
ProtoFild_Int32, ProtoFild_Int32, ProtoFild_Int32,
ProtoFild_Int32, ProtoFild_Int32, ProtoFild_Int32,
ProtoFild_Int64, ProtoFild_Int64, ProtoFild_Int64,
ProtoFild_StringW, ProtoFild_StringW, ProtoFild_StringW,
};
static LPCSTR arFieldKey[] = {
"Market", "StockCode", "High",
"Open", "LastClose", "Low",
"CurPrice", "Suspension", "TurnoverRate",
"Turnover", "Volume", "Amplitude",
"Date", "Time", "ListTime",
};
PushBatchBasicAckItem &item = const_cast<PushBatchBasicAckItem &>(ackItem);
void *arPtr[] = {
&item.nStockMarket, &item.strStockCode, &item.nHigh,
&item.nOpen, &item.nLastClose, &item.nLow,
&item.nCur, &item.nSuspension, &item.nTurnoverRate,
&item.nValue, &item.nVolume, &item.nAmpli,
&item.strDate, &item.strTime, &item.strListTime,
};
CHECK_OP(_countof(arOptional) == _countof(arFieldType), NOOP);
CHECK_OP(_countof(arOptional) == _countof(arFieldKey), NOOP);
CHECK_OP(_countof(arOptional) == _countof(arPtr), NOOP);
vtField.clear();
PROTO_FIELD field;
for ( int n = 0; n < _countof(arOptional); n++ )
{
field.bOptional = arOptional[n];
field.eFieldType = arFieldType[n];
field.strFieldKey = arFieldKey[n];
switch (field.eFieldType)
{
case ProtoFild_Int32:
field.pInt32 = (int*)arPtr[n];
break;
case ProtoFild_Int64:
field.pInt64 = (INT64*)arPtr[n];
break;
case ProtoFild_StringA:
field.pStrA = (std::string*)arPtr[n];
break;
case ProtoFild_StringW:
field.pStrW = (std::wstring*)arPtr[n];
break;
default:
CHECK_OP(FALSE, NOOP);
break;
}
vtField.push_back(field);
}
}
bool CProtoPushBatchBasic::ParseReqBatchBasicArr(const Json::Value &jsnRetData, ProtoReqBodyType &data)
{
CHECK_RET(warn_if_prop_not_set(jsnRetData, "ReqArr"), false);
const Json::Value &jsnReqBatchBasicArr = jsnRetData["ReqArr"];
CHECK_RET(jsnReqBatchBasicArr.isArray(), false);
bool bSuc = true;
int nArrSize = jsnReqBatchBasicArr.size();
for ( int n = 0; n < nArrSize; n++ )
{
PushBatchBasicReqItem item;
VT_PROTO_FIELD vtField;
GetReqBatchBasicArrField(vtField, item);
const Json::Value jsnItem = jsnReqBatchBasicArr[n];
CHECK_OP(!jsnItem.isNull(), continue);
bSuc = CProtoParseBase::ParseProtoFields(jsnItem, vtField);
CHECK_OP(bSuc, break);
data.vtReqBatchBasic.push_back(item);
}
return bSuc;
}
bool CProtoPushBatchBasic::MakeReqBatchBasicArr(Json::Value &jsnRetData, const ProtoReqBodyType &data)
{
CHECK_RET(warn_if_prop_exists(jsnRetData, "ReqArr"), false);
Json::Value &jsnReqBatchBasicArr = jsnRetData["ReqArr"];
bool bSuc = true;
for ( int n = 0; n < (int)data.vtReqBatchBasic.size(); n++ )
{
const PushBatchBasicReqItem &item = data.vtReqBatchBasic[n];
VT_PROTO_FIELD vtField;
GetReqBatchBasicArrField(vtField, item);
Json::Value &jsnItem = jsnReqBatchBasicArr[n];
bSuc = CProtoParseBase::MakeProtoFields(jsnItem, vtField);
CHECK_OP(bSuc, break);
}
return bSuc;
}
void CProtoPushBatchBasic::GetReqBatchBasicArrField(VT_PROTO_FIELD &vtField, const PushBatchBasicReqItem &ackItem)
{
static BOOL arOptional[] = {
FALSE, FALSE,
};
static EProtoFildType arFieldType[] = {
ProtoFild_Int32, ProtoFild_StringA,
};
static LPCSTR arFieldKey[] = {
"Market", "StockCode",
};
PushBatchBasicReqItem &item = const_cast<PushBatchBasicReqItem &>(ackItem);
void *arPtr[] = {
&item.nStockMarket, &item.strStockCode,
};
CHECK_OP(_countof(arOptional) == _countof(arFieldType), NOOP);
CHECK_OP(_countof(arOptional) == _countof(arFieldKey), NOOP);
CHECK_OP(_countof(arOptional) == _countof(arPtr), NOOP);
vtField.clear();
PROTO_FIELD field;
for ( int n = 0; n < _countof(arOptional); n++ )
{
field.bOptional = arOptional[n];
field.eFieldType = arFieldType[n];
field.strFieldKey = arFieldKey[n];
switch (field.eFieldType)
{
case ProtoFild_Int32:
field.pInt32 = (int*)arPtr[n];
break;
case ProtoFild_Int64:
field.pInt64 = (INT64*)arPtr[n];
break;
case ProtoFild_StringA:
field.pStrA = (std::string*)arPtr[n];
break;
case ProtoFild_StringW:
field.pStrW = (std::wstring*)arPtr[n];
break;
default:
CHECK_OP(FALSE, NOOP);
break;
}
vtField.push_back(field);
}
}
Loading...
Report
Report success
We will send you the feedback within 2 working days through the letter!
Please fill in the reason for the report carefully. Provide as detailed a description as possible.
Please select a report type
Cancel
Send
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

Releases

No release

Contributors

All

Activities

can not load any more
Edit
About
Homepage
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/timeroses/pythoncoding.git
git@gitee.com:timeroses/pythoncoding.git
timeroses
pythoncoding
pythoncoding
master
Going to Help Center

Search

Comment
Repository Report
Back to the top
Login prompt
This operation requires login to the code cloud account. Please log in before operating.
Go to login
No account. Register

AltStyle によって変換されたページ (->オリジナル) /