summaryrefslogtreecommitdiff
path: root/server/src/server.cc
blob: a5a4880cfed289b94fceed3d312e0b641c6d3a68 (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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
 *            server.cc
 *
 *  Wed Aug 22 12:16:03 CEST 2007
 *  Copyright 2007 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 "server.h"

#include "tcpsocket.h"
#include <errno.h>

#include <stdlib.h>

// For fork
#include <sys/types.h>
#include <unistd.h>
#include <string.h>

#include "configuration.h"
#include "transaction.h"
#include "transactionparser.h"
#include "templateparser.h"
#include "macroparser.h"

#include "queryhandler.h"
#include "queryhandlerpracro.h"
#include "queryhandlerpentominos.h"

#include "queryparser.h"
#include "luaquerymapper.h"
#include "database.h"
#include "widgetgenerator.h"
#include "resumeparser.h"
#include "journal_commit.h"
#include "xml_encode_decode.h"

#include "macrolist.h"
#include "templatelist.h"
#include "versionstr.h"

static std::string error_box(std::string message)
{
  std::string errorbox =
    "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
    "<pracro version=\"1.0\">\n"
    "  <template name=\"error\">\n"
    "    <macro name=\"error\" static=\"true\">\n"
    "      <widgets caption=\"ERROR!\" layout=\"vbox\" name=\"error\">\n"
    "        <textedit name=\"errorlabel\" value=\"" + message + "\"/>\n"
    "      </widgets>\n"
    "    </macro>\n"
    "  </template>\n"
    "</pracro>\n";
  return errorbox;
}

class NotFoundException : public Exception {
public:
  NotFoundException(Request &r)
  : Exception("Macro " + r.macro + " not found in template " + r.templ) {}
};


static std::string handleCommits(Transaction *transaction, Database &db, 
                                 JournalWriter &journalwriter, MacroList &macrolist,
                                 TemplateList &templatelist)
{
  std::string answer;

  Commits::iterator i = transaction->commits.begin();
  while(i != transaction->commits.end()) {
    Commit &commit = *i;
    
    MacroParser mp(macrolist.getLatestVersion(commit.macro));
    mp.parse();
    Macro *macro = mp.getMacro();
    
    std::string resume = resume_parser(macro->resume, commit);
    commit.fields["journal.resume"] = resume;
    db.commitTransaction(transaction->user, transaction->cpr, *macro, commit.fields);
    
    if(resume != "") {

      TemplateParser tp(templatelist.getLatestVersion(commit.templ));
      tp.parse();
      Template *templ = tp.getTemplate();

      journalwriter.addEntry(*transaction, commit, resume, templ);
    }
    
    i++;
  }

  return answer;
}


static std::string handleRequest(Transaction *transaction,
                                 TCPSocket &pentominos_socket,
                                 Database &db,
                                 JournalWriter &journalwriter,
                                 MacroList &macrolist,
                                 TemplateList &templatelist)
{
  std::string answer;

  Requests::iterator i = transaction->requests.begin();
  while(i != transaction->requests.end()) {
    Request &request = *i;
    
    PRACRO_DEBUG(server, "Handling request - macro: %s, template: %s\n",
                 request.macro.c_str(), request.templ.c_str());
    
    // Read and parse the template file.
    TemplateParser tp(templatelist.getLatestVersion(request.templ));
    tp.parse();
    
    Template *templ = tp.getTemplate();
    
    answer += "  <template name=\"";
    answer += templ->attributes["name"];
    answer += "\" title=\"";
    answer += templ->attributes["title"];
    answer += "\">\n";
    
    bool foundmacro = false;
    
    // Generate the macro and return it to the client
    std::vector< Macro >::iterator mi2 = templ->macros.begin();
    while(mi2 != templ->macros.end()) {
      Macro &macro = (*mi2);

      if(macro.isHeader) {
        answer += "    <header caption=\"" + macro.attributes["caption"] + "\"/>\n";
        mi2++;
        continue;
      }

      bool completed = db.checkMacro(transaction->cpr, macro.attributes["name"]);

      answer += "    <macro completed=";
      if(completed) answer += "\"true\"";
      else answer += "\"false\"";

      std::map< std::string, std::string >::iterator ai = macro.attributes.begin();
      while(ai != macro.attributes.end()) {
        std::string name = ai->first;
        std::string value = ai->second;
        answer += " "+name+"=\"" + value + "\"";
        ai++;
      }

      if(macro.attributes["name"] == request.macro || 
         (macro.attributes.find("static") != macro.attributes.end() &&
          macro.attributes["static"] == "true")
         ) {
        foundmacro = true;

        MacroParser mp(macrolist.getLatestVersion(macro.attributes["name"]));
        mp.parse();
        Macro *m = mp.getMacro();
        answer += " caption=\"" + m->widgets.attributes["caption"] + "\"";
        answer += ">\n";

        LUAQueryMapper lqm;

        ////////////////////////
        std::vector< Query >::iterator qi = m->queries.begin();
        while(qi != m->queries.end()) {

          Query &query = *qi;
          std::string service = query.attributes["service"];

          if(service == "pentominos") {
            // Send the queries to Pentominos (if any)
            QueryHandlerPentominos qh(pentominos_socket, transaction->cpr);

            QueryResult queryresult = qh.exec(*qi);
            lqm.addQueryResult(queryresult);
          }

          if(service == "pracro") {
            // Send the queries to Pentominos (if any)
            QueryHandlerPracro qh(db, transaction->cpr);

            QueryResult queryresult = qh.exec(*qi);
            lqm.addQueryResult(queryresult);
          }

          qi++;
        }

        // Handle scripts
        if(m->scripts.size()) {
          answer += "      <scripts>\n";
            
          std::vector< Script >::iterator spi = m->scripts.begin();
          while(spi != m->scripts.end()) {
            answer += "        <script language=\"" + spi->attributes["language"] 
              + "\" name=\"" + spi->attributes["name"] + "\">\n";
            answer += xml_encode(spi->attributes["code"]);
            answer += "\n        </script>\n";
            spi++;
          }
          answer += "      </scripts>\n";
        }

        answer += widgetgenerator(transaction->cpr, *m, lqm, db);
      } else {
        // only find macro title
        MacroParser mp(macrolist.getLatestVersion(macro.attributes["name"]));
        mp.parse();
        Macro *m = mp.getMacro();
        answer += " caption=\"" + m->widgets.attributes["caption"] + "\"";
        answer += ">\n";

      }

      if(completed) {
        answer += "      <resume>";
        answer += db.getResume(transaction->cpr, macro, time(NULL) - Conf::db_max_ttl);
        answer += "</resume>\n";
      }

      answer += "    </macro>\n";
      mi2++;

    }
      
    if(foundmacro == false && request.macro != "")
      throw NotFoundException(request);

    answer += "  </template>\n";

    i++;
  }

  return answer;
}

static std::string handleTransaction(Transaction *transaction,
                                     TCPSocket &pentominos_socket,
                                     Database &db,
                                     JournalWriter &journalwriter,
                                     MacroList &macrolist,
                                     TemplateList &templatelist)
{
  std::string answer;
  answer += "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
  answer += "<pracro version=\"1.0\">\n";

  try {
    answer += handleCommits(transaction, db, journalwriter, macrolist, templatelist);
  } catch( std::exception &e ) {
    PRACRO_ERR(server, "Commit error: %s\n", e.what());
    return error_box(xml_encode(e.what()));
  }

  try {
    answer += handleRequest(transaction, pentominos_socket, db, journalwriter,
                            macrolist, templatelist);
  } catch( std::exception &e ) {
    PRACRO_ERR(server, "Request error: %s\n", e.what());
    return error_box(xml_encode(e.what()));
  }

  answer += "</pracro>\n";

  PRACRO_DEBUG(server, "Done handling transaction\n");
  PRACRO_DEBUG(serverxml, "%s\n", answer.c_str());
  return answer;
}


static void handleConnection(TCPSocket *socket)
{
  TCPSocket pentominos_socket;
#ifndef WITHOUT_PENTOMINOS
  pentominos_socket.connect(Conf::pentominos_addr, Conf::pentominos_port);
#endif/*WITHOUT_PENTOMINOS*/

  Database db(Conf::database_backend, Conf::database_addr, "", Conf::database_user, Conf::database_passwd, "");

  JournalWriter journalwriter(Conf::journal_commit_addr.c_str(), Conf::journal_commit_port);

  MacroList macrolist(Conf::xml_basedir + "/macros");
  TemplateList templatelist(Conf::xml_basedir + "/templates");

  ssize_t size;
  char buf[4096];
  
  Transaction *transaction = NULL;
  TransactionParser *parser = NULL;
  
  //  while( (size = socket->read(buf, sizeof(buf))) != -1) {
  while( (size = socket->read(buf, sizeof(buf))) > 0) {

    PRACRO_DEBUG(server, "Read %d bytes from network\n", size);
   
    while(size) {

      if(transaction == NULL) {
        transaction = new Transaction();
      }

      if(parser == NULL) {
        parser = new TransactionParser(transaction);
      }

      PRACRO_DEBUG(server, "Got %d bytes in read loop\n", size);
      if(parser->parse(buf, size)) {
        PRACRO_DEBUG(server, "Got complete XML document %d bytes used, %d bytes in current buffer.\n", parser->usedBytes(), size);

        socket->write(handleTransaction(transaction, pentominos_socket,
                                        db, journalwriter, macrolist, templatelist));
        size = size - parser->usedBytes();
        if(size) {
          strcpy(buf, buf + parser->usedBytes());
          PRACRO_DEBUG(server, "Replaying %d bytes.\n", size);
        }
        
        delete transaction; transaction = NULL;
        delete parser; parser = NULL;
      } else {
        size = 0;
        memset(buf, 0, sizeof(buf));
      }
    }
  }

  if(transaction) {
    delete transaction;
    transaction = NULL;
  }

  if(parser) {
    delete parser;
    parser = NULL;
  }

  journalwriter.commit();

  PRACRO_DEBUG(server, "Out of read loop!\n");
}

//#define NON_FORKING
#include <sys/socket.h>
extern bool pracro_is_running;
void server()
{
  port_t port = Conf::server_port;
  TCPSocket *socket = NULL;
  
  try {
    socket = new TCPSocket("Listen socket");
    socket->listen(port);
  } catch (Exception &e) {
    PRACRO_ERR_LOG(server, "Error in listen:\n%s\n", e.what());
    delete socket;
    socket = NULL;
    return;
  }

  while(pracro_is_running && socket->connected()) {

    { // Reload if new port is assigned.
      int old_port = port;
      port = Conf::server_port;

      if(port != old_port) {
        // Start listening on the new port
        delete socket;
        socket = new TCPSocket("Listen socket (reloaded)");
        socket->listen(port);
      }
    }

    TCPSocket *child = socket->accept();
    if(child) {

#ifndef NON_FORKING
      switch(fork()) {
      case -1: // error
        PRACRO_ERR_LOG(server, "Could not fork: %s\n", strerror(errno));
        break;
        
      case 0: // child
        delete socket;
#endif/*NON_FORKING*/
        handleConnection(child);
        delete child;
#ifndef NON_FORKING
        return;
        
      default: // parent
        delete child;
        break;
      }
#endif/*NON_FORKING*/

    }
  }

  //socket->shutdown();
  delete socket;

  PRACRO_DEBUG(server, "Server gracefully shut down.\n");
}


#ifdef TEST_SERVER

#include <sys/types.h>
#include <signal.h>

bool pracro_is_running = true;

char request[] = 
  "<?xml version='1.0' encoding='UTF-8'?>\n"
  "<pracro cpr=\"2003791613\" version=\"1.0\">\n"
  "  <request macro=\"example\" template=\"example\"/>\n"
  "</pracro>\n";

int main()
{
  Conf::xml_basedir = "../xml/";
  Conf::server_port = 32100; // Make sure wo don't interrupt an already running server.
  Conf::database_backend = "testdb";
  pid_t pid = fork();
  
  switch(pid) {
  case -1: // error
    perror("fork() failed!\n");
    return 1;
    
  case 0: // child
    try {
      server();
    } catch(Exception &e) {
      printf(e.what());
      return 1;
    }
    return 0;
    
  default: // parent
    try {
      //      sleep(1); // Make sure the server is started.
      TCPSocket socket;
      socket.connect("localhost", Conf::server_port);
      
      socket.write(request);

      //      sleep(1); // Make sure the server has handled the request.
      char buf[32];
      memset(buf, 0, sizeof(buf));
      //      while(socket.read(buf, 31, 1000)) {
      while(socket.read(buf, 31, 1000000)) {
        printf(buf); fflush(stdout);
        memset(buf, 0, sizeof(buf));
      }
    } catch(Exception &e) {
      printf(e.what());
      kill(pid, SIGKILL); // Kill the server again.
      return 1;
    }
    kill(pid, SIGKILL); // Kill the server again.
    return 0;
  }
  
  return 1;
}

#endif/*TEST_SERVER*/