同步操作将从 搜狗开源/workflow 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/*Copyright (c) 2019 Sogou, Inc.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 athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed 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 andlimitations under the License.Authors: Li Yingxin (liyingxin@sogou-inc.com)*/#include "mysql_types.h"#include "mysql_byteorder.h"#include "MySQLResult.h"namespace protocol{MySQLField::MySQLField(const void *buf, mysql_field_t *field){const char *p = (const char *)buf;this->name = p + field->name_offset;this->name_length = field->name_length;this->org_name = p + field->org_name_offset;this->org_name_length = field->org_name_length;this->table = p + field->table_offset;this->table_length = field->table_length;this->org_table = p + field->org_table_offset;this->org_table_length = field->org_table_length;this->db = p + field->db_offset;this->db_length = field->db_length;this->catalog = p + field->catalog_offset;this->catalog_length = field->catalog_length;if (field->def_offset == (size_t)-1 && field->def_length == 0){this->def = NULL;this->def_length = 0;} else {this->def = p + field->def_offset;this->def_length = field->def_length;}this->flags = field->flags;this->length = field->length;this->decimals = field->decimals;this->charsetnr = field->charsetnr;this->data_type = field->data_type;}MySQLResultCursor::MySQLResultCursor(){this->init();}void MySQLResultCursor::init(){this->current_field = 0;this->current_row = 0;this->field_count = 0;this->fields = NULL;this->parser = NULL;this->status = MYSQL_STATUS_NOT_INIT;}MySQLResultCursor::MySQLResultCursor(const MySQLResponse *resp){this->init(resp);}void MySQLResultCursor::reset(MySQLResponse *resp){this->clear();this->init(resp);}void MySQLResultCursor::fetch_result_set(const struct __mysql_result_set *result_set){const char *buf = (const char *)this->parser->buf;this->server_status = result_set->server_status;switch (result_set->type){case MYSQL_PACKET_GET_RESULT:this->status = MYSQL_STATUS_GET_RESULT;this->field_count = result_set->field_count;this->start = buf + result_set->rows_begin_offset;this->pos = this->start;this->end = buf + result_set->rows_end_offset;this->row_count = result_set->row_count;this->fields = new MySQLField *[this->field_count];for (int i = 0; i < this->field_count; i++)this->fields[i] = new MySQLField(this->parser->buf, result_set->fields[i]);break;case MYSQL_PACKET_OK:this->status = MYSQL_STATUS_OK;this->affected_rows = result_set->affected_rows;this->insert_id = result_set->insert_id;this->warning_count = result_set->warning_count;this->start = buf + result_set->info_offset;this->info_len = result_set->info_len;this->field_count = 0;this->fields = NULL;break;default:this->status = MYSQL_STATUS_ERROR;break;}}void MySQLResultCursor::init(const MySQLResponse *resp){this->current_field = 0;this->current_row = 0;this->field_count = 0;this->fields = NULL;this->parser = resp->get_parser();this->status = MYSQL_STATUS_NOT_INIT;if (!list_empty(&this->parser->result_set_list)){struct __mysql_result_set *result_set;mysql_result_set_cursor_init(&this->cursor, this->parser);mysql_result_set_cursor_next(&result_set, &this->cursor);this->fetch_result_set(result_set);}}bool MySQLResultCursor::next_result_set(){if (this->status == MYSQL_STATUS_NOT_INIT ||this->status == MYSQL_STATUS_ERROR){return false;}struct __mysql_result_set *result_set;if (mysql_result_set_cursor_next(&result_set, &this->cursor) == 0){for (int i = 0; i < this->field_count; i++)delete this->fields[i];delete []this->fields;this->current_field = 0;this->current_row = 0;this->fetch_result_set(result_set);return true;}else{this->status = MYSQL_STATUS_END;return false;}}bool MySQLResultCursor::fetch_row(std::vector<MySQLCell>& row_arr){if (this->status != MYSQL_STATUS_GET_RESULT)return false;unsigned long long len;const unsigned char *data;int data_type;const unsigned char *p = (const unsigned char *)this->pos;const unsigned char *end = (const unsigned char *)this->end;row_arr.clear();for (int i = 0; i < this->field_count; i++){data_type = this->fields[i]->get_data_type();if (*p == MYSQL_PACKET_HEADER_NULL){data = NULL;len = 0;p++;data_type = MYSQL_TYPE_NULL;} else if (decode_string(&data, &len, &p, end) == false) {this->status = MYSQL_STATUS_ERROR;return false;}row_arr.emplace_back(data, len, data_type);}if (++this->current_row == this->row_count)this->status = MYSQL_STATUS_END;this->pos = p;return true;}bool MySQLResultCursor::fetch_row(std::map<std::string, MySQLCell>& row_map){return this->fetch_row<std::map<std::string, MySQLCell>>(row_map);}bool MySQLResultCursor::fetch_row(std::unordered_map<std::string, MySQLCell>& row_map){return this->fetch_row<std::unordered_map<std::string, MySQLCell>>(row_map);}bool MySQLResultCursor::fetch_row_nocopy(const void **data, size_t *len, int *data_type){if (this->status != MYSQL_STATUS_GET_RESULT)return false;unsigned long long cell_len;const unsigned char *cell_data;const unsigned char *p = (const unsigned char *)this->pos;const unsigned char *end = (const unsigned char *)this->end;for (int i = 0; i < this->field_count; i++){if (*p == MYSQL_PACKET_HEADER_NULL){cell_data = NULL;cell_len = 0;p++;}else if (decode_string(&cell_data, &cell_len, &p, end) == false){this->status = MYSQL_STATUS_ERROR;return false;}data[i] = cell_data;len[i] = cell_len;data_type[i] = this->fields[i]->get_data_type();}this->pos = p;if (++this->current_row == this->row_count)this->status = MYSQL_STATUS_END;return true;}bool MySQLResultCursor::fetch_all(std::vector<std::vector<MySQLCell>>& rows){if (this->status != MYSQL_STATUS_GET_RESULT)return false;unsigned long long len;const unsigned char *data;int data_type;const unsigned char *p = (const unsigned char *)this->pos;const unsigned char *end = (const unsigned char *)this->end;rows.clear();for (int i = this->current_row; i < this->row_count; i++){std::vector<MySQLCell> tmp;for (int j = 0; j < this->field_count; j++){data_type = this->fields[j]->get_data_type();if (*p == MYSQL_PACKET_HEADER_NULL){data = NULL;len = 0;p++;data_type = MYSQL_TYPE_NULL;}else if (decode_string(&data, &len, &p, end) == false){this->status = MYSQL_STATUS_ERROR;return false;}tmp.emplace_back(data, len, data_type);}rows.emplace_back(std::move(tmp));}this->current_row = this->row_count;this->status = MYSQL_STATUS_END;this->pos = p;return true;}void MySQLResultCursor::first_result_set(){if (this->status == MYSQL_STATUS_NOT_INIT ||this->status == MYSQL_STATUS_ERROR){return;}mysql_result_set_cursor_rewind(&this->cursor);struct __mysql_result_set *result_set;if (mysql_result_set_cursor_next(&result_set, &this->cursor) == 0){for (int i = 0; i < this->field_count; i++)delete this->fields[i];delete []this->fields;this->current_field = 0;this->current_row = 0;this->fetch_result_set(result_set);}}void MySQLResultCursor::rewind(){if (this->status != MYSQL_STATUS_GET_RESULT &&this->status != MYSQL_STATUS_END){return;}this->current_field = 0;this->current_row = 0;this->pos = this->start;}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。