// Copyright (c) 2014 Marshall A. Greenblatt. Portions copyright (c) 2011 // Google Inc. All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the name Chromium Embedded // Framework nor the names of its contributors may be used to endorse // or promote products derived from this software without specific prior // written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. /// /// \file /// base::BindOnce() and base::BindRepeating() are helpers for creating /// base::OnceCallback and base::RepeatingCallback objects respectively. /// /// For a runnable object of n-arity, the base::Bind*() family allows partial /// application of the first m arguments. The remaining n - m arguments must be /// passed when invoking the callback with Run(). /// ///
/// // The first argument is bound at callback creation; the remaining /// // two must be passed when calling Run() on the callback object. /// base::OnceCallback/// /// When binding to a method, the receiver object must also be specified at /// callback creation time. When Run() is invoked, the method will be invoked on /// the specified receiver object. /// ///cb = base::BindOnce( /// [](short x, int y, long z) { return x * y * z; }, 42); ///
/// class C : public base::RefCounted/// /// See https://chromium.googlesource.com/chromium/src/+/lkgr/docs/callback.md /// for the full documentation. /// // Implementation notes // // If you're reading the implementation, before proceeding further, you should // read the top comment of base/internal/cef_bind_internal.h for a definition // of common terms and concepts. #ifndef CEF_INCLUDE_BASE_CEF_BIND_H_ #define CEF_INCLUDE_BASE_CEF_BIND_H_ #pragma once #if defined(USING_CHROMIUM_INCLUDES) // When building CEF include the Chromium header directly. #include "base/bind.h" #else // !USING_CHROMIUM_INCLUDES // The following is substantially similar to the Chromium implementation. // If the Chromium implementation diverges the below implementation should be // updated to match. #include{ void F(); }; /// auto instance = base::MakeRefCounted (); /// auto cb = base::BindOnce(&C::F, instance); /// std::move(cb).Run(); // Identical to instance->F() ///
/// class Foo { /// public: /// void func() { cout << "Foo:f" << endl; } /// }; /// /// // In some function somewhere. /// Foo foo; /// OnceClosure foo_callback = /// BindOnce(&Foo::func, Unretained(&foo)); /// std::move(foo_callback).Run(); // Prints "Foo:f". ////// /// Without the Unretained() wrapper on |&foo|, the above call would fail /// to compile because Foo does not support the AddRef() and Release() methods. /// template
/// void foo(RefCountedBytes* bytes) {} /// /// scoped_refptr/// /// Without RetainedRef, the scoped_refptr would try to implicitly convert to /// a raw pointer and fail compilation: /// ///bytes = ...; /// OnceClosure callback = BindOnce(&foo, base::RetainedRef(bytes)); /// std::move(callback).Run(); ///
/// OnceClosure callback = BindOnce(&foo, bytes); // ERROR! ////// template
/// void foo(int* arg) { cout << *arg << endl } /// /// int* pn = new int(1); /// RepeatingClosure foo_callback = BindRepeating(&foo, Owned(pn)); /// /// foo_callback.Run(); // Prints "1" /// foo_callback.Run(); // Prints "1" /// *pn = 2; /// foo_callback.Run(); // Prints "2" /// /// foo_callback.Reset(); // |pn| is deleted. Also will happen when /// // |foo_callback| goes out of scope. ////// /// Without Owned(), someone would have to know to delete |pn| when the last /// reference to the callback is deleted. /// template
/// void foo(int& arg) { cout << ++arg << endl } /// /// int counter = 0; /// RepeatingClosure foo_callback = BindRepeating(&foo, OwnedRef(counter)); /// /// foo_callback.Run(); // Prints "1" /// foo_callback.Run(); // Prints "2" /// foo_callback.Run(); // Prints "3" /// /// cout << counter; // Prints "0", OwnedRef creates a copy of counter. ////// /// Supports OnceCallbacks as well, useful to pass placeholder arguments: /// ///
/// void bar(int& ignore, const std::string& s) { cout << s << endl } /// /// OnceClosure bar_callback = BindOnce(&bar, OwnedRef(0), "Hello"); /// /// std::move(bar_callback).Run(); // Prints "Hello" ////// /// Without OwnedRef() it would not be possible to pass a mutable reference to /// an object owned by the callback. /// template
/// void TakesOwnership(std::unique_ptr/// /// We offer 2 syntaxes for calling Passed(). The first takes an rvalue and is /// best suited for use with the return value of a function or other temporary /// rvalues. The second takes a pointer to the scoper and is just syntactic /// sugar to avoid having to write Passed(std::move(scoper)). /// /// Both versions of Passed() prevent T from being an lvalue reference. The /// first via use of enable_if, and the second takes a T* which will not bind to /// T&. /// templatearg) { } /// std::unique_ptr CreateFoo() { return std::make_unique (); /// } /// /// auto f = std::make_unique (); /// /// // |cb| is given ownership of Foo(). |f| is now NULL. /// // You can use std::move(f) in place of &f, but it's more verbose. /// RepeatingClosure cb = BindRepeating(&TakesOwnership, Passed(&f)); /// /// // Run was never called so |cb| still owns Foo() and deletes /// // it on Reset(). /// cb.Reset(); /// /// // |cb| is given a new Foo created by CreateFoo(). /// cb = BindRepeating(&TakesOwnership, Passed(CreateFoo())); /// /// // |arg| in TakesOwnership() is given ownership of Foo(). |cb| /// // no longer owns Foo() and, if reset, would not delete Foo(). /// cb.Run(); // Foo() is now transferred to |arg| and deleted. /// cb.Run(); // This CHECK()s since Foo() already been used once. ///
/// int DoSomething(int arg) { cout << arg << endl; } /// /// // Assign to a callback with a void return type. /// OnceCallback/// templatecb = BindOnce(IgnoreResult(&DoSomething)); /// std::move(cb).Run(1); // Prints "1". /// /// // Prints "2" on |ml|. /// ml->PostTask(FROM_HERE, BindOnce(IgnoreResult(&DoSomething), 2); ///
/// // Wrap the block and bind it to a callback. /// OnceCallback/// templatecb = /// BindOnce(RetainBlock(^(int n) { NSLog(@"%d", n); })); /// std::move(cb).Run(1); // Logs "1". ///