Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91583013
dumpable_inline_impl.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, Nov 12, 10:42
Size
5 KB
Mime Type
text/x-c
Expires
Thu, Nov 14, 10:42 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22268973
Attached To
rAKA akantu
dumpable_inline_impl.hh
View Options
/**
* @file dumpable_inline_impl.hh
*
* @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
* @author David Simon Kammer <david.kammer@epfl.ch>
* @author Nicolas Richart <nicolas.richart@epfl.ch>
*
* @date creation: Wed Nov 13 2013
* @date last modification: Mon Sep 15 2014
*
* @brief Implementation of the Dumpable class
*
* @section LICENSE
*
* Copyright (©) 2014 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* 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/>.
*
*/
#ifndef __AKANTU_DUMPABLE_INLINE_IMPL_HH__
#define __AKANTU_DUMPABLE_INLINE_IMPL_HH__
/* -------------------------------------------------------------------------- */
#ifdef AKANTU_USE_IOHELPER
#include "dumper_elemental_field.hh"
#include "dumper_nodal_field.hh"
/* -------------------------------------------------------------------------- */
__BEGIN_AKANTU__
/* -------------------------------------------------------------------------- */
template
<
class
T
>
inline
void
Dumpable
::
registerDumper
(
const
std
::
string
&
dumper_name
,
const
std
::
string
&
file_name
,
const
bool
is_default
)
{
if
(
this
->
dumpers
.
find
(
dumper_name
)
!=
this
->
dumpers
.
end
()){
AKANTU_DEBUG_INFO
(
"Dumper "
+
dumper_name
+
"is already registered."
);
}
std
::
string
name
=
file_name
;
if
(
name
==
""
)
name
=
dumper_name
;
this
->
dumpers
[
dumper_name
]
=
new
T
(
name
);
if
(
is_default
)
this
->
default_dumper
=
dumper_name
;
}
/* -------------------------------------------------------------------------- */
template
<
typename
T
>
inline
void
Dumpable
::
addDumpFieldExternal
(
const
std
::
string
&
field_id
,
const
Array
<
T
>
&
field
)
{
this
->
addDumpFieldExternalToDumper
<
T
>
(
this
->
default_dumper
,
field_id
,
field
);
};
/* -------------------------------------------------------------------------- */
template
<
typename
T
>
inline
void
Dumpable
::
addDumpFieldExternalToDumper
(
const
std
::
string
&
dumper_name
,
const
std
::
string
&
field_id
,
const
Array
<
T
>
&
field
)
{
dumper
::
Field
*
field_cont
=
new
dumper
::
NodalField
<
T
>
(
field
);
DumperIOHelper
&
dumper
=
this
->
getDumper
(
dumper_name
);
dumper
.
registerField
(
field_id
,
field_cont
);
}
/* -------------------------------------------------------------------------- */
template
<
typename
T
>
inline
void
Dumpable
::
addDumpFieldExternal
(
const
std
::
string
&
field_id
,
const
ElementTypeMapArray
<
T
>
&
field
,
UInt
spatial_dimension
,
const
GhostType
&
ghost_type
,
const
ElementKind
&
element_kind
)
{
this
->
addDumpFieldExternalToDumper
(
this
->
default_dumper
,
field_id
,
field
,
spatial_dimension
,
ghost_type
,
element_kind
);
}
/* -------------------------------------------------------------------------- */
template
<
typename
T
>
inline
void
Dumpable
::
addDumpFieldExternalToDumper
(
const
std
::
string
&
dumper_name
,
const
std
::
string
&
field_id
,
const
ElementTypeMapArray
<
T
>
&
field
,
UInt
spatial_dimension
,
const
GhostType
&
ghost_type
,
const
ElementKind
&
element_kind
)
{
dumper
::
Field
*
field_cont
=
new
dumper
::
ElementalField
<
T
>
(
field
,
spatial_dimension
,
ghost_type
,
element_kind
);
DumperIOHelper
&
dumper
=
this
->
getDumper
(
dumper_name
);
dumper
.
registerField
(
field_id
,
field_cont
);
}
/* -------------------------------------------------------------------------- */
template
<
class
T
>
inline
T
&
Dumpable
::
getDumper
(
const
std
::
string
&
dumper_name
)
{
DumperIOHelper
&
dumper
=
this
->
getDumper
(
dumper_name
);
try
{
T
&
templated_dumper
=
dynamic_cast
<
T
&
>
(
dumper
);
return
templated_dumper
;
}
catch
(...)
{
AKANTU_EXCEPTION
(
"Dumper "
<<
dumper_name
<<
" is not of type: "
<<
debug
::
demangle
(
typeid
(
T
).
name
()));
}
}
__END_AKANTU__
#endif
#endif
/* __AKANTU_DUMPABLE_INLINE_IMPL_HH__ */
Event Timeline
Log In to Comment