tree: 8a6082a5e44430aab1dca100bc0a5446d2212ca8 [path history] [tgz]
  1. quic_bug_tracker.h
  2. quic_client_stats.h
  3. quic_containers.h
  4. quic_default_proof_providers.h
  5. quic_epoll.h
  6. quic_epoll_test_tools.h
  7. quic_error_code_wrappers.h
  8. quic_expect_bug.h
  9. quic_export.h
  10. quic_exported_stats.h
  11. quic_flag_utils.h
  12. quic_flags.h
  13. quic_hostname_utils.cc
  14. quic_hostname_utils.h
  15. quic_hostname_utils_test.cc
  16. quic_iovec.h
  17. quic_ip_address.cc
  18. quic_ip_address.h
  19. quic_ip_address_family.h
  20. quic_ip_address_test.cc
  21. quic_logging.h
  22. quic_mock_log.h
  23. quic_mutex.cc
  24. quic_mutex.h
  25. quic_port_utils.h
  26. quic_reference_counted.h
  27. quic_reference_counted_test.cc
  28. quic_server_stats.h
  29. quic_sleep.h
  30. quic_socket_address.cc
  31. quic_socket_address.h
  32. quic_socket_address_test.cc
  33. quic_stack_trace.h
  34. quic_stream_buffer_allocator.h
  35. quic_system_event_loop.h
  36. quic_test.h
  37. quic_test_loopback.cc
  38. quic_test_loopback.h
  39. quic_test_output.h
  40. quic_testvalue.h
  41. quic_thread.h
  42. quic_udp_socket_platform_api.h
  43. README.md
quic/platform/api/README.md

QUIC platform API

This directory contains the infrastructure blocks needed to support QUIC in certain platform. These APIs act as interaction layers between QUIC core and either the upper layer application (i.e. Chrome, Envoy) or the platform‘s own infrastructure (i.e. logging, test framework and system IO). QUIC core needs the implementations of these APIs to build and function appropriately. There is unidirectional dependency from QUIC core to most of the APIs here, such as QUIC_LOG and QuicMutex, but a few APIs also depend back on QUIC core’s basic QUIC data types, such as QuicClock and QuicSleep.

  • APIs used by QUIC core:

    Most APIs are used by QUIC core to interact with platform infrastructure (i.e. QUIC_LOG) or to wrap around platform dependent data types (i.e. QuicThread), the dependency is:

application -> quic_core -> quic_platform_api
      |                             |
      v                             v
platform_infrastructure <- quic_platform_impl
  • APIs used by applications:

    Some APIs are used by applications to interact with QUIC core (i.e. QuicMemSlice). For such APIs, their dependency model is:

application -> quic_core -> quic_platform_api
    |                            ^
    |                            |
     -------------------> quic_platform_impl
    |                            |
    |                            v
     -------------------> platform_infrastructure

        An example for such dependency is QuicClock.

        Or

application -> quic_core -> quic_platform_api
    |                            ^
    |                            |
    |                            v
     -------------------> quic_platform_impl
    |                            |
    |                            v
     -------------------> platform_infrastructure

        An example for such dependency is QuicMemSlice.

Documentation of each API and its usage.

QuicMemSlice : QuicMemSlice is used to wrap application data and pass to QUIC stream‘s write interface. It refers to a memory block of data which should be around till QuicMemSlice::Reset() is called. It’s upto each platform, to implement it as reference counted or not.

QuicClock : QuicClock is used by QUIC core to get current time. Its instance is created by applications and passed into QuicDispatcher and QuicConnectionHelperInterface.

TODO(b/131224336) add document for other APIs