tree: 8c7b2889bbda3db3fe316749d8ddb73de074ab10 [path history] [tgz]
  1. functional/
  2. memory/
  3. meta/
  4. strings/
  5. synchronization/
  6. test/
  7. third_party/
  8. BUILD.gn
  9. build_config.h
  10. command_line.cc
  11. command_line.h
  12. command_line_unittest.cc
  13. fxl_export.h
  14. log_settings_command_line.cc
  15. log_settings_command_line.h
  16. log_settings_command_line_unittest.cc
  17. macros.h
  18. METADATA.textproto
  19. observer_list.h
  20. observer_list_unittest.cc
  21. OWNERS
  22. README.md
src/lib/fxl/README.md

Fuchsia Template Library

A library containing basic C++ building blocks, such as logging and reference counting.

This library builds for both host (this includes Linux, Windows, and macOS) as well as target (i.e., Fuchsia) platforms and is not source or binary stable. On both host and target, we require C++17, and thus this library may use C++17 language and library features.

Should I put my thing in FXL?

In an ideal world, FXL wouldn‘t exist and we could use the C++ standard library’s building blocks. Unfortunately, the C++ standard library is missing some important functionality (e.g., logging) and makes some design choices we disagree with (e.g., sizeof(std::shared_ptr) == 2*sizeof(void*), std::chrono lacking a defined scalar representation). FXL exists to fill in those gaps in the standard library.

It‘s easy for these types of libraries to accrete a large amount of code because they’re convenient places to share code. We‘d like to keep FXL small and focused on the problem of “fixing” the C++ standard library, which means you probably shouldn’t put your thing in FXL unless it is related to a particular deficiency of the C++ standard library.

If you look at the library, you‘ll see we haven’t quite lived up to this ideal, but hope springs eternal.

What currently exists in FXL that should be moved out?

Most, if not all, of the code in files should be split out into its own library. That code is already in a separate namespace to make that move easier in the future.