summaryrefslogtreecommitdiff
path: root/server/src/widgetgenerator.cc
blob: 0240f69c110b1610120630d5fcba5eca8893687c (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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
 *            widgetgenerator.cc
 *
 *  Mon May 19 09:58:41 CEST 2008
 *  Copyright 2008 Bent Bisballe Nyeng
 *  deva@aasimon.org
 ****************************************************************************/

/*
 *  This file is part of Pracro.
 *
 *  Pracro is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  Pracro is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with Pracro; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 */
#include "debug.h"
#include "widgetgenerator.h"

#include "configuration.h"
#include "xml_encode_decode.h"

static std::string automap(std::string name)
{
  std::string group;
  std::string groupcheck = "if(";

  for(size_t i = 0; i < name.length(); i++) {
    group += name[i];
    if(name[i] == '.') groupcheck += " and " + group;
    else groupcheck += name[i];
  }
  groupcheck += " and " + name + ".value and " + name +
    ".timestamp and " + name + ".source";
  groupcheck += ")\n";

  std::string automapstring =
    "-- Returning 0, 0 invalidates the result\n"
    "value = 0\n"
    "timestamp = 0\n"
    "source = 0\n"
    "\n"
    + groupcheck + 
    "then\n"
    "  value = " + name + ".value\n"
    "  timestamp = " + name + ".timestamp\n"
    "  source = " + name + ".source\n"
    "end\n"
    "return value, timestamp, source\n";

  PRACRO_DEBUG(widget, "Automap:\n%s\n", automapstring.c_str());

  return automapstring;
}

static std::string send_macro_widget(Macro &macro,
                                     Widget &widget,
                                     std::string tabs,
                                     LUAQueryMapper &mapper,
                                     Values &values)
{
  std::string result;

  std::string prefilled;
  time_t timestamp = 0;
  time_t now = time(NULL);

  if(widget.attributes.find("value") != widget.attributes.end()) {
    widget.attributes["value"] = "";
  }

  result = tabs + "<" + widget.attributes["tagname"];
  std::map< std::string, std::string >::iterator p = widget.attributes.begin();

  PRACRO_DEBUG(prefill, "%s: %s\n",
               widget.attributes["tagname"].c_str(),
               widget.attributes["name"].c_str());

  PRACRO_DEBUG(prefill, "0: (%s, %s, %d)\n",
               prefilled.c_str(),
               widget.attributes["value"].c_str(),
               (int)timestamp);

  // Check if the field has a map, and fill in the value if it has...
  if(widget.attributes.find("map") != widget.attributes.end()) {
    std::string luamap;

    std::vector< Map >::iterator li = macro.maps.begin();
    while(li != macro.maps.end()) {
      Map &map = *li;
      if(map.attributes["name"] == widget.attributes["map"]) {
        luamap = map.attributes["lua"];
      }
      li++;
    }

    // Check to see if we should automap
    if(luamap == "") {
      luamap = automap(widget.attributes["map"]);
    }
    
    //    printf("LUAMAP: %s\n", luamap.c_str()); fflush(stdout);

    if(luamap != "") {
      Value value = mapper.map(luamap);
      if(value.timestamp > now - Conf::pentominos_max_ttl) {
        widget.attributes["value"] = xml_encode(value.value);
        timestamp = value.timestamp;
        prefilled = xml_encode(value.source);
      }

      PRACRO_DEBUG(prefill, "map: (%s, %d)\n",
                   value.value.c_str(),
                   (int)value.timestamp);

    }

    //    widget.attributes.erase(widget.attributes.find("map"));
  }

  PRACRO_DEBUG(prefill, "1: (%s, %s, %d)\n",
               prefilled.c_str(),
               widget.attributes["value"].c_str(),
               (int)timestamp);

  // Check if there is a previously stored value in the db...
  if(values.find(widget.attributes["name"]) != values.end()) {

    PRACRO_DEBUG(prefill, "db: (%s, %d)\n",
                 values[widget.attributes["name"]].value.c_str(),
                 (int)values[widget.attributes["name"]].timestamp);
    
    if(values[widget.attributes["name"]].timestamp > timestamp) {
      if(values[widget.attributes["name"]].timestamp > now - Conf::db_max_ttl) {
        widget.attributes["value"] =
          xml_encode(values[widget.attributes["name"]].value);
        timestamp = values[widget.attributes["name"]].timestamp;
        prefilled = "pracro";
      }
    }
  }

  PRACRO_DEBUG(prefill, "2: (%s, %s, %d)\n",
               prefilled.c_str(),
               widget.attributes["value"].c_str(),
               (int)timestamp);

  while(p != widget.attributes.end()) {
    if(p->first != "tagname" && p->first != "map") {
      if( ! (p->first == "name" && p->second == "") )
        result += " " + p->first + "=\"" + xml_encode(p->second) + "\"";
    }
    p++;
  }

  if(prefilled != "") result += " prefilled=\"" + prefilled + "\"";

  if(widget.widgets.size() == 0) { // If node is empty, use short tag form
    result += "/>\n";
    return result;
  }

  result += ">\n";

  std::vector< Widget >::iterator w = widget.widgets.begin();
  while(w != widget.widgets.end()) {
    result += send_macro_widget(macro, *w, tabs + "  ", mapper, values);
    w++;
  }
  result += tabs + "</" + widget.attributes["tagname"] + ">\n";

  return result;
}

static void get_fields(Widget &widget, Fieldnames &fields)
{
  //  if(widget.attributes.find("value") != widget.attributes.end()) {
  if(widget.attributes.find("name") != widget.attributes.end()) {
    if(widget.attributes["name"] != "")
      fields.push_back(widget.attributes["name"]);
  }
  
  std::vector< Widget >::iterator w = widget.widgets.begin();
  while(w != widget.widgets.end()) {
    get_fields(*w, fields);
    w++;
  }
}

std::string widgetgenerator(std::string cpr, Macro &macro,
                            LUAQueryMapper &mapper, Database &db)
{
  Fieldnames fields;
  get_fields(macro.widgets, fields);

  Values values = db.getValues(cpr, fields);
  
  return send_macro_widget(macro, macro.widgets, "      ", mapper, values);
}

#ifdef TEST_WIDGETGENERATOR

#include <time.h>

#define PATIENTID "1234567890"

int main()
{
  time_t now = time(NULL);

  printf("Test pretty printer:\n");
  {
    Macro macro;
    macro.widgets.attributes["tagname"] = "lineedit";
    macro.widgets.attributes["name"] = "mywidget";
    macro.widgets.attributes["value"] = "myvalue";
    macro.widgets.attributes["map"] = "mapvalue";
    macro.widgets.widgets.push_back(macro.widgets);

    Database db("testdb", "", "", "", "", "");
    LUAQueryMapper mapper;
    std::string result;
    Fields fields;
    QueryResult queryresult;

    // Test simple
    result = widgetgenerator(PATIENTID, macro, mapper, db);
    printf("[%s]\n", result.c_str());
    if(result != "      <lineedit name=\"mywidget\" value=\"myvalue\">\n"
       "        <lineedit name=\"mywidget\" value=\"myvalue\"/>\n"
       "      </lineedit>\n") return 1;
  }

  printf("Positive tests:\n");
  {
    Macro macro;
    macro.widgets.attributes["tagname"] = "lineedit";
    macro.widgets.attributes["name"] = "mywidget";
    macro.widgets.attributes["value"] = "myvalue";
    macro.widgets.attributes["map"] = "mapvalue";

    Database db("testdb", "", "", "", "", "");
    LUAQueryMapper mapper;
    std::string result;
    Fields fields;
    QueryResult queryresult;

    // Test simple
    result = widgetgenerator(PATIENTID, macro, mapper, db);
    printf("[%s]\n", result.c_str());
    if(result != "      <lineedit name=\"mywidget\" value=\"myvalue\"/>\n") return 1;

    // Make a database commit and test if the value shows up
    fields["mywidget"] = "testval";
    db.commitTransaction("testuser", PATIENTID, macro, fields, now);
    
    result = widgetgenerator(PATIENTID, macro, mapper, db);
    printf("[%s]\n", result.c_str());
    if(result != "      <lineedit name=\"mywidget\" value=\"testval\" prefilled=\"pracro\"/>\n") return 1;
    
    // Make a query result (newer than the db value) and see if it shows up
    queryresult.timestamp = now + 1;
    queryresult.source = "testsource";
    queryresult.values["mapvalue"] = "mymapvalue";
    mapper.addQueryResult(queryresult);
    
    result = widgetgenerator(PATIENTID, macro, mapper, db);
    printf("[%s]\n", result.c_str());
    if(result != "      <lineedit name=\"mywidget\" value=\"mymapvalue\" prefilled=\"testsource\"/>\n") return 1;
    
    // Make another db value (newer than the query result) and see if it shows up.
    fields["mywidget"] = "testval2";
    db.commitTransaction("testuser", PATIENTID, macro, fields, now + 2);
    
    result = widgetgenerator(PATIENTID, macro, mapper, db);
    printf("[%s]\n", result.c_str());
    if(result != "      <lineedit name=\"mywidget\" value=\"testval2\" prefilled=\"pracro\"/>\n") return 1;
  }

  printf("Negative tests:\n");
  {
    Macro macro;
    macro.widgets.attributes["tagname"] = "lineedit";
    macro.widgets.attributes["name"] = "mywidget";
    macro.widgets.attributes["value"] = "myvalue";
    macro.widgets.attributes["map"] = "mapvalue";

    Database db("testdb", "", "", "", "", "");
    LUAQueryMapper mapper;
    std::string result;
    Fields fields;
    QueryResult queryresult;

    // Test simple
    result = widgetgenerator(PATIENTID, macro, mapper, db);
    printf("[%s]\n", result.c_str());
    if(result != "      <lineedit name=\"mywidget\" value=\"myvalue\"/>\n") return 1;

    // Make a database commit too old, and test if the value shows up
    fields["mywidget"] = "testval";
    db.commitTransaction("testuser", PATIENTID, macro, fields, now - Conf::db_max_ttl - 1);
    
    result = widgetgenerator(PATIENTID, macro, mapper, db);
    printf("[%s]\n", result.c_str());
    if(result == "      <lineedit name=\"mywidget\" value=\"testval\" prefilled=\"pracro\"/>\n") return 1;
    
    // Make a too old query result (newer than the db value) and see if it shows up
    queryresult.timestamp = now - Conf::pentominos_max_ttl - 1;
    queryresult.source = "testsource";
    queryresult.values["mapvalue"] = "mymapvalue";
    mapper.addQueryResult(queryresult);
    
    result = widgetgenerator(PATIENTID, macro, mapper, db);
    printf("[%s]\n", result.c_str());
    if(result == "      <lineedit name=\"mywidget\" value=\"mymapvalue\" prefilled=\"testsource\"/>\n") return 1;
  }
  return 0;
}

#endif/*TEST_WIDGETGENERATOR*/