Antares Simulator
Power System Simulator
Loading...
Searching...
No Matches
Registry.hxx
1/*
2** Copyright 2007-2024, RTE (https://www.rte-france.com)
3** See AUTHORS.txt
4** SPDX-License-Identifier: MPL-2.0
5** This file is part of Antares-Simulator,
6** Adequacy and Performance assessment for interconnected energy networks.
7**
8** Antares_Simulator is free software: you can redistribute it and/or modify
9** it under the terms of the Mozilla Public Licence 2.0 as published by
10** the Mozilla Foundation, either version 2 of the License, or
11** (at your option) any later version.
12**
13** Antares_Simulator is distributed in the hope that it will be useful,
14** but WITHOUT ANY WARRANTY; without even the implied warranty of
15** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16** Mozilla Public Licence 2.0 for more details.
17**
18** You should have received a copy of the Mozilla Public Licence 2.0
19** along with Antares_Simulator. If not, see <https://opensource.org/license/mpl-2-0/>.
20*/
21#pragma once
22
23#include <concepts>
24#include <memory>
25#include <mutex>
26#include <vector>
27
28namespace Antares::Expressions
29{
30// Template class to manage the memory allocation and registry for a base class
31template<class Base>
33{
34public:
35 Registry() = default;
36 Registry(Registry<Base>&&) = default;
37 Registry<Base>& operator=(Registry<Base>&&) = default;
38
39 // Method to create a new derived class object and add it to the registry
40 template<class Derived, class... Args>
41 requires std::derived_from<Derived, Base>
42 Derived* create(Args&&... args)
43 {
44 auto created = std::make_unique<Derived>(std::forward<Args>(args)...);
45 registry_.push_back(std::move(created));
46 return dynamic_cast<Derived*>(
47 registry_.back().get()); // Return the pointer to the newly created object
48 }
49
50private:
51 std::vector<std::unique_ptr<Base>>
52 registry_; // Registry to manage dynamically allocated objects
53};
54} // namespace Antares::Expressions
Definition Registry.hxx:33