Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94058788
aka_factory.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Dec 3, 14:08
Size
2 KB
Mime Type
text/x-c++
Expires
Thu, Dec 5, 14:08 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22486493
Attached To
rAKA akantu
aka_factory.hh
View Options
/**
* Copyright (©) 2017-2023 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* This file is part of Akantu
*
* Akantu is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Akantu is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Akantu. If not, see <http://www.gnu.org/licenses/>.
*/
/* -------------------------------------------------------------------------- */
#include "aka_common.hh"
/* -------------------------------------------------------------------------- */
#include <functional>
#include <map>
#include <memory>
#include <string>
/* -------------------------------------------------------------------------- */
#ifndef AKANTU_AKA_FACTORY_HH_
#define AKANTU_AKA_FACTORY_HH_
namespace
akantu
{
template
<
class
Base
,
class
T
=
ID
,
class
...
Args
>
class
Factory
{
using
allocator_t
=
std
::
function
<
std
::
unique_ptr
<
Base
>
(
Args
...)
>
;
private
:
Factory
()
=
default
;
public
:
Factory
(
const
Factory
&
)
=
delete
;
Factory
&
operator
=
(
const
Factory
&
)
=
delete
;
static
Factory
&
getInstance
()
{
static
Factory
instance
;
return
instance
;
}
/* ------------------------------------------------------------------------ */
bool
registerAllocator
(
const
T
&
id
,
const
allocator_t
&
allocator
)
{
if
(
allocators
.
find
(
id
)
!=
allocators
.
end
())
{
AKANTU_EXCEPTION
(
"The id
\"
"
<<
id
<<
"
\"
is already registered in the "
<<
debug
::
demangle
(
typeid
(
Base
).
name
())
<<
" factory"
);
}
allocators
[
id
]
=
allocator
;
return
true
;
}
template
<
typename
...
AArgs
>
std
::
unique_ptr
<
Base
>
allocate
(
const
T
&
id
,
AArgs
&&
...
args
)
const
{
if
(
allocators
.
find
(
id
)
==
allocators
.
end
())
{
AKANTU_EXCEPTION
(
"The id
\"
"
<<
id
<<
"
\"
is not registered in the "
<<
debug
::
demangle
(
typeid
(
Base
).
name
())
<<
" factory."
);
}
return
std
::
forward
<
std
::
unique_ptr
<
Base
>>
(
allocators
.
at
(
id
)(
std
::
forward
<
AArgs
>
(
args
)...));
}
std
::
vector
<
T
>
getPossibleAllocators
()
{
std
::
vector
<
T
>
keys
;
for
(
auto
&
e
:
allocators
)
{
keys
.
push_back
(
e
.
first
);
}
return
keys
;
}
private
:
std
::
map
<
T
,
allocator_t
>
allocators
;
};
}
// namespace akantu
#endif
/* AKANTU_AKA_FACTORY_HH_ */
Event Timeline
Log In to Comment