1. 15 Jun, 2018 4 commits
    • Nathan Bronson's avatar
      add visitContiguousRanges iteration API to F14 · de8c59ab
      Nathan Bronson authored
      Summary:
      When passing elements of a set or map through a bulk API that understands
      arrays, it is a useful optimization to be able to iterator or visit
      contiguous ranges rather than individual elements.  This diff adds
      visitContiguousRanges to F14 maps and sets, which repeatedly passes a
      contiguous range to the visitor.  The range is identified with a begin
      and end value_type const*.  Each value_type of the table will be included
      in exactly one of the passed ranges, and the number of ranges will be
      minimized whenever possible.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D8332897
      
      fbshipit-source-id: a7cd5d670b14faeeef97497cccd4cb0a3b07dd50
      de8c59ab
    • Nathan Bronson's avatar
      better code for aarch64 F14 maps and sets · dc017eb6
      Nathan Bronson authored
      Summary:
      vshrn_n_u16 can be used to efficiently get a bit of information
      from every byte in a 16-byte vector into an 8-byte vector, which is better
      than the previous NEON sequence used during tag matching.  The resulting
      code is faster and smaller on aarch64.  x86_64 code is refactored but
      should compile to the same assembly.
      
      Reviewed By: shixiao
      
      Differential Revision: D8420917
      
      fbshipit-source-id: 21a9f920f55ffc479b20fee6882a5987b626c89a
      dc017eb6
    • Marshall Cline's avatar
      modernize Future::get(): 1/n = add rval-qual overload invalidates *this · ffcba177
      Marshall Cline authored
      Summary: Add rvalue-qualified overloads of Future::get() and get(dur) which invalidate their this-object.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D8242442
      
      fbshipit-source-id: 4dea8a41878d59f6088504df2b8b3e686d581c89
      ffcba177
    • Marshall Cline's avatar
      modernize Future::get(): 4/n = codemod to std::move for non-ptr exprs · edd050b1
      Marshall Cline authored
      Summary:
      Codemod non-pointer expressions:
         - expr.get() ==> std::move(expr).get()
         - expr.get(dur) ==> std::move(expr).get(dur)
      when expr is not already an xvalue.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D8430137
      
      fbshipit-source-id: 20da463f9cceb5cb1e71a7226f3b11d1e8007011
      edd050b1
  2. 14 Jun, 2018 3 commits
    • Maged Michael's avatar
      hazptr: Fix hazptr_priv dtor not to accept new retired objects · de0344eb
      Maged Michael authored
      Summary: When hazptr_priv dtor pushes objects to the domain and that happens to trigger (either due to timed cleanup or reaching the bulk reclaim threshold) bulk reclamation that retires objects. These newly retired objects should be pushed to the domain and not into the hazptr_priv.
      
      Reviewed By: djwatson
      
      Differential Revision: D8410795
      
      fbshipit-source-id: c7af01cc41a1d82896bd3700fa072f698c0aa77b
      de0344eb
    • Andrii Grynenko's avatar
      Implement operator timed_wait · 5c3ad99e
      Andrii Grynenko authored
      Summary: Currently the implementation just relies on futures::sleep. Ideally it should be able to use Executor's timer if available.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D8404592
      
      fbshipit-source-id: e952a0cc3d99bc528ea14ff5c68835d63a71e685
      5c3ad99e
    • Yedidya Feldblum's avatar
      Optimize Futures Core state-dependent fields · acf001d0
      Yedidya Feldblum authored
      Summary:
      [Folly] Optimize Futures Core state-dependent fields, controlling when they are constructed and destructed.
      
      * Reduces layout size by removing the `Optional` wrapper for the result.
      * Reduces code size by removing checks and destructions in assignment operators which are not in constructors for `Optional`, `Try`, `Function`, and `shared_ptr`.
      
      Reviewed By: andriigrynenko
      
      Differential Revision: D8346365
      
      fbshipit-source-id: 83ac164dc36934065f2fcfb112440869d023b674
      acf001d0
  3. 13 Jun, 2018 12 commits
    • Andrii Grynenko's avatar
      VirtualExecutor join should wait for function to be destroyed · 7e9d7487
      Andrii Grynenko authored
      Reviewed By: aary
      
      Differential Revision: D8393345
      
      fbshipit-source-id: 5fc9bbfb3fa1dc63077cd406f4335c2a7967a53d
      7e9d7487
    • Nathan Bronson's avatar
      heterogeneous mutation for F14 maps and sets · b51d7408
      Nathan Bronson authored
      Summary:
      This diff extends heterogeneous key handling (when the hasher and
      key equality functor are transparent) to mutating operations.  If a key
      of type K was previously eligible for heterogeneous find and key_type can
      be constructed from the key, then that construction can be deferred until
      after it is verified that the key is not previously in the table when
      using any of the operations that may insert a new element.  If the key was
      already present then this avoids the construction of key_type entirely.
      Heterogeneous erase is also added in the obvious fashion.
      
      Construction of key_type from K can be accomplished without key_type's
      cooperation by the use of an explicit conversion operator, such as the
      explicit operator std::string recently added to StringPiece.  That means
      that a F14 map or set with std::string key and transparent StringPiece
      hash and equality can now use StringPiece natively as a key.
      
      Destructuring is applied whenever possible, so the heterogeneous key
      type K may be found as the first element of a pair (for map insert or
      emplace) or even inside the first tuple when using map emplace with
      std::piecewise_construct.
      
      This diff adds heterogeneous key support to
      
          Map::insert
          Map::insert_or_assign
          Map::emplace
          Map::try_emplace
          Map::operator[]
          Set::insert
          Set::emplace
      
      Reviewed By: yfeldblum
      
      Differential Revision: D8301887
      
      fbshipit-source-id: 1a45e13739c550f094afe09123839a3c9cd892ff
      b51d7408
    • Yedidya Feldblum's avatar
      In Futures Core, destroy context when destroying callback · 54b202c0
      Yedidya Feldblum authored
      Summary:
      [Folly] In Futures Core, destroy context when destroying callback since they basically go together.
      
      Also removes expectations in an Eden FS test case which affirm the old behavior, along with a TODO to remove the expectations once the affirmed behavior is fixed.
      
      Reviewed By: marshallcline
      
      Differential Revision: D8347040
      
      fbshipit-source-id: ed9fec932ad1e0aa1e40675cf70081d19bbe4325
      54b202c0
    • Yedidya Feldblum's avatar
      Use a simpler atomic state in Futures Core · cd498c15
      Yedidya Feldblum authored
      Summary:
      [Folly] Use a simpler atomic state in Futures `Core` v.s. `FSM` which abstracts an atomic state plus a spin-lock.
      
      The `FSM` abstraction can be useful in more complex cases, but is not needed in the current case. All that is needed is a single barrier state, which is `Done` - setting callback and result happen before state transitions to `Done`, while invoking callback with result happens after state transitions to `Done`.
      
      Reviewed By: marshallcline
      
      Differential Revision: D8083703
      
      fbshipit-source-id: 42d96b41cbdac5e7c42f3f8a661d5db3113655db
      cd498c15
    • Yedidya Feldblum's avatar
      Use terminate_with in Futures Core invalid transitions · f7f840c3
      Yedidya Feldblum authored
      Summary:
      [Folly] Use `terminate_with` in Futures `Core` invalid transitions.
      
      Both `Promise` and `Future` check state validity before calling the `Core` transition methods and throws in invalid state. So `Core` no longer needs to throw and may terminate instead.
      
      Reviewed By: marshallcline
      
      Differential Revision: D8346113
      
      fbshipit-source-id: 9ff158673149096789b29544453262797b06d441
      f7f840c3
    • Yedidya Feldblum's avatar
      folly::terminate_with · a711f13b
      Yedidya Feldblum authored
      Summary: [Folly] `folly::terminate_with`, to terminate as if by forwarding to `folly::throw_exception` but in a `noexcept` context.
      
      Reviewed By: marshallcline
      
      Differential Revision: D8345962
      
      fbshipit-source-id: bc5cf5d3a3e1f085dd2989c940a6ea753a520cbf
      a711f13b
    • Yedidya Feldblum's avatar
      Let Future check before adding a continuation · 1e13bc0f
      Yedidya Feldblum authored
      Summary:
      [Folly] Let Future check before adding a continuation whether a continuation has already been added.
      
      Requires making wait behave more like timed-wait; alternatively, it would be possible to add a reverse state transition, but there seems not to be a need.
      
      Reviewed By: marshallcline
      
      Differential Revision: D8344923
      
      fbshipit-source-id: f077fb4b83b92c96af9a83e1b1479c4cb41b048a
      1e13bc0f
    • Yedidya Feldblum's avatar
      Range explicit conversion to any · 24d559b8
      Yedidya Feldblum authored
      Summary:
      [Folly] `Range` explicit conversion to any target type, with overloads enabled only for target types which are explicitly constructible from two iterators.
      
      Also changes `Range::to` to do similar, but permits additional arguments to be forwarded as trailing arguments to the target type constructor.
      
      For example, this makes `std::string`, `folly::fbstring`, `std::vector<char>`, and all variants with default-constructible custom allocators, to be constructible from (but not convertible from) `folly::StringPiece`.
      
      Reviewed By: nbronson
      
      Differential Revision: D8386240
      
      fbshipit-source-id: 2426191d1c8ac71cd5832f784e83bbe09b8716e7
      24d559b8
    • Michael Bolin's avatar
      Add task ID for TODOs about log rotation. · 074433f1
      Michael Bolin authored
      Summary:
      There were two TODOs that I knew of in fbcode about this, so I decided to file
      a task so we can track it.
      
      Reviewed By: simpkins
      
      Differential Revision: D8176921
      
      fbshipit-source-id: 0ca45620050639659ac038dbed43acf4634f7a1d
      074433f1
    • Michael Park's avatar
      Added `SemiFuture::delayed` · 301a89b5
      Michael Park authored
      Summary:
      Added `FutureBase::delayedImplementation`. Kept the existing semantics of
      `Future::delayed` and `Future::delayedUnsafe`. `SemiFuture::delayed` uses
      the inline executor which means we could execute our trivial lambda on
      the `Timekeeper` thread. However we ultimately return a `SemiFuture`,
      so we're not necessarily on the hook to execute an arbitrarily complex
      continuation.
      
      NOTE: This is still possible if the user explicitly specifies
      `.via(inline_executor)`. Perhaps we should consider disallowing, or maybe linting for this.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D8372515
      
      fbshipit-source-id: e660dbf2a2bb084e11c5e57d1badacf09425f939
      301a89b5
    • Alfredo Altamirano's avatar
      Support constructing TDigest from centroids and getting centroids from TDigest · 856466e2
      Alfredo Altamirano authored
      Summary:
      To implement tdigest aggregation in scuba, we need to be able to deserialize and serialize the digests.
      I added a getter for the centroids so that we can serialize the tdigest, and added a constructor to create one from the list of centroids.
      
      Last diff was reverted because of a build error :(
      We were seeing an error only in opt mode because it's an error in gcc but not in clang.
      
      Differential Revision: D8381617
      
      fbshipit-source-id: 768a12795aeb02737eb9b060f80d01608685c91d
      856466e2
    • Aaryaman Sagar's avatar
      assert the presence of the KeepAlive functionality with VirtualExecutor · f2c8ffe5
      Aaryaman Sagar authored
      Summary: title
      
      Reviewed By: yfeldblum, andriigrynenko
      
      Differential Revision: D8386575
      
      fbshipit-source-id: c900c8692b10004f2d9fbd95fa8ca96b3b8517d2
      f2c8ffe5
  4. 12 Jun, 2018 5 commits
    • Yedidya Feldblum's avatar
      Skip trivial-copyability Expected expectations under gcc49 · 925aeb00
      Yedidya Feldblum authored
      Summary:
      [Folly] Skip trivial-copyability `Expected` expectations under gcc49.
      
      The focus is on gcc5+; all that is needed for now is to keep code compiling with gcc49, but not necessarily to ensure optimal trivial-copyability behavior.
      
      Reviewed By: Orvid
      
      Differential Revision: D8364392
      
      fbshipit-source-id: b0062193c844509b6bf26ed632dd8e5d4bdf77d2
      925aeb00
    • Igor Sugak's avatar
      remove UNDEFINED_SANITIZER use · 544a8c33
      Igor Sugak authored
      Summary: Assume, when UBSAN is used, it is always used on top of ASAN.
      
      Reviewed By: luciang
      
      Differential Revision: D8360231
      
      fbshipit-source-id: 3106cfa53567b18f199e9303ea4c14a464ff03cc
      544a8c33
    • Alex Guzman's avatar
      Pull sodium fbcode_builder spec out · dc6ade21
      Alex Guzman authored
      Summary: Makes a spec for libsodium.
      
      Reviewed By: knekritz
      
      Differential Revision: D8228801
      
      fbshipit-source-id: 18f623bce0bbc07f711129b15b78d56b6c852bf7
      dc6ade21
    • Yedidya Feldblum's avatar
      A cache for InlineExecutor singleton · c7d8ba07
      Yedidya Feldblum authored
      Summary: [Folly] A cache for `InlineExecutor` singleton, which can be inlined into callers with little extra code compared to calling the backing function directly.
      
      Reviewed By: marshallcline
      
      Differential Revision: D8339793
      
      fbshipit-source-id: d2be0128e617cfefe66809eb44ce40e1a8ae2dfb
      c7d8ba07
    • Yedidya Feldblum's avatar
      Write Promise::setException in terms of Promise::setTry · 3dd9d51b
      Yedidya Feldblum authored
      Summary: [Folly] Write `Promise::setException` in terms of `Promise::setTry`.
      
      Reviewed By: marshallcline
      
      Differential Revision: D8344928
      
      fbshipit-source-id: 90e21219f054329eca7ae1a6c2ca731a16328b6f
      3dd9d51b
  5. 11 Jun, 2018 5 commits
  6. 09 Jun, 2018 4 commits
    • Yedidya Feldblum's avatar
      A shorter name for executor local variable in Future methods · 467571e4
      Yedidya Feldblum authored
      Summary:
      [Folly] A shorter name for executor local variable in `Future` methods. Reads more nicely, with less awkward formatting.
      
      When the scope of a local variable's use is just a few lines, long names are not quite so critical.
      
      Reviewed By: marshallcline
      
      Differential Revision: D8339451
      
      fbshipit-source-id: 5d50cf0ce3473c1a79afeeddb9e1257cccf73e31
      467571e4
    • Yedidya Feldblum's avatar
      No need for qualifying InlineExecutor in Futures · ac16a6fc
      Yedidya Feldblum authored
      Summary: [Folly] No need for qualifying `InlineExecutor` in `Futures` - they are both in `namespace folly` already.
      
      Reviewed By: marshallcline
      
      Differential Revision: D8307058
      
      fbshipit-source-id: 17a0ecde1e57f1c0c88cbac09bbd1bb3daf7a24e
      ac16a6fc
    • Yedidya Feldblum's avatar
      Use InlineExecutor singleton in Future wait · 2b4f07ee
      Yedidya Feldblum authored
      Summary:
      [Folly] Use `InlineExecutor` singleton in `Future` wait v.s. letting the executor be `nullptr`.
      
      The effect is the same, but just more explicit.
      
      Reviewed By: marshallcline
      
      Differential Revision: D8306902
      
      fbshipit-source-id: fc90704de670b1ca9956253383fadad3be297847
      2b4f07ee
    • Andrii Grynenko's avatar
      VirtualExecutor · fc75fc56
      Andrii Grynenko authored
      Summary:
      Executor adaptor which allows joining only tasks scheduled through this VirtualExecutor instance without joining all other tasks in a wrapped Executor.
      This is very similar to VirtualEventBase, but works for any Executor.
      
      Reviewed By: yfeldblum, aary
      
      Differential Revision: D8342064
      
      fbshipit-source-id: 420b6390e2da88c4826e6d22bc8f3b3585525214
      fc75fc56
  7. 08 Jun, 2018 7 commits
    • Yedidya Feldblum's avatar
      Ensure sleep duration in logging RateLimiter test · 12e65c2d
      Yedidya Feldblum authored
      Summary: [Folly] Ensure sleep duration in logging `RateLimiter` test to make sure that there is no chance of waking up from the sleep too early.
      
      Reviewed By: Orvid
      
      Differential Revision: D8330018
      
      fbshipit-source-id: f1222e1da50f8360267f9e1c5e0f24897b7b8f47
      12e65c2d
    • Nathan Bronson's avatar
      clang-format in preparation for changes · 51196c8d
      Nathan Bronson authored
      Reviewed By: shixiao
      
      Differential Revision: D8333485
      
      fbshipit-source-id: 02f74700272b663474c2f02535265ffb6f4bcd22
      51196c8d
    • Marshall Cline's avatar
      add method-level contracts to SemiFuture & Future · 9d6a5522
      Marshall Cline authored
      Summary:
      method-level contracts
      
      (Note: this ignores all push blocking failures!)
      
      Reviewed By: yfeldblum
      
      Differential Revision: D8132350
      
      fbshipit-source-id: d79b1d88a38ea97de8d0e841e822805aff3959ae
      9d6a5522
    • Saif Hasan's avatar
      Fix oss build · 71bfdd3e
      Saif Hasan authored
      Summary:
      fbthrift needs to link against newer version of krb5 library to avoid linking
      issue during OpenR build.
      
      ```
      libsecurity.so: undefined reference to `error_message(long)'
      ```
      
      Reviewed By: yfeldblum
      
      Differential Revision: D8330387
      
      fbshipit-source-id: 34f3f7361c99bb38adf558a52ef05e9d3156640d
      71bfdd3e
    • Tingzhe Zhou's avatar
      FlatCombiningPriorityQueue: Add interface · 12342f02
      Tingzhe Zhou authored
      Summary:
      Make the interface consistent with the other queue algorithms.
      push
      try_push
      try_push_for
      try_push_until
      pop
      try_pop
      try_pop_for
      try_pop_until
      peek
      try_peek
      try_peek_for
      try_peek_until
      
      Reviewed By: yfeldblum, djwatson
      
      Differential Revision: D8262170
      
      fbshipit-source-id: 0299e947a0069eacafd1315c920ec6e1b36675f3
      12342f02
    • Andrii Grynenko's avatar
      Implement weak reference for DefaultKeepAliveExecutor · 2825daef
      Andrii Grynenko authored
      Summary: Weak reference can be used if it's ok for some tasks to be dropped when Executor is destroyed.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D8309958
      
      fbshipit-source-id: 8ecc86a8be181a9eb695aa12305b2a30b6f4b60e
      2825daef
    • Michael Park's avatar
      Added `SemiFuture::within` · bba17c09
      Michael Park authored
      Summary:
      Moved `Future::within` to `FutureBase::withinImplementation`, and changed it to return a `SemiFuture`.
      `SemiFuture::within` uses it directly, and `Future::within` uses it then attaches the current executor or falls back to the inline executor to preserve existing behavior.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D8269907
      
      fbshipit-source-id: 76e235a2ecb2c648603961d0ac0ac17bf646d027
      bba17c09