nicholas@2690
|
1 /* globals document, console, DOMParser */
|
nicholas@2224
|
2 function Specification() {
|
nicholas@2690
|
3 var schemaRoot;
|
nicholas@2690
|
4 var schemaString;
|
nicholas@2538
|
5 // Handles the decoding of the project specification XML into a simple JavaScript Object.
|
nicholas@2538
|
6
|
nicholas@2378
|
7 // <setup> attributes
|
nicholas@2688
|
8 this.interface = undefined;
|
nicholas@2688
|
9 this.projectReturn = undefined;
|
nicholas@2688
|
10 this.returnURL = undefined;
|
nicholas@2688
|
11 this.randomiseOrder = undefined;
|
nicholas@2688
|
12 this.poolSize = undefined;
|
nicholas@2688
|
13 this.loudness = undefined;
|
nicholas@2688
|
14 this.sampleRate = undefined;
|
nicholas@2688
|
15 this.crossFade = undefined;
|
nicholas@2688
|
16 this.preSilence = undefined;
|
nicholas@2688
|
17 this.postSilence = undefined;
|
nicholas@2688
|
18 this.playOne = undefined;
|
nicholas@2822
|
19 this.minNumberPlays = undefined;
|
nicholas@2822
|
20 this.maxNumberPlays = undefined;
|
nicholas@3062
|
21 this.randomiseAxisOrder = undefined;
|
nicholas@2538
|
22
|
nicholas@2378
|
23 // nodes
|
nicholas@2854
|
24 this.metrics = new metricNode();
|
nicholas@2857
|
25 this.preTest = new surveyNode(this);
|
nicholas@2857
|
26 this.postTest = new surveyNode(this);
|
nicholas@2866
|
27 this.preTest.location = "pre";
|
nicholas@2866
|
28 this.postTest.location = "post";
|
nicholas@2538
|
29 this.pages = [];
|
nicholas@2854
|
30 this.interfaces = new interfaceNode(this);
|
nicholas@2538
|
31 this.errors = [];
|
nicholas@2224
|
32 this.exitText = "Thank you.";
|
nicholas@2538
|
33
|
nicholas@2857
|
34 // Creators
|
nicholas@2857
|
35 this.createNewPage = function () {
|
nicholas@2857
|
36 var newpage = new page(this);
|
nicholas@2857
|
37 this.pages.push(newpage);
|
nicholas@2857
|
38 return newpage;
|
nicholas@2859
|
39 };
|
nicholas@2857
|
40
|
nicholas@2687
|
41 var processAttribute = function (attribute, schema) {
|
nicholas@2538
|
42 // attribute is the string returned from getAttribute on the XML
|
nicholas@2538
|
43 // schema is the <xs:attribute> node
|
nicholas@2687
|
44 if (schema.getAttribute('name') === null && schema.getAttribute('ref') !== undefined) {
|
nicholas@2852
|
45 schema = schemaRoot.querySelector("[name=" + schema.getAttribute('ref') + "]");
|
nicholas@2538
|
46 }
|
nicholas@2538
|
47 var defaultOpt = schema.getAttribute('default');
|
nicholas@2684
|
48 if (attribute === null) {
|
nicholas@2538
|
49 attribute = defaultOpt;
|
nicholas@2538
|
50 }
|
nicholas@2538
|
51 var dataType = schema.getAttribute('type');
|
nicholas@2538
|
52 if (typeof dataType == "string") {
|
nicholas@2538
|
53 dataType = dataType.substr(3);
|
nicholas@2538
|
54 } else {
|
nicholas@2852
|
55 var rest = schema.querySelectorAll("restriction,enumeration");
|
nicholas@2224
|
56 if (rest.length > 0) {
|
nicholas@2224
|
57 dataType = rest[0].getAttribute("base");
|
nicholas@2224
|
58 if (typeof dataType == "string") {
|
nicholas@2224
|
59 dataType = dataType.substr(3);
|
nicholas@2224
|
60 } else {
|
nicholas@2224
|
61 dataType = "string";
|
nicholas@2224
|
62 }
|
nicholas@2224
|
63 } else {
|
nicholas@2224
|
64 dataType = "string";
|
nicholas@2224
|
65 }
|
nicholas@2224
|
66 }
|
nicholas@2684
|
67 if (attribute === null) {
|
nicholas@2538
|
68 return attribute;
|
nicholas@2538
|
69 }
|
nicholas@2538
|
70 switch (dataType) {
|
nicholas@2538
|
71 case "boolean":
|
nicholas@2538
|
72 if (attribute == 'true') {
|
nicholas@2538
|
73 attribute = true;
|
nicholas@2538
|
74 } else {
|
nicholas@2538
|
75 attribute = false;
|
nicholas@2538
|
76 }
|
nicholas@2538
|
77 break;
|
nicholas@2538
|
78 case "negativeInteger":
|
nicholas@2538
|
79 case "positiveInteger":
|
nicholas@2538
|
80 case "nonNegativeInteger":
|
nicholas@2538
|
81 case "nonPositiveInteger":
|
nicholas@2538
|
82 case "integer":
|
nicholas@2538
|
83 case "decimal":
|
nicholas@2538
|
84 case "short":
|
nicholas@2538
|
85 attribute = Number(attribute);
|
nicholas@2538
|
86 break;
|
nicholas@2538
|
87 default:
|
nicholas@2538
|
88 attribute = String(attribute);
|
nicholas@2538
|
89 break;
|
nicholas@2538
|
90 }
|
nicholas@2538
|
91 return attribute;
|
nicholas@2538
|
92 };
|
nicholas@2538
|
93
|
nicholas@2687
|
94 this.processSchema = function (schemaXSD) {
|
nicholas@2687
|
95 if (schemaRoot === undefined) {
|
nicholas@2687
|
96 schemaString = schemaXSD;
|
nicholas@2687
|
97 var parse = new DOMParser();
|
nicholas@2687
|
98 schemaRoot = parse.parseFromString(schemaString, 'text/xml');
|
nicholas@2687
|
99 Object.defineProperties(this, {
|
nicholas@2687
|
100 'schema': {
|
nicholas@2687
|
101 'value': schemaRoot
|
nicholas@2687
|
102 },
|
nicholas@2687
|
103 'schemaString': {
|
nicholas@2687
|
104 'value': schemaString
|
nicholas@2687
|
105 }
|
nicholas@2687
|
106 });
|
nicholas@2687
|
107 }
|
nicholas@2690
|
108 };
|
nicholas@2687
|
109 this.getSchema = function () {
|
nicholas@2687
|
110 return schemaRoot;
|
nicholas@2690
|
111 };
|
nicholas@2687
|
112 this.getSchemaString = function () {
|
nicholas@2687
|
113 return schemaString;
|
nicholas@2690
|
114 };
|
nicholas@2687
|
115
|
nicholas@2538
|
116 this.decode = function (projectXML) {
|
nicholas@2687
|
117 schemaRoot = this.schema;
|
nicholas@2538
|
118 this.errors = [];
|
nicholas@2538
|
119 // projectXML - DOM Parsed document
|
nicholas@2538
|
120 this.projectXML = projectXML.childNodes[0];
|
nicholas@2538
|
121 var setupNode = projectXML.getElementsByTagName('setup')[0];
|
nicholas@2852
|
122 var schemaSetup = schemaRoot.querySelector('[name=setup]');
|
nicholas@2538
|
123 // First decode the attributes
|
nicholas@2852
|
124 var attributes = schemaSetup.querySelectorAll('attribute');
|
nicholas@2684
|
125 var i;
|
nicholas@2684
|
126 for (i = 0; i < attributes.length; i++) {
|
nicholas@2538
|
127 var attributeName = attributes[i].getAttribute('name') || attributes[i].getAttribute('ref');
|
nicholas@2538
|
128 var projectAttr = setupNode.getAttribute(attributeName);
|
nicholas@2692
|
129 projectAttr = processAttribute(projectAttr, attributes[i]);
|
nicholas@2687
|
130 if (projectAttr !== null) {
|
nicholas@2687
|
131 this[attributeName] = projectAttr;
|
nicholas@2538
|
132 }
|
nicholas@2538
|
133 }
|
nicholas@3100
|
134
|
nicholas@3100
|
135 this.calibration.decode(this, projectXML.getElementsByTagName('calibration')[0]);
|
nicholas@2538
|
136
|
nicholas@2224
|
137 var exitTextNode = setupNode.getElementsByTagName('exitText');
|
nicholas@2224
|
138 if (exitTextNode.length == 1) {
|
nicholas@2224
|
139 this.exitText = exitTextNode[0].textContent;
|
nicholas@2224
|
140 }
|
nicholas@2538
|
141
|
nicholas@2538
|
142 this.metrics.decode(this, setupNode.getElementsByTagName('metric')[0]);
|
nicholas@2538
|
143
|
nicholas@2538
|
144 // Now process the survey node options
|
nicholas@2538
|
145 var survey = setupNode.getElementsByTagName('survey');
|
nicholas@2684
|
146 for (i = 0; i < survey.length; i++) {
|
nicholas@2538
|
147 var location = survey[i].getAttribute('location');
|
nicholas@2538
|
148 switch (location) {
|
nicholas@2257
|
149 case 'pre':
|
nicholas@2257
|
150 case 'before':
|
nicholas@2538
|
151 this.preTest.decode(this, survey[i]);
|
nicholas@2257
|
152 break;
|
nicholas@2257
|
153 case 'post':
|
nicholas@2257
|
154 case 'after':
|
nicholas@2538
|
155 this.postTest.decode(this, survey[i]);
|
nicholas@2257
|
156 break;
|
nicholas@2257
|
157 }
|
nicholas@2538
|
158 }
|
nicholas@2538
|
159
|
nicholas@2538
|
160 var interfaceNode = setupNode.getElementsByTagName('interface');
|
nicholas@2538
|
161 if (interfaceNode.length > 1) {
|
nicholas@2538
|
162 this.errors.push("Only one <interface> node in the <setup> node allowed! Others except first ingnored!");
|
nicholas@2538
|
163 }
|
nicholas@2854
|
164
|
nicholas@2684
|
165 if (interfaceNode.length !== 0) {
|
nicholas@2538
|
166 interfaceNode = interfaceNode[0];
|
nicholas@2852
|
167 this.interfaces.decode(this, interfaceNode, this.schema.querySelectorAll('[name=interface]')[1]);
|
nicholas@2538
|
168 }
|
nicholas@2538
|
169
|
nicholas@2538
|
170 // Page tags
|
nicholas@2538
|
171 var pageTags = projectXML.getElementsByTagName('page');
|
nicholas@2852
|
172 var pageSchema = this.schema.querySelector('[name=page]');
|
nicholas@2684
|
173 for (i = 0; i < pageTags.length; i++) {
|
nicholas@2854
|
174 var node = new page(this);
|
nicholas@2538
|
175 node.decode(this, pageTags[i], pageSchema);
|
nicholas@2538
|
176 this.pages.push(node);
|
nicholas@2941
|
177 for (var r = 0; r < node.repeatCount; r++) {
|
nicholas@2941
|
178 var repeat = new page(this);
|
nicholas@2941
|
179 repeat.decode(this, pageTags[i], pageSchema);
|
nicholas@2941
|
180 repeat.id += "-repeat-" + r;
|
nicholas@2941
|
181 this.pages.push(repeat);
|
nicholas@2941
|
182 }
|
nicholas@2538
|
183 }
|
nicholas@2538
|
184 };
|
nicholas@2538
|
185
|
nicholas@2538
|
186 this.encode = function () {
|
nicholas@2538
|
187 var RootDocument = document.implementation.createDocument(null, "waet");
|
nicholas@2538
|
188 var root = RootDocument.firstChild;
|
nicholas@2538
|
189 root.setAttribute("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance");
|
nicholas@2538
|
190 root.setAttribute("xsi:noNamespaceSchemaLocation", "test-schema.xsd");
|
nicholas@2538
|
191 // Build setup node
|
nicholas@2224
|
192 var setup = RootDocument.createElement("setup");
|
nicholas@2852
|
193 var schemaSetup = schemaRoot.querySelector('[name=setup]');
|
nicholas@2224
|
194 // First decode the attributes
|
nicholas@2852
|
195 var attributes = schemaSetup.querySelectorAll('attribute');
|
nicholas@2538
|
196 for (var i = 0; i < attributes.length; i++) {
|
nicholas@2224
|
197 var name = attributes[i].getAttribute("name");
|
nicholas@2895
|
198 if (name === null) {
|
nicholas@2224
|
199 name = attributes[i].getAttribute("ref");
|
nicholas@2224
|
200 }
|
nicholas@2685
|
201 if (this[name] !== undefined || attributes[i].getAttribute("use") == "required") {
|
nicholas@2685
|
202 setup.setAttribute(name, this[name]);
|
nicholas@2224
|
203 }
|
nicholas@2224
|
204 }
|
nicholas@2224
|
205 root.appendChild(setup);
|
nicholas@2224
|
206 // Survey node
|
nicholas@2684
|
207 if (this.exitText !== null) {
|
nicholas@2224
|
208 var exitTextNode = RootDocument.createElement('exitText');
|
nicholas@2224
|
209 exitTextNode.textContent = this.exitText;
|
nicholas@2224
|
210 setup.appendChild(exitTextNode);
|
nicholas@2224
|
211 }
|
nicholas@3100
|
212 setup.appendChild(this.calibration.encode(RootDocument));
|
nicholas@2224
|
213 setup.appendChild(this.preTest.encode(RootDocument));
|
nicholas@2224
|
214 setup.appendChild(this.postTest.encode(RootDocument));
|
nicholas@2224
|
215 setup.appendChild(this.metrics.encode(RootDocument));
|
nicholas@2224
|
216 setup.appendChild(this.interfaces.encode(RootDocument));
|
nicholas@2684
|
217 this.pages.forEach(function (page) {
|
nicholas@2224
|
218 root.appendChild(page.encode(RootDocument));
|
nicholas@2684
|
219 });
|
nicholas@2538
|
220 return RootDocument;
|
nicholas@2538
|
221 };
|
nicholas@2538
|
222
|
nicholas@3100
|
223 this.calibration = (function () {
|
nicholas@3100
|
224 var frequencies = false,
|
nicholas@3100
|
225 levels = false,
|
nicholas@3100
|
226 channels = false,
|
nicholas@3100
|
227 schema = undefined;
|
nicholas@3100
|
228 var Calibration = {};
|
nicholas@3100
|
229 Object.defineProperties(Calibration, {
|
nicholas@3100
|
230 "parent": {
|
nicholas@3100
|
231 "value": this
|
nicholas@3100
|
232 },
|
nicholas@3100
|
233 "schema": {
|
nicholas@3100
|
234 "get": function () {
|
nicholas@3100
|
235 return schema;
|
nicholas@3100
|
236 },
|
nicholas@3100
|
237 "set": function (t) {
|
nicholas@3100
|
238 if (schema === undefined) {
|
nicholas@3100
|
239 schema = t;
|
nicholas@3100
|
240 } else {
|
nicholas@3100
|
241 throw ("Cannot set readonly");
|
nicholas@3100
|
242 }
|
nicholas@3100
|
243 }
|
nicholas@3100
|
244 },
|
nicholas@3100
|
245 "checkFrequencies": {
|
nicholas@3100
|
246 "get": function () {
|
nicholas@3100
|
247 return frequencies;
|
nicholas@3100
|
248 },
|
nicholas@3100
|
249 "set": function (t) {
|
nicholas@3100
|
250 frequencies = (t === true);
|
nicholas@3100
|
251 }
|
nicholas@3100
|
252 },
|
nicholas@3100
|
253 "checkLevels": {
|
nicholas@3100
|
254 "get": function () {
|
nicholas@3100
|
255 return levels;
|
nicholas@3100
|
256 },
|
nicholas@3100
|
257 "set": function (t) {
|
nicholas@3100
|
258 levels = (t === true);
|
nicholas@3100
|
259 }
|
nicholas@3100
|
260 },
|
nicholas@3100
|
261 "checkChannels": {
|
nicholas@3100
|
262 "get": function () {
|
nicholas@3100
|
263 return channels;
|
nicholas@3100
|
264 },
|
nicholas@3100
|
265 "set": function (t) {
|
nicholas@3100
|
266 channels = (t === true);
|
nicholas@3100
|
267 }
|
nicholas@3100
|
268 },
|
nicholas@3100
|
269 "encode": {
|
nicholas@3100
|
270 "value": function (doc) {
|
nicholas@3100
|
271 var node = doc.createElement("calibration");
|
nicholas@3100
|
272 node.setAttribute("checkFrequencies", frequencies);
|
nicholas@3100
|
273 node.setAttribute("checkLevels", levels);
|
nicholas@3100
|
274 node.setAttribute("checkChannels", channels);
|
nicholas@3100
|
275 return node;
|
nicholas@3100
|
276 }
|
nicholas@3100
|
277 },
|
nicholas@3100
|
278 "decode": {
|
nicholas@3100
|
279 "value": function (parent, xml) {
|
nicholas@3100
|
280 this.schema = schemaRoot.querySelector("[name=calibration]");
|
nicholas@3100
|
281 var attributeMap = this.schema.querySelectorAll('attribute'),
|
nicholas@3100
|
282 i;
|
nicholas@3100
|
283 for (i in attributeMap) {
|
nicholas@3100
|
284 if (isNaN(Number(i)) === true) {
|
nicholas@3100
|
285 break;
|
nicholas@3100
|
286 }
|
nicholas@3100
|
287 var attributeName = attributeMap[i].getAttribute('name') || attributeMap[i].getAttribute('ref');
|
nicholas@3100
|
288 var projectAttr = xml.getAttribute(attributeName);
|
nicholas@3100
|
289 projectAttr = processAttribute(projectAttr, attributeMap[i]);
|
nicholas@3100
|
290 if (projectAttr !== null) {
|
nicholas@3100
|
291 this[attributeName] = projectAttr;
|
nicholas@3100
|
292 }
|
nicholas@3100
|
293 }
|
nicholas@3100
|
294 }
|
nicholas@3100
|
295 }
|
nicholas@3100
|
296 });
|
nicholas@3100
|
297 return Calibration;
|
nicholas@3100
|
298 })();
|
nicholas@3100
|
299
|
nicholas@2854
|
300 function surveyNode(specification) {
|
nicholas@2688
|
301 this.location = undefined;
|
nicholas@2538
|
302 this.options = [];
|
nicholas@2688
|
303 this.parent = undefined;
|
nicholas@3020
|
304 this.showBackButton = true;
|
nicholas@2224
|
305 this.specification = specification;
|
nicholas@2538
|
306
|
nicholas@2857
|
307 this.addOption = function () {
|
nicholas@2857
|
308 var node = new this.OptionNode(this.specification);
|
nicholas@2857
|
309 this.options.push(node);
|
nicholas@2857
|
310 return node;
|
nicholas@2859
|
311 };
|
nicholas@2857
|
312
|
nicholas@2538
|
313 this.OptionNode = function (specification) {
|
nicholas@2538
|
314 this.type = undefined;
|
n@2582
|
315 this.schema = undefined;
|
nicholas@2538
|
316 this.id = undefined;
|
nicholas@2224
|
317 this.name = undefined;
|
nicholas@2538
|
318 this.mandatory = undefined;
|
nicholas@2538
|
319 this.statement = undefined;
|
nicholas@2538
|
320 this.boxsize = undefined;
|
nicholas@2538
|
321 this.options = [];
|
nicholas@2538
|
322 this.min = undefined;
|
nicholas@2538
|
323 this.max = undefined;
|
nicholas@2774
|
324 this.minWait = undefined;
|
nicholas@2538
|
325 this.step = undefined;
|
nicholas@2464
|
326 this.conditions = [];
|
nicholas@2538
|
327
|
nicholas@2538
|
328 this.decode = function (parent, child) {
|
nicholas@2852
|
329 this.schema = schemaRoot.querySelector("[name=" + child.nodeName + "]");
|
nicholas@2852
|
330 var attributeMap = this.schema.querySelectorAll('attribute');
|
nicholas@2684
|
331 var i;
|
nicholas@2684
|
332 for (i in attributeMap) {
|
nicholas@2684
|
333 if (isNaN(Number(i)) === true) {
|
nicholas@2538
|
334 break;
|
nicholas@2538
|
335 }
|
nicholas@2538
|
336 var attributeName = attributeMap[i].getAttribute('name') || attributeMap[i].getAttribute('ref');
|
nicholas@2538
|
337 var projectAttr = child.getAttribute(attributeName);
|
nicholas@2692
|
338 projectAttr = processAttribute(projectAttr, attributeMap[i]);
|
nicholas@2687
|
339 if (projectAttr !== null) {
|
nicholas@2687
|
340 this[attributeName] = projectAttr;
|
nicholas@2538
|
341 }
|
nicholas@2538
|
342 }
|
n@2582
|
343 if (child.nodeName == 'surveyentry') {
|
n@2582
|
344 console.log("NOTE - Use of <surveyelement> is now deprecated. Whilst these will still work, newer nodes and tighter error checking will not be enforced");
|
n@2582
|
345 console.log("Please use the newer, type specifc nodes");
|
n@2582
|
346 if (!this.type) {
|
n@2582
|
347 throw ("Type not specified");
|
n@2582
|
348 }
|
n@2582
|
349 } else {
|
n@2582
|
350 this.type = child.nodeName.split('survey')[1];
|
n@2582
|
351 }
|
nicholas@2538
|
352 this.statement = child.getElementsByTagName('statement')[0].textContent;
|
nicholas@2538
|
353 if (this.type == "checkbox" || this.type == "radio") {
|
nicholas@2538
|
354 var children = child.getElementsByTagName('option');
|
nicholas@2684
|
355 if (children.length === null) {
|
nicholas@2538
|
356 console.log('Malformed' + child.nodeName + 'entry');
|
nicholas@2538
|
357 this.statement = 'Malformed' + child.nodeName + 'entry';
|
nicholas@2538
|
358 this.type = 'statement';
|
nicholas@2538
|
359 } else {
|
nicholas@2538
|
360 this.options = [];
|
nicholas@2684
|
361 for (i = 0; i < children.length; i++) {
|
nicholas@2538
|
362 this.options.push({
|
nicholas@2538
|
363 name: children[i].getAttribute('name'),
|
nicholas@2538
|
364 text: children[i].textContent
|
nicholas@2538
|
365 });
|
nicholas@2538
|
366 }
|
nicholas@2538
|
367 }
|
n@2582
|
368 } else if (this.type == "slider") {
|
n@2582
|
369 this.leftText = "";
|
n@2582
|
370 this.rightText = "";
|
n@2582
|
371 var minText = child.getElementsByTagName("minText");
|
n@2582
|
372 var maxText = child.getElementsByTagName("maxText");
|
n@2582
|
373 if (minText.length > 0) {
|
n@2582
|
374 this.leftText = minText[0].textContent;
|
n@2582
|
375 }
|
n@2582
|
376 if (maxText.length > 0) {
|
n@2582
|
377 this.rightText = maxText[0].textContent;
|
n@2582
|
378 }
|
nicholas@2538
|
379 }
|
nicholas@2464
|
380 var conditionElements = child.getElementsByTagName("conditional");
|
nicholas@2684
|
381 for (i = 0; i < conditionElements.length; i++) {
|
nicholas@2464
|
382 var condition = conditionElements[i];
|
nicholas@2464
|
383 var obj = {
|
nicholas@2464
|
384 check: condition.getAttribute("check"),
|
nicholas@2464
|
385 value: condition.getAttribute("value"),
|
nicholas@2464
|
386 jumpToOnPass: condition.getAttribute("jumpToOnPass"),
|
nicholas@2464
|
387 jumpToOnFail: condition.getAttribute("jumpToOnFail")
|
nicholas@2684
|
388 };
|
nicholas@2464
|
389 this.conditions.push(obj);
|
nicholas@2464
|
390 }
|
nicholas@2538
|
391 };
|
nicholas@2538
|
392
|
nicholas@2538
|
393 this.exportXML = function (doc) {
|
n@2583
|
394 var node = doc.createElement('survey' + this.type);
|
nicholas@2538
|
395 var statement = doc.createElement('statement');
|
nicholas@2538
|
396 statement.textContent = this.statement;
|
nicholas@2538
|
397 node.appendChild(statement);
|
nicholas@2224
|
398 node.id = this.id;
|
nicholas@2684
|
399 if (this.name !== undefined) {
|
nicholas@2538
|
400 node.setAttribute("name", this.name);
|
nicholas@2538
|
401 }
|
nicholas@2684
|
402 if (this.mandatory !== undefined) {
|
nicholas@2538
|
403 node.setAttribute("mandatory", this.mandatory);
|
nicholas@2538
|
404 }
|
nicholas@2224
|
405 node.id = this.id;
|
nicholas@2684
|
406 if (this.name !== undefined) {
|
nicholas@2538
|
407 node.setAttribute("name", this.name);
|
nicholas@2538
|
408 }
|
nicholas@2538
|
409 switch (this.type) {
|
nicholas@2224
|
410 case "checkbox":
|
nicholas@2684
|
411 if (this.min !== undefined) {
|
nicholas@2566
|
412 node.setAttribute("min", this.min);
|
nicholas@2566
|
413 } else {
|
nicholas@2566
|
414 node.setAttribute("min", "0");
|
nicholas@2566
|
415 }
|
nicholas@2684
|
416 if (this.max !== undefined) {
|
nicholas@2566
|
417 node.setAttribute("max", this.max);
|
nicholas@2566
|
418 } else {
|
nicholas@2573
|
419 node.setAttribute("max", "undefined");
|
nicholas@2686
|
420 } /* falls through */
|
nicholas@2224
|
421 case "radio":
|
nicholas@2538
|
422 for (var i = 0; i < this.options.length; i++) {
|
nicholas@2224
|
423 var option = this.options[i];
|
nicholas@2224
|
424 var optionNode = doc.createElement("option");
|
nicholas@2538
|
425 optionNode.setAttribute("name", option.name);
|
nicholas@2224
|
426 optionNode.textContent = option.text;
|
nicholas@2224
|
427 node.appendChild(optionNode);
|
nicholas@2224
|
428 }
|
nicholas@2562
|
429 break;
|
nicholas@2224
|
430 case "number":
|
nicholas@2684
|
431 if (this.min !== undefined) {
|
nicholas@2538
|
432 node.setAttribute("min", this.min);
|
nicholas@2538
|
433 }
|
nicholas@2684
|
434 if (this.max !== undefined) {
|
nicholas@2538
|
435 node.setAttribute("max", this.max);
|
nicholas@2538
|
436 }
|
nicholas@2562
|
437 break;
|
nicholas@2224
|
438 case "question":
|
nicholas@2684
|
439 if (this.boxsize !== undefined) {
|
nicholas@2538
|
440 node.setAttribute("boxsize", this.boxsize);
|
nicholas@2538
|
441 }
|
nicholas@2684
|
442 if (this.mandatory !== undefined) {
|
nicholas@2538
|
443 node.setAttribute("mandatory", this.mandatory);
|
nicholas@2538
|
444 }
|
nicholas@2562
|
445 break;
|
nicholas@2562
|
446 case "video":
|
nicholas@2684
|
447 if (this.mandatory !== undefined) {
|
nicholas@2573
|
448 node.setAttribute("mandatory", this.mandatory);
|
nicholas@2686
|
449 } /* falls through */
|
nicholas@2562
|
450 case "youtube":
|
nicholas@2684
|
451 if (this.url !== undefined) {
|
nicholas@2573
|
452 node.setAttribute("url", this.url);
|
nicholas@2573
|
453 }
|
nicholas@2562
|
454 break;
|
n@2583
|
455 case "slider":
|
n@2583
|
456 node.setAttribute("min", this.min);
|
n@2583
|
457 node.setAttribute("max", this.max);
|
n@2583
|
458 if (this.leftText) {
|
n@2583
|
459 var minText = doc.createElement("minText");
|
n@2583
|
460 minText.textContent = this.leftText;
|
n@2583
|
461 node.appendChild(minText);
|
n@2583
|
462 }
|
n@2583
|
463 if (this.rightText) {
|
n@2583
|
464 var maxText = doc.createElement("maxText");
|
n@2583
|
465 maxText.textContent = this.rightText;
|
n@2583
|
466 node.appendChild(maxText);
|
n@2583
|
467 }
|
nicholas@2686
|
468 break;
|
nicholas@2224
|
469 default:
|
nicholas@2224
|
470 break;
|
nicholas@2224
|
471 }
|
nicholas@2684
|
472 this.conditions.forEach(function (condition) {
|
nicholas@2465
|
473 var conditionDOM = doc.createElement("conditional");
|
nicholas@2538
|
474 conditionDOM.setAttribute("check", condition.check);
|
nicholas@2538
|
475 conditionDOM.setAttribute("value", condition.value);
|
nicholas@2538
|
476 conditionDOM.setAttribute("jumpToOnPass", condition.jumpToOnPass);
|
nicholas@2538
|
477 conditionDOM.setAttribute("jumpToOnFail", condition.jumpToOnFail);
|
nicholas@2465
|
478 node.appendChild(conditionDOM);
|
nicholas@2684
|
479 });
|
nicholas@2538
|
480 return node;
|
nicholas@2538
|
481 };
|
nicholas@2538
|
482 };
|
nicholas@2538
|
483 this.decode = function (parent, xml) {
|
nicholas@2857
|
484 this.schema = schemaRoot.querySelector('[name=survey]');
|
nicholas@2224
|
485 this.parent = parent;
|
nicholas@2538
|
486 this.location = xml.getAttribute('location');
|
nicholas@2538
|
487 if (this.location == 'before') {
|
nicholas@2538
|
488 this.location = 'pre';
|
nicholas@2538
|
489 } else if (this.location == 'after') {
|
nicholas@2538
|
490 this.location = 'post';
|
nicholas@2538
|
491 }
|
nicholas@3020
|
492 this.showBackButton = xml.getAttribute("showBackButton");
|
nicholas@3020
|
493 if (this.showBackButton == "false") {
|
nicholas@3020
|
494 this.showBackButton = false;
|
nicholas@3020
|
495 } else {
|
nicholas@3020
|
496 this.showBackButton = true;
|
nicholas@3020
|
497 }
|
nicholas@2684
|
498 var child = xml.firstElementChild;
|
n@2582
|
499 while (child) {
|
nicholas@2538
|
500 var node = new this.OptionNode(this.specification);
|
n@2582
|
501 node.decode(parent, child);
|
nicholas@2538
|
502 this.options.push(node);
|
n@2582
|
503 child = child.nextElementSibling;
|
nicholas@2538
|
504 }
|
nicholas@2684
|
505 if (this.options.length === 0) {
|
nicholas@2257
|
506 console.log("Empty survey node");
|
nicholas@2257
|
507 console.log(this);
|
nicholas@2257
|
508 }
|
nicholas@2538
|
509 };
|
nicholas@2538
|
510 this.encode = function (doc) {
|
nicholas@2538
|
511 var node = doc.createElement('survey');
|
nicholas@2538
|
512 node.setAttribute('location', this.location);
|
nicholas@3021
|
513 node.setAttribute('showBackButton', this.showBackButton);
|
nicholas@2538
|
514 for (var i = 0; i < this.options.length; i++) {
|
nicholas@2538
|
515 node.appendChild(this.options[i].exportXML(doc));
|
nicholas@2538
|
516 }
|
nicholas@2538
|
517 return node;
|
nicholas@2538
|
518 };
|
nicholas@2859
|
519 }
|
nicholas@2538
|
520
|
nicholas@2854
|
521 function interfaceNode(specification) {
|
nicholas@2688
|
522 this.title = undefined;
|
nicholas@2688
|
523 this.name = undefined;
|
nicholas@2777
|
524 this.image = undefined;
|
nicholas@2538
|
525 this.options = [];
|
nicholas@2538
|
526 this.scales = [];
|
nicholas@2854
|
527 this.schema = undefined;
|
nicholas@2538
|
528
|
nicholas@2538
|
529 this.decode = function (parent, xml) {
|
nicholas@2854
|
530 this.schema = schemaRoot.querySelectorAll('[name=interface]')[1];
|
nicholas@2538
|
531 this.name = xml.getAttribute('name');
|
nicholas@2538
|
532 var titleNode = xml.getElementsByTagName('title');
|
nicholas@2538
|
533 if (titleNode.length == 1) {
|
nicholas@2538
|
534 this.title = titleNode[0].textContent;
|
nicholas@2538
|
535 }
|
nicholas@2538
|
536 var interfaceOptionNodes = xml.getElementsByTagName('interfaceoption');
|
nicholas@2538
|
537 // Extract interfaceoption node schema
|
nicholas@2852
|
538 var interfaceOptionNodeSchema = this.schema.querySelector('[name=interfaceoption]');
|
nicholas@2852
|
539 var attributeMap = interfaceOptionNodeSchema.querySelectorAll('attribute');
|
nicholas@2684
|
540 var i, j;
|
nicholas@2684
|
541 for (i = 0; i < interfaceOptionNodes.length; i++) {
|
nicholas@2538
|
542 var ioNode = interfaceOptionNodes[i];
|
nicholas@2538
|
543 var option = {};
|
nicholas@2684
|
544 for (j = 0; j < attributeMap.length; j++) {
|
nicholas@2538
|
545 var attributeName = attributeMap[j].getAttribute('name') || attributeMap[j].getAttribute('ref');
|
nicholas@2538
|
546 var projectAttr = ioNode.getAttribute(attributeName);
|
nicholas@2692
|
547 projectAttr = processAttribute(projectAttr, attributeMap[j]);
|
nicholas@2687
|
548 if (projectAttr !== null) {
|
nicholas@2688
|
549 option[attributeName] = projectAttr;
|
nicholas@2538
|
550 }
|
nicholas@2538
|
551 }
|
n@2787
|
552 if (option.type == "check" && ioNode.firstElementChild) {
|
n@2787
|
553 option.errorMessage = ioNode.firstElementChild.textContent;
|
n@2787
|
554 }
|
nicholas@2538
|
555 this.options.push(option);
|
nicholas@2538
|
556 }
|
nicholas@2777
|
557 // Get the image node
|
nicholas@2777
|
558 var imageNode = xml.getElementsByTagName("image");
|
nicholas@2777
|
559 if (imageNode.length == 1) {
|
nicholas@2777
|
560 this.image = imageNode[0].getAttribute("src");
|
nicholas@2777
|
561 }
|
nicholas@2538
|
562 // Now the scales nodes
|
nicholas@2538
|
563 var scaleParent = xml.getElementsByTagName('scales');
|
nicholas@2538
|
564 if (scaleParent.length == 1) {
|
nicholas@2538
|
565 scaleParent = scaleParent[0];
|
nicholas@2852
|
566 var scalelabels = scaleParent.querySelectorAll('scalelabel');
|
nicholas@2684
|
567 for (i = 0; i < scalelabels.length; i++) {
|
nicholas@2538
|
568 this.scales.push({
|
nicholas@2538
|
569 text: scalelabels[i].textContent,
|
nicholas@2538
|
570 position: Number(scalelabels[i].getAttribute('position'))
|
nicholas@2538
|
571 });
|
nicholas@2538
|
572 }
|
nicholas@2538
|
573 }
|
nicholas@2538
|
574 };
|
nicholas@2538
|
575
|
nicholas@2538
|
576 this.encode = function (doc) {
|
nicholas@2538
|
577 var node = doc.createElement("interface");
|
nicholas@2684
|
578 if (typeof this.name == "string" && this.name.length > 0)
|
nicholas@2538
|
579 node.setAttribute("name", this.name);
|
nicholas@2243
|
580 if (typeof this.title == "string") {
|
nicholas@2243
|
581 var titleNode = doc.createElement("title");
|
nicholas@2243
|
582 titleNode.textContent = this.title;
|
nicholas@2243
|
583 node.appendChild(titleNode);
|
nicholas@2243
|
584 }
|
nicholas@2684
|
585 this.options.forEach(function (option) {
|
nicholas@2224
|
586 var child = doc.createElement("interfaceoption");
|
nicholas@2538
|
587 child.setAttribute("type", option.type);
|
nicholas@2538
|
588 child.setAttribute("name", option.name);
|
n@2788
|
589 if (option.type == "check" && option.errorMessage !== undefined) {
|
n@2788
|
590 var errorMessage = doc.createElement("errormessage");
|
n@2788
|
591 errorMessage.textContent = option.errorMessage;
|
n@2788
|
592 child.appendChild(errorMessage);
|
n@2788
|
593 }
|
nicholas@2224
|
594 node.appendChild(child);
|
nicholas@2684
|
595 });
|
nicholas@2780
|
596 if (typeof this.image == "string" && this.image.length !== 0) {
|
nicholas@2780
|
597 var imgNode = doc.createElement("image");
|
nicholas@2780
|
598 imgNode.setAttribute("src", this.image);
|
nicholas@2780
|
599 node.appendChild(imgNode);
|
nicholas@2780
|
600 }
|
nicholas@2684
|
601 if (this.scales.length !== 0) {
|
nicholas@2224
|
602 var scales = doc.createElement("scales");
|
nicholas@2684
|
603 this.scales.forEach(function (scale) {
|
nicholas@2224
|
604 var child = doc.createElement("scalelabel");
|
nicholas@2538
|
605 child.setAttribute("position", scale.position);
|
nicholas@2224
|
606 child.textContent = scale.text;
|
nicholas@2224
|
607 scales.appendChild(child);
|
nicholas@2684
|
608 });
|
nicholas@2224
|
609 node.appendChild(scales);
|
nicholas@2224
|
610 }
|
nicholas@2224
|
611 return node;
|
nicholas@2538
|
612 };
|
nicholas@2859
|
613 }
|
nicholas@2538
|
614
|
nicholas@2854
|
615 function metricNode() {
|
nicholas@2224
|
616 this.enabled = [];
|
nicholas@2538
|
617 this.decode = function (parent, xml) {
|
nicholas@2224
|
618 var children = xml.getElementsByTagName('metricenable');
|
nicholas@2538
|
619 for (var i in children) {
|
nicholas@2684
|
620 if (isNaN(Number(i)) === true) {
|
nicholas@2538
|
621 break;
|
nicholas@2538
|
622 }
|
nicholas@2224
|
623 this.enabled.push(children[i].textContent);
|
nicholas@2224
|
624 }
|
nicholas@2684
|
625 };
|
nicholas@2538
|
626 this.encode = function (doc) {
|
nicholas@2224
|
627 var node = doc.createElement('metric');
|
nicholas@2538
|
628 for (var i in this.enabled) {
|
nicholas@2684
|
629 if (isNaN(Number(i)) === true) {
|
nicholas@2538
|
630 break;
|
nicholas@2538
|
631 }
|
nicholas@2224
|
632 var child = doc.createElement('metricenable');
|
nicholas@2224
|
633 child.textContent = this.enabled[i];
|
nicholas@2224
|
634 node.appendChild(child);
|
nicholas@2224
|
635 }
|
nicholas@2224
|
636 return node;
|
nicholas@2684
|
637 };
|
nicholas@2859
|
638 }
|
nicholas@2538
|
639
|
nicholas@2854
|
640 function page(specification) {
|
nicholas@2538
|
641 this.presentedId = undefined;
|
nicholas@2538
|
642 this.id = undefined;
|
nicholas@2470
|
643 this.title = undefined;
|
nicholas@2538
|
644 this.hostURL = undefined;
|
nicholas@2538
|
645 this.randomiseOrder = undefined;
|
nicholas@2538
|
646 this.loop = undefined;
|
nicholas@2688
|
647 this.outsideReference = undefined;
|
nicholas@2688
|
648 this.loudness = undefined;
|
nicholas@2688
|
649 this.label = undefined;
|
nicholas@2688
|
650 this.labelStart = undefined;
|
nicholas@2857
|
651 this.preTest = new surveyNode(specification);
|
nicholas@2857
|
652 this.postTest = new surveyNode(specification);
|
nicholas@2866
|
653 this.preTest.location = "pre";
|
nicholas@2866
|
654 this.postTest.location = "post";
|
nicholas@2538
|
655 this.interfaces = [];
|
nicholas@2688
|
656 this.playOne = undefined;
|
nicholas@2688
|
657 this.restrictMovement = undefined;
|
n@2713
|
658 this.position = undefined;
|
nicholas@2538
|
659 this.commentBoxPrefix = "Comment on track";
|
nicholas@2822
|
660 this.minNumberPlays = undefined;
|
nicholas@2822
|
661 this.maxNumberPlays = undefined;
|
nicholas@3062
|
662 this.randomiseAxisOrder = undefined;
|
nicholas@2538
|
663 this.audioElements = [];
|
nicholas@2538
|
664 this.commentQuestions = [];
|
nicholas@2852
|
665 this.schema = schemaRoot.querySelector("[name=page]");
|
nicholas@2224
|
666 this.specification = specification;
|
nicholas@2688
|
667 this.parent = undefined;
|
nicholas@2538
|
668
|
nicholas@2859
|
669 this.addInterface = function () {
|
nicholas@2859
|
670 var node = new interfaceNode(specification);
|
nicholas@2859
|
671 this.interfaces.push(node);
|
nicholas@2859
|
672 return node;
|
nicholas@2859
|
673 };
|
nicholas@2859
|
674 this.addCommentQuestion = function () {
|
nicholas@2859
|
675 var node = new commentQuestionNode(specification);
|
nicholas@2859
|
676 this.commentQuestions.push(node);
|
nicholas@2859
|
677 return node;
|
nicholas@2859
|
678 };
|
nicholas@2859
|
679 this.addAudioElement = function () {
|
nicholas@2859
|
680 var node = new audioElementNode(specification);
|
nicholas@2859
|
681 this.audioElements.push(node);
|
nicholas@2859
|
682 return node;
|
nicholas@2859
|
683 };
|
nicholas@2859
|
684
|
nicholas@2538
|
685 this.decode = function (parent, xml) {
|
nicholas@2224
|
686 this.parent = parent;
|
nicholas@2852
|
687 var attributeMap = this.schema.querySelectorAll('attribute');
|
nicholas@2684
|
688 var i, node;
|
nicholas@2684
|
689 for (i = 0; i < attributeMap.length; i++) {
|
nicholas@2538
|
690 var attributeName = attributeMap[i].getAttribute('name') || attributeMap[i].getAttribute('ref');
|
nicholas@2538
|
691 var projectAttr = xml.getAttribute(attributeName);
|
nicholas@2692
|
692 projectAttr = processAttribute(projectAttr, attributeMap[i]);
|
nicholas@2687
|
693 if (projectAttr !== null) {
|
nicholas@2687
|
694 this[attributeName] = projectAttr;
|
nicholas@2538
|
695 }
|
nicholas@2538
|
696 }
|
nicholas@2538
|
697
|
nicholas@2470
|
698 // Get the title
|
nicholas@2470
|
699 var title = xml.getElementsByTagName('title');
|
nicholas@2684
|
700 if (title.length !== 0 && title[0].parentElement == xml) {
|
nicholas@2470
|
701 this.title = title[0].textContent;
|
nicholas@2470
|
702 }
|
nicholas@2538
|
703
|
nicholas@2538
|
704 // Get the Comment Box Prefix
|
nicholas@2538
|
705 var CBP = xml.getElementsByTagName('commentboxprefix');
|
nicholas@2684
|
706 if (CBP.length !== 0 && CBP[0].parentElement == xml) {
|
nicholas@2538
|
707 this.commentBoxPrefix = CBP[0].textContent;
|
nicholas@2538
|
708 }
|
nicholas@2538
|
709
|
nicholas@2538
|
710 // Now decode the interfaces
|
nicholas@2854
|
711 var interfaceNodes = xml.getElementsByTagName('interface');
|
nicholas@2854
|
712 for (i = 0; i < interfaceNodes.length; i++) {
|
nicholas@2854
|
713 node = new interfaceNode(this.specification);
|
nicholas@2854
|
714 node.decode(this, interfaceNodes[i], parent.schema.querySelectorAll('[name=interface]')[1]);
|
nicholas@2538
|
715 this.interfaces.push(node);
|
nicholas@2538
|
716 }
|
nicholas@2538
|
717
|
nicholas@2538
|
718 // Now process the survey node options
|
nicholas@2538
|
719 var survey = xml.getElementsByTagName('survey');
|
nicholas@2852
|
720 var surveySchema = parent.schema.querySelector('[name=survey]');
|
nicholas@2684
|
721 for (i = 0; i < survey.length; i++) {
|
nicholas@2538
|
722 var location = survey[i].getAttribute('location');
|
nicholas@2538
|
723 if (location == 'pre' || location == 'before') {
|
nicholas@2857
|
724 if (this.preTest.options.length !== 0) {
|
nicholas@2538
|
725 this.errors.push("Already a pre/before test survey defined! Ignoring second!!");
|
nicholas@2538
|
726 } else {
|
nicholas@2538
|
727 this.preTest.decode(parent, survey[i], surveySchema);
|
nicholas@2538
|
728 }
|
nicholas@2538
|
729 } else if (location == 'post' || location == 'after') {
|
nicholas@2857
|
730 if (this.postTest.options.length !== 0) {
|
nicholas@2538
|
731 this.errors.push("Already a post/after test survey defined! Ignoring second!!");
|
nicholas@2538
|
732 } else {
|
nicholas@2538
|
733 this.postTest.decode(parent, survey[i], surveySchema);
|
nicholas@2538
|
734 }
|
nicholas@2538
|
735 }
|
nicholas@2538
|
736 }
|
nicholas@2538
|
737
|
nicholas@2538
|
738 // Now process the audioelement tags
|
nicholas@2538
|
739 var audioElements = xml.getElementsByTagName('audioelement');
|
nicholas@2684
|
740 for (i = 0; i < audioElements.length; i++) {
|
nicholas@2854
|
741 var audioNode = new audioElementNode(this.specification);
|
nicholas@2684
|
742 audioNode.decode(this, audioElements[i]);
|
nicholas@2684
|
743 this.audioElements.push(audioNode);
|
nicholas@2538
|
744 }
|
nicholas@2538
|
745
|
nicholas@2538
|
746 // Now decode the commentquestions
|
n@2579
|
747 var cqNode = xml.getElementsByTagName('commentquestions');
|
nicholas@2684
|
748 if (cqNode.length !== 0) {
|
n@2579
|
749 cqNode = cqNode[0];
|
nicholas@2644
|
750 var commentQuestion = cqNode.firstElementChild;
|
nicholas@2644
|
751 while (commentQuestion) {
|
nicholas@2854
|
752 node = new commentQuestionNode(this.specification);
|
nicholas@2644
|
753 node.decode(parent, commentQuestion);
|
n@2579
|
754 this.commentQuestions.push(node);
|
nicholas@2644
|
755 commentQuestion = commentQuestion.nextElementSibling;
|
n@2579
|
756 }
|
nicholas@2538
|
757 }
|
nicholas@2538
|
758 };
|
nicholas@2538
|
759
|
nicholas@2538
|
760 this.encode = function (root) {
|
nicholas@2538
|
761 var AHNode = root.createElement("page");
|
nicholas@2224
|
762 // First decode the attributes
|
nicholas@2852
|
763 var attributes = this.schema.querySelectorAll('attribute');
|
nicholas@2684
|
764 var i;
|
nicholas@2684
|
765 for (i = 0; i < attributes.length; i++) {
|
nicholas@2224
|
766 var name = attributes[i].getAttribute("name");
|
nicholas@2688
|
767 if (name === null) {
|
nicholas@2224
|
768 name = attributes[i].getAttribute("ref");
|
nicholas@2224
|
769 }
|
nicholas@2685
|
770 if (this[name] !== undefined || attributes[i].getAttribute("use") == "required") {
|
nicholas@2685
|
771 AHNode.setAttribute(name, this[name]);
|
nicholas@2224
|
772 }
|
nicholas@2224
|
773 }
|
nicholas@2224
|
774 // <commentboxprefix>
|
nicholas@2224
|
775 var commentboxprefix = root.createElement("commentboxprefix");
|
nicholas@2224
|
776 commentboxprefix.textContent = this.commentBoxPrefix;
|
nicholas@2224
|
777 AHNode.appendChild(commentboxprefix);
|
nicholas@2538
|
778
|
nicholas@2684
|
779 for (i = 0; i < this.interfaces.length; i++) {
|
nicholas@2538
|
780 AHNode.appendChild(this.interfaces[i].encode(root));
|
nicholas@2538
|
781 }
|
nicholas@2538
|
782
|
nicholas@2684
|
783 for (i = 0; i < this.audioElements.length; i++) {
|
nicholas@2538
|
784 AHNode.appendChild(this.audioElements[i].encode(root));
|
nicholas@2538
|
785 }
|
nicholas@2538
|
786 // Create <CommentQuestion>
|
nicholas@3036
|
787 if (this.commentQuestions.length > 0) {
|
nicholas@3036
|
788 var node = root.createElement("commentquestions");
|
nicholas@3036
|
789 for (i = 0; i < this.commentQuestions.length; i++) {
|
nicholas@3036
|
790 node.appendChild(this.commentQuestions[i].encode(root));
|
nicholas@3036
|
791 }
|
nicholas@3036
|
792 AHNode.appendChild(node);
|
nicholas@2538
|
793 }
|
nicholas@2538
|
794
|
nicholas@2538
|
795 AHNode.appendChild(this.preTest.encode(root));
|
nicholas@2224
|
796 AHNode.appendChild(this.postTest.encode(root));
|
nicholas@2538
|
797 return AHNode;
|
nicholas@2538
|
798 };
|
nicholas@2538
|
799
|
nicholas@2854
|
800 function commentQuestionNode(specification) {
|
nicholas@2688
|
801 this.id = undefined;
|
nicholas@2224
|
802 this.name = undefined;
|
nicholas@2538
|
803 this.type = undefined;
|
nicholas@2538
|
804 this.statement = undefined;
|
nicholas@3034
|
805 this.mandatory = undefined;
|
nicholas@2852
|
806 this.schema = schemaRoot.querySelector('[name=commentquestion]');
|
nicholas@2538
|
807 this.decode = function (parent, xml) {
|
nicholas@2538
|
808 this.id = xml.id;
|
nicholas@2224
|
809 this.name = xml.getAttribute('name');
|
nicholas@3034
|
810 this.mandatory = xml.getAttribute("mandatory") == "true";
|
nicholas@2688
|
811 if (this.name === null) {
|
nicholas@2688
|
812 this.name = undefined;
|
nicholas@2688
|
813 }
|
n@2579
|
814 switch (xml.nodeName) {
|
n@2579
|
815 case "commentradio":
|
n@2579
|
816 this.type = "radio";
|
n@2579
|
817 this.options = [];
|
n@2579
|
818 break;
|
n@2579
|
819 case "commentcheckbox":
|
n@2579
|
820 this.type = "checkbox";
|
n@2579
|
821 this.options = [];
|
n@2579
|
822 break;
|
n@2579
|
823 case "commentslider":
|
n@2579
|
824 this.type = "slider";
|
n@2579
|
825 this.min = undefined;
|
n@2579
|
826 this.max = undefined;
|
n@2579
|
827 this.step = undefined;
|
n@2579
|
828 break;
|
n@2579
|
829 case "commentquestion":
|
n@2579
|
830 this.type = "question";
|
n@2579
|
831 break;
|
nicholas@2686
|
832 default:
|
nicholas@2686
|
833 throw ("Unknown comment type " + xml.nodeName);
|
n@2579
|
834 }
|
nicholas@2538
|
835 this.statement = xml.getElementsByTagName('statement')[0].textContent;
|
n@2579
|
836 if (this.type == "radio" || this.type == "checkbox") {
|
n@2579
|
837 var optNodes = xml.getElementsByTagName('option');
|
n@2579
|
838 for (var i = 0; i < optNodes.length; i++) {
|
n@2579
|
839 var optNode = optNodes[i];
|
n@2579
|
840 this.options.push({
|
n@2579
|
841 name: optNode.getAttribute('name'),
|
n@2579
|
842 text: optNode.textContent
|
n@2579
|
843 });
|
n@2579
|
844 }
|
n@2579
|
845 }
|
n@2579
|
846 if (this.type == "slider") {
|
n@2579
|
847 this.min = Number(xml.getAttribute("min"));
|
n@2579
|
848 this.max = Number(xml.getAttribute("max"));
|
n@2579
|
849 this.step = Number(xml.getAttribute("step"));
|
nicholas@2684
|
850 if (this.step === undefined) {
|
n@2579
|
851 this.step = 1;
|
n@2579
|
852 }
|
n@2579
|
853 this.value = Number(xml.getAttribute("value"));
|
nicholas@2684
|
854 if (this.value === undefined) {
|
nicholas@2684
|
855 this.value = this.min;
|
n@2579
|
856 }
|
n@2580
|
857 this.leftText = xml.getElementsByTagName("minText");
|
n@2580
|
858 if (this.leftText && this.leftText.length > 0) {
|
n@2580
|
859 this.leftText = this.leftText[0].textContent;
|
n@2580
|
860 } else {
|
n@2580
|
861 this.leftText = "";
|
n@2580
|
862 }
|
n@2580
|
863 this.rightText = xml.getElementsByTagName("maxText");
|
n@2580
|
864 if (this.rightText && this.rightText.length > 0) {
|
n@2580
|
865 this.rightText = this.rightText[0].textContent;
|
n@2580
|
866 } else {
|
n@2580
|
867 this.rightText = "";
|
n@2580
|
868 }
|
nicholas@2538
|
869 }
|
nicholas@2538
|
870 };
|
nicholas@2538
|
871
|
nicholas@2538
|
872 this.encode = function (root) {
|
n@2579
|
873 var node;
|
n@2579
|
874 switch (this.type) {
|
n@2579
|
875 case "radio":
|
n@2579
|
876 node = root.createElement("commentradio");
|
n@2579
|
877 break;
|
n@2579
|
878 case "checkbox":
|
n@2579
|
879 node = root.createElement("commentcheckbox");
|
n@2579
|
880 break;
|
n@2579
|
881 case "slider":
|
n@2579
|
882 node = root.createElement("commentslider");
|
n@2579
|
883 break;
|
n@2579
|
884 case "question":
|
n@2579
|
885 node = root.createElement("commentquestion");
|
n@2579
|
886 break;
|
nicholas@2686
|
887 default:
|
nicholas@2686
|
888 throw ("Unknown type " + this.type);
|
n@2579
|
889 }
|
nicholas@2224
|
890 node.id = this.id;
|
nicholas@3036
|
891 node.setAttribute("mandatory", this.mandatory);
|
nicholas@2538
|
892 node.setAttribute("type", this.type);
|
nicholas@2684
|
893 if (this.name !== undefined) {
|
nicholas@2538
|
894 node.setAttribute("name", this.name);
|
nicholas@2538
|
895 }
|
nicholas@2224
|
896 var statement = root.createElement("statement");
|
nicholas@2224
|
897 statement.textContent = this.statement;
|
nicholas@2224
|
898 node.appendChild(statement);
|
n@2579
|
899 if (this.type == "radio" || this.type == "checkbox") {
|
nicholas@2684
|
900 this.options.forEach(function (option) {
|
n@2579
|
901 var child = root.createElement("option");
|
n@2579
|
902 child.setAttribute("name", option.name);
|
n@2579
|
903 child.textContent = option.text;
|
n@2579
|
904 node.appendChild(child);
|
nicholas@2684
|
905 });
|
n@2579
|
906 }
|
n@2579
|
907 if (this.type == "slider") {
|
n@2579
|
908 node.setAttribute("min", this.min);
|
n@2579
|
909 node.setAttribute("max", this.max);
|
n@2579
|
910 if (this.step !== 1) {
|
n@2579
|
911 node.setAttribute("step", this.step);
|
n@2579
|
912 }
|
n@2579
|
913 if (this.value !== this.min) {
|
n@2579
|
914 node.setAttribute("value", this.value);
|
n@2579
|
915 }
|
n@2580
|
916 if (this.leftText.length > 0) {
|
n@2580
|
917 var leftText = root.createElement("minText");
|
n@2580
|
918 leftText.textContent = this.leftText;
|
n@2580
|
919 node.appendChild(leftText);
|
n@2580
|
920 }
|
n@2580
|
921 if (this.rightText.length > 0) {
|
n@2580
|
922 var rightText = root.createElement("maxText");
|
n@2580
|
923 rightText.textContent = this.rightText;
|
n@2580
|
924 node.appendChild(rightText);
|
n@2580
|
925 }
|
nicholas@2224
|
926 }
|
nicholas@2224
|
927 return node;
|
nicholas@2538
|
928 };
|
nicholas@2859
|
929 }
|
nicholas@2538
|
930
|
nicholas@2854
|
931 function audioElementNode(specification) {
|
nicholas@2688
|
932 this.url = undefined;
|
nicholas@2688
|
933 this.id = undefined;
|
nicholas@2688
|
934 this.name = undefined;
|
nicholas@2688
|
935 this.parent = undefined;
|
nicholas@2688
|
936 this.type = undefined;
|
nicholas@2688
|
937 this.marker = undefined;
|
nicholas@2538
|
938 this.enforce = false;
|
nicholas@2538
|
939 this.gain = 0.0;
|
nicholas@2688
|
940 this.label = undefined;
|
nicholas@2460
|
941 this.startTime = undefined;
|
nicholas@2460
|
942 this.stopTime = undefined;
|
nicholas@2614
|
943 this.sampleRate = undefined;
|
nicholas@2777
|
944 this.image = undefined;
|
nicholas@2822
|
945 this.minNumberPlays = undefined;
|
nicholas@2822
|
946 this.maxNumberPlays = undefined;
|
nicholas@2614
|
947 this.alternatives = [];
|
nicholas@2852
|
948 this.schema = schemaRoot.querySelector('[name=audioelement]');
|
nicholas@2688
|
949 this.parent = undefined;
|
nicholas@2538
|
950 this.decode = function (parent, xml) {
|
nicholas@2538
|
951 this.parent = parent;
|
nicholas@2852
|
952 var attributeMap = this.schema.querySelectorAll('attribute');
|
nicholas@2538
|
953 for (var i = 0; i < attributeMap.length; i++) {
|
nicholas@2538
|
954 var attributeName = attributeMap[i].getAttribute('name') || attributeMap[i].getAttribute('ref');
|
nicholas@2538
|
955 var projectAttr = xml.getAttribute(attributeName);
|
nicholas@2692
|
956 projectAttr = processAttribute(projectAttr, attributeMap[i]);
|
nicholas@2687
|
957 if (projectAttr !== null) {
|
nicholas@2687
|
958 this[attributeName] = projectAttr;
|
nicholas@2538
|
959 }
|
nicholas@2538
|
960 }
|
nicholas@2614
|
961 // Get the alternative nodes
|
nicholas@2614
|
962 var child = xml.firstElementChild;
|
nicholas@2614
|
963 while (child) {
|
nicholas@2614
|
964 if (child.nodeName == "alternative") {
|
nicholas@2614
|
965 this.alternatives.push({
|
nicholas@2614
|
966 'url': child.getAttribute("url"),
|
nicholas@2614
|
967 'sampleRate': child.getAttribute("sampleRate")
|
nicholas@2614
|
968 });
|
nicholas@2614
|
969 }
|
nicholas@2614
|
970 child = child.nextElementSibling;
|
nicholas@2614
|
971 }
|
nicholas@2538
|
972
|
nicholas@2538
|
973 };
|
nicholas@2538
|
974 this.encode = function (root) {
|
nicholas@2538
|
975 var AENode = root.createElement("audioelement");
|
nicholas@2852
|
976 var attributes = this.schema.querySelectorAll('attribute');
|
nicholas@2538
|
977 for (var i = 0; i < attributes.length; i++) {
|
nicholas@2224
|
978 var name = attributes[i].getAttribute("name");
|
nicholas@2688
|
979 if (name === null) {
|
nicholas@2224
|
980 name = attributes[i].getAttribute("ref");
|
nicholas@2224
|
981 }
|
nicholas@2685
|
982 if (this[name] !== undefined || attributes[i].getAttribute("use") == "required") {
|
nicholas@2685
|
983 AENode.setAttribute(name, this[name]);
|
nicholas@2224
|
984 }
|
nicholas@2224
|
985 }
|
nicholas@2614
|
986 this.alternatives.forEach(function (alt) {
|
nicholas@2614
|
987 var node = root.createElement("alternative");
|
nicholas@2614
|
988 node.setAttribute("url", alt.url);
|
nicholas@2614
|
989 node.setAttribute("sampleRate", alt.sampleRate);
|
nicholas@2614
|
990 AENode.appendChild(node);
|
nicholas@2614
|
991 });
|
nicholas@2538
|
992 return AENode;
|
nicholas@2538
|
993 };
|
nicholas@2859
|
994 }
|
nicholas@2859
|
995 }
|
b@2437
|
996 }
|