Android CTS 12.0 Release 4 (8559733)
Snap for 7325276 from d78d20d2d1afb349f17feec1e7ea7be623c46dfd to sc-release

Change-Id: Id5640789283db874dbba11f10d2bc8ab98ce573c
tree: 29b348c25163f9cf2f8941f2351ac0e7e01b35a6
  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. logging.cpp
  20. logging_splitters.h
  21. logging_splitters_test.cpp
  22. logging_test.cpp
  23. macros_test.cpp
  24. mapped_file.cpp
  25. mapped_file_test.cpp
  26. no_destructor_test.cpp
  27. NOTICE
  28. OWNERS
  29. parsebool.cpp
  30. parsebool_test.cpp
  31. parsedouble_test.cpp
  32. parseint_test.cpp
  33. parsenetaddress.cpp
  34. parsenetaddress_fuzzer.cpp
  35. parsenetaddress_fuzzer.dict
  36. parsenetaddress_test.cpp
  37. PREUPLOAD.cfg
  38. process.cpp
  39. process_test.cpp
  40. properties.cpp
  41. properties_test.cpp
  42. README.md
  43. result_test.cpp
  44. scopeguard_test.cpp
  45. stringprintf.cpp
  46. stringprintf_test.cpp
  47. strings.cpp
  48. strings_test.cpp
  49. test_main.cpp
  50. TEST_MAPPING
  51. test_utils.cpp
  52. test_utils_test.cpp
  53. threads.cpp
  54. utf8.cpp
  55. 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.