From b3c2f5d2ee61e4985ad14151502bb8a95760135f Mon Sep 17 00:00:00 2001 From: Ilya Biryukov Date: Fri, 16 Aug 2019 09:20:01 +0000 Subject: [PATCH] [clangd] Remove Bind, use C++14 lambda captures instead. NFC llvm-svn: 369089 --- clang-tools-extra/clangd/ClangdLSPServer.cpp | 16 ++++-- clang-tools-extra/clangd/Function.h | 56 ------------------- .../clangd/unittests/SyncAPI.cpp | 8 +-- 3 files changed, 15 insertions(+), 65 deletions(-) diff --git a/clang-tools-extra/clangd/ClangdLSPServer.cpp b/clang-tools-extra/clangd/ClangdLSPServer.cpp index f98f2c426e05..03e32e66f376 100644 --- a/clang-tools-extra/clangd/ClangdLSPServer.cpp +++ b/clang-tools-extra/clangd/ClangdLSPServer.cpp @@ -603,8 +603,11 @@ void ClangdLSPServer::onCommand(const ExecuteCommandParams &Params, // 6. The editor applies the changes (applyEdit), and sends us a reply // 7. We unwrap the reply and send a reply to the editor. ApplyEdit(*Params.workspaceEdit, - Bind(ReplyAfterApplyingEdit, std::move(Reply), - std::string("Fix applied."))); + [Reply = std::move(Reply), ReplyAfterApplyingEdit]( + llvm::Expected Response) mutable { + ReplyAfterApplyingEdit(std::move(Reply), "Fix applied.", + std::move(Response)); + }); } else if (Params.command == ExecuteCommandParams::CLANGD_APPLY_TWEAK && Params.tweakArgs) { auto Code = DraftMgr.getDraft(Params.tweakArgs->file.file()); @@ -624,8 +627,13 @@ void ClangdLSPServer::onCommand(const ExecuteCommandParams &Params, WorkspaceEdit WE; WE.changes.emplace(); (*WE.changes)[File.uri()] = replacementsToEdits(Code, *R->ApplyEdit); - ApplyEdit(std::move(WE), Bind(ReplyAfterApplyingEdit, std::move(Reply), - std::string("Tweak applied."))); + ApplyEdit( + std::move(WE), + [Reply = std::move(Reply), ReplyAfterApplyingEdit]( + llvm::Expected Response) mutable { + ReplyAfterApplyingEdit(std::move(Reply), "Tweak applied.", + std::move(Response)); + }); } if (R->ShowMessage) { ShowMessageParams Msg; diff --git a/clang-tools-extra/clangd/Function.h b/clang-tools-extra/clangd/Function.h index 33336625c708..cfcb4a550a76 100644 --- a/clang-tools-extra/clangd/Function.h +++ b/clang-tools-extra/clangd/Function.h @@ -27,62 +27,6 @@ namespace clangd { template using Callback = llvm::unique_function)>; -/// Stores a callable object (Func) and arguments (Args) and allows to call the -/// callable with provided arguments later using `operator ()`. The arguments -/// are std::forward'ed into the callable in the body of `operator()`. Therefore -/// `operator()` can only be called once, as some of the arguments could be -/// std::move'ed into the callable on first call. -template struct ForwardBinder { - using Tuple = std::tuple::type, - typename std::decay::type...>; - Tuple FuncWithArguments; -#ifndef NDEBUG - bool WasCalled = false; -#endif - -public: - ForwardBinder(Tuple FuncWithArguments) - : FuncWithArguments(std::move(FuncWithArguments)) {} - -private: - template - auto CallImpl(std::integer_sequence Seq, - RestArgs &&... Rest) - -> decltype(std::get<0>(this->FuncWithArguments)( - std::forward(std::get(this->FuncWithArguments))..., - std::forward(Rest)...)) { - return std::get<0>(this->FuncWithArguments)( - std::forward(std::get(this->FuncWithArguments))..., - std::forward(Rest)...); - } - -public: - template - auto operator()(RestArgs &&... Rest) - -> decltype(this->CallImpl(std::index_sequence_for(), - std::forward(Rest)...)) { - -#ifndef NDEBUG - assert(!WasCalled && "Can only call result of Bind once."); - WasCalled = true; -#endif - return CallImpl(std::index_sequence_for(), - std::forward(Rest)...); - } -}; - -/// Creates an object that stores a callable (\p F) and first arguments to the -/// callable (\p As) and allows to call \p F with \Args at a later point. -/// Similar to std::bind, but also works with move-only \p F and \p As. -/// -/// The returned object must be called no more than once, as \p As are -/// std::forwarded'ed (therefore can be moved) into \p F during the call. -template -ForwardBinder Bind(Func F, Args &&... As) { - return ForwardBinder( - std::make_tuple(std::forward(F), std::forward(As)...)); -} - /// An Event allows events of type T to be broadcast to listeners. template class Event { public: diff --git a/clang-tools-extra/clangd/unittests/SyncAPI.cpp b/clang-tools-extra/clangd/unittests/SyncAPI.cpp index 6064489688ac..af9ef9ffa1e8 100644 --- a/clang-tools-extra/clangd/unittests/SyncAPI.cpp +++ b/clang-tools-extra/clangd/unittests/SyncAPI.cpp @@ -40,11 +40,9 @@ template struct CaptureProxy { operator llvm::unique_function() && { assert(!Future.valid() && "conversion to callback called multiple times"); Future = Promise.get_future(); - return Bind( - [](std::promise> Promise, T Value) { - Promise.set_value(std::make_shared(std::move(Value))); - }, - std::move(Promise)); + return [Promise = std::move(Promise)](T Value) mutable { + Promise.set_value(std::make_shared(std::move(Value))); + }; } ~CaptureProxy() {