summaryrefslogtreecommitdiff
path: root/server/src/luaquerymapper.cc
blob: 56ea1e93e1785c8d790b71f2d75e58ae1e7e86f7 (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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
 *            luaquerymapper.cc
 *
 *  Mon May  5 15:43:52 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 "luaquerymapper.h"

#include <sstream>
#include <string>

#include "luautil.h"

static void loadResult(lua_State *L, QueryResult &res,
                    std::vector<std::string> group = std::vector<std::string>())
{
  std::vector<std::string> groups;
  std::vector<std::string>::iterator gi = group.begin();
  while(gi != group.end()) {
    const char *name = gi->c_str();

    if(!Pracro::testField(L, groups, name)) {
      Pracro::createField(L, groups, name);
    }

    groups.push_back(name);
    gi++;
  }

  std::string s;
  std::stringstream timestamp; timestamp << res.timestamp;

  std::map< std::string, std::string >::iterator v = res.values.begin();
  while(v != res.values.end()) {

    const char *name = v->first.c_str();

    if(!Pracro::testField(L, group, name)) {
      Pracro::createField(L, group, name);
    }

    int top = lua_gettop(L);
    Pracro::getField(L, group, name);

    lua_pushstring(L, v->second.c_str());
    lua_setfield(L, -2, "value");

    lua_pushstring(L, timestamp.str().c_str());
    lua_setfield(L, -2, "timestamp");

    lua_pushstring(L, res.source.c_str());
    lua_setfield(L, -2, "source");

    while(lua_gettop(L) > top) lua_pop(L, 1);

    v++;
  }

  while(lua_gettop(L)) lua_pop(L, 1);

  //  printf("< %d\n", lua_gettop(L)); fflush(stdout);

  std::map< std::string, QueryResult >::iterator g = res.groups.begin();
  while(g != res.groups.end()) {
    std::vector<std::string> subgrp = group;
    subgrp.push_back(g->first);
    loadResult(L, g->second, subgrp);
    g++;
  }
}

LUAQueryMapper::LUAQueryMapper() throw(Exception)
{
  clean_top = -1;

  L = luaL_newstate();
  if(L == NULL) {
    error("Could not create LUA state.");
    return;
  }

  luaL_openlibs(L);

  clean_top = lua_gettop(L);
}

LUAQueryMapper::~LUAQueryMapper()
{
  if(L) lua_close(L);
}

static QueryResult splitgroups(QueryResult r)
{
  QueryResult result;

  result.timestamp = r.timestamp;
  result.source = r.source;

  std::map< std::string, QueryResult >::iterator gi = r.groups.begin();
  while(gi != r.groups.end()) {
    QueryResult child = splitgroups(gi->second);
    result.groups[gi->first] = child;
    gi++;
  }

  std::map< std::string, std::string >::iterator vi = r.values.begin();
  while(vi != r.values.end()) {
    std::string name = vi->first;
    
    // Also insert in table with name containing '.'.
    if(name.find(".") != std::string::npos) result.values[name] = vi->second;

    QueryResult *ncurrent = &result;
    while(name.find(".") != std::string::npos) {
      DEBUG(splitgroups, "value name: %s\n", name.c_str());
      QueryResult grp;
      grp.timestamp = ncurrent->timestamp;
      grp.source = ncurrent->source;
      std::string grpname = name.substr(0, name.find("."));
      ncurrent->groups[grpname] = grp;
      ncurrent = &(ncurrent->groups[grpname]);
      name = name.substr(name.find(".") + 1);
    }
    ncurrent->values[name] = vi->second;

    vi++;
  }
  
  return result;
}


void LUAQueryMapper::addQueryResult(QueryResult &result) throw(Exception)
{
  // Check for '.' in names and further split up into groups.
  QueryResult splitted = splitgroups(result);

  loadResult(L, splitted);
  clean_top = lua_gettop(L);
}

Value LUAQueryMapper::map(const std::string &mapper) throw(Exception)
{
  Value v;

  if(L == NULL) {
    error("LUA state not initialized!");
    return v;
  }

  if(mapper == "") {
    error("Empty LUA mapper detected in " + mapper);
    return v;
  }

  DEBUG(querymapper, "Mapper: %s\n", mapper.c_str());

  // Load the mapper
  if(luaL_loadbuffer(L, mapper.c_str(), mapper.size(), "mapper")) {
    error(lua_tostring(L, lua_gettop(L)) + std::string(" in ") + mapper);
    return v;
  }

  // Run the loaded code
  if(lua_pcall(L, 0, LUA_MULTRET, 0)) {
    error(lua_tostring(L, lua_gettop(L)) + std::string(" in ") + mapper);
    return v;
  }

  // Check if app messed up the stack.
  if(lua_gettop(L) != clean_top + 3) {
    error("Wrong number of return values (should be value, timestamp, source) in " + mapper);
    return v;
  }

  // Check if the types are right
  if(lua_isstring(L, lua_gettop(L)) == false) {
    error("Source is not a string in " + mapper);
    return v;
  }
  v.source = lua_tostring(L, lua_gettop(L));
  lua_pop(L, 1);

  // Check if the types are right
  if(lua_isnumber(L, lua_gettop(L)) == false) {
    error("Timestamp is not an integer in " + mapper);
    return v;
  }
  v.timestamp = lua_tointeger(L, lua_gettop(L));
  lua_pop(L, 1);

  // Check if the types are right
  if(lua_isstring(L, lua_gettop(L)) == false) {
    error("Value is not a string in " + mapper);
    return v;
  }
  v.value = lua_tostring(L, lua_gettop(L));
  lua_pop(L, 1);

  DEBUG(querymapper, "Result: value=%s, src=%s, time=%d\n",
        v.value.c_str(), v.source.c_str(), (int)v.timestamp);

  return v;
}

void LUAQueryMapper::error(std::string message) throw(Exception)
{
  if(clean_top != -1) lua_pop(L, lua_gettop(L) - clean_top); // Clean up stack
  throw Exception("ERROR in LUAQueryMapper: " + message);
}

std::string LUAQueryMapper::automap(const 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";

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

  return automapstring;
}

#ifdef TEST_LUAQUERYMAPPER
//deps: exception.cc log.cc debug.cc luautil.cc
//cflags: -I.. ${LUA_CFLAGS}
//libs:${LUA_LIBS}
#include <test.h>

TEST_BEGIN;

time_t now = time(NULL);

{
  LUAQueryMapper mapper;

  QueryResult res;
  res.groups["test"].timestamp = now;
  res.groups["test"].source = "test app";
  res.groups["test"].values["somevalue"] = "hello world";
  res.groups["test"].values["pi"] = "3.14";
  res.groups["test"].groups["subtest"].source = "test app 2";
  res.groups["test"].groups["subtest"].timestamp = now + 1;
  res.groups["test"].groups["subtest"].values["somevalue"] = "hello world!";
  res.groups["test"].groups["subtest"].groups["subsubtest"].source = "test app 3";
  res.groups["test"].groups["subtest"].groups["subsubtest"].timestamp = now + 2;
  res.groups["test"].groups["subtest"].groups["subsubtest"].values["somevalue"] = "hello world!!";

  mapper.addQueryResult(res);

  QueryResult res2;
  res2.groups["test"].groups["subtest"].source = "src";
  res2.groups["test"].groups["subtest"].timestamp = now + 3;
  res2.groups["test"].groups["subtest"].values["val"] = "gnaf";
  res2.groups["test"].groups["subgrp"].source = "src2";
  res2.groups["test"].groups["subgrp"].timestamp = now + 4;
  res2.groups["test"].groups["subgrp"].values["val2"] = "gnaf2";

  mapper.addQueryResult(res2);

  // Test simple value forwarding with nesting
  std::string luamap = "return test.subtest.subsubtest.somevalue.value, test.subtest.subsubtest.somevalue.timestamp, test.subtest.subsubtest.somevalue.source";

  Value value = mapper.map(luamap);

  TEST_EQUAL_STR(value.value, "hello world!!", "Test value");
  TEST_EQUAL_INT(value.timestamp, now + 2, "Test timestamp");
  TEST_EQUAL_STR(value.source, "test app 3", "Test source");

  luamap = "return test.subtest.somevalue.value, test.subtest.somevalue.timestamp, test.subtest.somevalue.source";

  value = mapper.map(luamap);

  TEST_EQUAL_STR(value.value, "hello world!", "Test value");
  TEST_EQUAL_INT(value.timestamp, now + 1, "Test timestamp");
  TEST_EQUAL_STR(value.source, "test app 2", "Test source");

  luamap = "return test.somevalue.value, test.somevalue.timestamp, test.somevalue.source";

  value = mapper.map(luamap);

  TEST_EQUAL_STR(value.value, "hello world", "Test value");
  TEST_EQUAL_INT(value.timestamp, now, "Test timestamp");
  TEST_EQUAL_STR(value.source, "test app", "Test source");

  luamap = "return test.pi.value, test.pi.timestamp, test.pi.source";

  value = mapper.map(luamap);

  TEST_EQUAL_STR(value.value, "3.14", "Test value");
  TEST_EQUAL_INT(value.timestamp, now, "Test timestamp");
  TEST_EQUAL_STR(value.source, "test app", "Test source");

  luamap = "return test.subtest.val.value, test.subtest.val.timestamp, test.subtest.val.source";

  value = mapper.map(luamap);

  TEST_EQUAL_STR(value.value, "gnaf", "Test value");
  TEST_EQUAL_INT(value.timestamp, now + 3, "Test timestamp");
  TEST_EQUAL_STR(value.source, "src", "Test source");

  luamap = "return test.subgrp.val2.value, test.subgrp.val2.timestamp, test.subgrp.val2.source";

  value = mapper.map(luamap);

  TEST_EQUAL_STR(value.value, "gnaf2", "Test value");
  TEST_EQUAL_INT(value.timestamp, now + 4, "Test timestamp");
  TEST_EQUAL_STR(value.source, "src2", "Test source");
}

QueryResult res;
res.groups["test"].timestamp = now;
res.groups["test"].source = "test app";
res.groups["test"].values["somevalue"] = "hello world";
res.groups["test"].values["pi"] = "3.1416";

LUAQueryMapper mapper;
mapper.addQueryResult(res);

// Test simple value forwarding
std::string luamap = "return test.somevalue.value, test.somevalue.timestamp, test.somevalue.source";

Value value = mapper.map(luamap);

TEST_EQUAL_STR(value.value, "hello world", "Test value");
TEST_EQUAL_INT(value.timestamp, now, "Test timestamp");
TEST_EQUAL_STR(value.source, "test app", "Test source");

// Do some calculations
luamap = "return 2 * tonumber(test.pi.value), test.pi.timestamp, test.pi.source";
value = mapper.map(luamap);

TEST_EQUAL_STR(value.value, "6.2832", "Test value");
TEST_EQUAL_INT(value.timestamp, now, "Test timestamp");
TEST_EQUAL_STR(value.source, "test app", "Test source");

// Attempt to access nonexisting value (should throw an exception)
luamap = "return test.somevalue2.value, test.somevalue2.timestamp, test.somevalue2.source";
TEST_EXCEPTION(mapper.map(luamap), Exception, "Throw exception");

// Attempt to access nonexisting group (should throw an exception)
luamap = "return test2.somevalue.value, test2.somevalue.timestamp, test2.somevalue.source";
TEST_EXCEPTION(mapper.map(luamap), Exception, "Throw exception");
  
// Switch order of return vars (should throw an exception)
luamap = "return test.somevalue.source, test.somevalue.value, test.somevalue.timestamp";
TEST_EXCEPTION(mapper.map(luamap), Exception, "Throw exception");

// Syntax error (should throw an exception)
luamap = "this(is{] not() - a != legal lua program!]";
TEST_EXCEPTION(mapper.map(luamap), Exception, "Throw exception");

// And finally test if we haven't broken enything while being hostile to the lua engine...
luamap = "return test.somevalue.value, test.somevalue.timestamp, test.somevalue.source";
TEST_NOEXCEPTION(mapper.map(luamap), "Throw no exception");
TEST_EQUAL_STR(value.value, "6.2832", "Test value");
TEST_EQUAL_INT(value.timestamp, now, "Test timestamp");
TEST_EQUAL_STR(value.source, "test app", "Test source");

TEST_END;

#endif/*TEST_LUAQUERYMAPPER*/