aboutsummaryrefslogtreecommitdiff
path: root/src/file.cc
blob: cc93ca9559dbc97ff22fa2f8556c411776eb3bcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
#include <cassert>
#include <iomanip>
#include <ios>
#include <limits>
#include <sstream>

#include "cctk_Parameters.h"

#include "file.hh"

using namespace std;



namespace Formaline
{
  
  file::
  file (char const * const id,
        enum state const st,
        char const * const p,
        file * const par)
    : storage (st), path (p), parent (par)
  {
    DECLARE_CCTK_PARAMETERS;
    
    if (parent) return;
    
    ostringstream filenamebuf;
    filenamebuf << out_dir << "/" << storage_filename;
    string const filenamestring = filenamebuf.str();
    
    ios::openmode const mode = get_state() == initial ? ios::trunc : ios::app;
    fil.open (filenamestring.c_str(), mode);
    
    if (get_state() == initial)
    {
      store ("jobid", id);
    }
  }
  
  
  
  file::
  ~ file ()
  {
    if (parent) return;
    
    if (get_state())
    {
      store ("simulation", "done");
    }
    fil.close();
  }
  
  
  
  file * file::
  open_group (char const * const name)
  {
    assert (name);
    string name1 (name);
    if (not name1.empty() and name1[name1.length()-1] != '/') {
      name1 = name1 + "/";
    }
    return new file (0, get_state (), name1.c_str(), this);
  }
  
  
  
  void file::
  store (char const * const key,
         bool const value)
  {
    assert (key);
    
    ostringstream keybuf;
    keybuf << path << key;
    ostringstream valuebuf;
    valuebuf << (value ? "yes" : "no");
    
    ostringstream buf;
    buf << clean (keybuf.str()) << "=" << clean (valuebuf.str()) << endl;
    
    write (buf.str());
  }
  
  
  
  void file::
  store (char const * const key,
         CCTK_INT const value)
  {
    assert (key);
    
    ostringstream keybuf;
    keybuf << path << key;
    ostringstream valuebuf;
    valuebuf << value;
    
    ostringstream buf;
    buf << clean (keybuf.str()) << "=" << clean (valuebuf.str()) << endl;
    
    write (buf.str());
  }
  
  
  
  void file::
  store (char const * const key,
         CCTK_REAL const value)
  {
    assert (key);
    
    int const prec = numeric_limits<CCTK_REAL>::digits10;
    
    ostringstream keybuf;
    keybuf << path << key;
    ostringstream valuebuf;
    valuebuf << setprecision(prec) << value;
    
    ostringstream buf;
    buf << clean (keybuf.str()) << "=" << clean (valuebuf.str()) << endl;
    
    write (buf.str());
  }
  
  
  
  void file::
  store (char const * const key,
         char const * const value)
  {
    assert (key);
    
    ostringstream keybuf;
    keybuf << path << key;
    ostringstream valuebuf;
    valuebuf << value;
    
    ostringstream buf;
    buf << clean (keybuf.str()) << "="
        << "\"" << clean (valuebuf.str()) << "\"" << endl;
    
    write (buf.str());
  }
  
  
  
  void file::
  write (string const & msg)
  {
    if (parent)
    {
      parent->write (msg);
    }
    else
    {
      fil << msg;
    }
  }
  
  
  
  string file::
  clean (string const & txt)
    const
  {
    ostringstream buf;
    
    for (string::const_iterator p = txt.begin(); p != txt.end(); ++ p)
    {
      switch (* p)
      {
      case '=': buf << "\\="; break;
      case '"': buf << "\\\""; break;
      case '\\': buf << "\\\\"; break;
      default: buf << * p;
      }
    }
    
    return buf.str();
  }
  
  
  
} // namespace Formaline