executor/common/transaction_manager.cpp (62 lines of code) (raw):

/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 at * * http://www.apache.org/licenses/LICENSE-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 "executor/common/transaction_manager.h" #include <glog/logging.h> namespace resdb { TransactionManager::TransactionManager(bool is_out_of_order, bool need_response) : is_out_of_order_(is_out_of_order), need_response_(need_response) {} bool TransactionManager::IsOutOfOrder() { return is_out_of_order_; } bool TransactionManager::NeedResponse() { return need_response_; } std::unique_ptr<std::string> TransactionManager::ExecuteData( const std::string& request) { return std::make_unique<std::string>(); } std::unique_ptr<google::protobuf::Message> TransactionManager::ParseData( const std::string& data) { return nullptr; } std::unique_ptr<std::vector<std::unique_ptr<google::protobuf::Message>>> TransactionManager::Prepare(const BatchUserRequest& request) { std::unique_ptr<std::vector<std::unique_ptr<google::protobuf::Message>>> batch_response = std::make_unique< std::vector<std::unique_ptr<google::protobuf::Message>>>(); { for (auto& sub_request : request.user_requests()) { std::unique_ptr<google::protobuf::Message> response = ParseData(sub_request.request().data()); batch_response->push_back(std::move(response)); } // LOG(ERROR)<<"prepare data size:"<<batch_response.size(); } return batch_response; } std::unique_ptr<std::string> TransactionManager::ExecuteRequest( const google::protobuf::Message& request) { return nullptr; } std::vector<std::unique_ptr<std::string>> TransactionManager::ExecuteBatchData( const std::vector<std::unique_ptr<google::protobuf::Message>>& requests) { // LOG(ERROR)<<"execute data:"<<requests.size(); std::vector<std::unique_ptr<std::string>> ret; { for (auto& sub_request : requests) { std::unique_ptr<std::string> response = ExecuteRequest(*sub_request); if (response == nullptr) { response = std::make_unique<std::string>(); } ret.push_back(std::move(response)); } } return ret; } std::unique_ptr<BatchUserResponse> TransactionManager::ExecuteBatch( const BatchUserRequest& request) { std::unique_ptr<BatchUserResponse> batch_response = std::make_unique<BatchUserResponse>(); for (auto& sub_request : request.user_requests()) { std::unique_ptr<std::string> response = ExecuteData(sub_request.request().data()); if (response == nullptr) { response = std::make_unique<std::string>(); } batch_response->add_response()->swap(*response); } return batch_response; } } // namespace resdb