1. 27 Apr, 2017 3 commits
  2. 26 Apr, 2017 5 commits
    • Pavel Aslanov's avatar
      folly::overload and folly::variant_match · 7d06adb4
      Pavel Aslanov authored
      Summary: Pattern matching like functionality for boost::vairant. See unittests for usage examples.
      
      Reviewed By: yfeldblum, ericniebler
      
      Differential Revision: D4851133
      
      fbshipit-source-id: cda7dc766dac5870bcc4ab1859de0e4e7f0a6599
      7d06adb4
    • Nick Terrell's avatar
      small_vector improvements · 0ef8ce0d
      Nick Terrell authored
      Summary:
      1. `emplace_back()` is broken when there are at least two arguments and one is a reference to inside the vector. See the `ForwardingEmplaceInsideVector` test.
      2. Only `push_back(value_type&&)` did exponential growth, every other function grew linearly. The bug is hidden inside of facebook because `goodMallocSize()` grows fast enough to not be horribly slow. When not using jemalloc, it will grow one element at a time.
      3. `push_back(value_type const& t)` performed a copy and a move on `t` when `size() == capacity()`. Remove the extra move.
      
      Fixes https://github.com/facebook/folly/issues/541.
      
      Reviewed By: luciang
      
      Differential Revision: D4875084
      
      fbshipit-source-id: eefa76028c6bfd9d7c73af65e8bb9d4baf49b8cb
      0ef8ce0d
    • Dave Watson's avatar
      Make folly pass TSAN checks · a0c640e8
      Dave Watson authored
      Summary:
      Currently, contbuild has a blanket TSAN suppression for folly.
      Fix PicoSpinLock instead
      
      This should fix TSAN errors as an alternative to D4781776
      
      Some of the tests even had TSAN errors, fixed those.
      
      Reviewed By: davidtgoldblatt
      
      Differential Revision: D4795284
      
      fbshipit-source-id: 9f0fc6868399da2f86be355ce3c081990260a649
      a0c640e8
    • Dave Watson's avatar
      Fix virtual struct bug · 92f554a5
      Dave Watson authored
      Summary: virtual classes currently don't work in hazard pointers, and get incorrectly reclaimed.
      
      Reviewed By: magedm
      
      Differential Revision: D4951584
      
      fbshipit-source-id: 8200df6bb8d500af2e89086edf7835d4fb90b6a2
      92f554a5
    • Christopher Dykes's avatar
      Delete the non-char integeral forms of fbstring::operator= · ce979260
      Christopher Dykes authored
      Summary: They allow for assignments that make no sense, so make it impossible to do so.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D4919606
      
      fbshipit-source-id: 24d8e036eff33a8c6def4672c0d098f0edd5c5b3
      ce979260
  3. 25 Apr, 2017 3 commits
    • Neel Goyal's avatar
      Guard SSLContext lock checks with init mutex and add setSSLLockTypesAndInitOpenSSL · 5699919f
      Neel Goyal authored
      Summary:
      Improve concurrency guards for `setSSLLockTypes` and `isSSLLockDisabled` by using initMutex.  Also verify that openssl has been initialized w/ DCHECK in isSSLLockDisabled.
      
      We also add a method to do the setting of locks and initialization in one shot.
      
      Reviewed By: knekritz
      
      Differential Revision: D4937242
      
      fbshipit-source-id: 308f516c17485281604d4322954c09beb58688e2
      5699919f
    • Andrii Grynenko's avatar
      Remove thread-safety comment from EventBaseLocal · 2c371199
      Andrii Grynenko authored
      Reviewed By: vitaut
      
      Differential Revision: D4940976
      
      fbshipit-source-id: 0c4ebf8f358e6f54a7b5e81f2e73649b030006c9
      2c371199
    • Christopher Dykes's avatar
      Shift the implementation of setThreadName out of the header · 6bfd09a8
      Christopher Dykes authored
      Summary:
      `folly::setThreadName` is neither performance critical, nor (after this diff) is it a template, so exposing the mess that is its implementation to the world isn't worth it.
      The implementation is expected to get even more messy as I add support for getting the current thread's name, and eventually also add support for Windows as well.
      
      This also required exposing whether the current platform supports setting the name of the current or other threads.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D4942401
      
      fbshipit-source-id: 0e3be203995fa6ed667a5fd28dac7ba7fa49d683
      6bfd09a8
  4. 24 Apr, 2017 1 commit
    • Michael Lee's avatar
      Properly gate the wchar tests in FBStringTest · dee718a2
      Michael Lee authored
      Summary: Using `#ifndef __ANDROID__` does not necessarily handle all cases of gating the wchar tests
      
      Reviewed By: Orvid
      
      Differential Revision: D4938634
      
      fbshipit-source-id: a2184e20b8c382e5a34947c029f7e3746272b407
      dee718a2
  5. 22 Apr, 2017 2 commits
    • Neel Goyal's avatar
      Ignore setSSLLockTypes() calls after SSLContext is initialized. · 2d466553
      Neel Goyal authored
      Summary: We set the actual locks on initialization, so attempting to change locks after had no affect, other than making isSSLLockDisabled() report incorrect information.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D4935475
      
      fbshipit-source-id: 7b80cd530801c925ade769163579b86b1a8f0027
      2d466553
    • Michael Lee's avatar
      Also exclude the wstring test · 3bdf6ef1
      Michael Lee authored
      Summary: ^^^
      
      Reviewed By: yangchi
      
      Differential Revision: D4934455
      
      fbshipit-source-id: babf56f4705ae06f46b694df3f2890d4b9506861
      3bdf6ef1
  6. 21 Apr, 2017 3 commits
    • Michael Lee's avatar
      Turn off failing FBString test for Android · 5b978faa
      Michael Lee authored
      Summary: The traitsLength call in the basic_fbstring constructor is returning a bad value.
      
      Reviewed By: Orvid
      
      Differential Revision: D4930106
      
      fbshipit-source-id: 556a61c4496c2af91cb70db6d62cdc7e915edd55
      5b978faa
    • Christopher Dykes's avatar
      Use std::nullptr_t in dynamic · 09887be9
      Christopher Dykes authored
      Summary: It was changed to a `void*` previously due to an ICE in GCC 4.7. GCC 4.7 hasn't been supported in quite a while, and newer versions of GCC don't crash, so it's time to switch it back to `nullptr_t`.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D4917389
      
      fbshipit-source-id: fc48642026c7e3aaeadef27bb949f70648c2312c
      09887be9
    • Cameron Pickett's avatar
      Fix issue where compiler cannot determine address of ::free at compile time · 58006ffb
      Cameron Pickett authored
      Reviewed By: Orvid
      
      Differential Revision: D4921738
      
      fbshipit-source-id: 69848cda3638fca4ead73dcc9949af0f600f33bb
      58006ffb
  7. 20 Apr, 2017 2 commits
    • Andrii Grynenko's avatar
      EventBaseLocal cleanup · 7de5a995
      Andrii Grynenko authored
      Summary:
      1. Restrict EventBaseLocal API to only be used from EventBase thread to avoid extra locking.
      2. Make sure objects stored in EventBaseLocal are destroyed in EventBase thread.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D4918282
      
      fbshipit-source-id: b7cb4c2b62fef85a9b1d796fa71af8af9087479d
      7de5a995
    • Nicholas Ormrod's avatar
      Remove unpackHack from smallVector · 049e3d99
      Nicholas Ormrod authored
      Summary:
      This change removes the unpackHack function from small_vector, which was blocking ##-Waddress-of-packed-member## from being enabled. The fix is split the pointer-getting non-const ##getCapacity## into a normal getter and setter.
      
      (lithium is flakey, according to continuous, and is push-blocking)
      
      Reviewed By: yfeldblum
      
      Differential Revision: D4918188
      
      fbshipit-source-id: 435e030ad659f5dc9c42d90e9bfee9ca564a120a
      049e3d99
  8. 19 Apr, 2017 3 commits
    • Maxim's avatar
      Added pkg-config as required dependency · c6cf2b08
      Maxim authored
      Summary:
      Faced this problem on Ubuntu 14.04.4 LTS
      
      ```
      configure:16581: error: possibly undefined macro: AC_MSG_NOTICE
            If this token and others are legitimate, please use m4_pattern_allow.
            See the Autoconf documentation.
      autoreconf: /usr/bin/autoconf failed with exit status: 1
      ```
      Fixed with `apt-get install pkg-config`
      Closes https://github.com/facebook/folly/pull/579
      
      Reviewed By: yfeldblum
      
      Differential Revision: D4886216
      
      Pulled By: Orvid
      
      fbshipit-source-id: 88159b70bfcf62d01bef502b3a5da6c9d81499bc
      c6cf2b08
    • Phil Willoughby's avatar
      Improve string comparisons · 5a122efc
      Phil Willoughby authored
      Summary:
      Any pair of read-compatible (same type, same traits) basic_strings (`basic_fbstring` or `std::basic_string`) can now be compared to each other with the `==`, `!=`, `<`, `>`, `<=`, and `>=` operators.
      
      If you have a C++14 environment this allows you to use the heterogeneous comparison lookup methods from N3657: you can query containers which store either string type with either string type efficiently.
      
      Reviewed By: yfeldblum, ot
      
      Differential Revision: D4905697
      
      fbshipit-source-id: 2ea976ebf40af45d64c1d8c1c08847feb3b9db68
      5a122efc
    • Andrew Krieger's avatar
      Include <strings.h> in portability/String.h · 14c1d806
      Andrew Krieger authored
      Summary:
      portabilty/String.h defines functions for Windows which
      are provided by <strings.h> on other platforms, but doesn't include
      <strings.h> in that case.
      
      Reviewed By: Orvid
      
      Differential Revision: D4908770
      
      fbshipit-source-id: b3326f78509c2aa1acb9c9279f01537b0a243400
      14c1d806
  9. 18 Apr, 2017 5 commits
  10. 17 Apr, 2017 2 commits
    • Christopher Dykes's avatar
      Don't invoke undefined behavior when getting the pthread_t out of std::thread::id · 43c0c2c5
      Christopher Dykes authored
      Summary: This assumes I understand strict-aliasing rules correctly.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D4900118
      
      fbshipit-source-id: edba535d3ba799ac665d3f859dc4154b2c1b22cb
      43c0c2c5
    • Maxim Georgiev's avatar
      Allow error message callback cancellation regardless of socket state. · 532b8c01
      Maxim Georgiev authored
      Summary: We should be able to reset error message callback in AsyncSocket evein if the socket is closed yet. It's common to keep callback installed while the socket is connected. Once the socket is closed, the deinitialization process starts. If the callback callee component gets deallocated before the socket object is deallocated, it should be able to cancel callbacks.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D4897335
      
      fbshipit-source-id: 8eee26f9ebcb78a01d55598be3aff6595a3ed852
      532b8c01
  11. 16 Apr, 2017 1 commit
    • Angelo Failla's avatar
      `IPVAddressV(46)::fromInverseArpaName` static methods · 5da6f8de
      Angelo Failla authored
      Summary:
      In a previous diff I added toInverseArpaName methods but I forgot to add the
      inverse. This change adds `IPVAddressV(46)::fromInverseArpaName` static methods.
      I have also implemented some suggestions that were in D4867502 but I couldn't
      incorporate because the diff was landed already.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D4885198
      
      fbshipit-source-id: b95752aa695d6675cb293f8df2daa1787383390f
      5da6f8de
  12. 15 Apr, 2017 4 commits
    • Eric Niebler's avatar
      replace #include <ios> in FBString.h with lighter #include <iosfwd> · ab7561be
      Eric Niebler authored
      Summary:
      FBString.h doesn't really use any of the facilities defined in <ios>, such as the stream manipulators. No sense dragging it into FBString.h.
      
      This could potentially break downstream users if they are not already including the io facilities they are using. It's unlikely though because the actual stream types (std::ostream, std::istream) and stream objects (std::cout, std::cin) are defined in other headers that #include <ios>.
      
      Reviewed By: yfeldblum, Orvid
      
      Differential Revision: D4886133
      
      fbshipit-source-id: 56adb93280eeeef8b09320b30fb224d4f72707bf
      ab7561be
    • Tudor Bosman's avatar
      Add exception_tracer to OSS build · 50708687
      Tudor Bosman authored
      Summary:
      What it says on the tin. Add the exception_tracer library to the folly OSS build, enabled with `--enable-exception-tracer`.
      Closes https://github.com/facebook/folly/pull/580
      
      Reviewed By: Orvid
      
      Differential Revision: D4895533
      
      Pulled By: yfeldblum
      
      fbshipit-source-id: 4878826c71e7d6af17845b23abc07dc48ea1aa51
      50708687
    • Christopher Dykes's avatar
      Add portability support for PThread's TLS API · 833ecbf0
      Christopher Dykes authored
      Summary:
      This is the last piece needed to get Folly working on Windows without PThreads.
      Updating Folly's test suite to support compiling without PThreads will come next.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D4894048
      
      fbshipit-source-id: 6076317e1364aef82a5d3cb306bea7c2226b3cdc
      833ecbf0
    • Christopher Dykes's avatar
      Remove unused local in OpenSSLCertUtils · 71c789bb
      Christopher Dykes authored
      Summary: It's unused, and MSVC is warning about that fact.
      
      Reviewed By: anirudhvr
      
      Differential Revision: D4894403
      
      fbshipit-source-id: 767b944eb9fa0376c795555357c09bbf9179e24f
      71c789bb
  13. 14 Apr, 2017 6 commits
    • Andrew Krieger's avatar
      Suppress more warnings for MSVC · b5e4bc03
      Andrew Krieger authored
      Summary:
      Several other warnings that aren't reasonable to disable globally occur in folly headers.
      
      - Wrap the unreachable code warnings in MSVC specific disable blocks to prevent problems for users.
      - Use more careful bit twiddling instead of negating unsigned types
      - Enable a simpler overload for bool->float conversion than one which attempts float->bool.
      - Delete one unneeded undef.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D4891583
      
      fbshipit-source-id: 4d2efda1fe720abcb083bf29b578c065127cda24
      b5e4bc03
    • Christopher Dykes's avatar
      Use folly::getCurrentThreadId() in SSLContext · bfdfe5e4
      Christopher Dykes authored
      Summary: Rather than duplicating logic (and #ifdefs), just call the helper function instead.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D4888362
      
      fbshipit-source-id: f5096f6029cf05526aa74bd40235ac8014824789
      bfdfe5e4
    • Christopher Dykes's avatar
      Make folly::getCurrentThreadId() return a thread ID on OSX · 9b2f7afe
      Christopher Dykes authored
      Summary: It was previously returning a pointer masquerading as a `uint64_t`.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D4888325
      
      fbshipit-source-id: 6cf6ed09f0e7a39a8a2f93d3fa14b06913c27805
      9b2f7afe
    • Christopher Dykes's avatar
      Add FOLLY_HAVE_PTRHEAD · 1244eb24
      Christopher Dykes authored
      Summary:
      Folly is gaining support for compiling without PThread support on Windows, but we need a way to know that at compile-time for certain APIs.
      This also includes changes to guard the only API outside of portability/PThread.h that needs to be guarded on the existence of PThread.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D4889526
      
      fbshipit-source-id: 21175ad90f60a47718c7e2775e3b429b2aad62e2
      1244eb24
    • Christopher Dykes's avatar
      Add support for building without PThread to the CMake files · b8d8ea5a
      Christopher Dykes authored
      Summary: Because, soon it won't be required.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D4892076
      
      fbshipit-source-id: 6bfbf5bf523262659c0af336f659398ae8545e50
      b8d8ea5a
    • Christopher Dykes's avatar
      Remove the old SpinLock implementations · 6226a991
      Christopher Dykes authored
      Summary: They aren't actually needed as the primary implementation is supported on all platforms.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D4882687
      
      fbshipit-source-id: 7208c5d3c1f35b29b0cabb6a20fe030fbf10b131
      6226a991