mirror of
https://github.com/distribution/distribution.git
synced 2025-09-14 22:29:09 +00:00
22c9f45598491efe30718a3c5260b4fc170a4883
This changeset defines the application structure to be used for the http side of the new registry. The main components are the App and Context structs. The App context is instance global and manages global configuration and resources. Context contains request-specific resources that may be created as a by-product of an in-flight request. To latently construct per-request handlers and leverage gorilla/mux, a dispatch structure has been propped up next to the main handler flow. Without this, a router and all handlers need to be constructed on every request. By constructing handlers on each request, we ensure thread isolation and can carefully control the security context of in-flight requests. There are unit tests covering this functionality.
Description
Languages
Go
98.7%
Dockerfile
0.5%
Makefile
0.5%
Shell
0.2%
HCL
0.1%