Tudor Bosman [Wed, 30 Apr 2014 00:40:42 +0000 (17:40 -0700)]
Fix Chatty subprocess test, call callback on hangup
Summary:
The Chatty subprocess test incorrectly assumed that we saw EOF on the last
read from the child (that is, read() returned 0). That's not the case for two
reasons: 1. the child is allowed to stall right before it closes its stdout, in
which case we get EAGAIN, and 2. Subprocess::communicate would close the fd
without calling the read callback anyway. Fix both such things.
Test Plan: ran test
Reviewed By: njormrod@fb.com
FB internal diff:
D1303215
Dave Watson [Fri, 11 Apr 2014 18:56:35 +0000 (11:56 -0700)]
QueueBenchmark set max read at once
Summary: Makes a fair comparison between asox queue and notification queue. THe updated benchmark is just noise in this diff, notificationqueue isn't fast enough (yet) to make a difference.
Test Plan:
fbconfig common/concurrency; fbmake opt
./common/concurrency/QueueBenchmark.sh
Reviewed By: afrind@fb.com
FB internal diff:
D1272859
Andrey Goder [Mon, 28 Apr 2014 20:43:17 +0000 (13:43 -0700)]
Use readNoInt/writeNoInt in folly::Subprocess
Summary: We have these helper methods, but are not using them. What sadness.
Test Plan:
fbconfig -r folly
fbmake runtests
Reviewed By: tudorb@fb.com
FB internal diff:
D1299720
Peter Griess [Mon, 28 Apr 2014 19:03:41 +0000 (12:03 -0700)]
Include <random> in folly/Random.h
Summary:
- Its methods are being used; include the header
@override-unit-failures
Test Plan: - Build for iOS
Reviewed By: tudorb@fb.com
FB internal diff:
D1299440
Marc Celani [Mon, 28 Apr 2014 17:09:16 +0000 (10:09 -0700)]
Default to using folly::LifoSem
Summary:
Unless a service is overloaded, it should be able to clear
its queue frequently. When this happens, threads fall asleep until
more work is available in the queue. Waking up threads in LIFO
order gives us a lot of benefits. First, threads that were most
recently active are more likely to be mapped to the same cpu core
and thereby experience better L1 cache hit rate. Second, we can
madvise away jemalloc arenas on very idle threads. If we wake up
threads in FIFO order, we will never get a thread to remain idle
long enough for this to be worthwhile.
folly::LifoSem does just that. Benchmark in which the queue is
allowed to drain show that we get a substantial increase in
throughput by waking up threads in LIFO order.
Test Plan:
QueueBenchmark results summary:
As expected, benchmarks run faster in the case where the queue is
able to frequently drain itself, particularly in cases where the
number of threads is large. Benchmarks run slower when the
consumers cannot keep up with the producers, particularly when we
reach the queue capacity and we need to synchronize between
producers and consumers. However, in this case I think we care
less about the overhead of the queue itself and more about how
quickly we can shed the actual underlying load.
Reviewed By: davejwatson@fb.com
FB internal diff:
D1298343
Marcelo Juchem [Mon, 7 Apr 2014 18:58:03 +0000 (11:58 -0700)]
fixing split_step documentation
Summary: example results were backwards
Test Plan: unit tests
Reviewed By: brg@fb.com
FB internal diff:
D1262425
Tudor Bosman [Sun, 20 Apr 2014 15:02:08 +0000 (08:02 -0700)]
SymbolizedFrame::name is already null-terminated
Summary:
... as it comes from Elf::getSymbolName, which returns null-terminated C
strings. So there's no need to copy it into a fixed-size buffer (and have a
buffer overflow, ouch).
Test Plan: folly/experimental/symbolizer_test, see what else "arc unit" gets us
Reviewed By: tconerly@fb.com
FB internal diff:
D1286348
Tom Jackson [Wed, 23 Apr 2014 00:22:09 +0000 (17:22 -0700)]
std::move-able MemoryMapping
Test Plan: unit tests
Reviewed By: lucian@fb.com
FB internal diff:
D1290632
Tian Fang [Mon, 21 Apr 2014 02:23:13 +0000 (19:23 -0700)]
Support addValueAggregated() for histogram
Summary:
Support addValueAggregated() for histogram to add multiple samples for
one bucket at one time.
Test Plan: Have a client to call the new API and test in production.
Reviewed By: simpkins@fb.com
FB internal diff:
D1286528
Elizabeth Smith [Wed, 23 Apr 2014 20:09:53 +0000 (13:09 -0700)]
Better <bits/c++config.h> detection
Summary:
When worrying about only 2 cpp libraries, detection of "is this libstdc++ or libc++" works, but when throwing in a third option (msvc) this becomes a very brittle way of detecting features. Also depending on how clang is used it may or may not have this header about
Changed to instead use configuration value for "do we have this header file" for including bits/c++config.h and changed the logic to be identical in all three use cases
Test Plan: fbmake runtests
Reviewed By: njormrod@fb.com
FB internal diff:
D1291547
Elizabeth Smith [Wed, 23 Apr 2014 20:02:51 +0000 (13:02 -0700)]
msvc packed attribute translation
Summary:
Provide translations for gcc packed
MSVC has a very very ugly syntax for packing using pragmas which is very different from the gcc attribute
this makes it very hard to macro around, but lots of ifdefs are also painful - cleanest of the hackery is to simply have push, pop, and attribute macros for packed that define properly depending on the compiler
Test Plan: fbmake runtests
Reviewed By: njormrod@fb.com
FB internal diff:
D1279966
Andrii Grynenko [Wed, 23 Apr 2014 02:58:46 +0000 (19:58 -0700)]
Future API for CacheClientCommon
Summary:
Allow mutable functors in Promise::fulfil.
Facebook:
Works both with EventBase and without it (thanks to wangle::Future thread-safety). CacheClientImpl lifetime is guaranteed using shared_ptr.
Test Plan: unit test
Reviewed By: stepan@fb.com
FB internal diff:
D1291024
Adam Simpkins [Fri, 18 Apr 2014 18:53:32 +0000 (11:53 -0700)]
fix off-by-one error in IPAddress::longestCommonPrefix()
Summary:
Fix an off-by-one error causing an ASAN abort. When calling
longestCommonPrefix() with a full mask, it would compare one byte past
the end of the address data, and would end up writing past the end of
the ba array on the stack.
Test Plan:
Built with ASAN, ran the unit tests, and verified the ASAN failure was
gone.
Reviewed By: jasmeetbagga@fb.com
FB internal diff:
D1284750
Anton Likhtarov [Sat, 5 Apr 2014 02:00:31 +0000 (19:00 -0700)]
Move common/network/IPAddress.h and related to folly/
Summary:
Moving our internal IP/Mac address libraries to folly/
Facebook:
We want to get rid of common/ dependencies in Mcrouter since we're going to open source it. Also looking at the original commit, seems like it's been the intention all along, so I just did it.
I tried to keep dependencies intact as much as possible. Changing projects to use this directly should be in separate diffs.
Test Plan:
Run folly/network and common/network unit tests.
Generate the list of targets with:
```
fbgs /$FILE.h | cut -f1 -d: | xargs -L1 dirname | cut -f2- -d/ | sort | uniq
```
Then fbconfig + fbmake. Will fix contbuild failures.
Revert Plan:
Reviewed By: simpkins@fb.com
FB internal diff:
D1261089
Peter Griess [Fri, 18 Apr 2014 20:06:07 +0000 (13:06 -0700)]
Fix type mismatch in IOBuf::getIov()
Summary: - On iOS, iovec::iov_len is a size_t, which is a uint32_t; convert
Test Plan:
- fbconfig -r folly && fbmake runtests
- Builds in fbobjc
Reviewed By: simpkins@fb.com
FB internal diff:
D1284931
Nicholas Ormrod [Fri, 18 Apr 2014 17:16:33 +0000 (10:16 -0700)]
Fix header ordering lint failures
Summary:
Headers whose includes are not sufficient cause problems when included
from other files. An easy way to prevent this is to include the header
first in its associated cpp file. In fact, we have a lint rule for this.
However, there are places where this rule is ignored. This diff fixes
many of them.
Note that a few top-level directories were excluded.
Reviewed By: robbert@fb.com
FB internal diff:
D1281032
Elizabeth Smith [Fri, 18 Apr 2014 16:28:00 +0000 (09:28 -0700)]
x64 detection missing an include
Summary: rwspinlock.h was missing the portability.h header which made the x64 detection go wonky, but only shows up when used with isolated rwspinlock use
Test Plan: fbmake runtests
Reviewed By: andrei.alexandrescu@fb.com
FB internal diff:
D1284387
Blame Revision:
D1282140
Elizabeth Smith [Fri, 18 Apr 2014 15:18:54 +0000 (08:18 -0700)]
macro for cross platform x64 detection
Summary: Another cross platform fun macro - this one detects x64 status and requires some portability.h includes (which should only define portability stuff and not actually include anything)
Test Plan: fbmake runtests
Reviewed By: delong.j@fb.com
FB internal diff:
D1282140
Bryan Alger [Thu, 17 Apr 2014 22:06:36 +0000 (15:06 -0700)]
Fix flag naming
Summary: doh
@override-unit-failures
Test Plan: compiled under android
Reviewed By: subodh@fb.com
FB internal diff:
D1283177
Elizabeth Smith [Thu, 17 Apr 2014 20:36:10 +0000 (13:36 -0700)]
fbstring likely/unlikley ifdef for stuff that doesn't support it
Summary: the fbstring specific unlikely/likely defs were missing the ifdef blocks to avoid breaking things without builtin_expect
Test Plan: fbmake runtests
Reviewed By: njormrod@fb.com
FB internal diff:
D1282166
Hannes Roth [Thu, 17 Apr 2014 16:26:56 +0000 (09:26 -0700)]
(Folly/Gen) Make ranges and sequences take a stepping functor
Summary:
The functor allows to create ranges and sequences that advance the
iterator by more than 1 per iteration.
Test Plan: Unit test.
Reviewed By: tjackson@fb.com
FB internal diff:
D1228065
Hannes Roth [Thu, 17 Apr 2014 15:49:51 +0000 (08:49 -0700)]
(Folly/Gen) Fix compilation with clang
Summary:
Clang chokes because it tries to instantiate both versions of `from<const int*>`, one of which calls `std::begin(const int*)`, which doesn't work. By casting the intializer list to the right type, it can pick the overload.
Clang, because it makes debugging these templates so much better.
Test Plan: `fbconfig --clang folly/gen/test && fbmake runtests_dbg`
Reviewed By: tjackson@fb.com
FB internal diff:
D1280888
Elizabeth Smith [Thu, 17 Apr 2014 14:49:10 +0000 (07:49 -0700)]
abstract thread_local support
Summary:
change from using __thread to using FOLLY_THREAD_LOCAL macro, this will allow abstraction over gcc and msvc implementations of thread local (__thread and __declspec(thread)) which have the same semantices and will also allow drop in replacement of thread_local when compiler support for the feature is complete This doesn't do anything about apple, however, which still has broken __thread support
This doesn't actually change any implementation for now, simply allows for correct compilation
Test Plan: fbmake runtests
Reviewed By: delong.j@fb.com
FB internal diff:
D1278726
Elizabeth Smith [Thu, 17 Apr 2014 14:45:39 +0000 (07:45 -0700)]
Add missing includes for msvc
Summary: MSVC is a stricter compiler and needs additional includes explicitly declared
Test Plan: fbmake runtests
Reviewed By: njormrod@fb.com
FB internal diff:
D1277004
Tom Jackson [Sat, 5 Apr 2014 00:58:07 +0000 (17:58 -0700)]
parallel(pipeline)
Summary:
Adding `... | parallel(my | pipe | line) | ...` for parallelizing a portion of a generator pipeline.
```lang=cpp
auto factored = from(values)
| parallel(filter(isEven) | map(square) | sub(count))
| sum;
```
Work is divided evenly among a fixed number of threads using a `MPMCQueue`.
Test Plan: Unit tests and benchmarks testing for a variety of workloads and performance characteristics, including sub-linear (blocking) workloads, linear (mostly math) workloads, and superlinear (sleeping) workloads to simulate real-world use.
Reviewed By: lucian@fb.com
FB internal diff:
D638551
Marc Celani [Thu, 17 Apr 2014 00:19:31 +0000 (17:19 -0700)]
Introduce LifoSem
Summary: A LIFO semaphore is useful for building a thread pool because we can keep cpu caches warmer by continually reusing the last used thread. This diff introduces a LIFO semaphore to folly.
Test Plan: unit tests
Reviewed By: davejwatson@fb.com
FB internal diff:
D1280405
Jun LI [Wed, 16 Apr 2014 20:58:54 +0000 (13:58 -0700)]
Fix folly Uri::host() return value for IPv6 address
Summary: folly Uri::host() returns leading and trailing brackets for IPv6 host, for example, for URI "http:://[::1]:8080/index.html", host() method returns "[::1]". But square brackets are not part of host in fact, this diff is going to remove brackets for IPv6 host.
Test Plan: fbconfig -r folly/test && fbmake runtests_dbg
Reviewed By: chip@fb.com
FB internal diff:
D1276513
Elizabeth Smith [Wed, 16 Apr 2014 20:49:35 +0000 (13:49 -0700)]
MSVC translation of noreturn attribute
Summary:
Provide translations for gcc noreturn attribute
__attribute__((noreturn)) is gcc specific, clang understands it on nix systems, but for msvc __declspec(noreturn) is the compiler specific version, which clang will imitate/use on windows. There was already a FOLLY_NORETURN in portability.h, however because of __declspec limitations it must prefix the declaration, not postfix. The gcc noreturn attribute does not have this limitation and will work prefixed OR postfixed, so to keep from turning code into spaghetti nonsense, the macro was moved to the front of declations where it is currently used. This will allow it to work with the proper definitions on clang, clang on windows, gcc, and msvc
Test Plan: fbmake runtests
Reviewed By: delong.j@fb.com
FB internal diff:
D1279466
Elizabeth Smith [Wed, 16 Apr 2014 20:45:37 +0000 (13:45 -0700)]
MSVC always_inline and noinline __attributes__ translation
Summary:
Provide translations for gcc always_inline and noinline attribute
Change to using a macro from portability.h for attributes for using always_inline and noinline for cross platform support
Test Plan: fbmake runtests
Reviewed By: delong.j@fb.com
FB internal diff:
D1279652
Victor Loh [Wed, 16 Apr 2014 04:57:23 +0000 (21:57 -0700)]
Use StringPiece instead of String
Summary:
Using StringPiece makes it easier than std::string
Facebook: Motivation for this diff is found in
D1253595
Test Plan:
Added new unittest
fbconfig folly/io/test && fbmake runtests_opt
Reviewed By: simpkins@fb.com
FB internal diff:
D1276185
Elizabeth Smith [Wed, 16 Apr 2014 01:52:19 +0000 (18:52 -0700)]
uint isn't portable and makes some compilers angry, change to unsigned int
Summary: As part of the windows port, uint is not defined as a type and is not standard, it makes msvc choke, a simple change to unsigned int fixes the issue
Test Plan: fbmake runtests
Reviewed By: delong.j@fb.com
FB internal diff:
D1278487
Tudor Bosman [Tue, 15 Apr 2014 16:24:11 +0000 (09:24 -0700)]
Add non-const operator[] to TypedIOBuf
Test Plan: used it
Reviewed By: lucian@fb.com
FB internal diff:
D1277063
@override-unit-failures
Lucian Grijincu [Tue, 15 Apr 2014 03:15:10 +0000 (20:15 -0700)]
folly: improve ProducerConsumerQueueBenchmark (misplaced doNotOptimizeAway)
Summary:
as per discussion from https://phabricator.fb.com/
D1274352
After changing the queue length to be a small value (100) I didn't see
improvement from cache alignment of atomics (too much noise). Dropping
that and just fixing the benchmark.
Test Plan: n/a
Reviewed By: ngbronson@fb.com
FB internal diff:
D1276591
Nicholas Ormrod [Mon, 14 Apr 2014 21:21:11 +0000 (14:21 -0700)]
Fix apparent race in SubprocessTest
Summary:
The code originally contained the line
EXPECT_EQ((rcount == lineCount), r); // EOF iff at lineCount
Which asserted that, on the last iteration, EOF was being read (and thus
r was true).
This line has been causing errors in contbuild. There seem to be two
issues at play.
First, the left hand side of the EXPECT_EQ is always false. rcount is
incremented three lines down, and the (implicit) loop ends when rcount
equals lineCount. This means that, on the last iteration, rcount is
actually one less than lineCount. Hence the check is effectively
asserting that r is false.
The second issue is that r is rarely true. Empirically, a necessary but
not sufficient condition is that there be lots of other processes
running at the same time (such as when running fbconfig -r folly &&
fbmake runtests_opt). This would explain why the test passes during
development but fails in contbuild.
I am guessing that, when there are few processes running, Subprocess is
predictably ceasing to read before whichever other process yields EOF,
and that this does not always happen when there is resource contention.
As an immediate fix, I am asserting that r may only be true on the last
iteration. Could someone (cc @tudorb) who is more familiar with the
intricacies of Subprocess please check to see if this is an idiosyncrasy
of the test, or if there is actually an underlying bug.
Test Plan:
Before the change, run fbconfig -r folly && fbmake runtests_opt
repeatedly. Notice that most of the iterations yield an error from line
376 (which is consistent with contbuild error logs).
After the change, notice that the error disappears.
Reviewed By: andrewjcg@fb.com
FB internal diff:
D1269124
Lucian Grijincu [Sun, 13 Apr 2014 06:10:11 +0000 (23:10 -0700)]
folly: gen: pmap: parallel version of map
Summary:
same as map, but runs it's argument in parallel over a number of threads.
@override-unit-failures
Test Plan: added test
Reviewed By: tjackson@fb.com
FB internal diff:
D1258364
Alexey Spiridonov [Thu, 10 Apr 2014 07:26:23 +0000 (00:26 -0700)]
Change child's working directory
Summary: Changing the parent's WD is prone to race conditions of various sorts, and needlessly alters parent state. Python's subprocess also has this feature.
Test Plan: fbmake dbg _bin/folly/test/subprocess_test ; ../_bin/folly/test/subprocess_test
Reviewed By: agoder@fb.com
FB internal diff:
D1269526
Jim Meyering [Fri, 4 Apr 2014 20:14:20 +0000 (13:14 -0700)]
folly: allow to build with clang.dev (flex arrays vs. lambda)
Summary:
* folly/test/CacheLocalityTest.cpp (contentionAtWidth): Work around
clang's prohibition against using flexible arrays in a lambda.
Test Plan:
fbconfig --clang --with-project-version clang:dev folly/test \
&& fbmake runtests
Reviewed By: ngbronson@fb.com
FB internal diff:
D1263620
Philip Pronin [Tue, 8 Apr 2014 18:38:55 +0000 (11:38 -0700)]
configurable alignment for Arena
Summary: Allow specifying custom alignment.
Test Plan: fbconfig -r folly/test && fbmake opt -j32
@override-unit-failures
Reviewed By: lucian@fb.com
FB internal diff:
D1264851
ptarjan [Wed, 9 Apr 2014 04:13:38 +0000 (21:13 -0700)]
Make header compatible with warp
Philip Pronin [Tue, 8 Apr 2014 18:08:02 +0000 (11:08 -0700)]
fix ConcurrentSkipList::Recycler layout
Summary:
D1261546 introduced regression in `sizeof(ConcurrentSkipList)`.
In case of `NodeAlloc = folly::SysAlloc`, size of an empty `NodeAlloc` struct
is 1 byte, due to the alignment requirements of the next field, it got
translated into wasting 8 bytes.
Test Plan: fbconfig -r folly/test && fbmake opt -j32
@override-unit-failures
Reviewed By: lucian@fb.com
FB internal diff:
D1264730
Jim Meyering [Tue, 8 Apr 2014 04:11:54 +0000 (21:11 -0700)]
folly: accommodate fact that clang's strlen is not constexpr
Summary:
* folly/folly-config.h (FOLLY_HAVE_CONSTEXPR_STRLEN): Define to
zero when compiling with clang, since clang's strlen is not constexpr.
Test Plan:
Run this:
fbconfig --clang --with-project-version clang:dev folly/test && fbconfig dbg
and observe that the following no longer strikes:
folly/test/RangeTest.cpp:304:25: error: constexpr variable 'hello1' must be initialized by a constant expression
I also tried using clang-3.4 (the current default),
fbconfig --clang folly/test && fbmake dbg
with these results:
https://phabricator.fb.com/P8583443
Reviewed By: pgriess@fb.com
FB internal diff:
D1262840
Dave Watson [Fri, 4 Apr 2014 19:17:54 +0000 (12:17 -0700)]
Fix make check
Summary: Fix make check. Benchmark.cpp was included twice, eventfd doesn't exist anymore.
Test Plan: autoreconf -i; ./configure; make check on ubuntu
Reviewed By: pgriess@fb.com
FB internal diff:
D1259706
Dave Watson [Thu, 3 Apr 2014 20:40:58 +0000 (13:40 -0700)]
fix automake
Summary:
Automake complains there are two Malloc.cpp rules - rename one of them.
Facebook: Actually this file doesn't even build in fbconfig - is it still necessary?
Test Plan: autoreconf -i on ubuntu doens't fail
Reviewed By: pgriess@fb.com
FB internal diff:
D1257372
Hans Fugal [Mon, 7 Apr 2014 16:57:42 +0000 (09:57 -0700)]
(wangle) codegen then() variant tests
Summary:
When all the variants I am dreaming of work, there's a little more than
100 tests generated.
Test Plan: fbmake runtests
Reviewed By: hannesr@fb.com
FB internal diff:
D1258754
Hannes Roth [Mon, 7 Apr 2014 16:44:38 +0000 (09:44 -0700)]
(Folly/FBString) Fix compilation time of test with opt
Summary: Now compiles in 18 seconds. Took two minutes before.
Test Plan: `fbmake runtests_opt`
Reviewed By: smith@fb.com
FB internal diff:
D1243689
Philip Pronin [Sat, 5 Apr 2014 21:54:37 +0000 (14:54 -0700)]
configurable node allocator for ConcurrentSkipList
Summary:
Allow specifying `SimpleAllocator` to use for node allocation.
Added optimizations for arena allocators.
Test Plan: fbconfig -r folly/test && fbmake opt -j32
Reviewed By: soren@fb.com
FB internal diff:
D1261546
Philip Pronin [Sat, 5 Apr 2014 04:50:27 +0000 (21:50 -0700)]
make ConcurrentSkipList ctor public
Summary:
There is no reason to force heap allocation for
`ConcurrentSkipList`.
Test Plan: fbconfig -r unicorn/test && fbmake opt -j32
@override-unit-failures
Reviewed By: lucian@fb.com
FB internal diff:
D1261183
Tom Jackson [Fri, 4 Apr 2014 23:55:09 +0000 (16:55 -0700)]
Adding support for signed integers
Summary: For use with Thrift::Frozen, especially.
Test Plan: Unit tests
Reviewed By: philipp@fb.com
FB internal diff:
D1255257
Nicholas Ormrod [Fri, 4 Apr 2014 03:02:55 +0000 (20:02 -0700)]
Bugfix in iterator emplace
Summary:
Subtle bugfix to fbvector
Reproduction requirements:
- emplace into a vector at a non-end position
- the vector has enough capacity for the extra elements
- the value type's internal state is poisoned after a move
What should happen, explained by picture:
INITIAL SETUP
abc1234XY____
^
want to insert two elements here
FIRST STEP: uninitialized move-construction
x and y are initialized, but could be in an invalid state
abc1234xyXY__
SECOND STEP: move-assignment, in reverse order
abc123xy4XY__
abc12xy34XY__
abc1xy234XY__
abcxy1234XY__
What actually happens:
An indexing error causes the entire tail (##1234xy##) to be
move-assigned, instead of the intended head of the tail (##1234##).
If the data type's move operator does not invalidate its own data (i.e.
move is essentially a copy, as is the case with atomic types) then the
move assignment of ##y## onto ##Y## and ##x## onto ##X## is basically a
no-op. However, for types that do invalidate their own data when being
the source of a move (e.g. non-empty vectors and fbvectors), then the
end result will have bad data in place of ##X## and ##Y##.
Detection:
This bug has lain dormant for a while.
Very few people emplace into a vector, and those few who do could be
saved by using a copy-movable type like int.
The original test case did not use a data type which poisoned itself
after being the source of a move, so the tests did not notice any
oddities.
A new testsuite, which does poison itself, did notice.
Test Plan:
re-enable the test/stl_test mega-test. Run it. All tests
pass.
fbconfig -r folly && fbmake runtests_opt
Run fbvector through the new test suite (which initially caught the
error). It now passes.
Reviewed By: robbert@fb.com
FB internal diff:
D1257258
Hans Fugal [Thu, 3 Apr 2014 18:05:32 +0000 (11:05 -0700)]
A few missing includes
Summary: These were required to build folly on OSX.
Test Plan: build
Reviewed By: davejwatson@fb.com
FB internal diff:
D1256856
Hans Fugal [Thu, 3 Apr 2014 15:48:29 +0000 (08:48 -0700)]
(wangle) Use an atomic_flag to make FutureObject threadsafe
Summary:
There are two operations on `FutureObject` (the backing object that both `Future` and `Promise` front), which are not threadsafe currently. Those are `setContinuation` and `fulfil`. They're not threadsafe because they have a race condition between checking to see whether they should run the continuation and the other side making its modification. This diff introduces a `std::atomic_flag` variable to avoid the race and make these threadsafe.
NB Making `Future`/`Promise` threadsafe does not make this pattern safe:
f1.via(...).then(...).then(...)
(In a hypothetical world where `Future::via` is another name for `executeWithSameThread`)
There is a race between the future from `via` and the call of `then` (and between the first and second `then`s), so the `then`s could execute in the far thread as intended, or they could execute in the current thread (probably not what was intended). This diff does not solve that semantic problem of which thread this runs in. But it does make it safer, in that all those continuations will always execute, just maybe not in the thread you had intended.
You may ask what is the benefit if that semantic problem still exists? That's up for debate. I think the safety is worth it: at least everything a n00b throws at it will *work*. The question of thread semantics can iterate. If we end up with thread semantics that really don't need locks (e.g. maybe because we move to an Rx/Later style "launch" at the end of a chain) we can always toss this atomic.
How does this affect performance? I'm doing some experiments and going to write up my findings. Early results indicate that outlier performance is impacted but not by a lot, but don't count those chickens until I hatch them. Part of the reason for sending this diff out is to run windtunnel experiments.
Test Plan: tests, benchmark, close inspection
Reviewed By: davejwatson@fb.com
FB internal diff:
D1241822
Louis Kruger [Tue, 1 Apr 2014 20:22:42 +0000 (13:22 -0700)]
Fix TIMED_SYNCHRONIZED_CONST bug
Summary:
TIMED_SYNCHRONIZED_CONST is acquiring a read-write lock but releasing a shared lock. Chaos ensues.
@override-unit-failures
Test Plan: Add unit test, test times out before fix, passes after fix.
Reviewed By: andrei.alexandrescu@fb.com
FB internal diff:
D1251518
Blame Revision:
D327492
Tudor Bosman [Tue, 1 Apr 2014 17:36:27 +0000 (10:36 -0700)]
Add ability to silence callbacks for Subprocess::communicate
Summary:
Subprocess::communicate callbacks are level-triggered, which makes writing
"chatty" communication protocols difficult -- you often want to silence the
write callback until you read the expected message. Add
Subprocess::enableNotifications() for this purpose.
Test Plan: test added
Reviewed By: lucian@fb.com
FB internal diff:
D1251564
@override-unit-failures
Stepan Palamarchuk [Mon, 31 Mar 2014 21:19:54 +0000 (14:19 -0700)]
Add loopOnce() method to folly::EventBase
Summary: Add loopOnce() method which provides functionality similar to event_base_loop(base, EVLOOP_ONCE);
Test Plan: fbmake
Reviewed By: simpkins@fb.com
FB internal diff:
D1249753
Mikhail Okunev [Mon, 31 Mar 2014 18:51:55 +0000 (11:51 -0700)]
Utility that converts from prettyPrint format back to double (e.g. 10M = 10 000 000)
Summary: Utility is doing reverse of prettyPrint. This is a first sketch.
Test Plan:
1) We can reverse all tests from prettyPrint test and use for our function. For now I just reversed several of them
2) We can also test prettyPrint and prettyToDouble together by checking whether prettyToDouble(prettyPrint(X)) == X. This is implemented.
Reviewed By: marcelo.juchem@fb.com
FB internal diff:
D1159879
Hannes Roth [Thu, 27 Mar 2014 21:47:00 +0000 (14:47 -0700)]
(Folly/FBString) Use a lambda to throw an exception for NULL input
Summary:
This should be standard compliant. `__PRETTY_FUNCTION__` seems
unnecessary, it just prints `basic_fbstring`, might as well use that and
simplify the code.
Test Plan:
`fbconfig --platform-all=gcc-4.8.1-glibc-2.17-fb folly/test`
`fbmake runtests_dbg`
`fbmake runtests_opt`
`fbconfig --platform-all=gcc-4.7.1-glibc-2.14.1 folly/test`
`fbmake runtests_dbg`
`fbmake runtests_opt`
`fbconfig --clang folly/test`
`...`
Reviewed By: andrei.alexandrescu@fb.com
FB internal diff:
D1243670
Nicholas Ormrod [Wed, 26 Mar 2014 09:33:48 +0000 (02:33 -0700)]
NULL -> nullptr
Summary:
Change NULLs to nullptrs.
Facebook:
I was tired of seeing lint errors for NULL -> nullptr, so I
fixed it.
How: modified flint's tokenizer to output lines of the form
sed -i '__LINE__s|\<NULL\>|nullptr|g' __FILE__
for each NULL token encountered.
Ran the sed lines, restricted to filepaths with extensions
h,hpp,cc,cpp,tcc. Did not apply to FacebookUpdate, due to weird
formatting; hphp, to be done in a separate diff; payment, due to a large
number of generated text which didn't play well with my flow; and
memcache, which has lots of .h's that cannot contain nullptr's because
they are included from .c's.
@bypass-lint
Test Plan:
fbconfig -r common folly && fbmake opt && fbmake runtests_opt
^ of the 4k+ test cases, about two dozen are failing. Slightly more
failed in master than with my diff applied.
arc unit
Reviewed By: andrei.alexandrescu@fb.com
FB internal diff:
D1234261
Tom Jackson [Mon, 24 Mar 2014 18:54:02 +0000 (11:54 -0700)]
Range::contains(x)
Test Plan: Unit tests
Reviewed By: marcelo.juchem@fb.com
FB internal diff:
D1236630
Tudor Bosman [Thu, 20 Mar 2014 20:53:44 +0000 (13:53 -0700)]
Optionally specify page size in MemoryMapping ctor
Summary:
For proper rounding, and also so memOpInChunks doesn't try to mlock / munlock /
madvise / munmap in chunks smaller than the page size.
Test Plan: memory_mapping_test
Reviewed By: lucian@fb.com
FB internal diff:
D1232153
Hannes Roth [Thu, 20 Mar 2014 17:11:14 +0000 (10:11 -0700)]
(Wangle) Sanity check for the small_vector test
Summary:
Let's double check that `small_vector` is doing the right thing. So
it doesn't just accidentally work.
Test Plan:
`fbconfig folly/wangle && fbmake runtests`
`fbconfig --clang folly/wangle && fbmake runtests`
Reviewed By: marccelani@fb.com
FB internal diff:
D1231360
Dave Watson [Thu, 13 Mar 2014 17:18:56 +0000 (10:18 -0700)]
EventBase cleanup
Summary: Moar c++11 features. marccelani's comments in
D1195393, but in a separate diff.
Test Plan:
contbuild
fbconfig thrift/lib/cpp/test/
fbmake runtests
Reviewed By: rajat@fb.com
FB internal diff:
D1219158
Nima Aghdaii [Tue, 11 Mar 2014 00:58:29 +0000 (17:58 -0700)]
Performance Improvement for AsciiCaseInsensitive
Summary:
This implementation improves the performance of AsciiCaseInsensitive.
AsciiCaseInsensitive uses toupper, and it's slow.
Since toupper only works for ascii characters and this function does exactly the same thing over the range of [0..256), we can gain 3x performance here.
Test Plan: unit test and benchmark
Reviewed By: lucian@fb.com
FB internal diff:
D1217596
@override-unit-failures
Hannes Roth [Wed, 19 Mar 2014 23:45:58 +0000 (16:45 -0700)]
(Wangle) Fix tests for clang
Summary: `std::async` doesn't play nicely with our clang. Replace it with `std::thread`.
Test Plan: `fbconfig --clang folly/wangle && fbmake runtests`
Reviewed By: marccelani@fb.com
FB internal diff:
D1230197
Tudor Bosman [Wed, 19 Mar 2014 04:57:17 +0000 (21:57 -0700)]
Harden usingJEMalloc()
Summary:
In a shared library, we're using whichever memory allocator the main program
uses, but we may still believe we're using jemalloc if we load libjemalloc.so
(because rallocm is defined). This means we'll pass to rallocm pointers that
were not allocated by jemalloc, which is bad.
Test Plan: tests added
Reviewed By: ngbronson@fb.com
FB internal diff:
D1228483
Tom Jackson [Wed, 12 Mar 2014 23:31:41 +0000 (16:31 -0700)]
range(), for making Range<T*> from arrays and std::vector
Summary: So people can more easily write functions which take contiguous values from memory.
Test Plan: Unit tests
Reviewed By: tudorb@fb.com
FB internal diff:
D1217809
Tianjiao Yin [Tue, 18 Mar 2014 00:33:48 +0000 (17:33 -0700)]
Add constexpr specifier for small_vector::max_size
Summary: Now we could use small_vector::max_size in constant expressions
Test Plan: unittest
Reviewed By: delong.j@fb.com
FB internal diff:
D1224274
Tudor Bosman [Mon, 17 Mar 2014 20:24:07 +0000 (13:24 -0700)]
Unbreak Symbolizer with small ElfCache
Test Plan: fbconfig -r folly/experimental/symbolizer && fbmake runtests_opt && fbmake runtests
Reviewed By: simpkins@fb.com
FB internal diff:
D1224552
@override-unit-failures
Alexey Spiridonov [Mon, 17 Mar 2014 22:59:25 +0000 (15:59 -0700)]
Move commited bits out of folly
Summary: Preparing to land the other diffs. No code changes here, just moving files around.
Test Plan: fbconfig bistro/common/cron/test bistro/common/cron/utils/test ; fbmake runtests
Reviewed By: yinwang@fb.com
FB internal diff:
D1225159
Marc Celani [Mon, 17 Mar 2014 16:17:50 +0000 (09:17 -0700)]
sorted_vector_types have move inserts
Summary: sorted_vector_types were missing move inserts that come with std::map in c++11. This prevents me from using move iterators in folly::merge use case.
Test Plan: unit tests
Reviewed By: delong.j@fb.com
FB internal diff:
D1223426
Marc Celani [Sun, 16 Mar 2014 03:04:47 +0000 (20:04 -0700)]
folly::merge() - std::merge() with stronger guarantees (probably same implementation in practice)
Summary:
std::merge() does not guarantee the ordering when equal elements belong in two ranges(comparator(it_a, it_b) == comparator(it_b, it_a) == 0). For maps, it is important that we can specify the ordering (see array_merge in php, where we guarantee which array's value will be present in the output if a key is present in both inputs).
Also removes folly::merge that is specfic for sorted_vector_map since this will not be needed. NOTE: I expect this to break feed, will fix in a separate non-folly diff.
Test Plan: This implementation is directly ripped from cppreference.com, but unit tests added none-the-less. Specifically, one is added where the output is a std::map to demonstrate its usefulness.
Reviewed By: delong.j@fb.com
FB internal diff:
D1223401
@override-unit-failures
Marc Celani [Sun, 16 Mar 2014 03:00:45 +0000 (20:00 -0700)]
sorted_vector_types does not work with std::inserter
Summary:
The signature of insert(hint, const val& v) is wrong. It should return an iterator, not pair<iterator, bool>. This breaks std::inserter, making it impossible to use this for std::merge. I plan to create folly::merge (std::merge with stronger semantics when equal values are present in the two input ranges), so I need this fixed.
Given that the documentation claims this is a "drop in replacement" for std::map, I figure we should fix this.
Test Plan: reran unit tests
Reviewed By: delong.j@fb.com
FB internal diff:
D1223396
Marc Celani [Fri, 14 Mar 2014 02:52:09 +0000 (19:52 -0700)]
Introduce a merge() function for folly::sorted_vector_map
Summary:
Feed spends a non trivial amount of time merging two sorted_vector_maps. Writing code for this efficiently is actually a little tricky, and its much easier to maintain the simpler code. This adds merge() to folly so that its easy for feed and fast. Benchmarks with large input sizes show this is a gigantic win (moving from O(n^2) to O(n).
Test Plan: unit tests, benchmark
Reviewed By: delong.j@fb.com
FB internal diff:
D1221725
@override-unit-failures
Marcus Holland-Moritz [Thu, 13 Mar 2014 00:27:09 +0000 (17:27 -0700)]
Make sure folly::dynamic arrays can be used with folly::gen
Summary:
Define a value_type for folly::dynamic to make arrays work with
folly::gen::from.
Test Plan:
- added new unit test
- fbconfig folly/test && fbmake runtests
Reviewed By: tjackson@fb.com
FB internal diff:
D1216358
Dave Watson [Wed, 12 Mar 2014 16:25:43 +0000 (09:25 -0700)]
Move thrift/lib/cpp/async to folly.
Summary:
Move the minimum amount of stuff and still have everything compile. Would like to move TAsyncSocket/ServerSocket/SSL/UDP eventually, but not this round.
thrift async is used very widely now: thrift, proxygen, newer mysql async interface, even trying it out in memcache. A common complaint is that it doesn't get wide enough notice under thrift/, so let's move it to folly/. After moving TAsyncSocket, both HHVM and proxygen could avoid a dep on thrift as well.
Changes:
* mv files to folly/io/async
* remove 'T' prefix on classes/filenames
* change namespace to 'folly'
* remove any thrift references.
Tried this before in
D470080, this time doesn't attempt to abstract libevent
@override-unit-failures
Test Plan:
fbconfig -r thrift; fbmake dev.
Will iterate on any other contbuild failures
Reviewed By: pgriess@fb.com
FB internal diff:
D1195393
Philip Pronin [Wed, 12 Mar 2014 08:00:52 +0000 (01:00 -0700)]
update FOLLY_IS_TRIVIALLY_COPYABLE
Summary:
Let's make sure that boost version is intented to mean exactly
the same as `std::is_trivially_copyable` (see 9 [class] / 6) to avoid any
confusion (current boost path is more close to
`std::is_trivially_copy_constructible` than to
`std::is_trivially_copyable`; UPD: unfortunately, old versions of boost
don't support `boost::has_trivial_move_constructor` and friends, so I
can't completely mimic `std::is_trivially_copyable` here).
As mentioned in the original comment, `__has_trivial_copy` returns 1 in
case of deleted copy ctor in clang (contradicts 12.8 [class.copy] / 13 +
8.4.2 [dcl.fct.def.default] / 4), which makes `FOLLY_IS_TRIVIALLY_COPYABLE`
accept `std::unique_ptr<>`; using `boost::has_trivial_destructor` would
at least save us from the problems in this case.
Alternative "solution" may be to rename `FOLLY_IS_TRIVIALLY_COPYABLE` to
`FOLLY_IS_TRIVIALLY_COPY_CONSTRUCTIBLE`, and make sure
`folly::small_vector` won't call dtor when memcopies the data around.
Test Plan: fbconfig --clang folly/test:small_vector_test && fbmake runtests_opt (fails in trunk, passes with this diff)
Reviewed By: pgriess@fb.com
FB internal diff:
D1216158
David Vickrey [Mon, 10 Mar 2014 22:55:41 +0000 (15:55 -0700)]
Add control of floating point serialization to JSON serialization
Summary: Title. Note that this is a no-op with default parameters because folly::toAppend(double, &dest) calls folly::toAppend(double, &dest, DtoaMode, numDigits) with DtoaMode = SHORTEST and numDigits = 0.
Test Plan: Tested new functionality in
D1212547.
Reviewed By: kelarini@fb.com
FB internal diff:
D1212617
Adam Simpkins [Thu, 6 Mar 2014 00:28:09 +0000 (16:28 -0800)]
fix Cursor's copy constructor
Summary:
The Cursor class didn't provide a copy constructor accepting a
"const Cursor&". The existing constructor only accepted references to
non-const Cursor.
This updates the constructor to also accept "const Cursor&". I also
made the template parameter checking more strict, so that it only
accepts other CursorBase classes. This prevents the compiler from
thinking that a Cursor can be constructed from any other possible type
when performing overload resolution.
Test Plan: Ran all of the folly cursor tests.
Reviewed By: davejwatson@fb.com
FB internal diff:
D1208428
Marcus Holland-Moritz [Mon, 10 Mar 2014 18:35:00 +0000 (11:35 -0700)]
Support numeric types as targets for folly::split
Summary:
This extends the fixed version of folly::split to support numeric types
as targets in addition to string pieces. I was almost certain this was
already possible when I recently reviewed some code that did
folly::StringPiece source, target, strFrequency;
int frequency;
if (folly::split('\t', line, source, target, strFrequency) &&
(frequency = folly::to<unsigned int>(strFrequency)) > 0)
and was about to suggest changing the above into:
folly::StringPiece source, target;
int frequency;
if (folly::split('\t', line, source, target, frequency) && frequency > 0)
I double checked and saw that only splitting to string pieces was supported.
In the meantime I came across this pattern again and decided to just make
it work because it's really convenient.
The implementation should be fully backwards compatible.
Test Plan:
- New unit tests
- fbconfig -r folly && fbmake runtests
- Applied to github release, ./configure && make check
Reviewed By: andrei.alexandrescu@fb.com
FB internal diff:
D1187004
Will Hodges [Mon, 10 Mar 2014 17:15:35 +0000 (10:15 -0700)]
Add setPort() to folly::URI class.
Summary:
Add setPort() method to URI class for easy port replacement in
URIs.
Facebook:
Perform port replacement in WriteProcessor.cpp in a way that
supports URI schemes. Add setPort() method to URI class to replace
the port number in the authority portion of the URI.
Test Plan: Test in debugger for dfsrouter changes.
Reviewed By: tudorb@fb.com
FB internal diff:
D1209120
Philip Pronin [Fri, 7 Mar 2014 08:49:24 +0000 (00:49 -0800)]
folly/experimental/Bits.h + ASan
Summary: Allow disabling ASan for `folly::Bits`.
Test Plan: [fb-only]
Reviewed By: soren@fb.com
FB internal diff:
D1208584
Andrey Goder [Fri, 7 Mar 2014 22:50:07 +0000 (14:50 -0800)]
Fix comment
Summary: This should be 'docs' not 'doc'. Too bad now it exceeds 80 chars :(.
Test Plan: n/a
Reviewed By: simpkins@fb.com
FB internal diff:
D1209738
@override-unit-failures
Hannes Roth [Fri, 7 Mar 2014 16:02:11 +0000 (08:02 -0800)]
(Wangle) Support .then(function pointer) syntax
Summary:
Support `.then(&static_function)`, `.then(&static_member_function)`, `.then(&Class::static_member_function)`, `.then(instance, &Class::member_function)` in Wangle.
C++ does not allow `.then(instance, &member_function)`, sadly.
This implementation just creates the closure for you and defers to the existing `then` implementations.
Test Plan: Added a test.
Reviewed By: hans@fb.com
FB internal diff:
D1204954
Philip Pronin [Thu, 6 Mar 2014 01:45:28 +0000 (17:45 -0800)]
use 0666 as the default permissions for new files
Summary: Seems like there is no real need to restrict permissions by default?
Test Plan: fbconfig -r folly/test && fbmake runtests_opt
@override-unit-failures
Reviewed By: tudorb@fb.com
FB internal diff:
D1205527
Hannes Roth [Thu, 6 Mar 2014 01:39:47 +0000 (17:39 -0800)]
(Wangle) Remove some early returns in tests
Summary:
I guess they sneaked in when testing.
Also remove an `EXPECT_NE` that depended on `std::move` actually moving.
Test Plan: All the tests.
Reviewed By: hans@fb.com
FB internal diff:
D1204971
Hannes Roth [Wed, 5 Mar 2014 17:50:28 +0000 (09:50 -0800)]
(Wangle) Actually support the universal reference used in whenAll
Summary:
Need to use `std::decay` to actually support the universal reference.
The futures are moved in, and invalidated.
Test Plan: Test; does not compile before.
Reviewed By: hans@fb.com
FB internal diff:
D1199841
Shuo Li [Tue, 4 Mar 2014 19:55:59 +0000 (11:55 -0800)]
Replace random_device/mt19937 with folly/Random
Summary: Replace random_device/mt19937 with folly/Random to increase hygiene of using Random
Test Plan:
For each file is changed, fbmake -opt is run; except one file: stealing_test.cc, since the TARGETS file is not under the path.
All fbmake are successfully passing
Reviewed By: bmaurer@fb.com
FB internal diff:
D1199483
Blame Revision: v1
Hannes Roth [Mon, 3 Mar 2014 22:45:10 +0000 (14:45 -0800)]
(Wangle) whenAll should take rvalue references instead of references
Summary: Don't need to keep the old futures around.
Test Plan: `FutureTest.cpp`
Reviewed By: hans@fb.com
FB internal diff:
D1197360
Yedidya Feldblum [Mon, 3 Mar 2014 22:33:02 +0000 (14:33 -0800)]
Fix off-by-one affecting benchmark numbers in folly/io.
Summary: Fix off-by-one affecting benchmark numbers in folly/io.
Test Plan:
$ fbconfig -r folly/io/test
$ fbmake --fast opt
$ _build/opt/folly/io/test/iobuf_cursor_test --benchmark
$ _build/opt/folly/io/test/iobuf_network_bench --benchmark
Reviewed By: simpkins@fb.com
FB internal diff:
D1199679
Blame Revision:
D344018
Hans Fugal [Mon, 3 Mar 2014 20:57:29 +0000 (12:57 -0800)]
Add Wangle README.md
Summary:
Facebook:
Moving from Dex.
Transliteration from whatever wiki format Dex uses to Markdown
Some minor corrections/additions.
Test Plan: Pasted into a private gist and it looks reasonable on github.
Reviewed By: davejwatson@fb.com
FB internal diff:
D1199510
Marc Celani [Mon, 3 Mar 2014 19:36:05 +0000 (11:36 -0800)]
Make it easy to wrap pre-existing cob-style async apis
Summary:
Tao neesd a way to wrap its c-style async apis with Later. Although my comments suggest that you can do this, it turns out I never got around to implementing it. Well, here is the implementation.
Basically, we supply the callback to the pre-existing api, and that callback will fulfill a promise that is used internally within Later. This is thread safe because the async call is not made until the starter is fired, and we can use the future immediately for chaining then() calls.
Test Plan: unit test
Reviewed By: hannesr@fb.com
FB internal diff:
D1197721
Marcelo Juchem [Wed, 26 Feb 2014 23:46:51 +0000 (15:46 -0800)]
Making folly/Benchmark.cpp clangable
Summary: trunk fails to compile under clang: https://phabricator.fb.com/P6426175
Test Plan: ran some benchmarks and checked output
Reviewed By: andrei.alexandrescu@fb.com
FB internal diff:
D1192933
Hannes Roth [Mon, 3 Mar 2014 17:18:59 +0000 (09:18 -0800)]
(Folly) Fix error when compiling with clang
Summary:
folly/Benchmark.cpp:427:9: error: logical not is only applied to the left hand side of this comparison
if (!strcmp(get<1>(benchmarks[i]), "-") == 0) {
Since the `!` binds to `strcmp`, removing both the `!` and the `== 0`
should be equivalent.
Reviewers of diff that introduced this line:
D490324
Test Plan: I compiled `tao/client` with/without this diff.
Reviewed By: delong.j@fb.com
FB internal diff:
D1196452
Blame Revision: rFBCODE6f5eea5fcd23044a5c579b040bf45d17006b4adf
Peter Griess [Tue, 25 Feb 2014 23:54:23 +0000 (15:54 -0800)]
Make Folly cpp_library targets more granular
Summary:
- Some users of Folly don't want to pull in the entire library just to
use one feature (e.g. folly::to<T>). Throw those users a bone by
breaking Folly up into a few discrete chunks: :uri, :range, :string,
:format, etc. Leave the top-level :folly target alone so that existing
users don't have to be changed.
- Update some Thrift and Proxygen users to use the more granular
targets.
Test Plan: - Phabricator contbuild
Reviewed By: tudorb@fb.com
FB internal diff:
D1192765
Paul Tarjan [Fri, 28 Feb 2014 09:25:57 +0000 (01:25 -0800)]
kill unused vars in folly
Summary: these print as errors when compiling hhvm opensource
Test Plan: none
Reviewed By: tudorb@fb.com
FB internal diff:
D1195649
Anton Likhtarov [Thu, 27 Feb 2014 01:51:49 +0000 (17:51 -0800)]
Easy: fix signed/unsigned comparisons
Test Plan: build with -Wsign-compare, no warnings
Reviewed By: njormrod@fb.com
FB internal diff:
D1193502
Nathan Bronson [Thu, 27 Feb 2014 17:32:50 +0000 (09:32 -0800)]
make FB_LOG_EVERY_MS thread safe
Summary:
Use compare_exchange_strong to update the previous time so that
there is no race. This diff also adds microbenchmarks.
Test Plan: unit tests
Reviewed By: andrei.alexandrescu@fb.com
FB internal diff:
D1191217
Hans Fugal [Sat, 22 Feb 2014 00:22:15 +0000 (16:22 -0800)]
(wangle) more comment tweaks
Test Plan: eyeballs
Reviewed By: hannesr@fb.com
FB internal diff:
D1185813
Hans Fugal [Fri, 21 Feb 2014 18:52:22 +0000 (10:52 -0800)]
(wangle) comment cleanup
Summary: Cleaning up some inaccuracies, adding just a little detail in a few places, and trying very hard not to get OCD about the commenting style.
Test Plan: still builds
Reviewed By: hannesr@fb.com
FB internal diff:
D1184910
Hans Fugal [Fri, 21 Feb 2014 18:33:24 +0000 (10:33 -0800)]
s/valueTry/getTry/
Summary: This is a better name
Test Plan: unit tests. fbgs shows no external usage of this.
Reviewed By: hannesr@fb.com
FB internal diff:
D1184905
Hans Fugal [Fri, 21 Feb 2014 18:15:31 +0000 (10:15 -0800)]
(wangle) remove Future::wait
Summary: pulling the trigger
Test Plan: Unit tests. Wait for contbuild and dependent unit tests
Reviewed By: hannesr@fb.com
FB internal diff:
D1184842