-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathserial_frame.js
135 lines (125 loc) · 3.95 KB
/
serial_frame.js
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
/*
Gordon Williams (gw@pur3.co.uk)
If we're running in an iframe, this gets enabled and allows the IDE
to work by passing messages using window.postMessage.
Use embed.js on the client side to link this in.
*/
(function() {
if (typeof navigator == "undefined" || typeof window == "undefined") {
console.log("serial_frame: Not running in a browser");
return;
}
if (typeof window.parent == undefined ||
window.parent === window) {
console.log("serial_frame: Not running inside an iframe");
return;
}
var ERROR = "No 'init' message received";
function getStatus(ignoreSettings) {
if (ERROR)
return {error:ERROR};
return true;
}
var callbacks = {
connected : undefined,
receive : undefined,
written : undefined,
disconnected : undefined,
ports : undefined
};
window.addEventListener('message', function(e) {
var event = e.data;
//console.log("IDE MESSAGE ---------------------------------------");
//console.log(event);
//console.log("-----------------------------------------------");
if (typeof event!="object" || event.for!="ide") return;
switch (event.type) {
case "initialised": {
ERROR = false;
} break;
case "ports": if (callbacks.ports) {
callbacks.ports(event.data);
callbacks.ports = undefined;
} break;
case "connect":
if (Espruino.Core.Serial.isConnected())
console.error("serial_frame: already connected");
Espruino.Core.MenuPortSelector.connectToPort(event.data, function() {
console.log("serial_frame: connected");
});
break;
case "connected": if (callbacks.connected) {
callbacks.connected({ok:true});
callbacks.connected = undefined;
} break;
case "disconnected": if (callbacks.disconnected) {
callbacks.disconnected();
callbacks.disconnected = undefined;
} break;
case "written": if (callbacks.written) {
callbacks.written();
callbacks.written = undefined;
} break;
case "receive": if (callbacks.receive) {
if (typeof event.data!="string")
console.error("serial_frame: receive event expecting data string");
callbacks.receive(Espruino.Core.Utils.stringToArrayBuffer(event.data));
} break;
case "setMaxWriteLength": {
// Set the maximum amount of data we're allowed to write in one go
device.maxWriteLength = parseInt(event.data);
} break;
default:
console.error("Unknown event type ",event.type);
break;
}
});
function post(msg) {
msg.from="ide";
window.parent.postMessage(msg,"*");
}
var device = {
"name" : "Embedded IDE",
"init" : function() {
post({type:"init"});
},
getStatus : getStatus,
"getPorts": function(callback) {
if (ERROR !== false) {
callback([], true/*instantPorts*/);
return;
}
post({type:"getPorts"});
var timeout = setTimeout(function() {
timeout = undefined;
callbacks.ports = undefined;
callback([], false/*instantPorts*/);
ERROR = "getPorts timeout, disabling";
console.error("serial_frame: "+ERROR);
},100);
callbacks.ports = function(d) {
if (!timeout) {
console.error("serial_frame: ports received after timeout");
return;
}
clearTimeout(timeout);
timeout = undefined;
callback(d, false/*instantPorts*/);
};
},
"open": function(path, openCallback, receiveCallback, disconnectCallback) {
callbacks.connected = openCallback;
callbacks.receive = receiveCallback;
callbacks.disconnected = disconnectCallback;
post({type:"connect",data:path});
},
"write": function(d, callback) {
callbacks.written = callback;
post({type:"write",data:d});
},
"close": function() {
post({type:"disconnect"});
},
};
Espruino.Core.Serial.devices.push(device);
})();