Add TimeoutMultiplier() function.

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