47 lines
1.4 KiB
C++
47 lines
1.4 KiB
C++
/**
|
|
* Copyright (c) 2021 OceanBase
|
|
* OceanBase CE is licensed under Mulan PubL v2.
|
|
* You can use this software according to the terms and conditions of the Mulan PubL v2.
|
|
* You may obtain a copy of Mulan PubL v2 at:
|
|
* http://license.coscl.org.cn/MulanPubL-2.0
|
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
|
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
|
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
|
* See the Mulan PubL v2 for more details.
|
|
*/
|
|
|
|
#ifndef OB_DTL_RPC_PROCESSOR_H
|
|
#define OB_DTL_RPC_PROCESSOR_H
|
|
|
|
#include "rpc/obrpc/ob_rpc_processor.h"
|
|
#include "sql/dtl/ob_dtl_rpc_proxy.h"
|
|
#include "rpc/obrpc/ob_rpc_proxy.h"
|
|
|
|
namespace oceanbase {
|
|
namespace sql {
|
|
namespace dtl {
|
|
|
|
class ObDtlLinkedBuffer;
|
|
class ObDtlChannel;
|
|
|
|
class ObDtlSendMessageP : public obrpc::ObRpcProcessor<obrpc::ObDtlRpcProxy::ObRpc<obrpc::OB_DTL_SEND> > {
|
|
public:
|
|
virtual int process() final;
|
|
static int process_msg(ObDtlRpcDataResponse& response, ObDtlSendArgs& args);
|
|
static int process_interm_result(ObDtlSendArgs& arg);
|
|
|
|
private:
|
|
static int process_px_bloom_filter_data(ObDtlLinkedBuffer*& buffer);
|
|
};
|
|
|
|
class ObDtlBCSendMessageP : public obrpc::ObRpcProcessor<obrpc::ObDtlRpcProxy::ObRpc<obrpc::OB_DTL_BC_SEND> > {
|
|
public:
|
|
virtual int process() final;
|
|
};
|
|
|
|
} // namespace dtl
|
|
} // namespace sql
|
|
} // namespace oceanbase
|
|
|
|
#endif /* OB_DTL_RPC_PROCESSOR_H */
|