summaryrefslogtreecommitdiff
path: root/server/src/server.cc
blob: a419181c9b3c5072bb6bc7f3e253130a113372f0 (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
/* -*- 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 "configuration.h"
#include "transaction.h"
#include "transactionparser.h"
#include "templateparser.h"
#include "macroparser.h"
#include "queryhandler.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"

static std::string error_box(std::string message)
{
  std::string errorbox =
    "  <course name=\"error\">\n"
    "    <macro name=\"error\">\n"
    "      <window caption=\"ERROR!\" height=\"300\" layout=\"vbox\" name=\"error\" width=\"480\">\n"
    "        <textedit name=\"errorlabel\" value=\"" + message + "\"/>\n"
    "        <button action=\"cancel\" caption=\"Luk\" name=\"cancel\"/>\n"
    "      </window>\n"
    "    </macro>\n"
    "  </course>\n";
  return errorbox;
}

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

static void connection(TCPSocket &socket)
{
  socket.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
  socket.write("<pracro version=\"1.0\">\n");

  try {
    Transaction transaction;
    TransactionParser parser(socket, transaction);
    parser.parse();

    Database db;

    //
    // Handle commits
    //
    {
      Commits::iterator i = transaction.commits.begin();
      while(i != transaction.commits.end()) {
        Commit &commit = *i;
        
        MacroParser mp(commit.macro);
        mp.parse();
        Macro *macro = mp.getMacro();

        db.commit(transaction.user, transaction.cpr, *macro, commit.fields);
        
        std::string resume = resume_parser(macro->attributes["resume"].c_str(), commit);
        
        journal_commit(transaction.cpr.c_str(), transaction.user.c_str(),
                       Conf::journal_commit_addr.c_str(), Conf::journal_commit_port,
                       resume.c_str(), resume.length());
      
        i++;
      }
    }
        
    //
    // Handle requests
    //
    Requests::iterator i = transaction.requests.begin();
    while(i != transaction.requests.end()) {
      Request &request = *i;

      std::string answer;

      printf("Handling request - macro: %s, course: %s\n",
             request.macro.c_str(), request.course.c_str());

      // Read and parse the template file.
      TemplateParser tp(request.course);
      tp.parse();
      
      Template *templ = tp.getTemplate();

      answer += "  <course name=\"";
      answer += templ->course.attributes["name"];
      answer += "\">\n";
      
      bool foundmacro = false;

      // Generate the macro and return it to the client
      std::vector< Macro >::iterator mi2 = templ->course.macroes.begin();
      while(mi2 != templ->course.macroes.end()) {
        Macro &macro = (*mi2);
        
        answer += "    <macro name=\"" + macro.attributes["name"] + "\" completed=";
        if(db.checkMacro(transaction.cpr, macro.attributes["name"])) answer += "\"true\"";
        else answer += "\"false\"";
        answer += ">\n";
        
        ///////////////////////////////
        // Send the queries to Pentominos (if any)
        TCPSocket s;
#ifndef WITHOUT_PENTOMINOS
        s.connect(Conf::pentominos_addr, Conf::pentominos_port);
#endif/*WITHOUT_PENTOMINOS*/
        QueryHandler qh(&s, transaction.cpr);
        ///////////////////////////////

        if(macro.attributes["name"] == request.macro) {

          foundmacro = true;

          MacroParser mp(request.macro);
          mp.parse();
          Macro *m = mp.getMacro();

          ////////////////////////
          std::vector< Query >::iterator qi = m->queries.begin();
          while(qi != m->queries.end()) {
            qh.addQuery(*qi);
            qi++;
          }
          std::string result = qh.exec();
          printf("Got result: [%s]\n", result.c_str());
          /////////////////////////

          // 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";
          }

          /////////////////////////
          // Parse the result from the queries to pentominos
          QueryParser qp(result);
          qp.parse();
          // Map the results
          LUAQueryMapper lqm(qp.result);
          ////////////////////////

          answer += widgetgenerator(*m, lqm, db);
        }
        answer += "    </macro>\n";
        mi2++;

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

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

      socket.write(answer);
      i++;
    }
  } catch( PGSTD::runtime_error &e ) {
    socket.write(error_box(xml_encode(std::string("PostgreSQL server error:\n") + e.what())));
  } catch( std::exception &e ) {
    socket.write(error_box(xml_encode(e.what())));
  }

  socket.write("</pracro>\n");
}


void server()
{
  port_t port = Conf::server_port;
  TCPSocket *socket = NULL;
  
  try {
    socket = new TCPSocket();
    socket->listen(port);
  } catch (Exception &e) {
    fprintf(stderr, "Error during parsing:\n%s\n",
            e.what());
    delete socket;
    socket = NULL;
    return;
  }

  while(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();
        socket->listen(port);
      }
    }

    TCPSocket child = socket->accept();
    if(child.connected()) {
      //socket->disconnect();
      connection(child);
      //delete socket;

      /*
      switch(fork()) {
      case -1: // error
        fprintf(stderr, "Could not fork: %s\n", strerror(errno));
        break;
        
      case 0: // child
        socket->disconnect();
        connection(child);
        delete socket;
        return;
        
      default: // parent
        child.disconnect();
        break;
      }
      */
    }
  }

  delete socket;
  fprintf(stderr, "Oups... dropped out of the main loop\n");
}

#ifdef TEST_SERVER

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

int main()
{
  Configuration conf("../etc/pracrod.conf");
  initConfig(&conf);

  switch(fork()) {
  case -1: // error
    return 1;
    
  case 0: // child
    server();
    return 0;
    
  default: // parent
    {
      TCPSocket socket;
      int port = config()->lookup("port");
      socket.connect("localhost", port);
      
      socket.write(request);
      char buf[32];
      memset(buf, 0, sizeof(buf));
      while(socket.read(buf, 31)) {
        printf(buf); fflush(stdout);
        memset(buf, 0, sizeof(buf));
      }
    }
    return 0;
  }
  
  return 1;
}

#endif/*TEST_SERVER*/