summaryrefslogtreecommitdiff
path: root/client/builder.cc
blob: 48739a200900533ea44acd36cdf0665e7e7c4f17 (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
#include "builder.h"
#include "sendrecieve.h"
#include "widgets/widget.h"
#include "widgets/label.h"
#include "widgets/lineedit.h"
#include "widgets/textedit.h"
#include "widgets/pushbutton.h"
#include "widgets/combobox.h"
#include "widgets/listbox.h"
#include "widgets/frame.h"
#include "widgets/groupbox.h"
#include "widgets/radiobuttons.h"
#include "widgets/radiobutton.h"
#include "widgets/checkbox.h"
#include "widgets/window.h"
#include <QVBoxLayout>
#include <QDomDocument>
#include <QDomElement>
#include <QDomNode>
#include <QByteArray>
#include <vector>

Builder::Builder(QDomDocument *xml_doc)
  : QObject()
{
  // Assign root element from xml_doc
  this->xml_doc = xml_doc;
  QDomElement xml_elem = xml_doc->documentElement();
    
  // Execute the recursive function with documentElement
  recurser(xml_elem, NULL);
}

Builder::~Builder()
{
}

void Builder::recurser(QDomNode xml_node, QWidget *parent)
{
  QWidget *widget = NULL;
  QDomElement xml_elem = xml_node.toElement();
  if(xml_elem.tagName() == "macro") {
    // Assign the macro name and version to QStrings for use when comitting
    if(xml_elem.hasAttribute("name")) macro = xml_elem.attribute("name");
    if(xml_elem.hasAttribute("version")) version = xml_elem.attribute("version");
  } else if(xml_elem.tagName() == "window") {
    Window *window = new Window(xml_elem);
    widget = window;
  } else if(xml_elem.tagName() == "frame") {
    if(xml_elem.hasAttribute("caption")) {
      GroupBox *frame = new GroupBox(xml_elem);
      widget = frame;
    } else {
      Frame *frame = new Frame(xml_elem);
      widget = frame;
    }
  } else if(xml_elem.tagName() == "label") {
    Label *label = new Label(xml_elem);
    widget = label;
  } else if(xml_elem.tagName() == "lineedit") {
    LineEdit *lineedit = new LineEdit(xml_elem);
    widgets.push_back(lineedit);
    widget = lineedit;
  } else if(xml_elem.tagName() == "button") {
    PushButton *pushbutton = new PushButton(xml_elem);
    connect(pushbutton, SIGNAL(act_commit()), this, SLOT(commit()));
    connect(pushbutton, SIGNAL(act_reset()), this, SLOT(reset()));
    connect(pushbutton, SIGNAL(act_cancel()), this, SLOT(cancel()));
    widget = pushbutton;
  } else if(xml_elem.tagName() == "textedit") {
    TextEdit *textedit = new TextEdit(xml_elem);
    widgets.push_back(textedit);
    widget = textedit;
  } else if(xml_elem.tagName() == "checkbox") {
    CheckBox *checkbox = new CheckBox(xml_elem);
    widgets.push_back(checkbox);
    widget = checkbox;
  } else if(xml_elem.tagName() == "radiobuttons") {
    RadioButtons *radiobuttons = new RadioButtons(xml_elem);
    widgets.push_back(radiobuttons);
    widget = radiobuttons;
    //return; // Don't iterate children
  } else if(xml_elem.tagName() == "combobox") {
    ComboBox *combobox = new ComboBox(xml_elem);
    widgets.push_back(combobox);
    widget = combobox;
    //return; // Don't iterate children
  } else if(xml_elem.tagName() == "listbox") {
    ListBox *listbox = new ListBox(xml_elem);
    widgets.push_back(listbox);
    widget = listbox;
    //return; // Don't iterate children
  }
  QDomNodeList children = xml_node.childNodes();

  for (int i=0; i<children.count();i++) {
    QDomNode child = children.at(i);
    recurser(child, widget);
  }

  if(parent != NULL && widget != NULL) parent->layout()->addWidget(widget);
  if(widget != NULL) widget->show();
}

void Builder::commit()
{
  // Check for errors on all entries before comitting
  int faulty = 0;
  QVector< Widget* >::iterator i=widgets.begin();
  while (i != widgets.end()) {
    Widget* w = *i;
    if(!w->isValid()) faulty++;

    // All selectable entries return "none" if nothing is selected
    if(w->getValue() == "none") faulty++;
    i++;
  }
  // If all entries passed validation, continue commit
  if(faulty == 0) {
    printf("Builder -> committing...\n");
    
    QString xml_string;
    xml_string.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
    xml_string.append("<pracro version=\"1.0\" cpr=\"1505050505\" user=\"tux\">\n");
    xml_string.append("  <commit macro=\"" + macro + "\" version=\"" + 
		      version + "\">\n");

    // Iterate the different entries, and append their results to the commit string
    QVector< Widget* >::iterator i=widgets.begin();
    while (i != widgets.end()) {
      Widget* w = *i;
      
      xml_string.append("    <field name=\"" + w->getName()
		     + "\" value=\"" + w->getValue() + "\"/>\n");
      i++;
    }
    
    xml_string.append("  </commit>\n");
    xml_string.append("</pracro>\n");
    
    //char *test = xml_array.data();
    printf("%s\n", xml_string.toStdString().c_str());

    QByteArray xml_array = xml_string.toUtf8();
    QDomDocument xml_result;
    //QDomDocument xml_req;
    if (!xml_result.setContent(xml_array)) {
      printf("Parse error: Invalid XML\n");
    }
    
    SendRecieve xml_acquire;
    xml_acquire.makeConnection(&xml_result);
    QByteArray ba = xml_acquire.getResult();
  } else {
    printf("ERROR!!! Some entries contain errors, aborting commit...\n");
  }
}

void Builder::reset()
{
  printf("Builder -> resetting...\n");
}

void Builder::cancel()
{
  printf("Builder -> cancelling...\n");
}