You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? If so, please describe. #1584 introduced wildcards for filenames. This comes in handy, since it allows writing the main code independent from the backend which is then specified via JSON/TOML:
This makes it very easy to write openPMD-based output routines that can be configured at runtime by the user, without needing to write a parser for command line arguments or similar.
Problem: This falls short when trying to use file-based iteration encoding since JSON/TOML exposes no way to specify the %T expansion pattern. The logical consequence imo is to allow specifying everything in JSON/TOML that could be specified in the constructor.
Describe the solution you'd like
Series(
std::string const& filepath, // default, can be overridden from JSON/TOML
Access at, // default, can be overridden from JSON/TOML
std::string const &json_toml);
file_base_name = "simData"file_infix = "%T"# --> will be put together as "simData_%T.%E"# "infix" is optional, will default as %06T in file-based encoding, as empty otherwise
file_base_name = "simData"file_extension = "bp"iteration_encoding = "file_based"# --> will be put together as "simData_%06T.bp"
The text was updated successfully, but these errors were encountered:
Alternative easier fix: In group/variable-based encoding, erase _%06T and similar patterns from the specified filename. Add a JSON/TOML config option to suppress this behavior.
Is your feature request related to a problem? If so, please describe.
#1584 introduced wildcards for filenames. This comes in handy, since it allows writing the main code independent from the backend which is then specified via JSON/TOML:
Or alternatively:
This makes it very easy to write openPMD-based output routines that can be configured at runtime by the user, without needing to write a parser for command line arguments or similar.
Problem: This falls short when trying to use file-based iteration encoding since JSON/TOML exposes no way to specify the
%T
expansion pattern. The logical consequence imo is to allow specifying everything in JSON/TOML that could be specified in the constructor.Describe the solution you'd like
The text was updated successfully, but these errors were encountered: