1. 13 Aug, 2015 1 commit
    • Yang Chi's avatar
      Detect clang in folly/Portability.h · 05639983
      Yang Chi authored
      Summary: The fix in D2283221 was specific to a bug in gcc 4.8 but the macro was failing
      to filter out clang compilers.
      
      Reviewed By: @yfeldblum
      
      Differential Revision: D2340160
      05639983
  2. 12 Aug, 2015 6 commits
    • Orvid King's avatar
      Don't warn if pthread_atfork isn't avaliable on MSVC · 919d8e39
      Orvid King authored
      Summary: Because we don't even have `fork` to begin with under MSVC.
      Closes #278
      
      Reviewed By: @yfeldblum
      
      Differential Revision: D2306518
      
      Pulled By: @sgolemon
      919d8e39
    • Orvid King's avatar
      Add MSVC support to MaxAlign · 614ca624
      Orvid King authored
      Summary: This adds MSVC support to the detection of `MaxAlign` in `Portability.h`.
      Closes #256
      
      Reviewed By: @yfeldblum
      
      Differential Revision: D2283221
      
      Pulled By: @sgolemon
      614ca624
    • Orvid King's avatar
      Handle some scoping issues in Conv.h under MSVC · 21f7a3c1
      Orvid King authored
      Summary: No idea why these are the only two places it complains about, but it does.
      This just explicitly scopes them.
      Closes #253
      
      Reviewed By: @yfeldblum
      
      Differential Revision: D2282985
      
      Pulled By: @sgolemon
      21f7a3c1
    • Yedidya Feldblum's avatar
      CodeMod apache::thrift::transport::TSocketAddress to folly::SocketAddress. · aa6e8869
      Yedidya Feldblum authored
      Summary: [Folly] CodeMod apache::thrift::transport::TSocketAddress to folly::SocketAddress.
      
          yes | codemod --extensions h,tcc,cpp '^#include [<"]thrift/lib/cpp/transport/TSocketAddress\.h[>"]$' '#include <folly/SocketAddress.h>'
          yes | codemod --extensions h,tcc '\b(((apache::)?thrift::)?transport::)?TSocketAddress\b' 'folly::SocketAddress'
          yes | codemod --extensions cpp '^using apache::thrift::transport::TSocketAddress;$' 'using folly::SocketAddress;'
          yes | codemod --file-list "$(git ls-files "**/*.cpp" | xargs grep -P '^using (namespace folly|folly::SocketAddress);$' | cut -d: -f1 | paste -s -d,)" '\b(((apache::)?thrift::)?transport::)?TSocketAddress\b' 'SocketAddress'
          yes | codemod --extensions cpp '\b(((apache::)?thrift::)?transport::)?TSocketAddress\b' 'folly::SocketAddress'
          yes | codemod --extensions h,tcc,cpp -m '^\s*typedef folly::SocketAddress folly::SocketAddress;\n' ''
          yes | codemod --file-list thrift/lib/cpp/Makefile.am -m '^\s*transport/TSocketAddress\.h \\\n' ''
          rm thrift/lib/cpp/transport/TSocketAddress.h
      
      Reviewed By: @Invalid auth token., @​luk
      
      Differential Revision: D2325523
      aa6e8869
    • Orvid King's avatar
      Disable VDSO on MSVC · abb1acc6
      Orvid King authored
      Summary: MSVC will never be able to load VDSO, and doesn't even have dlopen, so just return `nullptr`, and let the fallback mechanisms handle it from there.
      Closes #282
      
      Reviewed By: @yfeldblum
      
      Differential Revision: D2307461
      
      Pulled By: @sgolemon
      abb1acc6
    • Hannes Roth's avatar
      (Wangle) Use perfect forwarding for LambdaBufHelper · 1e06e1db
      Hannes Roth authored
      Summary: Perfect forwarding only works if the function is templated on the same type, not if the type is a class template.
      
      Discovered by @lbrandy.
      
      Reviewed By: @yfeldblum, @lbrandy
      
      Differential Revision: D2333005
      1e06e1db
  3. 11 Aug, 2015 3 commits
  4. 10 Aug, 2015 1 commit
  5. 09 Aug, 2015 1 commit
    • Brett Simmers's avatar
      Support dynamic field width in folly::format() · aa7aebf3
      Brett Simmers authored
      Summary: I added this to support logging with varying indentation levels, but
      it could also be useful in other situations. Examples are in the
      test/documentation.
      
      Reviewed By: @tudor
      
      Differential Revision: D2322206
      aa7aebf3
  6. 07 Aug, 2015 1 commit
    • Yedidya Feldblum's avatar
      Avoid incorrect constexpr in folly/AtomicHashArray.h. · a64e4f2d
      Yedidya Feldblum authored
      Summary: [Folly] Avoid incorrect constexpr in folly/AtomicHashArray.h.
      
      It's actually not transitively constexpr, because it uses const values that are not themselves constexpr. Depending on the compiler, it could theoretically fail to build.
      
      Reviewed By: @Gownta
      
      Differential Revision: D2322143
      a64e4f2d
  7. 06 Aug, 2015 2 commits
    • Anton Likhtarov's avatar
      Easy: disable guard pages by default · e7e569e9
      Anton Likhtarov authored
      Summary: Mcrouter still enables these by default.  Tracking down a perf regression in another code path that uses fibers.
      
      Reviewed By: @JohnRambo
      
      Differential Revision: D2320772
      e7e569e9
    • Alexander Shaposhnikov's avatar
      Make Core.size test portable · d7eea493
      Alexander Shaposhnikov authored
      Summary: Add a golden struct for checking the size of Core.
      It makes this test pass on OSX
      (now failing because of the different size of std::function).
      
      Reviewed By: @​hannesr
      
      Differential Revision: D2315429
      d7eea493
  8. 05 Aug, 2015 4 commits
  9. 04 Aug, 2015 3 commits
    • Nathan Bronson's avatar
      make RetryingTest more robust · b70fcab6
      Nathan Bronson authored
      Summary: Make RetryingTest more robust by giving it multiple chances to
      meeting timing criteria.
      
      Reviewed By: @yfeldblum
      
      Differential Revision: D2306245
      b70fcab6
    • Yedidya Feldblum's avatar
      Refactor extract FOLLY_SYNCHRONIZED_HAVE_TIMED_MUTEX. · 77f6a914
      Yedidya Feldblum authored
      Summary: [Folly] Refactor extract FOLLY_SYNCHRONIZED_HAVE_TIMED_MUTEX.
      
      The same complex check is done in two places. Ick. Extract it to a single place.
      
      Reviewed By: @​mzlee
      
      Differential Revision: D2302885
      77f6a914
    • Alexander Shaposhnikov's avatar
      Fix a bad bug in folly::ThreadLocal (incorrect using of pthread) · 0347a79f
      Alexander Shaposhnikov authored
      Summary: Fix incorrect using of pthread in folly::ThreadLocal.
      
      The root of the trouble (see man pthread_key_create):
      "At thread exit, if a key value has a non-NULL destructor pointer,
      and the thread has a non-NULL value associated with that key,
      the value of the key is set to NULL, and then the function pointed to is called
      with the previously associated value as its sole argument."
      
      At thread exit we need to recover the thread-specific threadEntry
      otherwise the subsequent calls of getThreadEntry may recreate it
      (what actually DOES  happen in the test ThreadLocalPtr.CreateOnThreadExit)
      and the newly created threadEntry will "leak". It will live longer than the corresponding
      thread violating the internal invariant of StaticMeta and also it will break
      the code of the method onThreadExit. In particular this bug causes the failure
      of the test ThreadLocalPtr.CreateOnThreadExit on OSX.
      
      Reviewed By: @lbrandy
      
      Differential Revision: D2304950
      0347a79f
  10. 03 Aug, 2015 1 commit
    • Orvid King's avatar
      Add MSVC support to futures/Deprecated.h · cbaaa2db
      Orvid King authored
      Summary: It was originally unconditionally useing `__attribute__` syntax, so this makes it conditionally use the `__declspec` syntax.
      Closes #268
      
      Reviewed By: @yfeldblum
      
      Differential Revision: D2283909
      
      Pulled By: @sgolemon
      cbaaa2db
  11. 02 Aug, 2015 1 commit
  12. 01 Aug, 2015 1 commit
  13. 31 Jul, 2015 12 commits
    • Michael Lee's avatar
      Not to use EventBaseLocal on mobile · 042b0f22
      Michael Lee authored
      Summary: Temp remove EventBaseLocal on mobile.
      
      Reviewed By: @djwatson
      
      Differential Revision: D2302322
      042b0f22
    • Michael Lee's avatar
      No std::recursive_timed_mutex and std::timed_mutex. · bfe9e3dd
      Michael Lee authored
      Summary: Do not use these if __ANDROID__ is defined as well.
      
      Reviewed By: @​yangchi
      
      Differential Revision: D2301782
      bfe9e3dd
    • Orvid King's avatar
      Fix a parse error in detail/ThreadLocalDetail.h under MSVC · 0aac0635
      Orvid King authored
      Summary: I have no idea why this specific declaration would error, or if there is a difference in meaning, but this fixes MSVC's absurd parser error.
      Closes #277
      
      Reviewed By: @yfeldblum
      
      Differential Revision: D2284096
      0aac0635
    • Orvid King's avatar
      Generalize FOLLY_SPIN_WAIT to use Portability methods · d383a116
      Orvid King authored
      Summary: Improves MSVC support.
      Closes #274
      
      Note that this diff has been heavily modified from @Orvid's original PR by @yfeldblum and @sgolemon
      
      Reviewed By: @yfeldblum
      
      Differential Revision: D2284035
      
      Pulled By: @sgolemon
      d383a116
    • Orvid King's avatar
      Use constexpr initializers for AtomicHashArray Config · f02969df
      Orvid King authored
      Summary: Closes #264
      
      Modified by @sgolemon from the original PR to declare MSVC2015-final as the official minimum version, making the defines in the original PR unnecessary.
      
      Reviewed By: @yfeldblum
      
      Differential Revision: D2284130
      
      Pulled By: @sgolemon
      f02969df
    • Nick Terrell's avatar
      Overload on dynamic object reference type. · 117385fb
      Nick Terrell authored
      Summary: There are a bunch of methods in `folly::dynamic` that return a
      reference to a sub-object, e.g. `getString()`.
      These methods are a bit unsafe because it allows you to write code with dangling
      references when the `folly::dynamic` object is an rvalue:
      
        auto& obj = parse_json(some_string).at("key");
      
      However, the bigger win is that when we have an rvalue `folly::dynamic`, such as
      returned by `getDefault(...)`, we can move the sub-object out:
      
        auto obj = parse_json(some_string).at("key");
        auto str = obj.getDefault("another-key", "").getString();
      
      In the first line, the subobject is copied out when it could be safely moved out.
      In the second line `getDefault(...)` copies the dynamic sub-object out, and then
      `getString()` copies the string out, when the string could be moved.
      
      Also in the case of `getDefault()` being called on a rvalue, we can move the
      sub-object out.
      
      Reviewed By: @marcinpe
      
      Differential Revision: D2267588
      117385fb
    • Sophia Wang's avatar
      DelayedDestruction cleanup · d615b776
      Sophia Wang authored
      Summary: remove unnecessary stuff
      
      Reviewed By: @siyengar
      
      Differential Revision: D2284095
      d615b776
    • Brian Watling's avatar
      Add accessor to estimate a FiberManager's run queue size · 207ab876
      Brian Watling authored
      Summary: Add accessor to estimate a FiberManager's run queue size
      
      Reviewed By: @sarangbh
      
      Differential Revision: D2293367
      207ab876
    • Andrew Gallagher's avatar
      folly: fix another test running under buck · d7c649a4
      Andrew Gallagher authored
      Reviewed By: @yfeldblum
      
      Differential Revision: D2300047
      d7c649a4
    • Andrew Gallagher's avatar
      folly: fix tests running under buck (w/ clang and dynamic linking) · 932cba0f
      Andrew Gallagher authored
      Summary: Various fixes to get tests passing using buck's dev mode.
      
      Reviewed By: @yfeldblum
      
      Differential Revision: D2299981
      932cba0f
    • Yedidya Feldblum's avatar
      futures::retrying. · e0de0a27
      Yedidya Feldblum authored
      Summary: [Folly] futures::retrying.
      
      Reviewed By: @fugalh
      
      Differential Revision: D2201630
      e0de0a27
    • Ondrej Lehecka's avatar
      Fix 'missing declarations' and 'unusued parameter' warnings · 17e68d98
      Ondrej Lehecka authored
      Summary: enum iterators operator!= didn't use the iterator parameter for comparison
      because they assumed you only ever compare to end. Change the operator!= to
      look at the iterator parameter to check if it was end.
      
      Thrift generated code for reflection initializers for some types that weren't
      declared before definition because they were never called outside of the file.
      Marked those initializers as 'static'.
      
      Reviewed By: @alandau
      
      Differential Revision: D2284371
      17e68d98
  14. 30 Jul, 2015 3 commits
    • Mark McDuff's avatar
      add EventBase-local storage abstraction · b74275bb
      Mark McDuff authored
      Summary: This has come up a couple times, and the implementation is never nice.  Just like we have thread-local storage, it will be useful to also have evb-local storage.  Provides at pretty simple get/set/delete interface (see unittest).
      
      Reviewed By: @djwatson
      
      Differential Revision: D2203063
      b74275bb
    • Nima Aghdaii's avatar
      Fix Infinity · 5b8183c1
      Nima Aghdaii authored
      Summary: folly only accepts "Infinity" while deserializing but writes "infinity" when serializing.
      This means folly cannot deserialize what it serialized before.
      If we agree on this, we could update ##fbcode/common## as well: https://fburl.com/136793901
      
      Reviewed By: @marcinpe
      
      Differential Revision: D2293627
      5b8183c1
    • Orvid King's avatar
      Removed an unneeded typename in dynamic.h · b8aa5fcd
      Orvid King authored
      Summary: This `typename` qualifier was unneeded, and MSVC errors if it's there, so remove it.
      Closes #275
      
      Reviewed By: @yfeldblum
      
      Differential Revision: D2284056
      
      Pulled By: @sgolemon
      b8aa5fcd