1. 01 Apr, 2021 4 commits
    • Yedidya Feldblum's avatar
      remove folly::SpinLockGuard · 7426f02a
      Yedidya Feldblum authored
      Summary:
      C++17 permits use of `std::unique_lock` instead of `folly::SpinLockGuard`; just use that.
      
      C++11 permits use of `std::unique_lock<SpinLock>`.
      
      Differential Revision: D27390136
      
      fbshipit-source-id: bcc34a043644289523ddfdfbf47a260c133db186
      7426f02a
    • Andrii Grynenko's avatar
      Don't throw in noexcept ViaIfAsyncAwaiter::await_suspend · e4fb76b6
      Andrii Grynenko authored
      Summary: Avoids warnings with -Wterminate.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D27452798
      
      fbshipit-source-id: 129b66179c5ff9bbf3f8fe791224cd925a3b33f3
      e4fb76b6
    • Shrikrishna Khare's avatar
      Update OpenNSA manifest to latest 6.5.21 · 716ff89f
      Shrikrishna Khare authored
      Summary:
      This is towards upgrading to newer OpenNSA 6.5.21.
      
      This diff will be landed after we have verified that OpenNSA 6.5.21 has not
      regressed from OpenNSA 6.5.19 (HW test results)
      
      sha256sum on the tarball, and use that in the manifest.
      
      Reviewed By: jasmeetbagga
      
      Differential Revision: D27470306
      
      fbshipit-source-id: a56c1e012a790b0bc948a5804dd605cdf224916c
      716ff89f
    • generatedunixname89002005287564's avatar
      Remove dead includes in folly/stats · b7c8b2ff
      generatedunixname89002005287564 authored
      Reviewed By: yfeldblum
      
      Differential Revision: D27461647
      
      fbshipit-source-id: cf1f9747b535a9fb8c8aa851f2ce9cad8b9dce61
      b7c8b2ff
  2. 31 Mar, 2021 3 commits
    • Phil Willoughby's avatar
      expose LockFreeRingBuffer internal address/size · e2d5a3f6
      Phil Willoughby authored
      Summary: This is useful if your environment takes partial dumps of the process on crash - you can tell the process which does that to include the memory range of the flight recorder in what is dumped.
      
      Differential Revision: D27206631
      
      fbshipit-source-id: b3679004930486094e6030b5b39ee02d01bc7617
      e2d5a3f6
    • Yedidya Feldblum's avatar
      Stop purging arenas in MemoryIdler · 02e534fb
      Yedidya Feldblum authored
      Summary:
      jemalloc has background threads to purge unused pages, so stop purging
      arenas used by idle threads since those arenas may be shared with active
      threads which must page fault new pages in after the purge
      
      Reviewed By: ot, davidtgoldblatt
      
      Differential Revision: D26793042
      
      fbshipit-source-id: 13617bfb0ace1c5b7aae52dfdc428b19ff99f7bf
      02e534fb
    • Nathan Lanza's avatar
      Mark some destructors that are overriden as `override` · deb71d74
      Nathan Lanza authored
      Summary: This satisfies a new error in llvm11
      
      Reviewed By: smeenai
      
      Differential Revision: D27421459
      
      fbshipit-source-id: 963d809a4f430a365223786ea7d2591fe239062f
      deb71d74
  3. 30 Mar, 2021 4 commits
  4. 29 Mar, 2021 7 commits
    • Dan Melnic's avatar
      IOBuf combine allocations only within size classes · 59b71bbb
      Dan Melnic authored
      Summary: IOBuf allocate SharedInfo in the same allocation only if we do not cross into the next class size
      
      Reviewed By: jrahman
      
      Differential Revision: D27353914
      
      fbshipit-source-id: 65be3641d7eaa0588bf26101ce02668fb827eee9
      59b71bbb
    • Pranjal Raihan's avatar
      ReadMostlyAtomicObserver and minor cleanup · 25cfb031
      Pranjal Raihan authored
      Summary:
      `folly::observer::ReadMostlyAtomicObserver` docblock explains it well:
      ```
      /**
       * A ReadMostlyAtomicObserver guarantees that reading is exactly one relaxed
       * atomic load. Like AtomicObserver, the value is cached using `std::atomic`.
       * However, there is no version check when reading which means that the
       * cached value may be out-of-date with the Observer value. The cached value
       * will be updated asynchronously in a background thread.
       *
       * Because there is no version check when reading, ReadMostlyAtomicObserver
       * does not capture observer dependencies when used from makeObserver. It is not
       * possible to create a dependent observer. Therefore, ReadMostlyAtomicObserver
       * models none of CopyConstructible, MoveConstructible, CopyAssignable, or
       * MoveAssignable. Dependent observers should be created using the underlying
       * observer.
       *
       * ReadMostlyAtomicObserver is ideal for fastest possible reads on a
       * trivially-copyable type when a slightly out-of-date value will suffice. It is
       * perfect for very frequent reads coupled with very infrequent writes.
       */
      ```
      Other minor changes:
      * Added `getUnderlyingObserver` to each of the special-purpose observers.
      * Sprinkled `std::move` where neccessary.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D27381490
      
      fbshipit-source-id: fed039ae481af0c4e4148f80df03e30a125e333f
      25cfb031
    • Ruslan Sayfutdinov's avatar
      define HOST_NAME_MAX for Windows and Mac · cae314d6
      Ruslan Sayfutdinov authored
      Summary:
      This page says it can't be greater than 256:
      https://docs.microsoft.com/en-us/windows/win32/api/winsock/nf-winsock-gethostname
      
      POSIX one is equal to 255, so set it to 255.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D27370716
      
      fbshipit-source-id: 458ebc02d2914a0422862fafedd089e0c13c5e6d
      cae314d6
    • Pedro Eugenio Rocha Pedreira's avatar
      Add libicu manifest · 0be01410
      Pedro Eugenio Rocha Pedreira authored
      Summary: Adding libicu manifest, which will be used by f4d/velox
      
      Reviewed By: amitkdutta
      
      Differential Revision: D25934666
      
      fbshipit-source-id: 247d9961c90fcfc497498b556626e9ef1739b191
      0be01410
    • Doug Huff's avatar
      NestedCommandLineApp Add -h as an alias for --help globally and to all subcommands · 3a967c59
      Doug Huff authored
      Summary: Alias `-h` to `--help` because we live in a society.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D27370742
      
      fbshipit-source-id: eb346546fe4066eef62313176ff7e47c20e507be
      3a967c59
    • Jianfeng Tang's avatar
      Fix one compilation warning - implicit conversion · 552024d3
      Jianfeng Tang authored
      Summary: As titled. Convert float to int explicitly to get rid of compilation warning.
      
      Reviewed By: therealgymmy
      
      Differential Revision: D27364578
      
      fbshipit-source-id: a5f53142be9ba64260e7028d29c89a857ed66770
      552024d3
    • Ruslan Sayfutdinov's avatar
      support coroutines for clang on windows · 82e4fd9e
      Ruslan Sayfutdinov authored
      Summary: `LLVM_COROUTINES` define indicates that LLVM compatible `<experimental/coroutine>` is available and we can enable coroutines for Clang on Windows.
      
      Reviewed By: yfeldblum, WillerZ
      
      Differential Revision: D26729942
      
      fbshipit-source-id: 37999a9a727727aa9244e8d4d67f035fc311be50
      82e4fd9e
  5. 28 Mar, 2021 3 commits
    • Dan Melnic's avatar
      SharedMutex TSAN: call destroy only if the annotation was created · 8aeb9ba9
      Dan Melnic authored
      Summary:
      SharedMutex TSAN: call destroy only if the annotation was created
      
      (Note: this ignores all push blocking failures!)
      
      Reviewed By: yfeldblum
      
      Differential Revision: D27379654
      
      fbshipit-source-id: 90be62eb9e932c83e025a96dd36c4cba992e6267
      8aeb9ba9
    • Lucian Grijincu's avatar
      folly::Try: add value_or() implementations mimicking std::optional::value_or API · 6d8bd01c
      Lucian Grijincu authored
      Summary:
      Add API equivalent to `std::optional::value_or`: https://en.cppreference.com/w/cpp/utility/optional/value_or
      
      Returns the contained value if *this has a value, otherwise returns default_value.
      
        template< class U > constexpr T value_or( U&& default_value ) const&;
      
      Equivalent to `bool(*this) ? **this : static_cast<T>(std::forward<U>(default_value))`
      
         template< class U > constexpr T value_or( U&& default_value ) &&;
      
      Equivalent to `bool(*this) ? std::move(**this) : static_cast<T>(std::forward<U>(default_value))`
      
      Reviewed By: yfeldblum
      
      Differential Revision: D27346319
      
      fbshipit-source-id: 598b740cb9068cffb0cc0fbda3579e64fd125e8b
      6d8bd01c
    • Giuseppe Ottaviano's avatar
      Inline the assume() check in debug mode · d3f0a283
      Giuseppe Ottaviano authored
      Summary: Even in debug mode, the branch can likely be coalesced with the actual condition if inlined.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D27285173
      
      fbshipit-source-id: 1662588f82d14a5ab2c9564bab5cec72981418ec
      d3f0a283
  6. 26 Mar, 2021 5 commits
  7. 25 Mar, 2021 5 commits
  8. 24 Mar, 2021 6 commits
    • TJ Yin's avatar
      Make RWCursor constructible from IOBufQueue · fb645211
      TJ Yin authored
      Summary: This diff added conversion from `IOBufQueue` and `QueueAppender` to `RWCursor`. It's safe to use `RWCursor` to mutate the their underlying `IOBuf` since the structure of `IOBuf` won't changed. It's worth noting appending data to `IOBufQueue` will invalidate RWCursor (just like iterator).
      
      Reviewed By: yfeldblum
      
      Differential Revision: D27257697
      
      fbshipit-source-id: 17887d656a6095afe1c6882426457b9e75a66c84
      fb645211
    • Michel Salim's avatar
      handle non-constant SIGSTKSZ · 7df2d7e5
      Michel Salim authored
      Summary:
      On glibc > 2.33 (e.g. on Fedora rawhide/35), `SIGSTKSZ` is no longer constant:
      http://sourceware-org.1504.n7.nabble.com/PATCH-sysconf-Add-SC-MINSIGSTKSZ-SC-SIGSTKSZ-BZ-20305-td650948.html
      
      Assume it's non-constant, and so:
      - use `std::max` rather than `folly::constexpr_max` to compute the stack size
      - cast both arguments to `size_t` since in the non-constant case we get a `long int` back
      - use `std::unique_ptr<char[]>` and compute the size at the time of use rather than make it class-wide
      
      Reviewed By: yfeldblum
      
      Differential Revision: D27143320
      
      fbshipit-source-id: 7dcdd7cf3d5e96db605266504f443cf2b48ba18c
      7df2d7e5
    • Srivatsan Ramesh's avatar
      Using reply struct instead of folly::Function · 5b373171
      Srivatsan Ramesh authored
      Summary: Using folly::Function as node type for EventBaseAtomicNotificationQueue involves two mallocs (for creating the function and also to create the queue node). In this diff, I have created a class to hold the data required to send replies and using emplaceMessage to add to the queue.
      
      Differential Revision: D26778920
      
      fbshipit-source-id: 2dcf8395dc77db1d7c73d1d68c9a69e767191b95
      5b373171
    • Alexander Sklar's avatar
      Fix Range.h to compile in c++20 (#1542) · 7cdcfcab
      Alexander Sklar authored
      Summary:
      `std::is_pod` is deprecated in c++20, using `is_trivially_copyable` instead
      
      Pull Request resolved: https://github.com/facebook/folly/pull/1542
      
      Reviewed By: Mizuchi
      
      Differential Revision: D27214088
      
      Pulled By: yfeldblum
      
      fbshipit-source-id: 3cc6e29e16a1568cf1e9bbb73152e7bc2179f5d6
      7cdcfcab
    • Ruslan Sayfutdinov's avatar
      fix internal clang errors on Windows · a3ab5485
      Ruslan Sayfutdinov authored
      Summary: Fix clang internal error on Windows.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D26994868
      
      fbshipit-source-id: 97fe79231fcbfc0fc6712626dee8e1d570dd0dd6
      a3ab5485
    • Yedidya Feldblum's avatar
      let symbolizer code use to_ascii · 01f86817
      Yedidya Feldblum authored
      Summary: Since it is documented as async-signal-safe. V.s. importing from `folly/Conv.h`.
      
      Reviewed By: Orvid
      
      Differential Revision: D27221887
      
      fbshipit-source-id: 9dbe866be84632f8f50f2e00c91697cc39f0b304
      01f86817
  9. 23 Mar, 2021 3 commits
    • Srivatsan Ramesh's avatar
      Extending putMessage() to take multiple arguments · 42b60e0e
      Srivatsan Ramesh authored
      Summary: putMessage() function takes variable number of arguments required to construct the queue node.
      
      Differential Revision: D26785602
      
      fbshipit-source-id: 0a9bc711bf75a83397e6de3764c41d316ef64d89
      42b60e0e
    • Andrew Krieger's avatar
      dynamic_view for safer traversal of dynamics · e7c48a6e
      Andrew Krieger authored
      Summary:
      Existing accessors on dynamic are cumbersome when operating on dynamics
      that have optional keys or nullable values. Safely accessing these ends
      up in very bloated or ugly client code, even when using getDefault().
      Additionally, the move semantics of `dynamic` are usually inferred based
      on the cv-ref qualification of the dynamic, and results in inconsistent
      syntax depending on the situation.
      
      `dynamic_view` attempts to resolve these issues by providing a new and
      explicit API for traversing and accessing a `dynamic`. The main new
      API is `descend`, which takes a varags list of keys and, functionally,
      repeatedly applies `operator[]` and either returns a view of the resulting
      value or an empty view if it doesn't exist or a type error occured during
      descent. It only throws if another unexpected exception occurs.
      
      `const_dynamic_view` contains copying accessors which will not throw
      on a type mismatch, or if invoked on an empty view, but instead will
      return a mandatory default value provided by the caller.
      
      The other new API is only provided by the non-const `dynamic_view` class.
      It is a set of value accessors which explicitly move the underlying value
      out of the viewed dynamic. There is a specialization for string values
      and a generic version for `dynamic`.
      
      A helper method, `folly::make_dynamic_view` is provided which determines
      the appropriate variant for a given dynamic ref.
      
      `friend` access to `dynamic` allows optimized checks and accesses over the
      regular `dynamic` APIs.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D4917260
      
      fbshipit-source-id: a07d26ed502aa22a5f19dd8521373a9e83fd6c02
      e7c48a6e
    • Andrii Grynenko's avatar
      Rust-compatible adaptors for Task and AsyncGenerator · 57e3562c
      Andrii Grynenko authored
      Summary:
      This is a basic implementation of adaptors for coro::Task and coro::AsyncGenerator that are compatible with https://doc.rust-lang.org/std/future/trait.Future.html and https://docs.rs/futures/0.3.13/futures/stream/trait.Stream.html.
      Note that this performs blocking cancellation which may result in long destruction time/or even deadlocks if a given Task/AsyncGenerator doesn't support inline cancellation.
      
      Reviewed By: Imxset21, c-ryan747
      
      Differential Revision: D26938974
      
      fbshipit-source-id: fd043304441931c6f7aa078a1a5fee50ebfa2e90
      57e3562c