summaryrefslogtreecommitdiffstats
path: root/test/uscxml/templates/xhtml-invoker.html
blob: 77732312d1351852ed60a2d7158d3e6012a876e9 (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
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
		<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
		<script type="text/javascript">
			// see http://stackoverflow.com/questions/1206937/javascript-domready
			var domLoaded = function(callback) {
				/* Internet Explorer */
				/*@cc_on
				@if (@_win32 || @_win64)					
					document.write('<script id="ieScriptLoad" defer src="//:"><\/script>');
					document.getElementById('ieScriptLoad').onreadystatechange = function() {
						if (this.readyState == 'complete') {
							var head= document.getElementsByTagName('head')[0];
							var script= document.createElement('script');
							script.type= 'text/javascript';
							script.src= 'http://wicked-good-xpath.googlecode.com/files/wgxpath.install.js';
							head.appendChild(script);
							wgxpath.install();
							
							// see http://stackoverflow.com/questions/1811116/ie-support-for-dom-importnode
							document.importNode = function(node, allChildren) {
							  switch (node.nodeType) {
							    case document.ELEMENT_NODE:
							      var newNode = document.createElementNS(node.namespaceURI, node.nodeName);
							      if(node.attributes && node.attributes.length > 0)
							        for(var i = 0, il = node.attributes.length; i < il; i++)
							          newNode.setAttribute(node.attributes[i].nodeName, node.getAttribute(node.attributes[i].nodeName));
							      if(allChildren && node.childNodes && node.childNodes.length > 0)
							        for(var i = 0, il = node.childNodes.length; i < il; i++)
							          newNode.appendChild(document.importNode(node.childNodes[i], allChildren));
							      return newNode;
							      break;
							    case document.TEXT_NODE:
							    case document.CDATA_SECTION_NODE:
							    case document.COMMENT_NODE:
							      return document.createTextNode(node.nodeValue);
							      break;
							  }
							}
							
							callback();
						}
					};
				@end @*/
				/* Mozilla, Chrome, Opera */
				if (document.addEventListener) {
					document.addEventListener('DOMContentLoaded', callback, false);
					return;
				}
				/* Safari, iCab, Konqueror */
				if (/KHTML|WebKit|iCab/i.test(navigator.userAgent)) {
					var DOMLoadTimer = setInterval(function () {
						if (/loaded|complete/i.test(document.readyState)) {
							callback();
							clearInterval(DOMLoadTimer);
						}
					}, 10);
					return;
				}
				/* Other web browsers */
				window.onload = callback;
			};
		
		</script>
		<script type="text/javascript">
			
			function CometSession(options) {
				/**
				 * Support for two-channel asynchronous http communication
				 */
				for (var key in options) {
				  if (options.hasOwnProperty(key)) {
				    this[key] = options[key];
				  }
				}
				var self = this;
				
				this.xhr       = (window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("MSXML2.XMLHTTP.3.0"));
				this.cometPoll = (window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("MSXML2.XMLHTTP.3.0"));
				
				this.createUUID = function() {
					// http://www.ietf.org/rfc/rfc4122.txt
					var s = [];
					var hexDigits = "0123456789abcdef";
					for (var i = 0; i < 36; i++) {
						s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1);
					}
					s[14] = "4";  // bits 12-15 of the time_hi_and_version field to 0010
					s[19] = hexDigits.substr((s[19] & 0x3) | 0x8, 1);  // bits 6-7 of the clock_seq_hi_and_reserved to 01
					s[8] = s[13] = s[18] = s[23] = "-";
					var uuid = s.join("");
					return uuid;
				}
				
				this.longpoll = function() {
					self.cometPoll.onreadystatechange = function() {
						if (self.cometPoll.readyState === 4) {
							if (self.cometPoll.status !== 200) {
								self.longpoll();
								return;
							}
							self.onRcvd(self.cometPoll);
							self.longpoll();
						}
					};
					// use token until we have a context
					self.cometPoll.open("GET", self.server + (self.query ? "?" + self.query : ""));
					self.cometPoll.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
					self.cometPoll.setRequestHeader("Connection", "close");
					self.cometPoll.send(null);
				};
				
				this.post = function(name, data) {
					self.xhr.open("POST", self.server + (self.query ? "?" + self.query : ""));
					self.xhr.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
					self.xhr.setRequestHeader('X-SCXML-Name', name);
					self.xhr.send(data);
				}
				
				// serialize an object to be send
				this.send = function(name, thing) {
					var data;
					// see also: https://raw.github.com/douglascrockford/JSON-js/master/cycle.js
					// dispatch over thingy type here
					if (typeof thing === "object") {
						var seen = [];
						// will not work on opera as thing is checked for cycles first
						data = JSON.stringify(thing, function(key, val) {
							if (isNode(val)) {
								// return a selection of attributes
								return {
									id: val.id,
									tagName: val.tagName,
									localName: val.localName
								};
							}
							if (isWindow(val)) {
								return;
							}
							if (typeof val === "object") {
								if (seen.indexOf(val) >= 0)
									return;
								seen.push(val)
							}
							return val
						});
					} else {
						data = thing;
					}
					this.post(name, data);
				}
				
				// helper function to determine whether something is a html node
				var isNode = function(o){
				  return (
				    typeof Node === "object" ? o instanceof Node : 
				    o && typeof o === "object" && typeof o.nodeType === "number" && typeof o.nodeName==="string"
				  );
				}

				// helper function to determine whether something is a window
				var isWindow = function(o){
				  return (
				    typeof Window === "object" ? o instanceof Window : 
				    o && typeof o === "object" && typeof o.menubar === "object"
				  );
				}
				
			}
		
		</script>
		
		<script type="text/javascript">
			domLoaded(function () {
				scxml = new CometSession({
					element: document.getElementById("${scxml.invokeId}"),
					server: "${scxml.server}",
					onRcvd : function(data) {
						if (data.responseXML) {
							var type = data.getResponseHeader("X-SCXML-Type") || "replacechildren";
							var domTarget = data.getResponseHeader("X-SCXML-XPath") || "/html/body";
							var domAttr = data.getResponseHeader("X-SCXML-Attr");
							var result = document.evaluate(domTarget, document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);

							for (var i = 0, l = result.snapshotLength; i < l; i++) {
								var item = result.snapshotItem(i);
								var node = document.importNode(data.responseXML.firstChild, true);
								switch (type) {
									case "firstchild":
										item.insertBefore(node, item.firstChild);
									break;
									case "lastchild":
										item.appendChild(node);
									break;
									case "previoussibling":
										item.parentNode.insertBefore(node, item);
									break;
									case "nextsibling":
										item.parentNode.insertBefore(node, item.nextSibling);
									break;
									case "replace":
										item.parentNode.replaceChild(node, item);
									break;
									case "delete":
										item.parentNode.removeChild(item);
									break;
									case "addattribute":
										item.setAttribute(domAttr, node);
									break;
									case "replacechildren":
										while(item.hasChildNodes()) {
											item.removeChild(item.firstChild);
										}
										item.appendChild(node);
									default:
									break;
								}
							}
						}
					}
				});
				scxml.longpoll();
			});
		</script>

	</head>
	<body></body>
</html>