:github_url: https://github.com/nyx-org/gaia .. _program_listing_file_dev_devkit_registry.hpp: Program Listing for File registry.hpp ===================================== |exhale_lsh| :ref:`Return to documentation for file ` (``dev/devkit/registry.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp /* SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include #include #include namespace Gaia::Dev { class Registry { public: Registry() : root(frg::make_unique(Vm::get_allocator())) {} void set_root(Service *service); void add(Service *client, Service *provider); frg::string make_graph(); private: struct Node { Service *provider; frg::vector clients; }; using NodePtr = Vm::UniquePtr; NodePtr root; void add_to_graph(DotGraph &graph, Service *parent, Service *child); frg::simple_spinlock spinlock; }; struct Driver { Vm::UniquePtr (*init)(); }; class Catalog { public: void register_driver(Driver driver, Properties &props); Result, Error> find_driver(Service *provider); private: struct CatalogEntry { Properties &props; Driver driver; }; frg::vector drivers; frg::simple_spinlock spinlock; }; Registry &get_registry(); Catalog &get_catalog(); void create_registry(); } // namespace Gaia::Dev