Skip to content
Snippets Groups Projects
Commit 6b6455a0 authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

Merge branch 'issue/backup_restore_unknown_grid' into 'master'

make capabilities a compile-time test whether backup-restore functionality can be used

See merge request !64
parents 987dd0f9 d85f4695
No related branches found
No related tags found
1 merge request!64make capabilities a compile-time test whether backup-restore functionality can be used
......@@ -482,16 +482,26 @@ writeFiles(AdaptInfo& adaptInfo, bool force)
}
template <class Grid, class GridView,
class = decltype(Dune::BackupRestoreFacility<Grid>::backup(std::declval<Grid>(), std::string("")))>
void backup_impl(Grid const& grid, GridView const& gv, std::string filename, std::true_type)
{
Dune::BackupRestoreFacility<Grid>::backup(grid, filename);
}
template <class Grid, class GridView, bool B,
class = decltype(BackupRestoreByGridFactory<Grid>::backup(std::declval<GridView>(), std::string("")))>
void backup_impl(Grid const& grid, GridView const& gv, std::string filename, bool_t<B>)
{
warning("Falling back to backup of gridview.");
BackupRestoreByGridFactory<Grid>::backup(gv, filename);
}
template <class Traits>
void ProblemStat<Traits>::
backup(std::string const& filename) const
{
if (Dune::Capabilities::hasBackupRestoreFacilities<Grid>::v)
Dune::BackupRestoreFacility<Grid>::backup(*grid_, filename);
else {
warning("Falling back to backup of gridview.");
BackupRestoreByGridFactory<Grid>::backup(gridView(), filename);
}
backup_impl(*grid_, gridView(), filename, bool_t<Dune::Capabilities::hasBackupRestoreFacilities<Grid>::v>{});
}
......@@ -513,16 +523,26 @@ backup(AdaptInfo& adaptInfo)
}
template <class Grid,
class = decltype(Dune::BackupRestoreFacility<Grid>::restore(std::string("")))>
auto restore_impl(std::string filename, std::true_type)
{
return Dune::BackupRestoreFacility<Grid>::restore(filename);
}
template <class Grid, bool B,
class = decltype(BackupRestoreByGridFactory<Grid>::restore(std::string("")))>
auto restore_impl(std::string filename, bool_t<B>)
{
return BackupRestoreByGridFactory<Grid>::restore(filename);
}
template <class Traits>
auto ProblemStat<Traits>::
restore(std::string const& filename)
{
// restore grid from file
std::unique_ptr<Grid> grid;
if (Dune::Capabilities::hasBackupRestoreFacilities<Grid>::v)
grid.reset(Dune::BackupRestoreFacility<Grid>::restore(filename));
else
grid.reset(BackupRestoreByGridFactory<Grid>::restore(filename));
std::unique_ptr<Grid> grid(restore_impl<Grid>(filename, bool_t<Dune::Capabilities::hasBackupRestoreFacilities<Grid>::v>{}));
return std::move(grid);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment