12#define COMMENT_CHAR '#'
14#define CMDLINE_USED_FLAG "#ÄÄ#"
16static int input_file_count = 0;
25static std::string empty_key(
"");
27bool input::open(
const std::string &file_name,
bool use_cmdline,
bool exit_on_error) {
31 file_number = ++input_file_count;
34 if (use_cmdline && input_file_count == 1 && hila::cmdline.flag_present(
"-i")) {
37 fname = hila::cmdline.get_string(
"-i");
43 bool got_error =
false;
47 hila::out0 <<
"Error: file '" << fname <<
"' cannot be opened because '" << filename
48 <<
"' is open in this input variable\n";
56 hila::print_dashed_line(
"Reading from standard input");
59 inputfile.open(fname);
60 if (!inputfile.is_open()) {
61 if(hila::partitions.number() > 1) {
63 filename =
"../" + fname;
64 inputfile.open(filename);
68 if (inputfile.is_open()) {
69 is_initialized =
true;
71 hila::print_dashed_line(
"Reading file " + filename);
77 hila::out0 <<
"Input file '" << fname <<
"' could not be opened\n";
87 if (got_error && exit_on_error) {
95 if (is_initialized && !use_cin) {
96 if (inputfile.is_open())
98 is_initialized =
false;
102 bool is_unused =
false;
103 if (
hila::myrank() == 0 && file_number == 1 && cmdline_p.size() > 0) {
104 for (
int i = 0; i < cmdline_p.size(); i += 2) {
105 if (cmdline_p[i] != CMDLINE_USED_FLAG) {
106 hila::out0 <<
"Error: unused command line -p argument, flag " << cmdline_p[i]
117 hila::print_dashed_line();
123bool input::get_line() {
134 if (!std::getline(*inptr, linebuffer)) {
139 }
while (linebuffer.at(0) == COMMENT_CHAR);
140 size_t i = linebuffer.find(COMMENT_CHAR);
141 if (i != std::string::npos)
142 linebuffer.resize(i);
145 is_line_printed =
false;
151void input::print_linebuf(
int end_of_key) {
156 is_line_printed =
true;
159 while (i < linebuffer.size() && std::isspace(linebuffer[i]))
161 for (; i < linebuffer.size() && i < end_of_key; i++) {
165 if (end_of_key > 0) {
166 for (
int j = i; j < 20; j++)
170 while (i < linebuffer.size() && std::isspace(linebuffer[i]))
172 if (i < linebuffer.size()) {
180bool input::remove_whitespace() {
182 while (lb_start < linebuffer.size() && std::isspace(linebuffer[lb_start]))
184 if (lb_start == linebuffer.size())
194bool input::contains_word_list(
const std::string &list,
int &end_of_key) {
195 const char *p = linebuffer.c_str() + lb_start;
196 const char *q = list.c_str();
197 while (std::isspace(*p))
199 while (std::isspace(*q))
202 bool last_space =
false;
206 while (*p && *q && *p == *q && !std::isspace(*q)) {
212 if (std::isspace(*q) && std::isspace(*p)) {
214 while (std::isspace(*p))
216 while (std::isspace(*q))
226 while (std::isspace(*q))
231 if (*q != 0 || !(last_space || *p == 0 || std::isspace(*p) || last_char ==
',' || *p ==
','))
234 end_of_key = p - linebuffer.c_str();
236 while (std::isspace(*p))
238 lb_start = p - linebuffer.c_str();
246bool input::peek_token(std::string &tok) {
247 if (!remove_whitespace())
250 bool in_quotes =
false;
251 for (i = lb_start; i < linebuffer.size() &&
252 ((!std::isspace(linebuffer[i]) && linebuffer[i] !=
',') || in_quotes);
254 if (linebuffer[i] ==
'"') {
255 in_quotes = !in_quotes;
258 if (i == lb_start && linebuffer[i] ==
',')
265 tok = linebuffer.substr(lb_start, i - lb_start);
271bool input::get_token(std::string &tok) {
272 if (peek_token(tok)) {
273 lb_start += tok.size();
281bool input::match_token(
const std::string &tok) {
283 if (peek_token(s) && s == tok) {
284 lb_start += tok.size();
292bool input::handle_key(
const std::string &key) {
298 if (key.size() > 0 && !contains_word_list(key, end_of_key)) {
300 hila::out0 <<
"Error: expecting key '" << key <<
"', found instead:\n";
301 hila::out0 <<
"\"" << linebuffer <<
"\"\n----\n";
307 scan_cmdline(key, end_of_key);
309 print_linebuf(end_of_key);
315void input::scan_cmdline(
const std::string &key,
int &end_of_key) {
317 if (file_number == 1) {
318 if (cmdline_p.size() == 0 && hila::cmdline.flag_present(
"-p")) {
319 cmdline_p = hila::cmdline.values(
"-p");
322 for (
int i = 0; i < cmdline_p.size(); i += 2) {
323 if (cmdline_p[i] == key) {
325 cmdline_p[i] = CMDLINE_USED_FLAG;
326 linebuffer = key +
" " + cmdline_p.at(i + 1);
327 lb_start = key.size();
328 end_of_key = lb_start;
330 hila::out0 <<
"OVERRIDE from command line: " << key <<
":\n";
342bool input::is_value(
const std::string &str, std::string &val) {
343 val = remove_quotes(str);
347std::string input::remove_quotes(
const std::string &val) {
351 for (j = i = 0; i < val.size(); i++)
361int input::get_item(
const std::string &label,
const std::vector<std::string> &items,
bool bcast) {
363 bool no_error = handle_key(label);
369 if (no_error && peek_token(s)) {
371 for (
int i = 0; i < items.size() && item < 0; i++) {
377 if ((items[i] ==
"%s") ||
378 (items[i] ==
"%f" && is_value(s,dval)) ||
379 (items[i] ==
"%i" && is_value(s,lval)) ||
380 contains_word_list(items[i],end_of_key)) {
392 hila::out0 <<
"Input '" << label <<
"' must be one of: ";
393 for (
int i = 0; i < items.size(); i++) {
394 if (items[i] ==
"%s")
396 else if (items[i] ==
"%f")
398 else if (items[i] ==
"%i")
This file defines all includes for HILA.
Implement hila::swap for gauge fields.
int myrank()
rank of this node
std::ostream out0
This writes output only from main process (node 0)
T broadcast(T &var, int rank=0)
Broadcast the value of var to all MPI ranks from rank (default=0).
void finishrun()
Normal, controlled exit - all nodes must call this. Prints timing information and information about c...
void broadcast2(T &t, U &u, int rank=0)
and broadcast with two values