Giuseppe Ottaviano [Wed, 10 Jan 2018 02:44:44 +0000 (18:44 -0800)]
Change the enumerate() example to bind the proxy by reference
Summary:
When compiling without optimizations binding the proxy by
reference is slightly faster (no differences in opt mode), so change
the documentation to recommend this syntax.
The proxy can still be bound by `auto`, `const auto`, and `const
auto&`, in all case behaving as expected and with no overhead in opt
mode. Added a test to make sure these all work.
Reviewed By: yfeldblum, luciang
Differential Revision:
D6688958
fbshipit-source-id:
7c6b460a01708786bda7614546fa2e1667f27299
Giuseppe Ottaviano [Wed, 10 Jan 2018 02:44:43 +0000 (18:44 -0800)]
Improve performance of enumerate() with optimization disabled
Reviewed By: yfeldblum, WillerZ
Differential Revision:
D6682606
fbshipit-source-id:
5a203a849e96d3020cf9ad2669451122954c2199
Adriana Libório [Wed, 10 Jan 2018 00:13:22 +0000 (16:13 -0800)]
Fixing typo in sorted_vector_types.h
Summary:
title
Created from Diffusion's 'Open in Editor' feature.
(Note: this ignores all push blocking failures!)
Reviewed By: Sushisugre
Differential Revision:
D6688367
fbshipit-source-id:
6e2f2d3fcb897fe78c1caef841515856b1f2bd42
Dan Melnic [Tue, 9 Jan 2018 19:36:55 +0000 (11:36 -0800)]
Return if we handle any error messages to avoid unnecessarily calling recv/send
Summary: Return if we handle any error messages to avoid unnecessarily calling recv/send
Reviewed By: yfeldblum
Differential Revision:
D6677314
fbshipit-source-id:
21f724bb2c92b954888ba97bf7820d72decd2775
Dave Watson [Tue, 9 Jan 2018 15:32:57 +0000 (07:32 -0800)]
use in futex
Summary: Use new ParkingLot API in futex.
Reviewed By: yfeldblum
Differential Revision:
D6595853
fbshipit-source-id:
7024ac1d3e0c5958a651a3e33c1427038bbe7808
Dave Watson [Tue, 9 Jan 2018 15:30:49 +0000 (07:30 -0800)]
Add a check if max atomic_shared_ptrs is reached.
Summary:
Batching reference counts reduces the maximum number of atomic_shared_ptrs
available to the system (and also shared_ptrs).
Add a check, test, and some comments about it.
Reviewed By: yfeldblum
Differential Revision:
D5916291
fbshipit-source-id:
0bbf7b43284d94a304201219883c82b3654c1585
Maged Michael [Tue, 9 Jan 2018 00:29:24 +0000 (16:29 -0800)]
UnboundedBlockingQueue: Adjust segment size
Summary: Adjust the segment size of the `UnboundedQueue` to 64 instead of 256, a size more suitable for CPUThreadPoolExecutor::CPUTask elements.
Reviewed By: djwatson
Differential Revision:
D6665918
fbshipit-source-id:
c34c4fa936ee5c6d6a3dd4489129c936369f3980
Eric Niebler [Mon, 8 Jan 2018 23:21:57 +0000 (15:21 -0800)]
give all folly exception types default visibility
Summary: This makes sure that whether folly is statically or dynamically linked, all folly exception types will have exactly one definition, and one set of type information.
Reviewed By: mzlee
Differential Revision:
D6671431
fbshipit-source-id:
1c06826a05f87cbf9af747c9abdb5f524744d054
Keith Daigle [Mon, 8 Jan 2018 19:31:12 +0000 (11:31 -0800)]
Update cpuid test to expect failure on non intel cpu
Summary: Found that testing would fail on aarch64 since mmx is an Intel thing. Changed it to just check for x64.
Reviewed By: yfeldblum
Differential Revision:
D6670050
fbshipit-source-id:
6ce4b45bb5ef02d65305636d6ac28be7631ddf1b
Chad Austin [Mon, 8 Jan 2018 19:12:18 +0000 (11:12 -0800)]
test that _sp includes nul bytes
Summary:
D6617812 wants to build a StringPiece from a literal with an
embedded nul. Add a test to verify that _sp is suitable for this use
case.
Reviewed By: yfeldblum
Differential Revision:
D6651024
fbshipit-source-id:
be4fb875762829fdb61c57fa72954fef286e9df0
Neel Goyal [Mon, 8 Jan 2018 16:49:37 +0000 (08:49 -0800)]
Use local error buffer in readStoreFromBuffer
Summary: ERR_error_string will use a static buffer if none is provided. This is unsafe in threaded envs when we build a string out of it later. Switch this to use ERR_error_string_n
Reviewed By: yfeldblum, knekritz
Differential Revision:
D6664958
fbshipit-source-id:
2071347373ac61ebc28296fa66845cd718172b5e
Yedidya Feldblum [Mon, 8 Jan 2018 05:40:55 +0000 (21:40 -0800)]
Remove gcc-v4.7 support from MemoryIdler
Summary:
[Folly] Remove gcc-v4.7 support from `MemoryIdler`.
As of gcc-v4.8, `std::is_trivial<std::chrono::duration<Rep, Period>>::value` holds. We no longer need any extra support.
Reviewed By: meyering
Differential Revision:
D6673517
fbshipit-source-id:
f28b2d126f113547ebf36c85f9fa37a5d944d65b
Yedidya Feldblum [Sun, 7 Jan 2018 22:19:17 +0000 (14:19 -0800)]
Terminal comma for FutexResult enumerators
Summary: [Folly] Terminal comma for `FutexResult` enumerators. Style nit.
Reviewed By: meyering
Differential Revision:
D6673523
fbshipit-source-id:
abf9f4d3e99bf9a6d3042a49252b1b1190e69b9f
Yedidya Feldblum [Sat, 6 Jan 2018 06:45:21 +0000 (22:45 -0800)]
Use auto for scope-guard locals v.s. folly::ScopeGuard
Summary: Use `auto` for scope-guard locals v.s. `folly::ScopeGuard`.
Reviewed By: igorsugak, meyering
Differential Revision:
D6664915
fbshipit-source-id:
ea239b712f3f9dc7ef81105aaf82f4b36bc07db5
Eric Niebler [Sat, 6 Jan 2018 01:31:41 +0000 (17:31 -0800)]
give EventBase a non-explicit default constructor
Summary: Default constructors are strange and often unexpected. Refactor.
Reviewed By: yfeldblum
Differential Revision:
D6667480
fbshipit-source-id:
24c456c46c846c61e28f1a88806d7c36d9192493
Maged Michael [Sat, 6 Jan 2018 00:10:46 +0000 (16:10 -0800)]
Add threshold for thread local retired objects
Summary: Change the threshold for pushing privately held retired object to the domain to a moderate constant instead of using the threshold for bulk reclamation which is too high for this purpose.
Reviewed By: djwatson
Differential Revision:
D6665904
fbshipit-source-id:
0b090884843b0296a93af7994f7183f41c00000e
Yedidya Feldblum [Fri, 5 Jan 2018 22:23:31 +0000 (14:23 -0800)]
Synchronized::exchange
Summary:
[Folly] `Synchronized::exchange`, for assigning a new value and returning the old value.
(Note: this ignores all push blocking failures!)
Differential Revision:
D6653482
fbshipit-source-id:
68f4bd330bc2cf37bb92aff98b8ce3221334112e
Yedidya Feldblum [Fri, 5 Jan 2018 21:29:57 +0000 (13:29 -0800)]
Fix copyright lines in folly/synchronization/Baton.h
Summary: [Folly] Fix copyright lines in `folly/synchronization/Baton.h`.
Reviewed By: meyering
Differential Revision:
D6665595
fbshipit-source-id:
84aa0c475f01c858d543a047103437c083b3a4ed
Mingtao Yang [Fri, 5 Jan 2018 20:54:46 +0000 (12:54 -0800)]
Clarify folly::ssl::init documentation
Summary: Adds wording indicating that it is safe to call this function multiple times.
Reviewed By: yfeldblum
Differential Revision:
D6625530
fbshipit-source-id:
2305f7b8e3451a6663003d23230b22c6f65a3729
Yedidya Feldblum [Fri, 5 Jan 2018 07:08:09 +0000 (23:08 -0800)]
Cut glog include from folly/synchronization/RWSpinLock.h
Summary: [Folly] Cut `glog` include from `folly/synchronization/RWSpinLock.h`.
Reviewed By: meyering
Differential Revision:
D6659300
fbshipit-source-id:
0f1b79d98be0656694f57667252a16acd54e2414
Yedidya Feldblum [Fri, 5 Jan 2018 07:08:03 +0000 (23:08 -0800)]
Move folly/RWSpinLock.h to folly/synchronization/
Summary: [Folly] Move `folly/RWSpinLock.h` to `folly/synchronization/`.
Reviewed By: elsteveogrande
Differential Revision:
D6659265
fbshipit-source-id:
307723e22f42ceb104f26657aed8b34f7e183afb
Yedidya Feldblum [Fri, 5 Jan 2018 07:02:09 +0000 (23:02 -0800)]
Extract WaitOptions
Summary:
[Folly] Extract `WaitOptions` from `SaturatingSemaphore`.
This type may prove useful in the future for a variety of similar cases, and so does not need to be locked up inside `SaturatingSemaphore`.
Additionally:
* Extract and redraft a comment from `Baton`.
* Rename `pre_block` to `spin_max`.
Reviewed By: djwatson, aary
Differential Revision:
D6632875
fbshipit-source-id:
6b7faeeb6e1ac2011a037c2b560def0ee2e9f3d4
Yedidya Feldblum [Fri, 5 Jan 2018 03:44:07 +0000 (19:44 -0800)]
Move folly/BitIterator.h to folly/container/
Summary: [Folly] Move `folly/BitIterator.h` to `folly/container/`.
Reviewed By: djwatson
Differential Revision:
D6648357
fbshipit-source-id:
5617e3210f58435fcbf3ef07fa745da47dbce475
Yedidya Feldblum [Fri, 5 Jan 2018 03:29:27 +0000 (19:29 -0800)]
Move InPlaceConstruction test in folly/test/SynchronizedTest.cpp
Summary: [Folly] Move `InPlaceConstruction` test in `folly/test/SynchronizedTest.cpp`.
Differential Revision:
D6653481
fbshipit-source-id:
f0eadfd6c2f41e9f597a666d01e40d5553447c70
Yedidya Feldblum [Fri, 5 Jan 2018 03:29:25 +0000 (19:29 -0800)]
Fix copyright lines for folly/Synchronized.h
Summary: [Folly] Fix copyright lines for `folly/Synchronized.h`.
Reviewed By: meyering
Differential Revision:
D6664326
fbshipit-source-id:
71a0fc17358e41dfc751b8bcb0736c288975a4a0
Neel Goyal [Fri, 5 Jan 2018 01:56:20 +0000 (17:56 -0800)]
Add utility to create stores
Summary: Add methods to create a X509StoreUniquePtr from a ca file or buffer.
Reviewed By: yfeldblum
Differential Revision:
D6662538
fbshipit-source-id:
646f61596f2787756b2fa5998a43f36d75a91d90
Keith Daigle [Thu, 4 Jan 2018 14:37:27 +0000 (06:37 -0800)]
Make FOLLY_HAS_COROUTINES dependent on header
Summary:
This breaks while building on aarch64 each time because the headers aren't
in the repo. I did a quick grep and I don't see anything in folly that
uses OptionalAwaitable or OptionalPromise so perhaps it's possible to
remove instead, can do that if preferred. Depends on
D6611609 to complete
build of tests cleanly.
Reviewed By: yfeldblum
Differential Revision:
D6643759
fbshipit-source-id:
f480d50383f85fbe905daaad74198b6557609347
Yedidya Feldblum [Wed, 3 Jan 2018 21:41:22 +0000 (13:41 -0800)]
Avoid allocs in dtors in futures collect
Summary:
[Folly] Avoid allocs in dtors in futures `collect`.
`CollectContext`, a detail helper type, allocates storage for a results vector in its dtor. This is an awkward situation and should be avoided.
Reviewed By: ericniebler
Differential Revision:
D6649299
fbshipit-source-id:
87746fcc78fa080f63505d7bb864aca6c4a3d7cb
Keith Daigle [Wed, 3 Jan 2018 14:58:45 +0000 (06:58 -0800)]
Fix to build SharedMutexTest on aarch64
Summary:
While trying to build folly on aarch64 found that the SharedMutexTest
wouldn't build because it uses RWTicketSpinLock which was only available
on x86 platforms. Updated to allow build on aarch64 after suggestion by Orvid
Reviewed By: yfeldblum
Differential Revision:
D6611609
fbshipit-source-id:
8ec477cdedac0f0a705608bbac42dd63b3efb919
Lee Howes [Wed, 3 Jan 2018 04:29:49 +0000 (20:29 -0800)]
Make consistent set of get and getTry methods on SemiFuture.
Summary: Complete set of get and getVia methods including addition of a result operation on FutureBase that provides functionality of the old getTry on Future by returning a Try by reference.
Reviewed By: yfeldblum
Differential Revision:
D6640056
fbshipit-source-id:
3ac01f7bc4b128e641f08d9a99280a18ffce82f9
Yedidya Feldblum [Tue, 2 Jan 2018 03:08:45 +0000 (19:08 -0800)]
Remove SingletonVault C bindings
Summary: [Folly] Remove `SingletonVault` C bindings. They are not generally needed.
Reviewed By: spalamarchuk
Differential Revision:
D6632104
fbshipit-source-id:
3aecb35277bc76a2171487404d6994a5ea296afc
Yedidya Feldblum [Tue, 2 Jan 2018 01:05:02 +0000 (17:05 -0800)]
Use member-invoke traits in LockTraits
Summary:
[Folly] Use member-invoke traits in `LockTraits`.
V.s. spelling out the SFINAE manually.
Reviewed By: Orvid
Differential Revision:
D6637380
fbshipit-source-id:
212e0cc5e54503b31e458b6bda93b2a3b24e6c59
Yedidya Feldblum [Tue, 2 Jan 2018 01:05:00 +0000 (17:05 -0800)]
invoke and member-invoke tweaks
Summary:
[Folly] `invoke` and member-`invoke` tweaks.
* Direct `static_cast` v.s. `std::forward` is okay.
* Implement member-`invoke` in terms of `invoke` and extract most of it to a helper type, minimizing the code directly generated by the preprocessor.
Reviewed By: spalamarchuk
Differential Revision:
D6644119
fbshipit-source-id:
e58a83d7ff2dd71b0377d864ef089c34e0239c8d
Yedidya Feldblum [Tue, 2 Jan 2018 00:54:27 +0000 (16:54 -0800)]
Add ColdClassTest.cpp to oss builds
Summary: [Folly] Add `ColdClassTest.cpp` to oss builds.
Reviewed By: spalamarchuk
Differential Revision:
D6648831
fbshipit-source-id:
f8d8a727d63e4e8b83391db454de990027f1bad4
Yedidya Feldblum [Tue, 2 Jan 2018 00:46:40 +0000 (16:46 -0800)]
Fix copyright lines for Bits.h and move BitsBenchmark.cpp
Summary: [Folly] Fix copyright lines for `Bits.h` and move `BitsBenchmark.cpp`.
Reviewed By: spalamarchuk
Differential Revision:
D6648828
fbshipit-source-id:
5eed558ac2d47a1497d64173bc84a4ca27d79764
Yedidya Feldblum [Mon, 1 Jan 2018 07:56:43 +0000 (23:56 -0800)]
Fix some copyright lines in folly/
Summary:
[Folly] Fix some copyright lines in `folly/`.
(Note: this ignores all push blocking failures!)
Reviewed By: Orvid
Differential Revision:
D6648215
fbshipit-source-id:
6fc446028ff79aa44116424e86ad454077717f8e
Yedidya Feldblum [Mon, 1 Jan 2018 07:56:41 +0000 (23:56 -0800)]
Fix some copyright lines in folly/lang/
Summary:
[Folly] Fix some copyright lines in `folly/lang/`.
(Note: this ignores all push blocking failures!)
Reviewed By: Orvid
Differential Revision:
D6648214
fbshipit-source-id:
fa2afdb8369252b74b914622ad39f7f27261d2c1
Yedidya Feldblum [Mon, 1 Jan 2018 07:56:39 +0000 (23:56 -0800)]
Fix some copyright lines in folly/experimental/symbolizer/
Summary:
[Folly] Fix some copyright lines in `folly/experimental/symbolizer/`.
(Note: this ignores all push blocking failures!)
Reviewed By: Orvid
Differential Revision:
D6648183
fbshipit-source-id:
36f9df5af91400a37dfa5ee2b209ffd47d5069df
Yedidya Feldblum [Sun, 31 Dec 2017 00:08:32 +0000 (16:08 -0800)]
constexpr_pow
Summary:
[Folly] `constexpr_pow`.
The power function. Initially, supports nonnegative integers only.
Reviewed By: spalamarchuk
Differential Revision:
D6646376
fbshipit-source-id:
33a5a45f496b6f3be52d0cd7e3a5f2cd7edb3026
Yedidya Feldblum [Sun, 31 Dec 2017 00:08:31 +0000 (16:08 -0800)]
Give detail functions in ConstexprMath.h decorated names
Summary:
[Folly] Give detail functions in `ConstexprMath.h` decorated names.
So that other code also in `namespace folly::detail` which invokes the non-detail functions will result in ambiguity.
Reviewed By: spalamarchuk
Differential Revision:
D6646313
fbshipit-source-id:
679e4cfe1c90f494acacef8b2a38a453db4d79d5
Yedidya Feldblum [Sat, 30 Dec 2017 22:26:38 +0000 (14:26 -0800)]
Shift monotonic_coarse_clock into Chrono.h and rename it to coarse_steady_clock
Summary: The rename is to bring it closer in line with the naming conventions in the standard library, and the move is because it doesn't make sense to have clocks defined in stop_watch.
Reviewed By: Orvid
Differential Revision:
D6329551
fbshipit-source-id:
09d9a48eb47b8fd3761a1bd4350d9ca748fe1f96
Yedidya Feldblum [Sat, 30 Dec 2017 08:43:53 +0000 (00:43 -0800)]
Include synchronization/SaturatingSemaphore.h in the makefile
Summary:
It was missing, so it wasn't being installed.
Fixes https://github.com/facebook/folly/issues/727
Reviewed By: Orvid
Differential Revision:
D6642322
fbshipit-source-id:
70c10e1265410f73b6c0cd759ce51a5176bfef83
Yedidya Feldblum [Sat, 30 Dec 2017 03:55:06 +0000 (19:55 -0800)]
Tweaks to folly::call_once and folly::once_flag
Summary:
[Folly] Tweaks to `folly::call_once` and `folly::once_flag`.
In particular:
* Move the template class out of `detail`.
* Add parameterization by the atomic type.
* Expand the comments.
Reviewed By: Orvid
Differential Revision:
D6637250
fbshipit-source-id:
3806580ca0badf8464f637750c4873b2aba9f916
Aaryaman Sagar [Thu, 28 Dec 2017 16:53:54 +0000 (08:53 -0800)]
Added remove_cvref
Summary:
std::remove_cvref is like std::decay, but without the function to
pointer and array to pointer decays
Backport of http://en.cppreference.com/w/cpp/types/remove_cvref
Reviewed By: yfeldblum
Differential Revision:
D6639513
fbshipit-source-id:
2a5e252678aacc09acf6ce4565872e7efb9b48f3
Aaryaman Sagar [Thu, 28 Dec 2017 16:53:05 +0000 (08:53 -0800)]
folly::Indestructible interface improvement
Summary:
As it stands the user cannot use initializer list constructors in the
underlying type, this fixes that and provides a good interface change.
This allows them to use list initialization, which works with initializer
lists
Reviewed By: yfeldblum
Differential Revision:
D6620994
fbshipit-source-id:
c29199f97b434d84dd8d4cee2f00c5eccb316166
Dave Watson [Thu, 28 Dec 2017 15:46:10 +0000 (07:46 -0800)]
synchronization/ParkingLot
Summary:
A ParkingLot API inspired by linux futex syscall, and WebKit's parkingLot.
Extends the futex interface with lambdas, such that many different sleeping abstractions
can be built.
Reviewed By: yfeldblum, aary
Differential Revision:
D6581826
fbshipit-source-id:
dba741fe4ed34f27bfad5f5747adce85741441e0
Lee Howes [Wed, 27 Dec 2017 21:10:51 +0000 (13:10 -0800)]
Add getVia and getTryVia to SemiFuture.
Summary: Add getVia and getTryVia to SemiFuture to allow driving chains of work conveniently in the current thread.
Reviewed By: yfeldblum
Differential Revision:
D6631898
fbshipit-source-id:
324ef342a44d4ef502188b3cffde17103f0e6cb2
Lee Howes [Wed, 27 Dec 2017 20:54:44 +0000 (12:54 -0800)]
Move getTry to subclasses.
Summary:
Move getTry from FutureBase to Future and SemiFuture.
Make SemiFuture version move the result out for consistency with get.
Reviewed By: yfeldblum
Differential Revision:
D6638561
fbshipit-source-id:
551c0f06ed52ef6d8976a5971a5e90b3ab793da0
Lee Howes [Wed, 27 Dec 2017 18:07:40 +0000 (10:07 -0800)]
Add continuation to semifuture return test.
Summary: Add more detail to testing return of SemiFuture from a continuation to ensure correct behaviour.
Reviewed By: yfeldblum
Differential Revision:
D6637565
fbshipit-source-id:
096a7ca140e6bdef7baab6725e86d25cf79742d8
Lee Howes [Wed, 27 Dec 2017 04:31:33 +0000 (20:31 -0800)]
Add deprecation comments to folly::makeFuture.
Summary:
To ensure that we do not end up with continuable futures without attached executors we should deprecate folly::makeFuture. In most cases folly::makeSemiFuture is adequate here.
This diff only adds comments to dissuade future use.
Reviewed By: yfeldblum
Differential Revision:
D6628800
fbshipit-source-id:
c2b91df351cc5980c1bfb752f7536d320ef8168a
Lee Howes [Wed, 27 Dec 2017 04:11:48 +0000 (20:11 -0800)]
Add getSemiFuture to folly::SharedPromise
Summary: Adds getSemiFuture functionality to folly::SharedPromise. Implements getFuture in terms of this, using folly::InlineExecutor to ensure that there is no change of behaviour.
Reviewed By: yfeldblum
Differential Revision:
D6628723
fbshipit-source-id:
0ce7c7773b9290998ce87f84fa5d82ba957f0313
Yedidya Feldblum [Wed, 27 Dec 2017 01:17:08 +0000 (17:17 -0800)]
Namespacing and comments in folly/Likely.h
Summary:
[Folly] Namespacing and comments in `folly/Likely.h`.
This adds `FOLLY_LIKELY` and `FOLLY_UNLIKELY`.
Reviewed By: Orvid
Differential Revision:
D6636136
fbshipit-source-id:
da93220201cabca91b4477ab98269a0febb735db
Yedidya Feldblum [Tue, 26 Dec 2017 21:37:51 +0000 (13:37 -0800)]
Tweaks to AtomicStruct
Summary: [Folly] Tweaks to `AtomicStruct`.
Reviewed By: Orvid
Differential Revision:
D6636432
fbshipit-source-id:
274c118a732287219c569d7d3f4e170f275518f1
Lee Howes [Tue, 26 Dec 2017 21:34:26 +0000 (13:34 -0800)]
Ensure that returning a semifuture from a continuation works correctly.
Summary: Returning a SemiFuture from a continuation should work by correctly checking the types and returning a folly::Future on the same executor as the original future that .then was applied to.
Reviewed By: yfeldblum
Differential Revision:
D6597273
fbshipit-source-id:
cf2016a344d4b29f1d31c1da20c89df5b4cfe64e
Yedidya Feldblum [Tue, 26 Dec 2017 21:34:14 +0000 (13:34 -0800)]
Remove folly/detail/UncaughtExceptionCounter.h
Summary:
[Folly] Remove `folly/detail/UncaughtExceptionCounter.h`.
It's a thin and unnecessary shell around `folly/UncaughtExceptions.h`.
Reviewed By: Orvid
Differential Revision:
D6636260
fbshipit-source-id:
cdf6fa5fefc9fd69586c1c4c1a8443c5e8543b1c
Yedidya Feldblum [Tue, 26 Dec 2017 18:59:25 +0000 (10:59 -0800)]
constexpr_log2_ceil
Summary: [Folly] `constexpr_log2_ceil`, like `constexpr_log2` but rounding up.
Reviewed By: Orvid
Differential Revision:
D6636433
fbshipit-source-id:
a10f031cc9c91cfeba7b74bbf143895a311ca772
Yedidya Feldblum [Tue, 26 Dec 2017 18:57:54 +0000 (10:57 -0800)]
Move folly/detail/Sleeper.h to folly/synchronization/detail/
Summary: [Folly] Move `folly/detail/Sleeper.h` to `folly/synchronization/detail/`.
Reviewed By: Orvid
Differential Revision:
D6636459
fbshipit-source-id:
e0b37459fe721c96837b653e652c1bc6bfeb5dce
Gabriel Wicke [Tue, 26 Dec 2017 05:53:42 +0000 (21:53 -0800)]
Fix link to window tests in folly/future/README.md
Summary:
Window tests were moved to a separate file. Update the README to the
new location.
Reviewed By: yfeldblum
Differential Revision:
D6636178
fbshipit-source-id:
0313dfe80de7686e1e530ed9eb4bbcefb459633c
Yedidya Feldblum [Tue, 26 Dec 2017 02:32:30 +0000 (18:32 -0800)]
Format digits10
Summary: [Folly] Format `digits10`.
Reviewed By: Orvid
Differential Revision:
D6636190
fbshipit-source-id:
6e6b834f6c9070d58f8e2b085b09df8b857fe878
Yedidya Feldblum [Tue, 26 Dec 2017 01:07:39 +0000 (17:07 -0800)]
Move folly/AtomicStruct.h to folly/synchronization/
Summary: [Folly] Move `folly/AtomicStruct.h` to `folly/synchronization/`.
Reviewed By: Orvid
Differential Revision:
D6636072
fbshipit-source-id:
87098e25fc40d0d60b4a657ba395418388e170fc
Yedidya Feldblum [Mon, 25 Dec 2017 23:35:53 +0000 (15:35 -0800)]
Remove unused boost dep from Conv.h
Summary: [Folly] Remove unused `boost` dep from `Conv.h`.
Reviewed By: Orvid
Differential Revision:
D6636040
fbshipit-source-id:
77dbfcf95f68c05346bce52d1a965e465c2efe3b
Yedidya Feldblum [Sun, 24 Dec 2017 02:15:37 +0000 (18:15 -0800)]
Update homebrew script to use gtest 1.8.0
Summary:
[Folly] Update homebrew script to use gtest 1.8.0, to be consistent with the docs.
Closes #722.
Reviewed By: Orvid
Differential Revision:
D6633606
fbshipit-source-id:
5e9a5790100fe7a408be7a9a77c847bece91d405
Yedidya Feldblum [Sat, 23 Dec 2017 08:09:39 +0000 (00:09 -0800)]
Move expensive Singleton code to .cpp
Summary:
[Folly] Move expensive `Singleton` code to `.cpp`.
Including string manipulation, `ostream::operator<<` operations, `throw` statements, etc,
Reviewed By: ot
Differential Revision:
D6632052
fbshipit-source-id:
82e0033d5042b02951cf3b05c55cf62c97cc2b6d
Lee Howes [Sat, 23 Dec 2017 03:29:14 +0000 (19:29 -0800)]
Add getSemiFuture to folly::Promise
Summary: Also deprecates folly::getFuture function.
Reviewed By: yfeldblum
Differential Revision:
D6594299
fbshipit-source-id:
67435f35dca660da049cd8c505ee9a21424c0d2b
Yedidya Feldblum [Sat, 23 Dec 2017 03:02:54 +0000 (19:02 -0800)]
Namespace portability symbols better in Singleton.cpp
Summary: [Folly] Namespace portability symbols better in `Singleton.cpp`.
Reviewed By: Orvid
Differential Revision:
D6631290
fbshipit-source-id:
eb802ace6a9bf704e011eb44710922c997a9cd8e
Yedidya Feldblum [Fri, 22 Dec 2017 04:31:44 +0000 (20:31 -0800)]
Fix the assumption in the propagate_const test about local layout
Summary: [Folly] Fix the assumption in the `propagate_const` test about local layout.
Reviewed By: aary
Differential Revision:
D6624962
fbshipit-source-id:
6871dc20f2b5ec2d1a86f520030c7cda8a225958
Aaryaman Sagar [Fri, 22 Dec 2017 03:06:56 +0000 (19:06 -0800)]
Returning reference to *this from propagate_const
Summary: As title
Reviewed By: yfeldblum
Differential Revision:
D6620395
fbshipit-source-id:
477aae84b2bbde2e79d46ae93c285909b56f575e
Andrii Nakryiko [Thu, 21 Dec 2017 20:47:30 +0000 (12:47 -0800)]
Fix crashing on corrupted ELF binaries with invalid offsets in ELF header.
Summary:
There are cases where ELF binaries are running fine, but have slightly
corrupted ELF headers, e.g., with section headers offset pointing beyond boundaries
of file. I'm guessing this is due to running strip or objdump with either some
particular combination of flags or some due to buggy version of those tools. This
change prevents from crashing on such files.
Reviewed By: yfeldblum
Differential Revision:
D6616027
fbshipit-source-id:
8cb3ac4475a51d1f1045c395977a6a77fbefffb2
Chad Austin [Wed, 20 Dec 2017 21:37:15 +0000 (13:37 -0800)]
test that the value remains alive even if the .then callback takes no arguments
Summary:
It was not clear to me, if a callback takes no arguments, the
underlying value is guaranteed to be alive during the execution of the
callback, so I wrote these tests.
Reviewed By: yfeldblum
Differential Revision:
D6594921
fbshipit-source-id:
6a658afc1bf4d29eaa9c62269ddc21c7f897ad01
Yedidya Feldblum [Wed, 20 Dec 2017 19:41:29 +0000 (11:41 -0800)]
Kill FOLLY_ALIGNED etc
Summary:
[Folly] Kill `FOLLY_ALIGNED` etc.
`alignas` is standardized as of C++11. Let us just use that.
Replace:
* `FOLLY_ALIGNED` with `alignas`
* `FOLLY_ALIGNED_MAX` with `alignas(folly::max_align_v)`
* `FOLLY_ALIGN_TO_AVOID_FALSE_SHARING` with `alignas(folly::hardware_destructive_interference_size)`
Because where `alignas` may be placed is more restrictive than where attributes may be placed, we also need to move these directives in some cases on top of doing the replacement.
Reviewed By: Orvid
Differential Revision:
D6555167
fbshipit-source-id:
4b05b570bace3f8c0fe810b6dd58781dd45757f4
Yedidya Feldblum [Wed, 20 Dec 2017 06:31:53 +0000 (22:31 -0800)]
Fix Build: propagate_const under GCC
Summary: [Folly] Fix Build: `propagate_const` under GCC.
Reviewed By: aary
Differential Revision:
D6609722
fbshipit-source-id:
47d8b0f2d54e0e5834383ea64c93af30927c921d
Zheng Yan [Wed, 20 Dec 2017 03:40:14 +0000 (19:40 -0800)]
Add readWithPriority to PriorityMPMCQueue
Summary: Add readWithPriority to PriorityMPMCQueue
Reviewed By: yfeldblum
Differential Revision:
D6606604
fbshipit-source-id:
07382e3c6d0f53a8727c059410c0577cf0aac82c
Yedidya Feldblum [Wed, 20 Dec 2017 03:02:51 +0000 (19:02 -0800)]
Add hardware_destructive_interference_size
Summary:
[Folly] Add `hardware_destructive_interference_size` and `hardware_constructive_interference_size` to `folly/lang/Align.h`.
As backports from C++17. Which may require keeping, depending on how stanard libraries choose to implement these.
And replace `CacheLocality::kFalseSharingRange` with `hardware_destructive_interference_size`.
Reviewed By: ot
Differential Revision:
D6554817
fbshipit-source-id:
bff49f5ca8b01d38fa806076f99201355df76cd9
Yedidya Feldblum [Wed, 20 Dec 2017 02:57:03 +0000 (18:57 -0800)]
propagate_const
Summary: [Folly] `propagate_const`, backported from C++ Library Fundamentals TS v2.
Reviewed By: ericniebler
Differential Revision:
D6589681
fbshipit-source-id:
cdc8981d17938b99afe60e2baefff7deb5316612
Dave Watson [Tue, 19 Dec 2017 22:30:19 +0000 (14:30 -0800)]
Fix erase in Iterate (2)
Summary:
Previously
D6579707.
Correctly advance to next item if we erase the current element. Corner cases were slightly off if we were at the end of a hash chain.
Reviewed By: yfeldblum
Differential Revision:
D6603518
fbshipit-source-id:
acb959e5bcd5da1c3df642b75985d464fdd3b23d
Dave Watson [Tue, 19 Dec 2017 21:17:28 +0000 (13:17 -0800)]
Fix ThreadLocal races
Summary:
I misread the ThreadLocal docs, thread destruction functions do *not* grab the accessAllTHreads_ lock
unless you use *strict* mode, and even then, it is only a read lock.
Easy enough to make the thread-destruction global bits to be atomic / use folly::Synchronized.
Reviewed By: yfeldblum
Differential Revision:
D6592905
fbshipit-source-id:
4ae600dff4c8c04751483a452ca7c07ef3f26380
Yedidya Feldblum [Tue, 19 Dec 2017 19:24:17 +0000 (11:24 -0800)]
Switch the Baton template params
Summary: [Folly] Switch the `Baton` template params for consistency with `SaturatingSemaphore`.
Reviewed By: davidtgoldblatt
Differential Revision:
D6591060
fbshipit-source-id:
44d6243d3185d95364a27e497216cc02fb3bc2e8
Dustin Pho [Tue, 19 Dec 2017 14:51:29 +0000 (06:51 -0800)]
Secure RNG utilities
Summary: Adding secure RNG utility functions (rand32, rand64, oneIn, randDouble01, randDouble).
Reviewed By: yfeldblum
Differential Revision:
D6551975
fbshipit-source-id:
720d138de1329669b1a15eb3e9cb3fe91ce982a4
Yedidya Feldblum [Tue, 19 Dec 2017 01:13:12 +0000 (17:13 -0800)]
Baton::ready, a const variant of try_wait
Summary: [Folly] `Baton::ready`, a `const` variant of `try_wait`.
Reviewed By: djwatson
Differential Revision:
D6508064
fbshipit-source-id:
ba458577574ba58165408a93238da7eb09adf1e6
Giuseppe Ottaviano [Mon, 18 Dec 2017 16:40:40 +0000 (08:40 -0800)]
Make global executors shutdown-safe
Summary:
The `get*Executor()` APIs don't check whether the singletons
haven't been destroyed already. Add a check and allow to return
`nullptr` during shutdown.
Also do a general clean up of the code, there was no reason to use
three independent singletons (non-atomically destroyed) for each
executor.
Reviewed By: philippv, luciang
Differential Revision:
D6589486
fbshipit-source-id:
20fb835db7e446bd811bbd6d5ddbc41db9e98b54
Christopher Dykes [Mon, 18 Dec 2017 04:56:49 +0000 (20:56 -0800)]
Remove the folly/Assume.h shim
Summary: The shim existed so that hhvm-third-party could be updated, and it has been, so it's time to remove the shim.
Reviewed By: yfeldblum
Differential Revision:
D6590439
fbshipit-source-id:
3e1b039c1df6cf1e74102f7b7b26aa90fae31ec0
Maged Michael [Sun, 17 Dec 2017 01:20:04 +0000 (17:20 -0800)]
Test UnboundedBlockingQueue in ThreadPoolExecutorTest
Summary: Test UnboundedBlockingQueue for the case in
D3527722
Reviewed By: ot
Differential Revision:
D6587163
fbshipit-source-id:
1465991018187c5f841e6e3e7a11676390e2f8f2
Maged Michael [Sat, 16 Dec 2017 22:13:47 +0000 (14:13 -0800)]
UnboundedQueue: Change try_dequeue variants to fail only if the queue is empty
Summary:
The current semantics of try_dequeue variants can cause problems in cases where based on external dependencies the consumer is guaranteed that the queue is not empty and depends on the success of try_dequeue. See https://github.com/facebook/wangle/commit/
abd07a06cae09efcd4347a9a019d59ae8a013c3f
This diff changes the semantics so that try_dequeue operations fail only if the queue is empty.
Reviewed By: yfeldblum
Differential Revision:
D6586156
fbshipit-source-id:
25d6085e28d3e24034ecf6a8bafab51c95464b01
Maged Michael [Sat, 16 Dec 2017 17:48:36 +0000 (09:48 -0800)]
UnboundedQueue: Fix advanceHead
Summary:
Without the fix multiple consumers may update head concurrently and cause it to lag. If this persists until the destruction time of the queue, some segments may be incorrectly retired twice.
The fix is to wait for head to advance to the current segment first before advancing head to the next segment.
Reviewed By: djwatson
Differential Revision:
D6588135
fbshipit-source-id:
3e916441bff5ad3f27de418601990c59a0b89bc2
Yedidya Feldblum [Sat, 16 Dec 2017 02:52:25 +0000 (18:52 -0800)]
Group the fields of UnboundedQueue
Summary:
[Folly] Group the fields of `UnboundedQueue`.
Into helper structures which are organized by, and aligned by, access.
This is all compiled away and has no runtime cost.
Reviewed By: magedm
Differential Revision:
D6555031
fbshipit-source-id:
94424747bf76a0a9a2bd59b6a94749efb391d6a7
Maged Michael [Sat, 16 Dec 2017 02:18:07 +0000 (18:18 -0800)]
Fix comments in UnboundedQueue and DynamicBoundedQueue
Summary: Fix typos and wording in comments.
Reviewed By: yfeldblum
Differential Revision:
D6584559
fbshipit-source-id:
b4b72f6c25c9f9e6fb3f2fbee69eea4a39b5c004
Yanbo Xu [Sat, 16 Dec 2017 01:10:05 +0000 (17:10 -0800)]
Revert
D6579707: [folly/ConcurrentHashMap] Fix erase in Iterate
Summary:
This reverts commit
a45f47a53e106d22daa9cf57be6c40c4f6a430d9
bypass-lint
Differential Revision:
D6579707
fbshipit-source-id:
6f6c35de5e05f8cf37491471e1ae1272290fe61b
Keith Daigle [Fri, 15 Dec 2017 22:17:36 +0000 (14:17 -0800)]
Fix PicoSpinLock on aarch64
Summary:
Found that building folly on aarch64 gave errors with
picospinlock. Looked and found that MSVC used casts
so I figured I'd try that
Reviewed By: yfeldblum
Differential Revision:
D6504689
fbshipit-source-id:
9565bae5ffab485da407b8609be92ef7db10ab72
Yanbo Xu [Fri, 15 Dec 2017 21:43:53 +0000 (13:43 -0800)]
Fix erase in Iterate
Summary:
The iterator returned from erase api could skip nodes. The fix is to
initialize the returned iterator with right value.
Reviewed By: djwatson
Differential Revision:
D6579707
fbshipit-source-id:
a45f47a53e106d22daa9cf57be6c40c4f6a430d9
Yedidya Feldblum [Fri, 15 Dec 2017 07:26:47 +0000 (23:26 -0800)]
Fix folly::max_align_v for Clang on ARMv7
Summary:
[Folly] Fix `folly::max_align_v` for Clang on ARMv7.
There is some problem with computing the correct result of `alignof` for a compound `union` POD type, because why wouldn't there be. The result *should* just be the max of the `alignof` of the type of each field if each field is default aligned - but not on some platforms! So we must compute the max directly.
Reviewed By: mzlee, Orvid
Differential Revision:
D6573548
fbshipit-source-id:
512a255fda64795104d71fde14372befa3bf41e4
Yedidya Feldblum [Fri, 15 Dec 2017 04:59:51 +0000 (20:59 -0800)]
Let Baton methods be noexcept
Summary: [Folly] Let `Baton` methods be `noexcept`.
Reviewed By: djwatson
Differential Revision:
D6508057
fbshipit-source-id:
2138a228d8291e79e9368cb77b0f63f4412524dc
Dan Melnic [Fri, 15 Dec 2017 03:59:27 +0000 (19:59 -0800)]
Fix zerocopy AsyncSocket memory leaks
Summary:
We currently leak ptr entries due to a missing map erase call in AsyncSocket::releaseZeroCopyBuf.
Also addZeroCopyBuf called when the bytesWritten == 0 will cause and extra id to be allocated. This will delay the deletion of the last IOBuf sent via zerocopy. The number of buffers can accumulate over time if the same bytesWritten == 0 situation is encountered.
Found when running the nbd-server zero downtime upgrade during heavy fio traffic.
Add an AsyncSocket::processZeroCopyWriteInProgress so we can drain the zerocopy msg error queue even after we set the ReadCallback to nullptr.
Reviewed By: djwatson
Differential Revision:
D6552982
fbshipit-source-id:
3d2fdca84ec3b5fc46c3bed06c0c9ede66ed565a
Chen Shen [Thu, 14 Dec 2017 23:26:53 +0000 (15:26 -0800)]
Fix xlog docs
Summary: When I was investigating the difference between glog/xlog I encountered this.
Reviewed By: yfeldblum
Differential Revision:
D6572117
fbshipit-source-id:
4130deb6cfed7cfb7d2433cdab292481beb2469f
Yedidya Feldblum [Thu, 14 Dec 2017 23:07:18 +0000 (15:07 -0800)]
Use explicit memory order in Baton::post
Summary: [Folly] Use explicit memory order in `Baton::post`.
Reviewed By: djwatson
Differential Revision:
D6502268
fbshipit-source-id:
a379ea711f165e3645ac2127a49824f46225b80a
Kyle Nekritz [Thu, 14 Dec 2017 19:32:57 +0000 (11:32 -0800)]
Move security protocol and application protocol APIs to AsyncTransport.
Summary: They belong here rather than AsyncTransportWrapper.
Reviewed By: siyengar
Differential Revision:
D6568209
fbshipit-source-id:
0856dba0b2d527ae68d33942b28e2c485a5b1f46
Maged Michael [Thu, 14 Dec 2017 18:33:06 +0000 (10:33 -0800)]
Dynamic Bounded Queue
Summary:
DynamicBoundedQueue supports:
- Dynamic memory usage that grows and shrink in proportion to the number of elements in the queue.
- Adjustable capacity that helps throttle pathological cases of producer-consumer imbalance that may lead to excessive memory usage.
- The adjustable capacity can also help prevent deadlock by allowing users to temporarily increase capacity substantially to guarantee accommodating producer requests that cannot wait.
- SPSC, SPMC, MPSC, MPMC variants.
- Blocking and spinning-only variants.
- Inter-operable non-waiting, timed until, timed for, and waiting variants of producer and consumer operations.
- Optional variable element weights.
Reviewed By: djwatson
Differential Revision:
D6462123
fbshipit-source-id:
5c7a7d88c3fa273211702af9ff78f6302afd2276
Maged Michael [Thu, 14 Dec 2017 02:54:26 +0000 (18:54 -0800)]
UnboundedQueue: Use alignas instead of FOLLY_ALIGNED
Summary: Use alignas instead of FOLLY_ALIGNED
Reviewed By: Orvid
Differential Revision:
D6554984
fbshipit-source-id:
5b11ac387faa137aa8dd0c35b6e9bb999cf0bf2d
Yedidya Feldblum [Thu, 14 Dec 2017 02:00:55 +0000 (18:00 -0800)]
Fix AsyncSocketTest.WriteErrorCallbackBytesWritten
Summary:
[Folly] Fix `AsyncSocketTest.WriteErrorCallbackBytesWritten`.
Thanks to congestion, especially when the tests are run concurrently, the expectations in the test were too restrictive.
If only 20KB are read, it is possible that only 20KB are acknowledged. The expectation was that if 20KB are read and the recv buffer and send buffer are both 8KB and 24KB are written then all 24KB are acknowledged, but congestion control disagrees.
It is possible that any number of bytes are written to the send buffer, from 28KB up to 40KB. And we have to explicitly wait for 28KB to be written even to know that (otherwise we only know that 20KB are written).
Differential Revision:
D6550804
fbshipit-source-id:
100d086972c1526b909da0dbb6e609c144d7b17b
Yedidya Feldblum [Thu, 14 Dec 2017 01:08:39 +0000 (17:08 -0800)]
constexpr_ceil
Summary: [Folly] `constexpr_ceil`, an integral rounding-up util.
Reviewed By: Orvid
Differential Revision:
D6558042
fbshipit-source-id:
6b42add9bf2e3605baf71391130c2a2c88cc4385
Yedidya Feldblum [Thu, 14 Dec 2017 00:29:37 +0000 (16:29 -0800)]
Move max_align_v and max_align_t to folly/lang/Align.h
Summary:
[Folly] Move `max_align_v` and `max_align_t` to `folly/lang/Align.h`.
And drop the macro `FOLLY_ALIGNED_MAX` - just use `alignas(max_align_v)` instead.
Reviewed By: Orvid
Differential Revision:
D6554677
fbshipit-source-id:
cacb335b141623506a41e95e0740613374279c6f