mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-13 00:44:25 +00:00
c66ae7b2e4
Launch an Xspice and run: echo -ne "\033]844;127.0.0.1;9876\007" This will launch a SPiCE client connecting to 127.0.0.1:9876. Still need to add all the security stuff and generally be more defensive in the implementation.
117 lines
4.3 KiB
JavaScript
117 lines
4.3 KiB
JavaScript
/*
|
|
eyeOS Spice Web Client
|
|
Copyright (c) 2015 eyeOS S.L.
|
|
|
|
Contact Jose Carlos Norte (jose@eyeos.com) for more information about this software.
|
|
|
|
This program is free software; you can redistribute it and/or modify it under
|
|
the terms of the GNU Affero General Public License version 3 as published by the
|
|
Free Software Foundation.
|
|
|
|
This program 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 Affero General Public License for more
|
|
details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
version 3 along with this program in the file "LICENSE". If not, see
|
|
<http://www.gnu.org/licenses/agpl-3.0.txt>.
|
|
|
|
See www.eyeos.org for more details. All requests should be sent to licensing@eyeos.org
|
|
|
|
The interactive user interfaces in modified source and object code versions
|
|
of this program must display Appropriate Legal Notices, as required under
|
|
Section 5 of the GNU Affero General Public License version 3.
|
|
|
|
In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
|
these Appropriate Legal Notices must retain the display of the "Powered by
|
|
eyeos" logo and retain the original copyright notice. If the display of the
|
|
logo is not reasonably feasible for technical reasons, the Appropriate Legal Notices
|
|
must display the words "Powered by eyeos" and retain the original copyright notice.
|
|
*/
|
|
|
|
/*
|
|
* Check if a packet should be intercepted in packetpreprocess to be executed
|
|
* in parallel.
|
|
*/
|
|
|
|
wdi.PacketWorkerIdentifier = $.spcExtend(wdi.EventObject.prototype, {
|
|
init: function(c) {
|
|
//default empty constructor
|
|
},
|
|
|
|
shouldUseWorker: function(message) {
|
|
switch (message.messageType) {
|
|
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_COPY:
|
|
return wdi.PacketWorkerIdentifier.processingType.DECOMPRESS;
|
|
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_FILL:
|
|
var brush = message.args.brush;
|
|
if(brush.type === wdi.SpiceBrushType.SPICE_BRUSH_TYPE_PATTERN) {
|
|
return wdi.PacketWorkerIdentifier.processingType.DECOMPRESS;
|
|
}
|
|
break;
|
|
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_ALPHA_BLEND:
|
|
return wdi.PacketWorkerIdentifier.processingType.DECOMPRESS;
|
|
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_BLEND:
|
|
return wdi.PacketWorkerIdentifier.processingType.DECOMPRESS;
|
|
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_TRANSPARENT:
|
|
return wdi.PacketWorkerIdentifier.processingType.DECOMPRESS;
|
|
//case wdi.SpiceVars.SPICE_MSG_DISPLAY_STREAM_DATA:
|
|
// return wdi.PacketWorkerIdentifier.processingType.PROCESSVIDEO;
|
|
}
|
|
|
|
return 0;
|
|
},
|
|
|
|
getImageProperties: function(message) {
|
|
var props = {
|
|
data: null,
|
|
descriptor: null,
|
|
opaque: true,
|
|
brush: null
|
|
};
|
|
|
|
//coupling here, to be cleaned when doing real code
|
|
switch (message.messageType) {
|
|
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_COPY:
|
|
props.descriptor = message.args.image.imageDescriptor;
|
|
props.data = message.args.image.data;
|
|
break;
|
|
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_FILL:
|
|
props.brush = message.args.brush;
|
|
if(props.brush.type === wdi.SpiceBrushType.SPICE_BRUSH_TYPE_PATTERN) {
|
|
props.descriptor = props.brush.pattern.image;
|
|
props.data = props.brush.pattern.imageData;
|
|
} else {
|
|
return false;
|
|
}
|
|
break;
|
|
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_ALPHA_BLEND:
|
|
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_BLEND:
|
|
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_TRANSPARENT:
|
|
props.data = message.args.image.data;
|
|
props.descriptor = message.args.image.imageDescriptor;
|
|
props.opaque = false;
|
|
break;
|
|
default:
|
|
wdi.Debug.log("PacketWorkerIdentifier: Unknown Packet in getImageProperties");
|
|
return false;
|
|
}
|
|
|
|
return props;
|
|
},
|
|
|
|
getVideoData: function(message) {
|
|
if(message.messageType !== wdi.SpiceVars.SPICE_MSG_DISPLAY_STREAM_DATA) {
|
|
wdi.Debug.log('PacketWOrkerIdentifier: Invalid packet in getVideoData');
|
|
return false;
|
|
}
|
|
|
|
return message.args.data;
|
|
}
|
|
});
|
|
|
|
wdi.PacketWorkerIdentifier.processingType = {};
|
|
wdi.PacketWorkerIdentifier.processingType.DECOMPRESS = 1;
|
|
wdi.PacketWorkerIdentifier.processingType.PROCESSVIDEO = 2;
|