ASSERT/EXPECT_RESULT_OK follows gtest style.

Like other macros ASSERT_* and EXPECT_* from gtest, ASSERT_RESULT_OK and
EXPECT_RESULT_OK now accepts additional error message via "<<" operator
at the end. e.g.

ASSERT_RESULT_OK(stmt) << "custom message";

This change also fixes a bug that "tmp.ok()" is printed instead of the
expression that is given to the macro.

In addition, this change removes CHECK_RESULT_OK which is not used
anywhere.  It has had a potential problem due to its dependency to
android-base/logging.h because that header is not available everywhere.

Test: build and run the following statement.
ASSERT_RESULT_OK([]() -> Result<int> { return Error(EPERM) << "custom error"; }()) << "assertion message";

It builds, and the output is ...

system/libbase/result_test.cpp:604: Failure
Failed
Value of: []() -> Result<int> { return Error(EPERM) << "custom error"; }()
  Actual: custom error: Operation not permitted
Expected: is ok
assertion message

Bug: 210629279
Change-Id: I6abcededec71e3edfb7e5c8bf28d56074c69d623
1 file changed
tree: 8170b985027bad54f2bfcc85f891b8b889fc3c7a
  1. include/
  2. tidy/
  3. abi_compatibility.cpp
  4. Android.bp
  5. chrono_utils.cpp
  6. chrono_utils_test.cpp
  7. cmsg.cpp
  8. cmsg_test.cpp
  9. CPPLINT.cfg
  10. endian_test.cpp
  11. errors_test.cpp
  12. errors_unix.cpp
  13. errors_windows.cpp
  14. expected_test.cpp
  15. file.cpp
  16. file_test.cpp
  17. format_benchmark.cpp
  18. function_ref_test.cpp
  19. hex.cpp
  20. hex_test.cpp
  21. logging.cpp
  22. logging_splitters.h
  23. logging_splitters_test.cpp
  24. logging_test.cpp
  25. macros_test.cpp
  26. mapped_file.cpp
  27. mapped_file_test.cpp
  28. no_destructor_test.cpp
  29. NOTICE
  30. OWNERS
  31. parsebool.cpp
  32. parsebool_test.cpp
  33. parsedouble_test.cpp
  34. parseint_test.cpp
  35. parsenetaddress.cpp
  36. parsenetaddress_fuzzer.cpp
  37. parsenetaddress_fuzzer.dict
  38. parsenetaddress_test.cpp
  39. PREUPLOAD.cfg
  40. process.cpp
  41. process_test.cpp
  42. properties.cpp
  43. properties_test.cpp
  44. README.md
  45. result_test.cpp
  46. scopeguard_test.cpp
  47. stringprintf.cpp
  48. stringprintf_test.cpp
  49. strings.cpp
  50. strings_test.cpp
  51. test_main.cpp
  52. TEST_MAPPING
  53. test_utils.cpp
  54. test_utils_test.cpp
  55. threads.cpp
  56. utf8.cpp
  57. utf8_test.cpp
README.md

libbase

Who is this library for?

This library is a collection of convenience functions to make common tasks easier and less error-prone.

In this context, “error-prone” covers both “hard to do correctly” and “hard to do with good performance”, but as a general purpose library, libbase's primary focus is on making it easier to do things easily and correctly when a compromise has to be made between “simplest API” on the one hand and “fastest implementation” on the other. Though obviously the ideal is to have both.

Should my routine be added?

The intention is to cover the 80% use cases, not be all things to all users.

If you have a routine that‘s really useful in your project, congratulations. But that doesn’t mean it should be here rather than just in your project.

The question for libbase is “should everyone be doing this?”/“does this make everyone's code cleaner/safer?”. Historically we've considered the bar for inclusion to be “are there at least three unrelated projects that would be cleaned up by doing so”.

If your routine is actually something from a future C++ standard (that isn‘t yet in libc++), or it’s widely used in another library, that helps show that there's precedent. Being able to say “so-and-so has used this API for n years” is a good way to reduce concerns about API choices.

Any other restrictions?

Unlike most Android code, code in libbase has to build for Mac and Windows too.

Code here is also expected to have good test coverage.

By its nature, it‘s difficult to change libbase API. It’s often best to start using your routine just in your project, and let it “graduate” after you're certain that the API is solid.