Extension: Json and NetCDF utilities
#include "dg/file/file.h"
Loading...
Searching...
No Matches
json_probes.h
Go to the documentation of this file.
1#pragma once
2
3#include "json_wrapper.h"
4#include "probes_params.h"
10namespace dg
11{
12namespace file
13{
14
97 probes_err = file::error::is_silent)
98{
99 ProbesParams out;
100 int rank = 0;
101#ifdef MPI_VERSION
102 MPI_Comm_rank( MPI_COMM_WORLD, &rank);
103#endif // MPI_VERSION
104 if( (probes_err == file::error::is_silent) && !js.isMember( "probes"))
105 return out;
106 else if( (probes_err == file::error::is_warning) && !js.isMember( "probes"))
107 {
108 DG_RANK0 std::cerr << "WARNING: probes field not found. No probes written to file!\n";
109 return out;
110 }
111 else if ( !js.isMember("probes"))
112 throw std::runtime_error( "\"probes\" field not found!");
113
114 // test if parameters are file or direct
115 auto jsprobes = js["probes"];
116 std::string type = jsprobes["input"].asString();
117 if( type == "file")
118 {
119 std::string path = jsprobes["file"].asString();
120 // everyone reads the file
121 jsprobes.asJson()["coords"] = dg::file::file2Json( path,
123 }
124 else if( type != "coords")
125 {
126 throw std::runtime_error( "Error: Unknown coordinates input '"
127 + type + "'.");
128 }
129
130 auto coords = jsprobes["coords"];
131
132 // read in parameters
133
134 unsigned ndim = coords["coords-names"].size();
135
136 std::string first = coords["coords-names"][0].asString();
137 out.coords_names.resize(ndim);
138 out.coords.resize(ndim);
139 for( unsigned i=0; i<ndim; i++)
140 {
141 out.coords_names[i] = coords["coords-names"][i].asString();
142 }
143 unsigned num_pins = coords[out.coords_names[0]].size();
144 out.probes = (num_pins > 0);
145
146 if( rank == 0)
147 {
148 // only master thread reads probes
149 for( unsigned i=0; i<ndim; i++)
150 {
151 unsigned num_pins = coords[out.coords_names[i]].size();
152 out.coords[i].resize(num_pins);
153 double scale = 1.;
154 if( type == "file")
155 scale = jsprobes["scale"][i].asDouble();
156 for( unsigned k=0; k<num_pins; k++)
157 out.coords[i][k] = coords.asJson()[out.coords_names[i]][k]
158#ifdef DG_USE_JSONHPP
159 .template get<double>()
160#else
161 .asDouble()
162#endif
163 *scale;
164 }
165 }
166 // does not check that all probes have same size
167 out.format = coords["format"].toStyledString();
168 return out;
169}
170
171
172
173}//namespace file
174} //namespace dg
JsonType file2Json(std::string filename, enum comments comm=file::comments::are_discarded, enum error err=file::error::is_throw)
Convenience wrapper to open a file and parse it into a JsonType.
Definition json_wrapper.h:347
ProbesParams parse_probes(const dg::file::WrappedJsonValue &js, enum error probes_err=file::error::is_silent)
Parse probe field in json file for use with Probes class.
Definition json_probes.h:96
error
Switch between how to handle errors in a Json utitlity functions.
Definition json_wrapper.h:42
@ is_warning
Handle the error by writing a warning to std::cerr.
@ is_silent
Ignore the error and silently continue execution.
@ is_throw
throw an error (std::runtime_error)
@ are_discarded
Allow comments but discard them in the Json value.
Definition easy_atts.h:15
Parameter struct for probe values.
Definition probes_params.h:15
std::vector< dg::HVec > coords
Coordinates list.
Definition probes_params.h:31
bool probes
Indicate existence of probes.
Definition probes_params.h:49
std::vector< std::string > coords_names
Name of coordinates (must have same size as coords)
Definition probes_params.h:32
std::string format
Optional format string for coords.
Definition probes_params.h:38
Wrapped Access to Json values with error handling.
Definition json_wrapper.h:121
std::string asString(std::string value="") const
Wrap the corresponding JsonType function with error handling.
Definition json_wrapper.h:258
bool isMember(std::string key) const
Return true if key is a Member of the json value.
Definition json_wrapper.h:166