24#ifdef ESPRESSO_WALBERLA
32#include <boost/algorithm/string/join.hpp>
40#include <unordered_map>
51 std::string m_identifier;
52 std::filesystem::path m_base_folder;
54 std::shared_ptr<::VTKHandle> m_vtk_handle;
55 std::weak_ptr<Field> m_field;
57 std::vector<Variant> m_pending_arguments;
60 return m_base_folder.generic_string() +
"/" + m_identifier;
63 [[
nodiscard]] std::shared_ptr<Field> get_field_instance()
const {
64 if (
auto const field = m_field.lock()) {
68 auto const err_expired =
"Attempted access to an expired lattice object";
69 auto const err_detached =
"This VTK object isn't attached to a lattice";
73 virtual std::unordered_map<std::string, int>
const &
get_obs_map()
const = 0;
75 [[
nodiscard]]
auto get_valid_observable_names()
const {
78 std::ranges::sort(
names);
83 deserialize_obs_flag(std::vector<std::string>
const &
names)
const {
87 if (
not obs_map.contains(
name)) {
88 auto const valid_names = get_valid_observable_names();
89 std::stringstream message;
90 message <<
"Only the following VTK observables are supported: ['"
91 << boost::algorithm::join(
valid_names,
"', '") <<
"'], got '"
93 throw std::invalid_argument(message.str());
114 {
"enabled", read_only, [
this]() {
return m_vtk_handle->enabled; }},
115 {
"delta_N", read_only, [
this]() {
return m_delta_N; }},
116 {
"vtk_uid", read_only, [
this]() {
return get_vtk_uid(); }},
117 {
"identifier", read_only, [
this]() {
return m_identifier; }},
118 {
"base_folder", read_only, [
this]() {
return m_base_folder; }},
119 {
"prefix", read_only, [
this]() {
return m_prefix; }},
120 {
"force_pvtu", read_only, [
this]() {
return m_force_pvtu; }},
121 {
"observables", read_only,
122 [
this]() {
return serialize_obs_flag(m_obs_flag); }},
123 {
"execution_count", read_only,
124 [
this]() {
return m_vtk_handle->execution_count; }},
140 m_obs_flag = deserialize_obs_flag(
143 throw std::domain_error(
"Parameter 'delta_N' must be >= 0");
145 if (m_identifier.empty()) {
146 throw std::domain_error(
"Parameter 'identifier' cannot be empty");
148 if (m_identifier.find(std::filesystem::path::preferred_separator) !=
150 throw std::invalid_argument(
151 "Parameter 'identifier' cannot be a filepath");
154 m_pending_arguments.emplace_back(is_enabled);
155 m_pending_arguments.emplace_back(execution_count);
160 if (
name ==
"enable") {
162 if (m_delta_N == 0) {
163 throw std::runtime_error(
"Manual VTK callbacks cannot be enabled");
165 get_field_instance()->switch_vtk(get_vtk_uid(),
true);
169 if (
name ==
"disable") {
171 if (m_delta_N == 0) {
172 throw std::runtime_error(
"Manual VTK callbacks cannot be disabled");
174 get_field_instance()->switch_vtk(get_vtk_uid(),
false);
178 if (
name ==
"write") {
181 throw std::runtime_error(
"Automatic VTK callbacks cannot be "
182 "triggered manually");
184 get_field_instance()->write_vtk(get_vtk_uid());
188 if (
name ==
"get_valid_observable_names") {
201 if (
not m_field.expired()) {
202 throw std::runtime_error(
"Cannot attach VTK object to multiple lattices");
205 throw std::runtime_error(
"Detached VTK objects cannot be attached again");
207 assert(m_pending_arguments.size() == 2u);
209 auto const execution_count =
get_value<int>(m_pending_arguments[1]);
210 auto const base_folder = m_base_folder.generic_string();
213 auto instance = get_field_instance();
215 instance->create_vtk(m_delta_N, execution_count, m_obs_flag, m_units,
216 m_identifier,
base_folder, m_prefix, m_force_pvtu);
217 if (m_delta_N
and not is_enabled) {
218 instance->switch_vtk(get_vtk_uid(),
false);
220 m_pending_arguments.clear();
std::unordered_map< std::string, double > units_map
Bind parameters in the script interface.
void add_parameters(std::vector< AutoParameter > &¶ms)
virtual void parallel_try_catch(std::function< void()> const &cb) const =0
Context * context() const
Responsible context.
std::string_view name() const
void detach_from_lattice()
void do_construct(VariantMap const ¶ms) override
Variant do_call_method(std::string const &name, VariantMap const &) override
void attach_to_lattice(std::weak_ptr< Field > field, ::LatticeModel::units_map const &units)
virtual std::unordered_map< std::string, int > const & get_obs_map() const =0
T get_value(Variant const &v)
Extract value of specific type T from a Variant.
std::unordered_map< std::string, Variant > VariantMap
auto make_unordered_map_of_variants(std::unordered_map< K, V > const &v)
auto make_vector_of_variants(std::vector< T > const &v)
make_recursive_variant< ObjectRef > Variant
Possible types for parameters.
static SteepestDescentParameters params
Currently active steepest descent instance.
static constexpr const ReadOnly read_only
Recursive variant implementation.