Tom Jackson [Mon, 8 Jul 2013 19:41:11 +0000 (12:41 -0700)]
guard<Exception>() (redo)
Summary:
For handling exceptions from downstream operations.
Now with cleaner build.
Test Plan: Unit tests, including those outside `folly`.
Reviewed By: marcelo.juchem@fb.com
FB internal diff:
D877795
Blame Revision: https://phabricator.fb.com/
D872581
Chip Turner [Wed, 10 Jul 2013 21:05:49 +0000 (14:05 -0700)]
Fix folly/FBString.h build error
Summary:
Looks like
D880140 left off this part when it was committed.
This fixes the build.
Test Plan: runtests
Reviewed By: vini@fb.com
FB internal diff:
D881445
Andrei Alexandrescu [Tue, 9 Jul 2013 23:11:19 +0000 (16:11 -0700)]
Fix build breakage in hphp
Summary:
This should fix the build breakage in hphp caused by the latest fbstring changes (after being ported to engshare). Note that I'm flying blind here; I couldn't test with the hphp build because I don't have write access to engshare. @agallagher could you please make sure that this works after the fix?
fbconfig -r hphp && fbmake dbg
Test Plan: tested on folly
Reviewed By: tudorb@fb.com
FB internal diff:
D880140
Andrei Alexandrescu [Fri, 28 Jun 2013 01:40:35 +0000 (18:40 -0700)]
fbstring::shrink_to_fit
Summary: Adds the eponymous C++11 capability to fbstring.
Test Plan: fbstring runtests
Reviewed By: tudorb@fb.com
FB internal diff:
D867995
Tom Jackson [Tue, 2 Jul 2013 19:29:10 +0000 (12:29 -0700)]
Allowing trailing comma in folly::parseJson
Summary:
Introduced a new serialization option, `allow_trailing_comma`, which allows trailing commas to be included in strings when they are parsed. This isn't strictly allowed by RFC 4627, but we're allowing more than that anyway.
I've run into this dozens of times, especially while using SMC.
Test Plan: Unit tests
Reviewed By: delong.j@fb.com
FB internal diff:
D872581
Chip Turner [Mon, 8 Jul 2013 18:05:36 +0000 (11:05 -0700)]
Revert
D874344 (it broke the build)
Summary:
Clean revert. Please be more careful; phabricator warned you
these would break the build.
Test Plan: build something that wasn't working
Reviewed By: myang@fb.com
FB internal diff:
D877526
Tom Jackson [Wed, 3 Jul 2013 18:38:32 +0000 (11:38 -0700)]
guard<Exception>()
Summary: For handling exceptions from downstream operations.
Test Plan: Unit tests
Reviewed By: marcelo.juchem@fb.com
FB internal diff:
D874344
Philip Pronin [Fri, 5 Jul 2013 03:01:37 +0000 (20:01 -0700)]
move assignment operators for folly::Synchronized
Summary:
* added move assignment operators,
* fixed `operator=(const Synchronized& rhs)` (it had a typo),
* fixed deadlock on self-assignment,
* changed `swap` to call `swap(lhs.datum_, rhs.datum_)` instead of `lhs.datum_.swap(rhs.datum_)`.
Test Plan: fbconfig -r folly/test && fbmake opt -j32 && fbmake runtests_opt
Reviewed By: delong.j@fb.com
FB internal diff:
D875977
Sean Cannella [Wed, 3 Jul 2013 20:36:28 +0000 (13:36 -0700)]
memrchr and *timed_mutex are platform-specific
Summary:
- conditionally compile rfind overrides
- conditionally add support for timed_mutex/recursive_timed_mutex
Test Plan:
- compiled on OSX
- unit tests
Reviewed By: andrei.alexandrescu@fb.com
FB internal diff:
D872272
Sean Cannella [Mon, 1 Jul 2013 15:06:12 +0000 (08:06 -0700)]
strerror_r is XSI compliant on Apple/FreeBSD
Summary:
- Noticed this due to an -fpermissive compiler warning while compiling
HHVM for OSX (complaint of trying to cast int to char*)
Test Plan:
- Compiled
- Confirmed the build warning is fixed by this on the Mac OS X build
Reviewed By: tudorb@fb.com
FB internal diff:
D865169
Tom Jackson [Tue, 23 Apr 2013 17:02:07 +0000 (10:02 -0700)]
toDynamic(T)
Summary: It only makes sense to be able to go the other direction, too.
Test Plan: Unit tests
Reviewed By: delong.j@fb.com
FB internal diff:
D785282
Tom Jackson [Wed, 26 Jun 2013 23:53:58 +0000 (16:53 -0700)]
Range<T>::rfind()
Test Plan: Unit tests
Reviewed By: andrei.alexandrescu@fb.com
FB internal diff:
D865951
Nathan Bronson [Fri, 28 Jun 2013 20:42:14 +0000 (13:42 -0700)]
Multi-producer multi-consumer queue with optional blocking
Summary:
MPMCQueue<T> is a high-performance bounded concurrent queue that
supports multiple producers, multiple consumers, and optional blocking.
The queue has a fixed capacity, for which all memory will be allocated
up front. The bulk of the work of enqueuing and dequeuing can be
performed in parallel.
To make an MPMCQueue<T>, T must satisfy either of two conditions:
- it has been tagged FOLLY_ASSUME_FBVECTOR_COMPATIBLE; or
- both the constructor used during enqueue and the move operator are
marked noexcept.
This diff extracts the generic component from tao/queues/ConcurrentQueue
and renames identifiers to match those of existing folly queues.
It also includes an extraction of Futex, which wraps the futex syscall,
and DeterministicScheduler, which allows for deterministic exploration
of thread interleavings for components built from std::atomic and Futex.
Test Plan: new unit tests
Reviewed By: tudorb@fb.com
FB internal diff:
D866566
Tom Jackson [Wed, 26 Jun 2013 19:32:28 +0000 (12:32 -0700)]
const'ing sorted_vector_map::count()
Test Plan: Use it
Reviewed By: tudorb@fb.com
FB internal diff:
D865211
Louis Brandy [Thu, 20 Jun 2013 00:01:38 +0000 (17:01 -0700)]
fix tautological comparisons in Conv.h
Summary:
We have an off-by-one in our enable_if/sfinae logic here. We do not want to actually do the comparison in `less_than` when the rhs is exactly the minimum possible lhs. This results in a tautological comparison.
I added a unit test for these traits that test all the various sfinae cases.
Test Plan: See the clang tautological warnings go away. Under gcc, rerun all tests. All pass.
Reviewed By: marcelo.juchem@fb.com
FB internal diff:
D856869
Tudor Bosman [Fri, 21 Jun 2013 03:14:35 +0000 (20:14 -0700)]
Speed up EventCount, now 64-bit only
Summary:
Don't use two atomic variables when only one will suffice (otherwise, the
increments in doNotify() and prepareWait() would require memory_model_seq_cst,
because they need to globally order a store before a load, and no weaker
model allows you to do that)
Of course, this makes this 64-bit only, but I don't care.
Test Plan: eventcount_test, tests outside of folly
Reviewed By: delong.j@fb.com
FB internal diff:
D858963
Tudor Bosman [Mon, 24 Jun 2013 19:48:43 +0000 (12:48 -0700)]
StringPiece comparisons are broken
Summary:
8-bit StringPiece comparisons are broken.
The reason is char_traits is magic for 'char', but not 'const char'.
Test Plan: test added
Reviewed By: chip@fb.com
FB internal diff:
D861521
Tudor Bosman [Fri, 21 Jun 2013 16:18:37 +0000 (09:18 -0700)]
add Chrono.h to patch around a gcc 4.6 issue
Test Plan: used it
Reviewed By: soren@fb.com
FB internal diff:
D859244
Tudor Bosman [Thu, 20 Jun 2013 21:15:17 +0000 (14:15 -0700)]
Use libunwind instead of the heavyweight thing from libgcc
Test Plan: exception_tracer_test
Reviewed By: bmaurer@fb.com
FB internal diff:
D858195
Stephen Chen [Fri, 14 Jun 2013 22:46:44 +0000 (15:46 -0700)]
Add MultiLevelTimeSeries to folly.
Summary:
Add MultiLevelTimeSeries class which represents a timeseries which keeps several
levels of data granularity (similar in principle to the loads reported by the
UNIX 'uptime' command). It uses several instances (one per level) of
BucketedTimeSeries as the underlying storage.
This can easily be used to track sums (and thus rates or averages) over several
predetermined time periods, as well as all-time sums. For example, you would
use to it to track query rate or response speed over the last 5, 15, 30, and 60
minutes.
Test Plan: unittest included.
Reviewed By: simpkins@fb.com
FB internal diff:
D851444
Louis Brandy [Wed, 19 Jun 2013 23:39:45 +0000 (16:39 -0700)]
rename template parameters in folly::greater_than
Summary: This template is only used in folly::Conv (to avoid tautological comparisons) and as best as I can tell, the rhs/lhs names are not correct as it's currently used (and not consistent with `less_than`). Just swap rhs/lhs variable names.
Test Plan:
Test Results Summary:
Passed: 471
100% successful
Reviewed By: marcelo.juchem@fb.com
FB internal diff:
D856785
Jim Meyering [Thu, 13 Jun 2013 16:54:17 +0000 (09:54 -0700)]
folly: accommodate use of -Wshadow in other projects
Summary:
Without this change, any folly-using project that attempts to enable
gcc's -Wshadow option will be overwhelmed by warnings about violations
in folly's class definitions. Violations are often due to local
variable or parameter names shadowed by a member function.
Bracket offending content with directives like this:
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wshadow"
...
#pragma GCC diagnostic pop
This set of modified files is the minimal set to allow tao
to use -Wshadow with no folly-related warning.
Test Plan:
fbmake folly/test && fbmake opt
Reviewed By: simpkins@fb.com
FB internal diff:
D848455
Adam Simpkins [Thu, 16 May 2013 02:03:40 +0000 (19:03 -0700)]
rework the Subprocess::communicate() API
Summary:
This eliminates the CommunicateFlags argument to communicate(). It now
always reads from both stdout and stderr if they were set up a pipes.
If a non-empty input buffer was supplied, it always writes that to
stdin.
This mimics the communicate() behavior of python's subprocess.py module.
This also makes it impossible to have buffering deadlocks by forgetting
to call communicate() with readStderr().
Test Plan:
Ran the existing subprocess tests, and also added a more complicated
duplex test that requires communication on stdin, stdout, and stderr all
at the same time.
Also grepped for all existing users of Subprocess::communicate(), and
made sure they will work correctly with the new behavior.
Reviewed By: tudorb@fb.com
FB internal diff:
D814405
Todd Nowacki [Tue, 4 Jun 2013 21:43:22 +0000 (14:43 -0700)]
Folly Changes for Clang, revision 1
Summary:
Depends on
D829162 and
D830052
A few changes are needed to get folly compiling with clang.
There are likely more changes to compile all of folly
---folly/Bits.cpp
+++folly/folly-config.h
Moved ifunc check, and added an additional check for clang, instead of hard
coding it to be 1
~~~folly/Range.cpp
Moved the declaration of a function to get rid of clang's unused function
warning.
Test Plan:
This bit of code was a dependency in another project.
That code compiled as it needed to
See other diff for more test details
Reviewed By: oyamauchi@fb.com
FB internal diff:
D830075
Jordan DeLong [Mon, 3 Jun 2013 23:14:50 +0000 (16:14 -0700)]
Fix some issues in allocator_delete
Summary:
The unique_ptr implementation was getting confused about how
to determine the pointer type, so just tell it.
Facebook: Broke the fxl build; test plan included recompiling it.
Test Plan: Built.
Reviewed By: marcelo.juchem@fb.com
FB internal diff:
D834371
Jordan DeLong [Sun, 2 Jun 2013 03:55:24 +0000 (20:55 -0700)]
Make folly::allocator_delete take advantage of EBO
Summary: It wasn't.
Test Plan:
I have a case using this that now passes a static_assert
that it's the same size as the default_deleter version. I didn't add
a static_assert in folly's tests because right now
is_simple_allocator<int,std::allocator<int>>::value is true (I think
because the tested members come from a base class), which breaks easy
test cases.
Reviewed By: andrei.alexandrescu@fb.com
FB internal diff:
D833142
Paul Tarjan [Fri, 31 May 2013 22:01:14 +0000 (15:01 -0700)]
osx on folly take 2
Summary: using ULL broke everything. Lets try the case @danslo originally suggested.
Test Plan: will check errors for this file
Reviewed By: delong.j@fb.com
FB internal diff:
D832165
Paul Tarjan [Fri, 31 May 2013 21:55:52 +0000 (14:55 -0700)]
revert folly/Benchmark.cpp
Summary: revert the breaking change
Test Plan: none
Reviewed By: delong.j@fb.com
FB internal diff:
D832143
Blame Revision:
D830883
Daniel Sloof [Tue, 28 May 2013 08:17:55 +0000 (10:17 +0200)]
make folly build on OSX
Summary:
A squash of https://github.com/danslo/folly/compare/master
Github Author: danslo
Test Plan: he said it compiles on OSX
Reviewed By: oyamauchi@fb.com
FB internal diff:
D830883
Owen Yamauchi [Thu, 30 May 2013 20:24:04 +0000 (13:24 -0700)]
add missing include
Summary:
Newer versions of boost fail without this. I guess mutex.hpp doesn't
include lock_guard.hpp indirectly anymore, or something.
Test Plan:
built on OS X. This was part of what I had to do for my OS
X-building attempts from a few weeks ago.
Reviewed By: delong.j@fb.com
FB internal diff:
D830157
Tom Jackson [Wed, 29 May 2013 01:17:37 +0000 (18:17 -0700)]
eachToTuple<Types...>()
Summary: For parsing records. `eachToPair` might be a worthwhile specialization.
Test Plan: Unit tests, benchmarks maybe?
Reviewed By: antoine@fb.com
FB internal diff:
D827441
Mike Curtiss [Sat, 2 Mar 2013 06:27:56 +0000 (22:27 -0800)]
HACK: New Gen operators: zip, interleave
Summary:
Zip: inspired by python's zip()
o Combine a generator with the contents of a container to form
a tuple. Note that we combine with a container (and not
another generator) because of a fundamental constraint
in how control-flow in Generators works. Containers give us 90%
of the utility without all the hassle. We could theoretically
also add a version of zip where the extra source is generated
concurrently in another thread.
Interleave: similar to zip, but inspired by Clojure's interleave()
o Instead of creating a tuple like zip, just flatten the values.
Added some tuple creation/concatenation functions. These are mostly
meant as a way to enable zip'ing multiple containers together into an
N-tuple. (My variadic-fu was not strong enough to get this working
within a single Zip function).
Test Plan: Added unit-tests
Reviewed By: tjackson@fb.com
FB internal diff:
D740518
John Fremlin VII [Tue, 28 May 2013 18:28:14 +0000 (11:28 -0700)]
correct broken testcase
Summary:
Turns out that phabricator and arc unit do not actually run
tests in our internal repo and this one had a bunch of syntax errors.
doh
No test cases were changed, just fixing syntax.
Test Plan:
- fbconfig folly/test
- fbmake runtests
- saw all ok
- _bin/folly/test/json_test
[==========] Running 10 tests from 1 test case.
[----------] Global test environment set-up.
[----------] 10 tests from Json
[ RUN ] Json.Unicode
[ OK ] Json.Unicode (0 ms)
[ RUN ] Json.Parse
[ OK ] Json.Parse (1 ms)
[ RUN ] Json.JavascriptSafe
[ OK ] Json.JavascriptSafe (0 ms)
[ RUN ] Json.Produce
[ OK ] Json.Produce (0 ms)
[ RUN ] Json.JsonEscape
[ OK ] Json.JsonEscape (0 ms)
[ RUN ] Json.JsonNonAsciiEncoding
[ OK ] Json.JsonNonAsciiEncoding (0 ms)
[ RUN ] Json.UTF8Retention
WARNING: Logging before InitGoogleLogging() is written to STDERR
I0528 11:29:43.879976 17977 JsonTest.cpp:257] input: ♥ => json: "♥"
I0528 11:29:43.880077 17977 JsonTest.cpp:259] output: ♥ => json: "♥"
[ OK ] Json.UTF8Retention (1 ms)
[ RUN ] Json.UTF8EncodeNonAsciiRetention
I0528 11:29:43.880122 17977 JsonTest.cpp:284] input: ♥ => json: "\u2665"
I0528 11:29:43.880131 17977 JsonTest.cpp:286] output: ♥ => json: "\u2665"
[ OK ] Json.UTF8EncodeNonAsciiRetention (0 ms)
[ RUN ] Json.UTF8Validation
[ OK ] Json.UTF8Validation (0 ms)
[ RUN ] Json.ParseNonStringKeys
[ OK ] Json.ParseNonStringKeys (0 ms)
[----------] 10 tests from Json (2 ms total)
[----------] Global test environment tear-down
[==========] 10 tests from 1 test case ran. (2 ms total)
[ PASSED ] 10 tests.
Reviewed By: delong.j@fb.com
FB internal diff:
D826413
Blame Revision:
D805218
John Fremlin VII [Tue, 21 May 2013 23:04:40 +0000 (16:04 -0700)]
allow reading maps from number -> value
Summary:
The serialization of PHP values often uses integer -> value
maps in JSON arrays. These are emitted by the standard stream <<
operator on dynamics but cannot be read. This diff fixes that.
Test Plan: - read in serialized value with array "bucketing":{"days_stale":{0:{2:null,1:14.01,0:"more_than_two_weeks_stale"}}}
Reviewed By: delong.j@fb.com
FB internal diff:
D805218
Tudor Bosman [Wed, 15 May 2013 04:28:50 +0000 (21:28 -0700)]
add openNoInt, truncateNoInt, ftruncateNoInt
Test Plan: it compiles
Reviewed By: soren@fb.com
FB internal diff:
D825286
Tudor Bosman [Tue, 21 May 2013 17:59:39 +0000 (10:59 -0700)]
Add QueueAppender
Summary:
Add an Appender that appends to a IOBufQueue. You can pass in the maximum
append size if you know it, and it will throw on overflow, and will never
allocate IOBufs larger than the remaining size.
Test Plan: test added
Reviewed By: davejwatson@fb.com
FB internal diff:
D820160
Xu Ning [Fri, 24 May 2013 23:02:12 +0000 (16:02 -0700)]
make folly:make_unique support customized deleter
Summary: just follow the same template arguments as unique_ptr
Test Plan: compile
Reviewed By: marcelo.juchem@fb.com
FB internal diff:
D825025
Tom Jackson [Thu, 23 May 2013 22:34:03 +0000 (15:34 -0700)]
member(&Foo::getter), field(&Foo::field)
Summary: For easily calling a getter on every item in a sequence.
Test Plan: Unit tests, benchmarks
Reviewed By: mmcurtiss@fb.com
FB internal diff:
D651206
Jordan DeLong [Wed, 22 May 2013 21:23:51 +0000 (14:23 -0700)]
Some documentation updates in lazy
Summary: Per discussion after commit on the previous diff.
Test Plan: Compiled.
Reviewed By: tjackson@fb.com
FB internal diff:
D821985
Jordan DeLong [Sun, 19 May 2013 21:47:39 +0000 (14:47 -0700)]
Add folly::lazy
Summary:
A thin wrapper around Optional for terse creation of
lazily-initialized values.
Test Plan: New tests, and a use case in hphp.
Reviewed By: tjackson@fb.com
FB internal diff:
D817906
Maxime Boucher [Mon, 20 May 2013 08:26:55 +0000 (01:26 -0700)]
Allow escapeString in folly/json.cpp to be called by other methods.
Summary: See title.
Test Plan:
From fbocde, type:
fbconfig folly/test; fbmake opt -j 32; fbmake runtests_opt -j 32
Reviewed By: delong.j@fb.com
FB internal diff:
D818077
Mike Curtiss [Thu, 16 May 2013 18:16:37 +0000 (11:16 -0700)]
Gen apply comment
Summary: Comment
Test Plan: Builds
Reviewed By: tjackson@fb.com
FB internal diff:
D814986
Paul Tarjan [Mon, 20 May 2013 18:33:17 +0000 (11:33 -0700)]
delete unused variable
Test Plan: none
Reviewed By: tjackson@fb.com
FB internal diff:
D818326
Mike Curtiss [Tue, 14 May 2013 05:05:06 +0000 (22:05 -0700)]
gen::sample
Summary:
Take a random sample of size N from a range. Clients
can also pass in a custom random number generator.
Test Plan: Added test and benchmark.
Reviewed By: tjackson@fb.com
FB internal diff:
D811260
Adam Simpkins [Tue, 16 Apr 2013 00:58:47 +0000 (17:58 -0700)]
Update Subprocess to throw if exec() fails
Summary:
Add a new SubprocessSpawnError, and change the Subprocess constructor to
throw this if the child process encounters an error before calling
execve(). Error information is passed back to the parent process over a
pipe.
Previosly in this case the Subprocess constructor would fail, and
clients would simply get a return code of 126 or 127 when waiting on the
process. There was no way to distinguish this from a successful
execve() followed by the child process exiting with status 127.
Test Plan:
Added tests to check the exception behavior, and also to check for file
descriptor leaks in the parent process.
Reviewed By: tudorb@fb.com
FB internal diff:
D776273
Chip Turner [Tue, 14 May 2013 23:44:27 +0000 (16:44 -0700)]
Expose a human-readable type name for a dynamic
Summary: Aids in debugging dynamic types, etc.
Test Plan: unit tests
Reviewed By: delong.j@fb.com
FB internal diff:
D812385
Mark Williams [Thu, 9 May 2013 18:41:55 +0000 (11:41 -0700)]
New feature support in folly::AtomicHash*
Summary:
AtomicHashMap/AtomicHashArray didn't support a custom equality
function, and didnt support pointer keys. We only ever do
compare-and-swap against the 3 "magic" keys, so as long as we're
careful we can continue to do that, while using the equality
function elsewhere.
Also add a user-configurable growth rate, independent of
maxLoadFactor.
Test Plan: automated tests
Reviewed By: delong.j@fb.com
FB internal diff:
D806936
Tudor Bosman [Sat, 11 May 2013 21:35:43 +0000 (14:35 -0700)]
Add fsyncNoInt, fdatasyncNoInt
Test Plan: compiled file_util_test
Reviewed By: soren@fb.com
FB internal diff:
D809250
Maxime Boucher [Sun, 12 May 2013 04:33:07 +0000 (21:33 -0700)]
Replace CHECK in Range.h by throw std::out_of_range
Summary:
Calling CHECK() in folly will force the program to abort in case of a failure.
On the other hand, for range checking, the standard library throws std::out_of_range for many functions.
Thus it could be a good idea to throw the same exception in folly so that errors can be handled using try {} catch (...) {} blocks.
Test Plan:
from fbcode, type:
fbconfig -r folly; fbmake opt -j32; fbmake runtests_opt -j 32
What other tests should I run?
Reviewed By: tudorb@fb.com
FB internal diff:
D808204
Maxime Boucher [Fri, 10 May 2013 18:42:20 +0000 (11:42 -0700)]
Replace CHECK in Range.h by throw std::out_of_range
Summary:
Calling CHECK() in folly will force the program to abort in case of a failure.
On the other hand, for range checking, the standard library throws std::out_of_range for many functions.
Thus it could be a good idea to throw the same exception in folly so that errors can be handled using try {} catch (...) {} blocks.
Test Plan:
from fbcode, type:
fbconfig -r folly; fbmake opt -j32; fbmake runtests_opt -j 32
What other tests should I run?
Reviewed By: tudorb@fb.com
FB internal diff:
D808204
Tudor Bosman [Thu, 9 May 2013 22:50:02 +0000 (15:50 -0700)]
Unbreak build on glibc 2.5.1
Summary:
Also move manually-generated stuff away from folly-config.h and into
Portability.h. This should be only for things that differs between the
various (compiler, library) pairs used internally at FB; everything else
should be autoconf-ed and therefore go into folly-config.h.
Test Plan: built and ran file_util_test on various platforms
Reviewed By: delong.j@fb.com
FB internal diff:
D807067
Blame Revision:
D806781
Tudor Bosman [Thu, 9 May 2013 22:17:13 +0000 (15:17 -0700)]
fix segfault on fb platform
Summary: Strings can be moved around while the vector grows.
Test Plan: file_util_test
Reviewed By: lucian@fb.com
FB internal diff:
D806966
Blame Revision:
D806781
Tudor Bosman [Thu, 9 May 2013 21:27:56 +0000 (14:27 -0700)]
convert RecordIO to pwritev
Summary: zero-copy
Test Plan: record_io_test
Reviewed By: lucian@fb.com
FB internal diff:
D806813
Tudor Bosman [Thu, 9 May 2013 21:16:35 +0000 (14:16 -0700)]
Add missing FileUtil functions (p?readvFull, p?writevFull) , add test
Summary:
Testing incomplete reads / writes is hard, so I'm only testing the wrappers
(template functions that take the underlying operation and retry it in
case of incomplete operations). Note the cute hack of using variadic
templates to use the same wrapper for both file pointer- and explicit-position
flavors of the functions (the offset argument becomes optional).
Test Plan: test added
Reviewed By: lucian@fb.com
FB internal diff:
D806781
Tudor Bosman [Wed, 8 May 2013 21:40:10 +0000 (14:40 -0700)]
Make folly::AsyncIO thread safe
Summary:
You can now submit to the same AsyncIO object from different threads, but you
must still reap from only one thread at a time.
Test Plan: async_io_test, added MT test
Reviewed By: philipp@fb.com
FB internal diff:
D804914
Owen Yamauchi [Fri, 3 May 2013 19:16:14 +0000 (12:16 -0700)]
Break dependency on endian.h
Summary:
gcc and clang both give you these three macros pre-defined. I've found a
reference on the interweb to this being broken
(http://gcc.gnu.org/ml/gcc/2011-08/msg00152.html) but that was with gcc
4.4. I've tested with 4.6, 4.7 and clang 3.2 and they all do the right
thing on little-endian (internal build and OS X). Alas, I don't have a
big-endian system handy to test with.
Test Plan: fbconfig/fbmake runtests.
Reviewed By: simpkins@fb.com
FB internal diff:
D799416
Owen Yamauchi [Fri, 3 May 2013 17:43:36 +0000 (10:43 -0700)]
Break dependency on byteswap.h
Summary:
Unfortunately, this doesn't exist on all platforms. Fortunately, both
gcc and clang support builtins that do the same thing as the bswap_*
functions we were including byteswap.h for.
I changed the test file to hardcode expected results for the swapping
functions. Is that OK? It seemed a little silly to be testing the
Endian::whatever functions by comparing them against the functions that
they're implemented in terms of.
Test Plan:
fbconfig/fbmake runtests with gcc 4.6 and 4.7. Verified
separately that clang supports these builtins.
Reviewed By: simpkins@fb.com
FB internal diff:
D799244
Owen Yamauchi [Fri, 3 May 2013 16:25:39 +0000 (09:25 -0700)]
Break dependency on features.h
Summary:
It doesn't exist on some systems (at least Mac OS X). We're only using
it for __GNUC_PREREQ, which is easy to provide our own definition for.
I moved the definitions of FOLLY_FINAL and FOLLY_OVERRIDE into
folly-config.h so we can autoconf them in the open-source build. The
hardcoded stuff for the internal build is a little ugly, unfortunately.
folly can't be built with gcc versions earlier than 4.6, so that check
in ThreadLocal.h is pointless by now. (Plus we use noexcept without a
macro wrapper all over the place.) That stuff was also not
clang-friendly. clang has supported static_assert since 2.9 and noexcept
since... I'm not sure but at least 3.0.
Test Plan:
fbconfig/fbmake runtests, with gcc 4.6 and 4.7. clang can't
build folly right now, but I verified separately that it supports
noexcept and static_assert.
Reviewed By: simpkins@fb.com
FB internal diff:
D799143
Hannes Roth [Fri, 3 May 2013 16:37:17 +0000 (09:37 -0700)]
(Folly) Remove unused variable according to -Wunused-variable
Summary:
I am trying to move more code into a HPHP extension, and it's complaining about
this.
Test Plan: `fbconfig -r folly && fbmake runtests`
Reviewed By: delong.j@fb.com
FB internal diff:
D799096
Owen Yamauchi [Tue, 30 Apr 2013 21:33:21 +0000 (14:33 -0700)]
Fail the configure script if you don't have boost
Summary:
Discovered this while trying to build folly on OS X. It would print a
warning about Boost being missing that got drowned out in the rest of
the configure output, and then the build would fail. This makes the
failure more friendly.
Test Plan:
`autoreconf; ./configure` on a system without boost
installed; make sure configure fails and the last thing it prints is the
boost error message.
Reviewed By: delong.j@fb.com
FB internal diff:
D797389
Peter Griess [Wed, 1 May 2013 03:06:55 +0000 (20:06 -0700)]
Add read*String() methods to Cursor
Summary:
- Add some convenience methods for reading std::string objects via
folly::Cursor
Test Plan: - Unit tests
Reviewed By: simpkins@fb.com
FB internal diff:
D795428
Tom Jackson [Tue, 30 Apr 2013 20:13:34 +0000 (13:13 -0700)]
Fixed-size split()
Summary:
There are quite a few places where we split strings into a fixed number
of fields. This enables this to be done a bit faster by not using any
variable-length structures at runtime.
Test Plan: Unit tests, Benchmarks
Reviewed By: philipp@fb.com
FB internal diff:
D794523
Tudor Bosman [Thu, 25 Apr 2013 03:29:08 +0000 (20:29 -0700)]
RecordIO: robust record-based streaming I/O
Summary:
RecordIO provides an interface to write and read streams of variable-length
records that is resilient in the face of failure and data corruption. If
the stream is corrupted in any way, you will lose records, but the stream
will resynchronize.
We have one implementation of RecordIO reader/writer that reads from / writes
to regular files (using mmap(), even for writes, so we can preserve state
even in case of process death -- the buffer cache will flush things to disk
eventually) and we expose enough of the guts (in a reasonably clean way)
so you can build your own on top of other backends.
Test Plan: test added
Reviewed By: mmcurtiss@fb.com
FB internal diff:
D790275
Tudor Bosman [Fri, 26 Apr 2013 22:32:36 +0000 (15:32 -0700)]
flock locks in folly::File, FileUtil, Exception.h fixes and tests
Summary:
Test required a separate process, as fcntl locks are always re-granted to
a process that holds the lock.
Test Plan: new tests, all tests under folly
Reviewed By: lucian@fb.com
FB internal diff:
D791370
Jordan DeLong [Sun, 28 Apr 2013 16:27:03 +0000 (09:27 -0700)]
Fix build for folly_fb_platform
Summary:
This wasn't building with an error from a warning about
narrowing conversions---probably we didn't notice because it was
previously broken due to folly docs being broken forever. Folly tests
should always pass. (I want to add it to the fbcode-tests-must-pass
commit hook.)
Test Plan:
fbmake runtests_opt in this platform, except with stl_tests
turned off because it takes years to compile.
Reviewed By: andrewjcg@fb.com
FB internal diff:
D792059
Tom Jackson [Tue, 30 Apr 2013 01:46:29 +0000 (18:46 -0700)]
Making from(dynamic.items()) work
Summary: It was broken because the `dynamic`'s iterator wasn't complete.
Test Plan: Unit test
Reviewed By: jbrewer@fb.com
FB internal diff:
D793618
Tom Jackson [Fri, 26 Apr 2013 20:58:08 +0000 (13:58 -0700)]
distinctBy()
Test Plan: Unit tests
Reviewed By: jbrewer@fb.com
FB internal diff:
D791149
Tom Jackson [Mon, 22 Apr 2013 18:07:07 +0000 (11:07 -0700)]
Disabling conversion with contained value for Optional
Summary: Comparisons with values can lead to confusion, especially when the value itself is truthy. To avoid this confusion, I'm disabling comparison with contained value. Note that Optionals can still be constructed and assigned these values, but comparsion must be done separately for the container and the contained.
Test Plan: Unit tests, contbuild
Reviewed By: tudorb@fb.com
FB internal diff:
D783621
Tudor Bosman [Wed, 24 Apr 2013 21:59:06 +0000 (14:59 -0700)]
Fix async_io_test to work with larger block sizes
Test Plan: ran it
Reviewed By: lucian@fb.com
FB internal diff:
D787733
Adam Simpkins [Wed, 17 Apr 2013 03:41:29 +0000 (20:41 -0700)]
move rateHelper() to detail/Stats.h
Summary:
The BucketedTimeSeries::rateHelper() function is generic, and not
specific to the BucketedTimeSeries class. This diff moves it to
folly/detail/Stats.h, so other parts of the stats code can access it as
well.
Test Plan: Ran the folly unit tests.
Reviewed By: delong.j@fb.com
FB internal diff:
D778115
Adam Simpkins [Wed, 17 Apr 2013 01:32:23 +0000 (18:32 -0700)]
Make BucketedTimeSeries::rate() more accurate
Summary:
Make rate() and countRate() more accurate when queried for a specific
time range.
Previously these functions divided the estimated sum/count by the entire
time range specified. This underestimated the rate if we don't actually
have data for the entire time period. (Since the sum computed only
takes into account the time range for which we have data.)
For example, if the timeseries duration was 60 seconds, but only 30
seconds of data had been entered so far, rate(now - 60, now) would
underestimate the rate by half, since there was only 30 seconds worth of
data available. The no-argument version of rate() did work correctly in
that case.
Test Plan:
Added a new unit test for this behavior.
Also fixed the existing rate test code, which had the same bug and
expected the underestimated rate.
Reviewed By: delong.j@fb.com
FB internal diff:
D778114
Philip Pronin [Tue, 23 Apr 2013 06:36:47 +0000 (23:36 -0700)]
fix fbstring move assignment operator
Summary:
21.4.2 [string.cons] / 23 says
> If *this and str are the same object, the member has no effect.
That means we have to support self-move-assignment.
Test Plan: added test which triggered assertion, ran it
Reviewed By: andrei.alexandrescu@fb.com
FB internal diff:
D785057
Tudor Bosman [Sat, 20 Apr 2013 20:07:39 +0000 (13:07 -0700)]
toAppendDelimited, toDelimited
Test Plan: test added
Reviewed By: delong.j@fb.com
FB internal diff:
D783100
Tudor Bosman [Sat, 20 Apr 2013 20:17:18 +0000 (13:17 -0700)]
FOLLY_NORETURN
Summary: Seems like a good idea.
Test Plan: compiled all of folly
Reviewed By: delong.j@fb.com
FB internal diff:
D783104
Tudor Bosman [Tue, 16 Apr 2013 20:22:41 +0000 (13:22 -0700)]
Modernize TemporaryFile, add TemporaryDirectory
Test Plan: fbconfig $(find folly -name test) && fbmake runtests_opt
Reviewed By: tjackson@fb.com
FB internal diff:
D777186
Tudor Bosman [Wed, 17 Apr 2013 18:57:05 +0000 (11:57 -0700)]
Revert "Revert "URI parsing in folly""
Summary:
Now that the third_party link was updated in
https://phabricator.fb.com/
D778617, we're good.
Test Plan: fbconfig -r thrift && fbmake runtests_opt
Reviewed By: chip@fb.com
FB internal diff:
D778707
Tudor Bosman [Wed, 17 Apr 2013 18:47:25 +0000 (11:47 -0700)]
Revert "URI parsing in folly"
Summary: Unbreak build. third-party link not yet updated after https://phabricator.fb.com/
D776457
Test Plan: no
Reviewed By: chip@fb.com
FB internal diff:
D778669
Tudor Bosman [Wed, 10 Apr 2013 00:34:52 +0000 (17:34 -0700)]
URI parsing in folly
Summary: Cleaned up from common/strings/URL.h, and it should be URI, not URL.
Test Plan: tests added
Reviewed By: chip@fb.com
FB internal diff:
D768880
Christian Kamm [Mon, 25 Mar 2013 08:54:26 +0000 (09:54 +0100)]
Fix bug in reserve() and shrink_to_fit().
Summary:
impl_.e_ += newB - impl_.b_; fails when the difference
between newB and impl_.b_ isn't a multiple of sizeof(T).
Test Plan: .
Reviewed By: oyamauchi@fb.com
FB internal diff:
D774754
Tudor Bosman [Sat, 13 Apr 2013 06:49:32 +0000 (23:49 -0700)]
Make Subprocess::spawn more robust
Summary:
We can't throw after the process is created, because we don't know what to do
with it (and the Subprocess object goes up in smoke, so we can't rely on the
caller to clean up, either). So don't throw.
If we throw before the process is created, make sure we clean up.
Test Plan: subprocess_test
Reviewed By: delong.j@fb.com
FB internal diff:
D774722
Philip Pronin [Sun, 14 Apr 2013 02:06:37 +0000 (19:06 -0700)]
do not include iostream from Range.h
Summary:
folly/Range.h is extensively used in fbcode, try to avoid including
<iostream> (which is pretty heavy), include forward declarations
(<iosfwd>) instead.
Also transitioned it from 'std type_traits' + 'boost type_traits' to
'std type_traits'.
Test Plan: compiled, ran tests
Reviewed By: soren@fb.com
FB internal diff:
D774834
Adam Simpkins [Sat, 30 Mar 2013 01:55:16 +0000 (18:55 -0700)]
move Histogram.h to stats/
Summary:
Move Histogram.h into the stats/ subdirectory, along side the
BucketedTimeSeries code. Eventually I plan to land more of our stats
code in this subdirectory too.
This also renames Histogram-inl.h to Histogram-defs.h, and no longer
includes it by default from Histogram.h. Instead, this adds a new
stats/Instantiations.cpp file which explicitly instantiates
Histogram<int64_t> and BucketedTimeSeries<int64_t>. Most callers use
these instantiations, and they now no longer need to include
Histogram-defs.h. Only callers that need other instantiations need to
include Histogram-defs.h. This will speed up build times.
Test Plan:
Ran "arc unit" to build all projects depending on folly, and verified
they all still built and passed tests.
Reviewed By: ldbrandy@fb.com
FB internal diff:
D761377
Marcelo Juchem [Mon, 8 Apr 2013 20:38:22 +0000 (13:38 -0700)]
easier rebinding of allocators
Summary: rebinding allocators is too cumbersome, this diff implements a helper to make this job easier.
Test Plan: unit test added
Reviewed By: tudorb@fb.com
FB internal diff:
D766451
Marcelo Juchem [Mon, 8 Apr 2013 21:08:18 +0000 (14:08 -0700)]
Making StlAllocator<Alloc, void> usable when rebinding.
Summary:
currently, StlAllocator<Alloc, void> can't be used when you
want an untyped allocator that can be rebound later since it doesn't
carry the SimpleAllocator pointer with it. This diff fixes that.
Test Plan: unit test added
Reviewed By: jon.coens@fb.com
FB internal diff:
D766559
Michael Connor [Wed, 27 Mar 2013 17:16:59 +0000 (10:16 -0700)]
Initialize variable before using in own initialization
Summary:
Clang throws error because the callback refers to itself inside its lambda
function definition. I prevent this by declaring the variable first then the
compiler does not complain when it is used within its lambda definition.
folly/test/TimeoutQueueTest.cpp:99:37: error: variable 'cb' is uninitialized
when used within its own initialization [-Werror,-Wuninitialized]
Test Plan:
fbconfig --clang --platform=gcc-4.7.1-glibc-2.14.1 --with-project-version
boost:1.51.0 folly/test/
fbmake opt
fbmake runtests_opt
Reviewed By: ldbrandy@fb.com
FB internal diff:
D753061
Jonathan Coens [Thu, 4 Apr 2013 22:25:52 +0000 (15:25 -0700)]
Soft-limit for arenas
Summary: Create an artificial limit on an arena to start throwing bad_alloc before running out of system memory
Test Plan: adjust unit test
Reviewed By: marcelo.juchem@fb.com
FB internal diff:
D762695
Marcelo Juchem [Sat, 30 Mar 2013 07:13:31 +0000 (00:13 -0700)]
Fixing clang compatibility issues
Test Plan: all folly unit tests
Reviewed By: andrewjcg@fb.com
FB internal diff:
D757374
Marcelo Juchem [Wed, 3 Apr 2013 03:22:58 +0000 (20:22 -0700)]
Implementing a traits class to check for incomplete types
Summary: A traits class to check for incomplete types
Test Plan: unit tests added
Reviewed By: delong.j@fb.com
FB internal diff:
D760676
Lucian Grijincu [Wed, 3 Apr 2013 04:29:02 +0000 (21:29 -0700)]
folly: speed up fastpath of ThreadLocal::get()
Summary:
A smaller function makes it more likely it will be inlined
(it wasn't before, is now).
Test Plan: n/a
Reviewed By: tudorb@fb.com
FB internal diff:
D759996
Lucian Grijincu [Wed, 3 Apr 2013 00:56:32 +0000 (17:56 -0700)]
folly: speed up fastpath of StaticMeta::get()
Summary:
A smaller function makes it more likely it will be inlined
(it wasn't before, is now).
Test Plan: n/a
Reviewed By: tudorb@fb.com
FB internal diff:
D760000
Marcelo Juchem [Mon, 1 Apr 2013 23:00:01 +0000 (16:00 -0700)]
as_stl_allocator "template alias"
Summary: Implementing as_stl_allocator as a companion to the existing make_stl_allocator
Test Plan: unit tests added
Reviewed By: jon.coens@fb.com
FB internal diff:
D755207
Misha Shneerson [Tue, 2 Apr 2013 19:14:41 +0000 (12:14 -0700)]
Suppress unused variable warning
Summary:
HPHP compiler treats warnings as errors and the unused 'constuctor'
variable breaks the build.
Test Plan: Build
Reviewed By: simpkins@fb.com
FB internal diff:
D759559
Tudor Bosman [Thu, 28 Mar 2013 23:48:51 +0000 (16:48 -0700)]
Optionally, kill subprocess when parent dies
Summary: Non-portable.
Test Plan: test added
Reviewed By: lucian@fb.com
FB internal diff:
D755528
Tudor Bosman [Wed, 27 Mar 2013 21:04:01 +0000 (14:04 -0700)]
remove folly/eventfd.h
Test Plan: compile: fbconfig folly/experimental/io/test thrift/test unicorn/io/test common/system_features common/concurrency && fbmake opt
Reviewed By: soren@fb.com
FB internal diff:
D753552
Brett Simmers [Wed, 27 Mar 2013 20:14:37 +0000 (13:14 -0700)]
Remove an unused variable in FormatValue<double>
Test Plan: Built a program that uses it
Reviewed By: tudorb@fb.com
FB internal diff:
D753460
Tudor Bosman [Mon, 25 Mar 2013 18:37:39 +0000 (11:37 -0700)]
make sse4.2 functions in folly/Range.h build on -fb platform
Test Plan: fbconfig --platform=gcc-4.7.1-glibc-2.14.1-fb folly/test && fbmake runtests_opt
Reviewed By: oyamauchi@fb.com
FB internal diff:
D749992
Louis Brandy [Mon, 25 Mar 2013 17:16:15 +0000 (10:16 -0700)]
fix clang warnings in folly::Gen
Summary: Two clang warnings. It wants user defined consturctor for static initialization, and it wants fwd-declare to agree with full decleration in regards to struct v class.
Test Plan:
`fbconfig --clang --platform=gcc-4.7.1-glibc-2.14.1 folly/test/`
And make sure it doesn't break normal build.
Reviewed By: tulloch@fb.com
FB internal diff:
D749857
Peter Griess [Mon, 25 Mar 2013 16:31:49 +0000 (09:31 -0700)]
Add read/write mode to ElfFile
Summary:
- Add a mode to ElfFile that allows opening the file for read/write
access via PROT_WRITE.
Test Plan:
- Used it in some other code
Reviewed By: simpkins@fb.com
FB internal diff:
D740184
Owen Yamauchi [Thu, 21 Mar 2013 14:32:47 +0000 (07:32 -0700)]
Handle non-Intel platforms in Range and CpuId
Summary:
Compile out the SSE versions of these functions in Range, based on a new
entry in folly-config.h.
The change to CpuId feels slightly iffy to me. It seems like it would be
more rigorous to make compiling CpuId.h on non-Intel an error, and force
clients to handle non-Intel platforms at the callsite. However, I think
that would be too susceptible to unintentional breakage on non-Intel
platforms, since most people (including automated systems) aren't
building and testing regularly on any. Falling back to saying "none of
these features exist on this processor" seems like a reasonable
alternative.
Test Plan:
fbmake runtests, with FOLLY_HAVE_EMMINTRIN_H set to 0 and 1.
Make sure the SSE functions are getting compiled in or out as
appropriate. ##autoreconf## and ##./configure## to regenerate
folly-config.h.
Reviewed By: delong.j@fb.com
FB internal diff:
D746872
Peter Griess [Fri, 15 Mar 2013 16:12:46 +0000 (09:12 -0700)]
Add symbol name resolution and value retrieval
Summary:
- Add ElfFile::getSymbolByName(), which finds a Symbol object
corresponding to the symbol w/ the given name
- Add ElfFile::getSymbolValue(), which resolves the Symbol object to a
value in the mapped file, following pointers if necessary
Test Plan: - Unit tests
Reviewed By: simpkins@fb.com
FB internal diff:
D740183