1. 28 Aug, 2020 7 commits
    • Dan Melnic's avatar
      Add support for async range submit · db7a54ac
      Dan Melnic authored
      Summary: Add support for async range submit
      
      Reviewed By: yfeldblum
      
      Differential Revision: D23389493
      
      fbshipit-source-id: 7171893a2eeccc20fcdd625e98f88d365027c930
      db7a54ac
    • Andrii Grynenko's avatar
      Workaround for TSAN symmetric transfer bug · 135f8252
      Andrii Grynenko authored
      Summary: TSAN breaks symmetric transfer behavior in compiler. Work around it by rescheduling work on executor when possible.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D23391328
      
      fbshipit-source-id: 7b25a0c89664ca14114f8ae0dc650ff9bb786fe1
      135f8252
    • Dan Melnic's avatar
      Switch from VLA to folly::small_vector · 687f3fe8
      Dan Melnic authored
      Summary: Switch from VLA to folly::small_vector
      
      Reviewed By: yfeldblum, ot
      
      Differential Revision: D23391426
      
      fbshipit-source-id: c6c61f3f0eef5b6e71ad3a639fcfdb4fa1b7268e
      687f3fe8
    • Dan Melnic's avatar
      Add support for microsecond intervals in the function scheduler · defe385b
      Dan Melnic authored
      Summary: Add support for microsecond intervals in the function scheduler
      
      Reviewed By: yfeldblum, Mizuchi
      
      Differential Revision: D23153179
      
      fbshipit-source-id: 10f18d7b774c47659fe8191f8d92dca341e1cf97
      defe385b
    • Yedidya Feldblum's avatar
      Remove the guard around tag · d2a3bb4f
      Yedidya Feldblum authored
      Summary: [Folly] Remove the guard around `tag`, the inline variable of type `tag_t`.
      
      Reviewed By: Mizuchi
      
      Differential Revision: D23370037
      
      fbshipit-source-id: 59a48d834904b7e503f807c62fff8534568c9a0a
      d2a3bb4f
    • Andrew Smith's avatar
      Make folly::coro::co_invoke work with folly::coro::Generator · 28cc462f
      Andrew Smith authored
      Summary: This diff makes folly::coro::co_invoke work with folly::coro::Generator.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D23332912
      
      fbshipit-source-id: b3e25d160a94aed8892bf55ad5007f4018786e47
      28cc462f
    • Lewis Baker's avatar
      Add folly::coro::AsyncScope::remaining() · 4c6cb736
      Lewis Baker authored
      Summary:
      Add a method for querying the number of remaining tasks
      that have been added to an AsyncScope but that have not
      yet completed.
      
      This can be useful for implementing some load-shedding
      strategies based on the current number of active tasks
      added to a scope.
      
      Reviewed By: andriigrynenko
      
      Differential Revision: D21461637
      
      fbshipit-source-id: 628c236e0c99fa952e63f84366186246e5286bc8
      4c6cb736
  2. 27 Aug, 2020 2 commits
    • Zhengxu Chen's avatar
      Update OSS CMakeLists.txt to use CMAKE_CXX_STANDARD · 9fdb0d52
      Zhengxu Chen authored
      Summary: Adjust low level deps in OSS builds to use standard `CMAKE_CXX_STANDARD` variables to control std level in cpp builds.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D23333713
      
      fbshipit-source-id: cd76712d6b045f1d0aff30d4874d9bf0ce6f1e01
      9fdb0d52
    • Yedidya Feldblum's avatar
      Use C++ to check for mobile in IOBuf · 8af2de83
      Yedidya Feldblum authored
      Summary:
      [Folly] Use C++ v.s. the preprocessor to check for mobile in `IOBuf`.
      
      Using C++ allows the compiler, when compiling for any platform, to see the full code for every platform and to typecheck and report errors.
      
      Reviewed By: aditya7fb
      
      Differential Revision: D23365674
      
      fbshipit-source-id: 9cfe048a3114be3d6ef4522e279e19fb21f50a17
      8af2de83
  3. 26 Aug, 2020 2 commits
    • Chad Austin's avatar
      unconditionally build symbolizer sources even if FOLLY_USE_SYMBOLIZER is unset... · 90ab2b68
      Chad Austin authored
      unconditionally build symbolizer sources even if FOLLY_USE_SYMBOLIZER is unset or the platform is non-ELF
      
      Summary:
      Rather than conditionally include the folly symbolizer sources in the
      CMake build, always build them, and add appropriate dependency defines
      to conditionally enable functionality.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D22970595
      
      fbshipit-source-id: 957242b7fde28584edd78a1a6dbe9f830e98e726
      90ab2b68
    • Robin Cheng's avatar
      Disable some slow StlVectorTest cases under TSAN. · 6da515d7
      Robin Cheng authored
      Summary: These tests time out under TSAN and there's not much value to run them under TSAN because the tests are single-threaded.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D23302147
      
      fbshipit-source-id: 6fc8bd3e29c9cde72bfa85a14fd7726850540285
      6da515d7
  4. 25 Aug, 2020 4 commits
  5. 24 Aug, 2020 1 commit
  6. 22 Aug, 2020 2 commits
    • Michael Park's avatar
      Add `std::variant` support for `folly::variant_match`. · a5683e13
      Michael Park authored
      Summary: This patch adds support for `std::variant` to `folly::variant_match` but without including `<variant>`.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D23196572
      
      fbshipit-source-id: 9d5b519958b04c13cc024d393247c73cec00ac67
      a5683e13
    • Misha Shneerson's avatar
      Do not capture RCTX in HHWheelTimer's underlying AsyncTimeout · e72f5c7b
      Misha Shneerson authored
      Summary:
      We should only be capturing `folly::RequestContext` in HHWheelTimer's callback
      objects (already  happens). And avoid capturing it in underlying AsyncTimeout.
      
      Notice that `AsyncTimeout::scheduleTimeout`/`scheduleTimeoutHighRes` APIs capture
      current `folly::RequestContext` and `AsyncTimeout::cancelTimeout`
      releases the captured `folly::RequestContext`
      
      Now, the way HHWheelTimer works, it re-uses one instance of AsyncTimeout for
      multiple timeouts. This opens up possibility for leaking lifetime of RCTX.
      Imagine first  request A and then B schedule timeouts using same HHWheelTimer
      instnace. A's RCTX is captured by underlying AsyncTimeout. Next, request A is
      complete and we need to cancel its timeout. Notice, however that A's RCTX will
      not be destroyed as long as B is still running. That's the lifetime management
      leak.
      
      Reviewed By: jordalgo, andriigrynenko
      
      Differential Revision: D23260733
      
      fbshipit-source-id: 0bdf79db40d34d6682e89e87ce30811ffccc8cbf
      e72f5c7b
  7. 21 Aug, 2020 2 commits
  8. 20 Aug, 2020 5 commits
    • Shai Szulanski's avatar
      Add deduction guide to co_result · 694c1cbc
      Shai Szulanski authored
      Reviewed By: yfeldblum, lewissbaker
      
      Differential Revision: D23240860
      
      fbshipit-source-id: 74aab6151c9c44159a2d3fc4e041b475b69e29e7
      694c1cbc
    • Dan Melnic's avatar
      Do not call scheduleImmediateRead() if the EVB has changed · c4c78b82
      Dan Melnic authored
      Summary: Do not call scheduleImmediateRead() if the EVB has changed
      
      Reviewed By: yfeldblum
      
      Differential Revision: D23234912
      
      fbshipit-source-id: 8394700a53b4e2fa925519271c1c27fc0ce11a85
      c4c78b82
    • Nanshu Chen's avatar
      refactor Enum code generation · ad89a017
      Nanshu Chen authored
      Summary:
      Changed the way how enums generated in thrift-py3:
      
      1. Use C++ map to store name to unique Enum Python instances cache
      2. Dynamically find instances from cache (or create one and add to cache) instead of populating all instances at module load time
      3. use `__getattr__` and `__getitem__` instead of code-gen all the getters
      
      Reviewed By: asp2insp
      
      Differential Revision: D23182622
      
      fbshipit-source-id: 75baef997ee2d604b4ef7606f282cfc3306208ac
      ad89a017
    • Andrew Gallagher's avatar
      Remove self-include · 1ceb5acb
      Andrew Gallagher authored
      Reviewed By: yfeldblum
      
      Differential Revision: D23223918
      
      fbshipit-source-id: 72fb70ccabb57229298515f55334807ad2dfff36
      1ceb5acb
    • Shrikrishna Khare's avatar
      SAI API 1.6.3 · ecc740ba
      Shrikrishna Khare authored
      Summary: As titled.
      
      Differential Revision: D23216535
      
      fbshipit-source-id: 4d278cd1f5d4c661eddda265d92f51d391192404
      ecc740ba
  9. 19 Aug, 2020 3 commits
    • Yedidya Feldblum's avatar
      Re-port memrchr · c8972cd5
      Yedidya Feldblum authored
      Summary:
      [Folly] Re-port memrchr, avoiding build-system detection.
      
      Proper detection at build-system time is challenging.
      * Some platforms do not define `memrchr`.
      * Some platforms define it as a C function.
      * Some platforms define it as a pair of C++ functions.
      
      Proper porting requires proper build-system detection.
      
      Rather than going down that rabbit-hole, we can wrap `memrchr` and do compile-time detection using SFINAE.
      
      This change adds a new strategy. A subsequent change may remove the old strategy.
      
      Reviewed By: Orvid
      
      Differential Revision: D22125127
      
      fbshipit-source-id: 2da7cca571de335b2cff43ff7846ab04d90136ef
      c8972cd5
    • Misha Shneerson's avatar
      priority can be a negative int8_t · 190ff15c
      Misha Shneerson authored
      Reviewed By: yfeldblum
      
      Differential Revision: D23178843
      
      fbshipit-source-id: d9fade6f7a5f8472bffb7a40d285eaf7646ac0e8
      190ff15c
    • Yedidya Feldblum's avatar
      Minimize conditional compilation in AsyncUDPSocket · be66f73c
      Yedidya Feldblum authored
      Summary: [Folly] Minimize conditional compilation in `AsyncUDPSocket`.
      
      Differential Revision: D23172282
      
      fbshipit-source-id: 6ead5cf2232b9db0f709080666262ccc4b5984da
      be66f73c
  10. 18 Aug, 2020 5 commits
    • Michael Park's avatar
      Removed out-dated notes from `Futures.md`. · 16a70848
      Michael Park authored
      Summary:
      The examples showing `thenValue(executor, ...)` is outdated since the executor-taking form of `then` have been `delete`d.
      
      The example showing racy execution of continuations of `Future`s is no longer relevant. It used to be a valid example when the `Future`s used to be "activated" on destruction, but they no longer have this behavior.
      
      Fixes #1422.
      
      Reviewed By: LeeHowes
      
      Differential Revision: D23181958
      
      fbshipit-source-id: 46d2bedd4fef344734d3eb15eb295b9a98969665
      16a70848
    • Jon Janzen's avatar
      Add github action to auto-release TagIt tags · cad3b5cf
      Jon Janzen authored
      Summary:
      This came from a [request from Fred Emmott](https://fb.workplace.com/groups/osssupport/permalink/4116491528399431/), but also is something we should do due to the GitHub UI redesign:
      
      Nowadays on GitHub, tags are not shown in the sidebar (just the count) and instead GitHub Releases are prioritized and the most recent *release* is shown.
      
      Secondly, the Source Code zip archives for tags/releases are created on-the-fly on GitHub. This can cause problems for downstream projects that need consistent content hashes of the archive for security/reproducability reasons. This action also creates its own archives (zip and tar.gz) and attaches them to the release.
      
      Reviewed By: fredemmott
      
      Differential Revision: D23167073
      
      fbshipit-source-id: 463e9d93a2c4af260ac3c4dbc1ceab7894add714
      cad3b5cf
    • Koray Polat's avatar
      Add option to run tests without Testpilot even when it's available · cd9669af
      Koray Polat authored
      Summary:
      - Added a commandline flag to ignore testpilot even when it's available
      - Fixed an oversight that caused getdeps to return 0 even if ctest tests have failed.
      
      Reviewed By: wez
      
      Differential Revision: D23161362
      
      fbshipit-source-id: 1ed97c481315e2b39f1128680386390930194970
      cd9669af
    • Andrew Smith's avatar
      Change AsyncPipe to accept an optional onClosed callback · a6de480b
      Andrew Smith authored
      Summary: This diff allows the user to specify an optional onClosed callback for AsyncPipe, analogous to the callback accepted by thrift's ServerStreamPublisher.
      
      Reviewed By: andriigrynenko
      
      Differential Revision: D23024437
      
      fbshipit-source-id: 546cc7e0ea1099cadfa085f5dd2fb9085b88f695
      a6de480b
    • Chad Austin's avatar
      only use symbolizer if libunwind is found · 5e4f665c
      Chad Austin authored
      Summary: folly/experimental/symbolizer requires libunwind. Do not enable it unless libunwind is available.
      
      Reviewed By: yfeldblum, luciang
      
      Differential Revision: D22964401
      
      fbshipit-source-id: d71991346927fbf18167637770b2143c03b16476
      5e4f665c
  11. 17 Aug, 2020 7 commits