#apollo #framework #format #server #stable #toolkit #building

apollo-framework

The Apollo framework is a toolkit for building stable and robust server software

8 releases (4 stable)

1.0.3 Jan 7, 2022
1.0.2 Nov 29, 2021
1.0.0 Oct 1, 2021
0.3.0 May 7, 2021
0.0.1 Apr 27, 2021

#36 in #apollo

MIT license

65KB
828 lines

Apollo Framework

The Apollo framework is essentailly a runtime and a toolkit for building stable and robust server software.

Apollo was extracted out of Jupiter to make its core parts usable by other libraries or applications.

Apollo provides a small dependency injection helper called Platform along with some tooling to setup logging, format messages and to react on signals. This is commonly required to properly run inside a Docker container.

Most notably a Config and a Server component is provided, both fully aync as they built up on Tokio.

The Config monitors a local config file and broadcasts a change event throughout the whole platform once a new configuration is available.

The Server opens a port and spins of a loop which accepts and handles connections. The protocol implementation to be applied to each connection can be passed in using a closure or function reference.

Note that the server also monitors the config and will re-allocate a new port if the underlying config changes. This permits for zero downtime migrations during releases.

Contributions

Contributions as issues or pull requests are always welcome. Please sign-off all your commits by adding a line like "Signed-off-by: Name " at the end of each commit, indicating that you wrote the code and have the right to pass it on as an open source.

License

The Apollo framework is licensed under the MIT License:

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Dependencies

~6–16MB
~185K SLoC