1. 13 Jul, 2017 5 commits
    • Christopher Dykes's avatar
      Add support for closing a TemporaryFile early · 050671f8
      Christopher Dykes authored
      Summary:
      The file itself will still get removed when `TemporaryFile` is destroyed, but closing it before then allows it to be read when on Windows, because `TemporaryFile` opens the temporary file with `O_EXCL`, so Windows denies read access of the file to everything else.
      This is needed to fix one of the AsyncFileWriter tests on Windows.
      
      Reviewed By: simpkins
      
      Differential Revision: D5307719
      
      fbshipit-source-id: bd65962cc3d34f382cc7b0b55dbf2659ed5ebfce
      050671f8
    • Christopher Dykes's avatar
      Force string pooling to workaround a codegen bug · 6ecf60a9
      Christopher Dykes authored
      Summary:
      There are bugs in MSVC's codegen that causes `StringPiece`'s evaluated in a `constexpr` context to have the start pointer point to one copy of the string and the end pointer point to another. Using the `StringPiece` at compile-time is perfectly fine, it just has the wrong values at runtime.
      We can work around this issue by enabling string pooling in all modes.
      
      Original bug report:
      https://developercommunity.visualstudio.com/content/problem/3216/c-incorrect-data-duplication-in-constexpr-context.html
      
      Reviewed By: yfeldblum
      
      Differential Revision: D5409753
      
      fbshipit-source-id: 24e2b343209ba7c86d0dd39a1358d0abe9ee6d4d
      6ecf60a9
    • Ankit Shah's avatar
      Getters and setters for ECDSA_SIG · 4f6e47f9
      Ankit Shah authored
      Summary:
      Added getters and setters for ECDSA_SIG to allow for compatibility
      between OpenSSL 1.1.0 and 1.0.2
      
      Reviewed By: knekritz
      
      Differential Revision: D5408934
      
      fbshipit-source-id: 7a3d9df774728c81270cc4da34c75202018e430d
      4f6e47f9
    • Yedidya Feldblum's avatar
      Sort #include lines · 520e20a8
      Yedidya Feldblum authored
      Summary: [Folly] Sort `#include` lines, as required by `clang-format`.
      
      Reviewed By: igorsugak, Orvid
      
      Differential Revision: D5405153
      
      fbshipit-source-id: 3bb1c2b84271bcf7a195e07680777dbfdd499823
      520e20a8
    • Eli Lindsey's avatar
      Revert D5408572: replace getnameinfo with inet_ntop in v6 string formatting · 4ac665a6
      Eli Lindsey authored
      Summary: This reverts commit 69b0171a9a54738045f9041381aea5512b17eb13
      
      Differential Revision: D5408572
      
      fbshipit-source-id: 3ec8ce96575b632fb134be99cc0d2538a01a7d85
      4ac665a6
  2. 12 Jul, 2017 4 commits
    • Eli Lindsey's avatar
      replace getnameinfo with inet_ntop in v6 string formatting · 0d38f577
      Eli Lindsey authored
      Summary: Some implementations of getnameinfo are triggering reverse DNS lookups despite us specifying NI_NUMERICHOST. Avoid all that by instead producing our string representations of v6 addresses manually via inet_ntop and if_indextoname.
      
      Differential Revision: D5408572
      
      fbshipit-source-id: 69b0171a9a54738045f9041381aea5512b17eb13
      0d38f577
    • Mickey Phoenix's avatar
      Fix documentation for folly's to<double>() method's handling of 'NaN' and unparseable inputs · 604c1b15
      Mickey Phoenix authored
      Summary:
      The documentation for folly::to<double>()'s handling of unparseable inputs (including "") is incorrect.  Additionally, the documentation does not document to<double>()'s handling of the inputs "NaN", "-NaN", "inf", "infinity", "-inf", and "-infinity".
      
      This corrects the documentation.
      
      See https://github.com/facebook/folly/blob/3272dfdbe243e0ac02acca1dd82bc391d1da079a/folly/docs/Conv.md under the heading "Parsing floating-point types" for the incorrect documentation as rendered.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D5367656
      
      fbshipit-source-id: 22b38e2bb85d2e647975798360ead39eed6caae8
      604c1b15
    • Tom Jackson's avatar
      Don't use range construction for associative containers in convertTo() · 96a65f54
      Tom Jackson authored
      Summary: This avoids having exceptions occur while constructing hashtables.
      
      Reviewed By: ot, yfeldblum
      
      Differential Revision: D5384419
      
      fbshipit-source-id: ba2de8cffa46df550bdc62abbe529801249e45cd
      96a65f54
    • Phil Willoughby's avatar
      Improve launder · fccb5ab6
      Phil Willoughby authored
      Summary:
      Should now work on GCC-compatible compilers, and all other compilers which don't attempt any inter-TU optimizations.
      
      Moved out of Utility.h because it now requires a supporting .cpp file and some clients presume that Utility.h can be used header-only.
      
      Reviewed By: ot
      
      Differential Revision: D5381042
      
      fbshipit-source-id: 7e954fed47de4386c85d46a61d56a8fe7fc516f4
      fccb5ab6
  3. 11 Jul, 2017 8 commits
    • Christopher Dykes's avatar
      Revert D5393697: [Folly] Add an sfmt19937 benchmark · dcb41c96
      Christopher Dykes authored
      Summary: This reverts commit bc725838dc7f62d030c7e68bc6d229042df2b46c
      
      Differential Revision: D5393697
      
      fbshipit-source-id: 4b9ef1e733b0ad73e6deea7ac8a52dfe785b4f2b
      dcb41c96
    • Benjamin Renard's avatar
      add helper method to generate same crc32 results as php and boost::crc_32_type · 13feee4b
      Benjamin Renard authored
      Summary:
      This revision adds a helper method in folly/Checksum.h, that returns the same crc32 value as php's built-in implementationa and boost::crc_32_type.
      
      folly's default implementation only differs from the final xor (with 0xFFFFFFFF for boost and php, 0 for folly), which is added here.
      
      Reviewed By: djwatson
      
      Differential Revision: D5396671
      
      fbshipit-source-id: 14874af2d5a80408c772875142de6e340ce01038
      13feee4b
    • Christopher Dykes's avatar
      Add an sfmt19937 benchmark · 4169222e
      Christopher Dykes authored
      Summary: `__gnu_cxx::sfmt19937` is 3.5x faster than `std::mt19937` according to the benchmark.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D5393697
      
      fbshipit-source-id: bc725838dc7f62d030c7e68bc6d229042df2b46c
      4169222e
    • Peter DeLong's avatar
      Allow fiber to be called on both type Fiber and Fiber* · 3f97ccef
      Peter DeLong authored
      Summary: The fiber command can now be run on a value of type folly::fibers::Fiber or a value of type folly::fibers::Fiber*
      
      Reviewed By: andriigrynenko
      
      Differential Revision: D5393491
      
      fbshipit-source-id: 1f48e08288f75c59852c939062db616eb06cea73
      3f97ccef
    • Giuseppe Ottaviano's avatar
      Use Baton (again) in EventBase::runInEventBaseThreadAndWait · 6e904443
      Giuseppe Ottaviano authored
      Summary:
      `Baton` is more lightweight than a mutex+condition variable, and the code is much simpler. This was actually the original implementation, but the dependency had to be dropped because `Baton` was unsupported on some architectures. That is not a problem anymore.
      
      Also reorganize the includes to follow the conventions.
      
      Reviewed By: andriigrynenko, yfeldblum
      
      Differential Revision: D5396631
      
      fbshipit-source-id: d782cf271eb35723aaeb3c372e1c1dafeaaf0f0a
      6e904443
    • Xiangyu Bu's avatar
      Update providedCiphersStr_ in one place. · 9d23df15
      Xiangyu Bu authored
      Summary:
      The function `setCipherList` seems to forget to update the data member
      `providedCipherString_`. This diff updates `providedCiphersString_` at
      a single place `setCiphersOrThrow()`, and adds two test cases to make
      sure the derived `SSL*` uses the desired set of ciphers.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D5372758
      
      fbshipit-source-id: 8144ab3bc518b2b9fa8090af62f3bd6475bbbece
      9d23df15
    • Yedidya Feldblum's avatar
      Compute masks in IPAddressV6 · 9b6eade1
      Yedidya Feldblum authored
      Summary:
      [Folly] Compute masks in `IPAddressV6`.
      
      At runtime, instead of storing a 2Kb masks array in the binary.
      
      Reviewed By: WillerZ, ot
      
      Differential Revision: D5369901
      
      fbshipit-source-id: 031a4eeda1670021236d8ab97f6e85e753675ae5
      9b6eade1
    • Peter DeLong's avatar
      Add function to folly_fibers.py to get the address of a specific fiber from a fiberManager · d6f902fb
      Peter DeLong authored
      Summary: Add a fiber_address(fiberManager, index) function so that you can programatically get the address of a given fiber in a fiberManager
      
      Reviewed By: andriigrynenko
      
      Differential Revision: D5377605
      
      fbshipit-source-id: b9504f7d253e8f702e9329c6f08ff406d4296a6e
      d6f902fb
  4. 10 Jul, 2017 2 commits
  5. 09 Jul, 2017 1 commit
    • Yedidya Feldblum's avatar
      In-place construction for Future · e8527d2e
      Yedidya Feldblum authored
      Summary:
      [Folly] In-place construction for `Future`.
      
      Using `in_place` as the first argument. Avoid constructing a contained object and then moving it into the `Future`, which may be more expensive, by providing an unambiguous way to specify perfect forwarding.
      
      And a matching overload of `makeFuture` for no particularly good reason.
      
      Differential Revision: D5362324
      
      fbshipit-source-id: e612965f34ed0fae5fac17db631f7eab9984c696
      e8527d2e
  6. 08 Jul, 2017 1 commit
  7. 07 Jul, 2017 3 commits
    • Eric Niebler's avatar
      make FunctionRef constexpr on compilers that support it · 81c9d2a6
      Eric Niebler authored
      Summary:
      `constexpr` All The Things! Although only very recent versions of modern compilers support this, FunctionRef can and should be `constexpr` (demonstration here: https://godbolt.org/g/NJ72RG).
      
      This change also changes the `FunctionRef` constructor such that it no longer participates in overload resolution if the argument is not callable with the specified arguments. In addition, it perfectly forwards the callable object such that if it was an rvalue when it was passed to the constructor, it will be invoked as an rvalue in `operator()`.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D5366720
      
      fbshipit-source-id: bc64053213478aab5a5bd5950c7b2d6f364d86bd
      81c9d2a6
    • Jiahao Li's avatar
      Adds `make_mock` to `folly::LeakySingleton`. · 7f15a179
      Jiahao Li authored
      Summary:
      Provides a `make_mock` interface to `folly::LeakySingleton` for unit test
      mocking.
      
      Reviewed By: andriigrynenko
      
      Differential Revision: D5382003
      
      fbshipit-source-id: 9ab81dd64703f4f02772bfb8c85e020680abcc85
      7f15a179
    • Christopher Dykes's avatar
      Determine noexcept'ness of folly::Optional with std::is_nothrow_constructible · f0dfe0f6
      Christopher Dykes authored
      Summary: Because MSVC is not happy about how it's written now.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D5378740
      
      fbshipit-source-id: 8b77d1a05da75b331e0cb72bd0ad859b89e54b36
      f0dfe0f6
  8. 06 Jul, 2017 2 commits
    • Christopher Dykes's avatar
      Define OPENSSL_NO_SSL2 under OpenSSL 1.1.0 · 9c5c5801
      Christopher Dykes authored
      Summary: OpenSSL 1.1.0 drops support for SSLv2, and in doing so also removes the define that user-code used to guard on whether SSLv2 was supported. This adds the define to the portability header to indicate SSLv2 is not supported.
      
      Reviewed By: anirudhvr
      
      Differential Revision: D5376869
      
      fbshipit-source-id: 04708db138dc13e7747cfff582f4cfed291648b3
      9c5c5801
    • Phil Willoughby's avatar
      launder · 1eee8628
      Phil Willoughby authored
      Summary: Backport C++17's `std::launder`.
      
      Reviewed By: yfeldblum, ot
      
      Differential Revision: D5370531
      
      fbshipit-source-id: b7cc6701d082b6c4855fa77bb644e151ce882deb
      1eee8628
  9. 05 Jul, 2017 4 commits
    • Adam Simpkins's avatar
      fix double comparison in histogram test · 737be952
      Adam Simpkins authored
      Summary:
      The TestDoubleWidthTooBig test was performing an exact equality check on
      two double values. This equality check fails when run on 32-bit
      platforms.
      
      Replace the EXPECT_EQ() check with EXPECT_NEAR(), and simply check that
      the two values do not differ by more than 1e-14.
      
      Reviewed By: Orvid
      
      Differential Revision: D652767
      
      fbshipit-source-id: 7bf7ed560a4180a2e2d07a6050d1df18e18d1eea
      737be952
    • Adam Simpkins's avatar
      logging: fix compiler compatibility for one more constexpr function · 7b116ffe
      Adam Simpkins authored
      Summary:
      Update LogLevel's operator+() to consist only of a single return statement.
      This is required for pre-C++14 compiler support.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D5368256
      
      fbshipit-source-id: 9ecbcde5edd1d0b3e7580d6263ad926e44908219
      7b116ffe
    • Yedidya Feldblum's avatar
      Promise<T>::makeEmpty() and Future<T>::makeEmpty() · fbeb95ac
      Yedidya Feldblum authored
      Summary:
      [Folly] `Promise<T>::makeEmpty()` and `Future<T>::makeEmpty()`.
      
      These can currently be done by creating, and then moving away from, regular promises and futures. But that allocates; this is semantically equivalent but more efficient.
      
      Differential Revision: D5368339
      
      fbshipit-source-id: de054cfc75c701c5d39aac64d9a2949cd34b1896
      fbeb95ac
    • Jim Meyering's avatar
      folly/futures/detail/Core.h: avoid FP from clang's -Wconditional-uninitialized · 70f35fe3
      Jim Meyering authored
      Summary:
      Avoid this false positive from clang:
      
        folly/futures/detail/Core.h:369:15: error: variable 'priority' may be uninitialized when used here [-Werror,-Wconditional-uninitialized]
      
      Reviewed By: yfeldblum
      
      Differential Revision: D5369916
      
      fbshipit-source-id: 49649417d1b799cc3945cba456b42ab438ad2ddc
      70f35fe3
  10. 04 Jul, 2017 6 commits
    • Yedidya Feldblum's avatar
      Apply clang-format to folly/stats/ · 344f49c4
      Yedidya Feldblum authored
      Summary: [Folly] Apply clang-format to `folly/stats/`.
      
      Reviewed By: Orvid
      
      Differential Revision: D5366745
      
      fbshipit-source-id: 3b7419d4ab4c6203693603722cd8e707741d3953
      344f49c4
    • Yedidya Feldblum's avatar
      Apply clang-format to folly/ssl/ · 1fd03592
      Yedidya Feldblum authored
      Summary: [Folly] Apply `clang-format` to `folly/ssl/`.
      
      Reviewed By: Orvid
      
      Differential Revision: D5366760
      
      fbshipit-source-id: ad4ec0570050f80d69c78626906e18b5892a999f
      1fd03592
    • Yedidya Feldblum's avatar
      Apply clang-format to folly/concurrency/ · d34ef77f
      Yedidya Feldblum authored
      Summary: [Folly] Apply `clang-format` to `folly/concurrency/`.
      
      Reviewed By: Orvid
      
      Differential Revision: D5366946
      
      fbshipit-source-id: 2c9de7c4d8534e02c367fd235fb1ea943ba0539e
      d34ef77f
    • Yedidya Feldblum's avatar
      Extract the namespace choice in FBString.h · a60fee27
      Yedidya Feldblum authored
      Summary:
      [Folly] Extract the namespace choice in `FBString.h`.
      
      The funny `namespace` bits confuse `clang-format`, so let us remove the confusion.
      
      Reviewed By: ot, Orvid
      
      Differential Revision: D5367299
      
      fbshipit-source-id: efca65fecc70076829c14e31a835bc91f3efb4a4
      a60fee27
    • Yedidya Feldblum's avatar
      Apply clang-format to folly/io/ (namespace) · 94f59e26
      Yedidya Feldblum authored
      Summary: [Folly] Apply `clang-format` to `folly/io/` (namespace).
      
      Reviewed By: Orvid, terrelln
      
      Differential Revision: D5366477
      
      fbshipit-source-id: b4efcdc66c62885f5574b2940e5138590710deae
      94f59e26
    • Christopher Dykes's avatar
      Fix tests in CMake build · 4b5711db
      Christopher Dykes authored
      Summary: The fix for this didn't get made before the commit landed.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D5367593
      
      fbshipit-source-id: 4ed9c781121d1b23db11d75d0f8d017d1d8663d9
      4b5711db
  11. 03 Jul, 2017 4 commits
    • Christopher Dykes's avatar
      Fix build of SysUio portability header · 7afad293
      Christopher Dykes authored
      Summary: When I moved the change internally, I failed to add the `#include` that was required :(
      
      Reviewed By: yfeldblum
      
      Differential Revision: D5366037
      
      fbshipit-source-id: 7ddf8fc0b7a0468d0831e886d8025c1893f7f8ae
      7afad293
    • Eric Niebler's avatar
      constexpr the Unit comparison ops · c6f344a9
      Eric Niebler authored
      Summary: `constexpr` All The Things!
      
      Reviewed By: Orvid
      
      Differential Revision: D5364910
      
      fbshipit-source-id: 11abeb8adc38aef3ac4f2596ecf0f533b9e74203
      c6f344a9
    • Yedidya Feldblum's avatar
      For futures::retrying, detect policy type using std::result_of · e81cc5a0
      Yedidya Feldblum authored
      Summary:
      [Folly] For `futures::retrying`, detect policy type using `std::result_of`.
      
      `FOLLY_CREATE_HAS_MEMBER_FN_TRAITS` does not work in all cases. For example, it does not work with inherited members.
      
      And it is not really what we want, anyway, which is to dispatch based on the result type of invoking the policy with a particular set of arguments. We can do that more directly using `std::result_of`. And if we did not have `std::result_of`, then we could do that with SFINAE directly.
      
      Reviewed By: WillerZ
      
      Differential Revision: D5361808
      
      fbshipit-source-id: 23f969dfd6dbaaa944dc2288e70c3ea11d3398f0
      e81cc5a0
    • Phil Willoughby's avatar
      Content-conversion constructors for Future · 8bedb7e1
      Phil Willoughby authored
      Summary:
      Allows you to construct a `Future<A>` from a `Future<B>` if A can be constructed from `B&&`.
      
      The constructor is `implicit` if and only if `B&&` is convertible to `A`.
      
      This is the same philosophy as Optional, and has the same use-cases.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D5264185
      
      fbshipit-source-id: e2fae373ab549c186a69dc5f4e32481ef7b11bba
      8bedb7e1