1. 11 Dec, 2014 25 commits
    • Hans Fugal's avatar
      via and activate/deactivate chaining · f2ae6aa7
      Hans Fugal authored
      Summary:
      Better support and test chaining of `via` and `activate`/`deactivate`.
      
      The real problem is that without the ref qualifier a multiple chain of lvalue references can end up with a destructed object being referenced after.
      
      https://akrzemi1.wordpress.com/2014/06/02/ref-qualifiers/
      
      Test Plan:
      This is mostly new tests that would fail and now pass.
      I think maybe the tests are a bit weak, it would be good to find a way to ensure we aren't going to see the access-after-free bugs in these tests.
      
      Reviewed By: jsedgwick@fb.com
      
      Subscribers: trunkagent, fugalh, exa, njormrod, folly-diffs@
      
      FB internal diff: D1714873
      
      Tasks: 5489801
      
      Signature: t1:1714873:1417628538:9e610c5ba5e0a22c19a11d53aa956be45d585058
      f2ae6aa7
    • Hans Fugal's avatar
      Remove Later · a6eb914b
      Hans Fugal authored
      Summary: dalek-exterminate
      
      Test Plan:
      Moved `Later` tests to `via` tests.
      fbgs
      contbuild
      
      Reviewed By: jsedgwick@fb.com
      
      Subscribers: fbcode-common-diffs@, adityab, lins, trunkagent, fugalh, exa, njormrod, folly-diffs@, hannesr
      
      FB internal diff: D1714862
      
      Tasks: 5409538
      
      Signature: t1:1714862:1417621949:f63f49e1093a021170d2346e8e673db042d2bc56
      a6eb914b
    • Hans Fugal's avatar
      HHWheelTimer::scheduleTimeoutFn · 11329181
      Hans Fugal authored
      Summary:
      cpp11ify
      
      I'm gonna use this for Wangle timeouts.
      
      Test Plan:
      new unit test
      _bin/folly/io/async/test/HHWheelTimerTest
      
      Reviewed By: jsedgwick@fb.com
      
      Subscribers: trunkagent, exa, njormrod, folly-diffs@
      
      FB internal diff: D1720014
      
      Tasks: 5002969
      
      Signature: t1:1720014:1417732753:ddcad431b6c305c9ba27f6b9e3454ab158c13f4b
      11329181
    • Bartosz Nitka's avatar
      Revert "Make folly::Singleton's destruction happen earlier" · 4399c9e4
      Bartosz Nitka authored
      Summary: This reverts commit 6584412293cc5b9aad2004e99d550e3478df1e5d.
      
      Test Plan: thisisrevert
      
      Reviewed By: smarlow@fb.com
      
      Subscribers: njormrod, folly-diffs@
      
      FB internal diff: D1721739
      
      Signature: t1:1721739:1417786147:01aaaf50b679da7942b2a30ad039eb0ac1031430
      4399c9e4
    • Nicholas Ormrod's avatar
      include gflags header in SSLSessionCacheManager · 8f9cc411
      Nicholas Ormrod authored
      Summary:
      SSLSessionCacheManager uses glfags but doesn't include it. This
      breaks on some systems.
      
      Test Plan: fbconfig -r folly && fbmake runtests
      
      Reviewed By: robbert@fb.com
      
      Subscribers: trunkagent, sdwilsh, fugalh, ssl-diffs@, njormrod, folly-diffs@
      
      FB internal diff: D1716997
      
      Signature: t1:1716997:1417720032:548c2ad8f54e41d42585c331324f2065733595c1
      8f9cc411
    • Andrii Grynenko's avatar
      Make folly::Singleton's destruction happen earlier · 24b92211
      Andrii Grynenko authored
      Summary: Schedule destroyInstances to be executed via atexit in registrationComplete. registrationComplete is called from main(), so this makes sure folly::Singleton's will be destoyed before all singletons constructed before main() (which should cover all third-party libraries' singletons).
      
      Test Plan: unit test
      
      Reviewed By: chip@fb.com
      
      Subscribers: trunkagent, njormrod, folly-diffs@
      
      FB internal diff: D1717963
      
      Tasks: 5666654
      
      Signature: t1:1717963:1417659478:c50c271d1786be75499565f6ab9c0a1a6f6f347d
      24b92211
    • Andre Pinto's avatar
      Correct getsockopt call made by AsyncSocket · 44e48457
      Andre Pinto authored
      Summary:
      The getsockopt's last parameter (optlen) is a value-result parameter
      and AsyncSocket::getSockOpt was passing a value as argument.
      
      Test Plan: Unit tests
      
      Reviewed By: alikhtarov@fb.com
      
      Subscribers: trunkagent, njormrod, folly-diffs@
      
      FB internal diff: D1717463
      
      Tasks: 4867290
      
      Signature: t1:1717463:1417664828:6c7a74ff31725121f892ce1adba2653e70728192
      44e48457
    • James Sedgwick's avatar
      add consumeUntilDrained API to NotificationQueue::Consumer · 35ed5364
      James Sedgwick authored
      Summary:
      ... and employ it in EventBase's destructor to stop leaking memory from unexecuted NotificationQueue-variety runInEventBaseThread() callbacks
      
      in addition to the attached task, this should also fix the root cause of the already-worked-around #5564342
      
      Test Plan:
      test no longer leaks.* on the other hand, IOThreadPoolExecutor::stop() no longer actually stops, it joins. I added comments to stop() in headers indicating that it should be treated as best-effort.
      
      * hilariously, this actually isn't true - there's a new leak of a thread local inside the io pool because callbacks can outlive the pool now. i'll leave a full explanation for the upcoming patch.
      
      Reviewed By: davejwatson@fb.com
      
      Subscribers: alandau, bmatheny, mshneer, trunkagent, fugalh, njormrod, folly-diffs@
      
      FB internal diff: D1682860
      
      Tasks: 5336655
      
      Signature: t1:1682860:1416347774:ac5f31fb72373992f425c93ac284a0cd27608db4
      35ed5364
    • Hans Fugal's avatar
      Replace Later in tcc · 6fdeaeba
      Hans Fugal authored
      Summary:
      s/`sendAsyncLater`/`sendAsyncVia`/ and change it to return a cold future with equivalent semantics. We have to call `via` twice in the implementation—once to gate the result and again to make sure the caller will get a future that executes in that executor's context also.
      
      NB this is a slight semantic change - if the executor is, say, a threadpool then now it will go through the threadpool queue (and maybe execute in two different threads) whereas before the whole later chain would execute in the same thread. I don't *think* this is a problem, but something to think about.
      
      Test Plan:
      stuff we fbconfig'd builds
      contbuild
      unit tests
      thinking really hard
      
      Reviewed By: hannesr@fb.com
      
      Subscribers: trunkagent, fbcode-common-diffs@, net-systems@, ldbrandy, hannesr, fugalh, zhuohuang, exa, watashi, smarlow, akr, bnitka, jcoens, darshan, njormrod, anfarmer, folly-diffs@
      
      FB internal diff: D1644012
      
      Tasks: 5409538
      
      Signature: t1:1644012:1417625401:99b1b7df6de4cfcdd945eed7104d4c82e8c0b78f
      6fdeaeba
    • Maxim Sokolov's avatar
      Fixing static initilize fiasco in Benchmark.cpp · c5dea7b6
      Maxim Sokolov authored
      Summary:
      Benchmark.cpp code is dependent on initialization order, which leads
      to benchmarks not running. The root cause is that on some linkers the code which
      adds benchmarks to the benchmarks vector is run before the vector initialization.
      
      The original bug report: https://github.com/facebook/folly/issues/18
      See: http://www.parashift.com/c++-faq-lite/static-init-order.html
      
      Test Plan: run benchmark_test and compare result with master output
      
      Reviewed By: andrei.alexandrescu@fb.com, njormrod@fb.com
      
      Subscribers: trunkagent, sdwilsh, folly-diffs@
      
      FB internal diff: D1710588
      
      Signature: t1:1710588:1417468175:fd2705a573cef5c4ff020b60c6aec3d83bcdbbab
      c5dea7b6
    • Andrei Bajenov's avatar
      Readd unit test · d904cfb9
      Andrei Bajenov authored
      Summary:
      Description:
      Last time a merge error broke stuff, fixing and readding
      
      Test Plan:
      Ran unit test
      
      This reverts commit 1075ab9d6f62cad36a228bd3fc7203a75fdf5baf.
      
      Reviewed By: davejwatson@fb.com
      
      Subscribers: njormrod, folly-diffs@, wstefancik
      
      FB internal diff: D1695920
      
      Signature: t1:1695920:1416529609:3f726ac5df4e33f254075738ea6655a6fc01bb7f
      d904cfb9
    • Pavlo Kushnir's avatar
      Fix dynamic::insert · 78b2965a
      Pavlo Kushnir authored
      Summary: folly::dynamic::insert is broken. When we try to insert an rvalue and the key already exists in dynamic, insert will replace the value with empty dynamic.
      
      Test Plan: unit test attached
      
      Reviewed By: stepan@fb.com
      
      Subscribers: trunkagent, njormrod, folly-diffs@
      
      FB internal diff: D1704995
      
      Signature: t1:1704995:1417053631:8e0163693df721c54b016f8c27e81e7bf60194cb
      78b2965a
    • Mainak Mandal's avatar
      fix varint decoding in case the first buffer is smaller than encoded varint · 29ca6827
      Mainak Mandal authored
      Summary: This is not a super clean solution, given that I have just copied the code over form Varint.h. Another way would be to add a peek(IOBuf&, size_t) method to CursorBase and use that to peek deeper into the chain.
      
      Test Plan: unit tests
      
      Reviewed By: tulloch@fb.com
      
      Subscribers: trunkagent, njormrod, dcapel, benr, folly-diffs@
      
      FB internal diff: D1689872
      
      Signature: t1:1689872:1416964989:b7f12a2686233f161401288ffcb8c51926b01fdf
      29ca6827
    • Nicholas Ormrod's avatar
      IOBuf::moveToFbString legacy 4GiB limit · 929e93d4
      Nicholas Ormrod authored
      Summary:
      IOBufs now support larger than 4GiB chunks. One of the checks
      was not removed. Tracing through the capacity, its use if all 64-bit
      compatible.
      
      Test Plan: moveToFbString a 4GiB+ IOBuf element.
      
      Reviewed By: maxim@fb.com
      
      Subscribers: net-systems@, sdwilsh, njormrod, folly-diffs@
      
      FB internal diff: D1705316
      
      Tasks: 5648445
      
      Signature: t1:1705316:1416965241:d9d064bbde53e033d32bfe872b3445ee59005f5e
      929e93d4
    • Nicholas Ormrod's avatar
      zlib compression fails on large IOBufs · eb9d7cd7
      Nicholas Ormrod authored
      Summary:
      If a single IOBuf has size exceeding 2^32, then our zlib
      compression algorithm fails. Specifically, zlib z_stream.avail_in is
      only 32 bytes (I think it's a long?
      http://www.gzip.org/zlib/zlib_faq.html#faq32), and so a too-big IOBuf
      will overflow the z_stream and cause data loss.
      
      This diff breaks up large IOBufs into smaller chunks.
      
      Test Plan:
      fbconfig -r folly && fbmake runtests
      
      Also compressed biggrep's configerator blob, which is how this bug was
      caught. It now works. See the associated task.
      
      Reviewed By: robbert@fb.com
      
      Subscribers: trunkagent, sdwilsh, njormrod, folly-diffs@
      
      FB internal diff: D1702925
      
      Tasks: 5648445
      
      Signature: t1:1702925:1416958232:459d498ff1db13e1a20766855e6f2f97da8cde8c
      eb9d7cd7
    • Subodh Iyengar's avatar
      Make SSLContext's exit() handling more graceful · 607e323f
      Subodh Iyengar authored
      Summary:
      Some platforms that SSLContext run on call exit() despite best practices.
      This cause the static structures to be destructed and cause race conditions
      and crashes.
      
      This new's the static structures so that they won't be destructed on exit()
      
      Test Plan: Unit tests
      
      Reviewed By: seanc@fb.com
      
      Subscribers: trunkagent, ssl-diffs@, seanc, njormrod, folly-diffs@
      
      FB internal diff: D1702186
      
      Tasks: 5572637
      
      Signature: t1:1702186:1416941649:c5bdfd8cc604fc3618f51bdb8b910b5b2cf350ad
      607e323f
    • James Sedgwick's avatar
      fix Makefile.am · 9daa3dc2
      James Sedgwick authored
      Summary: also kill duplicated test file
      
      Test Plan: run all exp/wangle tests
      
      Reviewed By: davejwatson@fb.com
      
      Subscribers: fugalh, njormrod, folly-diffs@
      
      FB internal diff: D1698503
      
      Signature: t1:1698503:1416612139:7139c6aa2ca79eabdaec6c33192194df984af348
      9daa3dc2
    • Dave Watson's avatar
      fix build · 70109461
      Dave Watson authored
      Summary: bad merge with D1661169 caused a unittest to fail.  Update unittest
      
      Test Plan: fbconfig -r folly/experimental/wangle; fbmake runtests
      
      Reviewed By: jsedgwick@fb.com
      
      Subscribers: doug, fugalh, njormrod, folly-diffs@
      
      FB internal diff: D1698435
      
      Signature: t1:1698435:1416611458:555b6b50baa1bc5850b10e19c9c94978f93f2a5a
      70109461
    • James Sedgwick's avatar
      ChannelPipeline tests and fixes · 2cfb9ed6
      James Sedgwick authored
      Summary: As above. This paid off with a couple bugfixes.
      
      Test Plan: run em all
      
      Reviewed By: hans@fb.com
      
      Subscribers: fugalh, njormrod, folly-diffs@
      
      FB internal diff: D1695106
      
      Signature: t1:1695106:1416522038:0c3345aadf954bf346d35b99877e7f8dfcf3ceff
      2cfb9ed6
    • James Sedgwick's avatar
      AsyncSocketHandler · 96e30d31
      James Sedgwick authored
      Summary:
      mostly copypasta from TAsyncTransportHandler
      
      Test Plan: compiles
      
      Reviewed By: davejwatson@fb.com
      
      Subscribers: trunkagent, fugalh, njormrod, folly-diffs@
      
      FB internal diff: D1690973
      
      Signature: t1:1690973:1416529528:4feb187a68ad5405662b9b0efb160edd253a2977
      96e30d31
    • James Sedgwick's avatar
      test for OutputBufferingHandler · 899edcb7
      James Sedgwick authored
      Summary:
      MLE: my first custom matcher
      
      revealed some include issues, also fixed
      
      Test Plan: guess
      
      Reviewed By: davejwatson@fb.com
      
      Subscribers: trunkagent, fugalh, njormrod, folly-diffs@
      
      FB internal diff: D1686223
      
      Signature: t1:1686223:1416334120:41bce88d56dd9ca107f3ddc3927c6be9419370cf
      899edcb7
    • James Sedgwick's avatar
      modifiable channel pipelines · 40923559
      James Sedgwick authored
      Summary:
      Basically the same interface as before, but you must specify the read and write types for the ends of pipeline. Implementation is cleaner as well; there's fewer levels of indirection
      
      This dynamic casts shit all over the place and is less typesafe then the previous iteration, but I think with some carefully placed static_asserts, could be just as safe (in the case where you don't do any modification, anyway)
      
      Right now you can only add to the front or back of the pipeline but the way it's set up you could add any number of mutations, including ones that are triggered by handlers. But this should (might?) be enough for Tunnel, which was the motivation.
      
      Test Plan: basic test compiles, thrift2 diff still works with a one line change
      
      Reviewed By: hans@fb.com
      
      Subscribers: trunkagent, fugalh, njormrod, folly-diffs@, bmatheny
      
      FB internal diff: D1661169
      
      Tasks: 5002299
      
      Signature: t1:1661169:1416521727:1f126279796c0b09d1905b9f7dbc48a9e5540271
      40923559
    • Alexey Spiridonov's avatar
      Add process group leader option · 8a5fcb4f
      Alexey Spiridonov authored
      Summary: Now a subprocess can be reliably made a group leader -- good for job control.
      
      Test Plan:
      unit test, checked that the pgid test worked in bash, too (only OKAY_XXX is printed)
      
      ==> XXX.sh <==
      #!/bin/sh
      test $(cut -d ' ' -f 5 /proc/$$/stat) == $$ && echo OKAY_XXX
      ./YYY.sh
      
      ==> YYY.sh <==
      #!/bin/sh
      test $(cut -d ' ' -f 5 /proc/$$/stat) == $$ && echo OKAY_YYY
      ./ZZZ.sh
      
      ==> ZZZ.sh <==
      #!/bin/sh
      test $(cut -d ' ' -f 5 /proc/$$/stat) == $$ && echo OKAY_ZZZ
      
      Reviewed By: simpkins@fb.com
      
      Subscribers: net-systems@, njormrod, folly-diffs@, simpkins
      
      FB internal diff: D1492526
      
      Signature: t1:1492526:1416528620:3cf98b1c1e334a7d551b2c2f3e76b1c70f07ad7c
      8a5fcb4f
    • Nicholas Ormrod's avatar
      Fix build break · 136dd179
      Nicholas Ormrod authored
      Summary: Diff that had @override-unit-failures broke the build
      
      Test Plan: fbconfig -r folly && fbmake dbg && fbmake runtests
      
      Reviewed By: robbert@fb.com
      
      Subscribers: sdwilsh, njormrod, folly-diffs@
      
      FB internal diff: D1694388
      
      Tasks: 5662947
      
      Signature: t1:1694388:1416510278:d50f4896814a34d73d55be292961f5ecd74b1bb4
      
      Blame Revision: D1680735
      136dd179
    • James Sedgwick's avatar
      merge event base tests · 1fbc2522
      James Sedgwick authored
      Summary: someone made another event base test while the big set still lived in thrift. merge it now that the old tests have been moved.
      
      Test Plan: fbconfig folly/io/async/test && fbmake runtests --extended-tests
      
      Reviewed By: davejwatson@fb.com
      
      Subscribers: njormrod, folly-diffs@
      
      FB internal diff: D1690764
      
      Signature: t1:1690764:1416413748:f3ae64d509432844bb2e1b689a75d66825269d15
      1fbc2522
  2. 20 Nov, 2014 3 commits
    • Dave Watson's avatar
      Bump version to 17:0 · 2c2d5777
      Dave Watson authored
      2c2d5777
    • Dave Watson's avatar
      folly/io/async documentation · a1279abd
      Dave Watson authored
      Summary: Documentation brain-dump.  The sources already have pretty good doxygen-style comments, but could use a good high-level overview.
      
      Test Plan: Reviewers get to edit
      
      Reviewed By: jsedgwick@fb.com, afrind@fb.com, dcsommer@fb.com, alandau@fb.com
      
      Subscribers: fugalh, subodh, kmdent, seanc, vloh, sjenkins, kparton, doug, net-systems@, njormrod, folly-diffs@, sgolemon, alikhtarov, andrii, tudorb
      
      FB internal diff: D1690976
      
      Tasks: 5648428
      
      Signature: t1:1690976:1416419706:3894976c32904f040d518b9a4ce26ccb40d7ed80
      a1279abd
    • Andrei Bajenov's avatar
      HHWheelTimer - fix scheduling timeouts within callbacks · c593b651
      Andrei Bajenov authored
      Summary:
      This one is a little tricky, but it explains what happened in t5388156. Basically what we observed in the stack traces is that the HHWheelTimer count_ is 0, but there is still a timeout scheduled on the AsyncTimeout.
      
      How I can see this happening is the following:
      - SASL times out
      - We fall back to insecure mode in the callback and schedule a send of a real message to the server. Here we schedule another timeout on the same HHWheelTimer object. Since count_ is 0 at this point, we schedule a timeout in AsyncTimeout.
      - Now the initial SASL timeout was late, so the HHWheelTimer is in a catchup state. This means that it's possible for the callback on the timeout that was just scheduled to fire on the same "tick".
      - This callback invokes SR's callbacks which try to detach the event base from the channel. But it can't detach because we have something scheduled on the AsyncTimeout.
      - We crash.
      
      Test Plan:
      - will wait for contbuild
      - Something like this repros the problem: https://phabricator.fb.com/P17220063. Note I hacked the catchup part to get it to work. Now running loadgen with security = permitted causes the crash.
      
      // hphp tests are stalled, have to do this...
      
      Reviewed By: mshneer@fb.com
      
      Subscribers: bmatheny, mshneer, sandeepkk, trunkagent, njormrod, folly-diffs@, alandau, mhorowitz, srenfro, hitesh, wstefancik
      
      FB internal diff: D1680735
      
      Tasks: 5388156
      
      Signature: t1:1680735:1416252123:e76668860ccda9380a87996b4fa3de957e129404
      c593b651
  3. 19 Nov, 2014 12 commits
    • Dave Watson's avatar
      Bump version to 16:0 · ed0a5787
      Dave Watson authored
      ed0a5787
    • Dave Watson's avatar
      OS merges · 5b34fdc3
      Dave Watson authored
      Summary:
      All pretty trivial:
      
      https://github.com/facebook/folly/issues/99
      https://github.com/facebook/folly/issues/98
      https://github.com/facebook/folly/issues/45
      
      Test Plan: Will watch jenkins fbthrift build
      
      Reviewed By: dcsommer@fb.com
      
      Subscribers: doug, njormrod, folly-diffs@
      
      FB internal diff: D1669952
      
      Signature: t1:1669952:1415643677:906234f0a89f38645b0072d3c88762d8fa2729dc
      5b34fdc3
    • Dave Watson's avatar
      server bootstrap · 1a568d03
      Dave Watson authored
      Summary:
      ServerBootstrap a la netty.
      
      This should be enough for some refactoring of thrift server and proxygen servers - but there are still lots of TODOs left to do
      
      Test Plan:
      Unittests included
      
      Depends on D1638358
      
      Reviewed By: jsedgwick@fb.com
      
      Subscribers: trunkagent, doug, fugalh, alandau, bmatheny, mshneer, jsedgwick, afrind, dcsommer
      
      FB internal diff: D1649521
      
      Tasks: 5488516
      
      Signature: t1:1649521:1416256073:fc003fd471bdfd137160dd6d7befd933ee8addd2
      1a568d03
    • Daniel Sommermann's avatar
      Run the HHWheelTimer and EventBase tests · e059c8a7
      Daniel Sommermann authored
      Summary: Fix the TARGETS from the refactor
      
      Test Plan: ran it locally
      
      Reviewed By: davejwatson@fb.com
      
      Subscribers: doug, njormrod, folly-diffs@
      
      FB internal diff: D1689151
      
      Signature: t1:1689151:1416353673:3d3575b10f963e9f558954b8f3eba8bf48cdaa74
      e059c8a7
    • Edward Chin's avatar
      add custom getLoad() for multifeed leaf · 51c927b8
      Edward Chin authored
      Summary:
      getLoad() is called in servicerouter loadbalancing when a load_counter is not specified.  I added a custom getLoad() for leaf and made it so that different metrics can be tested without code pushes.
      
      Changes:
      1) Overloaded PriorityThreadManager::getCodel() so you can specify a PRIORITY.  aggr->leaf thrift calls are marked as HIGH priority.
      2) The value of FLAGS_load_metric determines what metric the custom getLoad() will use (codel, max requests, or fallback to ThriftServer::getLoad()).
      3) Smc listener for FLAGS_load_metric.
      4) Removed server->setIsUnevenLoad(false) since there isn't reason this need to be set, and activeRequests_ and getPendingCount() are not tracked when isUnevenLoad_ is false.
      
      Test Plan: Run leaf and check that smc listener works.  Custom getLoad() won't be called until t5625774 is resolved.
      
      Reviewed By: hitesh@fb.com
      
      Subscribers: njormrod, folly-diffs@, trunkagent, varunk, fugalh, alandau, nkgupta, bmatheny, jaredg, xie, mshneer, yguo
      
      FB internal diff: D1685215
      
      Signature: t1:1685215:1416339297:0d1f8cb0cec27242d95f0067337d80149b0a720e
      51c927b8
    • Dave Watson's avatar
      Clean up runBeforeLoop API · 998b419a
      Dave Watson authored
      Summary: Clean up API per stepan's comments in D1641057: runBeforeLoop callbacks should be run before the if block, so runInLoop calls will work.
      
      Test Plan: added unittest
      
      Reviewed By: hans@fb.com
      
      Subscribers: trunkagent, doug, alandau, bmatheny, njormrod, mshneer, folly-diffs@
      
      FB internal diff: D1679773
      
      Signature: t1:1679773:1415916488:f20dd98bf40dd4cb19a4b11875dc0c9fa3e7870e
      
      Blame Revision: D1641057
      998b419a
    • Daniel Sommermann's avatar
      Move some tests to folly · 5e80856a
      Daniel Sommermann authored
      Summary:
      These lived in fbthrift previously, but they should move with the
      main code too.
      
      Test Plan: unit tests
      
      Reviewed By: davejwatson@fb.com
      
      Subscribers: doug, alandau, bmatheny, njormrod, mshneer, folly-diffs@
      
      FB internal diff: D1683229
      
      Signature: t1:1683229:1416010730:36fb7e4c9916ae7a9b5972cd476f82014c5f4c78
      5e80856a
    • James Sedgwick's avatar
      top-level via() · 6d8f063d
      James Sedgwick authored
      Summary: as discussed
      
      Test Plan: compiles :)
      
      Reviewed By: steveo@fb.com
      
      Subscribers: fugalh, njormrod, folly-diffs@
      
      FB internal diff: D1687921
      
      Signature: t1:1687921:1416331366:4e58a69daf39797e0d456ba86a463a9da2fd0369
      6d8f063d
    • subodh's avatar
      Improve initialization of openssl · df3064cf
      subodh authored
      Summary:
      SSLContext takes it upon itself to
      perform initialization of openssl along with
      cleaning it up.
      
      However in applications where there are multiple
      libraries using openssl, cleanup is not really
      desirable. Thus the application should own init
      and cleanup of openssl, rather than SSLContext.
      
      This is bad because openssl's init apis are not thread
      safe.
      
      This diff modifies SSLContext with 3 changes to
      make this possible in the context of apps:
      
      1. Add macro SSLCONTEXT_NO_REFCOUNT, for apps to be
      able to disable refcounting
      2. Move all steps of init into initializeOpenSSL.
      As a result, apps can choose when to call
      SSLContext::intitializeOpenSSL and if it has
      been called before, openssl will not be reinitialized.
      3. Move randomize as a static method to make it a part
      of the initialization process.
      
      Test Plan: Unit tests.
      
      Reviewed By: ranjeeth@fb.com
      
      Subscribers: ranjeeth, folly-diffs@, ssl-diffs@, njormrod, seanc, trunkagent, dihde
      
      FB internal diff: D1686397
      
      Signature: t1:1686397:1416270565:de805794d65af1c164ed334ff7ba93fe60b2b78a
      df3064cf
    • Nicholas Ormrod's avatar
      Fix build break · 832ecb9f
      Nicholas Ormrod authored
      Summary:
      Change counting index to unsigned to avoid unsigned-signed
      comparison errors.
      
      @build-break
      
      Test Plan:
      fbconfig -r folly && fbmake dbg
      fbmake runtests wangle
      
      Reviewed By: robbert@fb.com, davejwatson@fb.com
      
      Subscribers: sdwilsh, fugalh, njormrod, folly-diffs@
      
      FB internal diff: D1686315
      
      Signature: t1:1686315:1416267974:d8f6075550b9d611790263338dd4f49e7ef451cc
      
      Blame Revision: D1595200
      832ecb9f
    • James Sedgwick's avatar
      Indefinite observers and inline observers · 55ee7359
      James Sedgwick authored
      Summary:
      provides new APIs observe(ObserverPtr<T>) and observe(Observer<T>*) that
      are not associated with a subscription. The latter method avoids allocations at the cost of disowning responsiblity for object lifetimes.
      
      It could be used for batch-allocating filter chains, for instance. I hacked up some recursive templates that would make that easy to do, but
      haven't included them. I'd rather see the first use case and then decide whether to let users set them up themselves or to provide an
      abstraction that makes it easier.
      
      Test Plan: unit
      
      Reviewed By: davejwatson@fb.com
      
      Subscribers: folly-diffs@, fugalh, njormrod
      
      FB internal diff: D1595200
      
      Tasks: 5002278
      
      Signature: t1:1595200:1416266578:95c0532af42443fd83e2f94d30790c3c0831ce65
      55ee7359
    • James Sedgwick's avatar
      OutputBufferingHandler · c3ee57ef
      James Sedgwick authored
      Summary:
      see D1618704 and D1604575
      Really need to make a decision about making a push for EventBaseManager everywhere. Getting/setting EBs when there's only ever one seems so silly, but in (e.g.) tests where one-off EBs are used without using the EBM, stuff like this will break.
      
      Test Plan: definitely compiles and sorta works, will write unit tests if the dust settles
      
      Reviewed By: davejwatson@fb.com
      
      Subscribers: folly-diffs@, trunkagent, fugalh, njormrod
      
      FB internal diff: D1618727
      c3ee57ef