diff options
author | max42 <max42@yandex-team.com> | 2023-06-30 03:37:03 +0300 |
---|---|---|
committer | max42 <max42@yandex-team.com> | 2023-06-30 03:37:03 +0300 |
commit | fac2bd72b4b31ec3238292caf8fb2a8aaa6d6c4a (patch) | |
tree | b8cbc1deb00309c7f1a7ab6df520a76cf0b5c6d7 /yt/cpp/mapreduce/client/batch_request_impl.h | |
parent | 7bf166b1a7ed0af927f230022b245af618e998c1 (diff) | |
download | ydb-fac2bd72b4b31ec3238292caf8fb2a8aaa6d6c4a.tar.gz |
YT-19324: move YT provider to ydb/library/yql
This commit is formed by the following script: https://paste.yandex-team.ru/6f92e4b8-efc5-4d34-948b-15ee2accd7e7/text.
This commit has zero effect on all projects that depend on YQL.
The summary of changes:
- `yql/providers/yt -> ydb/library/yql/providers/yt `- the whole implementation of YT provider is moved into YDB code base for further export as a part of YT YQL plugin shared library;
- `yql/providers/stat/{expr_nodes,uploader} -> ydb/library/yql/providers/stat/{expr_nodes,uploader}` - a small interface without implementation and the description of stat expr nodes;
- `yql/core/extract_predicate/ut -> ydb/library/yql/core/extract_predicate/ut`;
- `yql/core/{ut,ut_common} -> ydb/library/yql/core/{ut,ut_common}`;
- `yql/core` is gone;
- `yql/library/url_preprocessing -> ydb/library/yql/core/url_preprocessing`.
**NB**: all new targets inside `ydb/` are under `IF (NOT CMAKE_EXPORT)` clause which disables them from open-source cmake generation and ya make build. They will be enabled in the subsequent commits.
Diffstat (limited to 'yt/cpp/mapreduce/client/batch_request_impl.h')
-rw-r--r-- | yt/cpp/mapreduce/client/batch_request_impl.h | 137 |
1 files changed, 137 insertions, 0 deletions
diff --git a/yt/cpp/mapreduce/client/batch_request_impl.h b/yt/cpp/mapreduce/client/batch_request_impl.h new file mode 100644 index 0000000000..0a176417b3 --- /dev/null +++ b/yt/cpp/mapreduce/client/batch_request_impl.h @@ -0,0 +1,137 @@ +#pragma once + +#include <yt/cpp/mapreduce/interface/batch_request.h> +#include <yt/cpp/mapreduce/interface/fwd.h> +#include <yt/cpp/mapreduce/interface/node.h> + +#include <yt/cpp/mapreduce/http/requests.h> + +#include <library/cpp/threading/future/future.h> + +#include <util/generic/ptr.h> +#include <util/generic/deque.h> + +#include <exception> + +namespace NYT { +namespace NDetail { + +//////////////////////////////////////////////////////////////////////////////// + +struct TResponseInfo; +class TClient; +using TClientPtr = ::TIntrusivePtr<TClient>; + +namespace NRawClient { + class TRawBatchRequest; +} + +//////////////////////////////////////////////////////////////////////////////// + +class TBatchRequest + : public IBatchRequest +{ +public: + TBatchRequest(const TTransactionId& defaultTransaction, ::TIntrusivePtr<TClient> client); + + ~TBatchRequest(); + + virtual IBatchRequestBase& WithTransaction(const TTransactionId& transactionId) override; + + virtual ::NThreading::TFuture<TLockId> Create( + const TYPath& path, + ENodeType type, + const TCreateOptions& options = TCreateOptions()) override; + + virtual ::NThreading::TFuture<void> Remove( + const TYPath& path, + const TRemoveOptions& options = TRemoveOptions()) override; + + virtual ::NThreading::TFuture<bool> Exists( + const TYPath& path, + const TExistsOptions& options = TExistsOptions()) override; + + virtual ::NThreading::TFuture<TNode> Get( + const TYPath& path, + const TGetOptions& options = TGetOptions()) override; + + virtual ::NThreading::TFuture<void> Set( + const TYPath& path, + const TNode& node, + const TSetOptions& options = TSetOptions()) override; + + virtual ::NThreading::TFuture<TNode::TListType> List( + const TYPath& path, + const TListOptions& options = TListOptions()) override; + + virtual ::NThreading::TFuture<TNodeId> Copy( + const TYPath& sourcePath, + const TYPath& destinationPath, + const TCopyOptions& options = TCopyOptions()) override; + + virtual ::NThreading::TFuture<TNodeId> Move( + const TYPath& sourcePath, + const TYPath& destinationPath, + const TMoveOptions& options = TMoveOptions()) override; + + virtual ::NThreading::TFuture<TNodeId> Link( + const TYPath& targetPath, + const TYPath& linkPath, + const TLinkOptions& options = TLinkOptions()) override; + + virtual ::NThreading::TFuture<ILockPtr> Lock( + const TYPath& path, + ELockMode mode, + const TLockOptions& options) override; + + virtual ::NThreading::TFuture<void> Unlock( + const TYPath& path, + const TUnlockOptions& options) override; + + virtual ::NThreading::TFuture<void> AbortOperation(const TOperationId& operationId) override; + + virtual ::NThreading::TFuture<void> CompleteOperation(const TOperationId& operationId) override; + + ::NThreading::TFuture<void> SuspendOperation( + const TOperationId& operationId, + const TSuspendOperationOptions& options) override; + + ::NThreading::TFuture<void> ResumeOperation( + const TOperationId& operationId, + const TResumeOperationOptions& options) override; + + virtual ::NThreading::TFuture<void> UpdateOperationParameters( + const TOperationId& operationId, + const TUpdateOperationParametersOptions& options) override; + + virtual ::NThreading::TFuture<TRichYPath> CanonizeYPath(const TRichYPath& path) override; + + virtual ::NThreading::TFuture<TVector<TTableColumnarStatistics>> GetTableColumnarStatistics( + const TVector<TRichYPath>& paths, + const TGetTableColumnarStatisticsOptions& options) override; + + ::NThreading::TFuture<TCheckPermissionResponse> CheckPermission( + const TString& user, + EPermission permission, + const TYPath& path, + const TCheckPermissionOptions& options) override; + + virtual void ExecuteBatch(const TExecuteBatchOptions& executeBatch) override; + +private: + TBatchRequest(NDetail::NRawClient::TRawBatchRequest* impl, ::TIntrusivePtr<TClient> client); + +private: + TTransactionId DefaultTransaction_; + ::TIntrusivePtr<NDetail::NRawClient::TRawBatchRequest> Impl_; + THolder<TBatchRequest> TmpWithTransaction_; + ::TIntrusivePtr<TClient> Client_; + +private: + friend class NYT::NDetail::TClient; +}; + +//////////////////////////////////////////////////////////////////////////////// + +} // namespace NDetail +} // namespace NYT |