gotty/js/spice-web-client/application/packetfactory.js
Soren L. Hansen c66ae7b2e4 First, primitive stab at SPiCE integration
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.
2021-04-16 06:50:05 -07:00

191 lines
8.9 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.
*/
wdi.PacketFactory = {
extract: function(rawSpiceMessage) {
var packet = null;
switch (rawSpiceMessage.channel) {
case wdi.SpiceVars.SPICE_CHANNEL_DISPLAY:
if (wdi.graphicDebug && wdi.graphicDebug.debugMode) {
var originalData = JSON.stringify(rawSpiceMessage);
}
switch (rawSpiceMessage.header.type) {
case wdi.SpiceVars.SPICE_MSG_DISPLAY_MODE:
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_MARK:
packet = new wdi.SpiceDisplayMark().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_RESET:
packet = new wdi.SpiceDisplayReset().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_COPY_BITS:
packet = new wdi.SpiceCopyBits().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_INVAL_LIST:
packet = new wdi.SpiceResourceList().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_INVAL_ALL_PIXMAPS:
//TODO: remove all pixmaps
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_INVAL_PALETTE:
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_INVAL_ALL_PALETTES:
packet = new wdi.SpiceDisplayInvalidAllPalettes().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_STREAM_CREATE:
packet = new wdi.SpiceStreamCreate().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_STREAM_DATA:
packet = new wdi.SpiceStreamData().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_STREAM_CLIP:
packet = new wdi.SpiceStreamClip().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_STREAM_DESTROY:
packet = new wdi.SpiceStreamDestroy().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_STREAM_DESTROY_ALL:
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_FILL:
packet = new wdi.SpiceDrawFill().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_OPAQUE:
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_COPY:
// Spice Draw Copy is composed by DisplayBase (surface_id 32, SpiceRect(top 32, left 32, bottom 32, right 32), SpiceClip(type 8 if 1: SpiceClipRects(num_rects 32, vector: SpiceRect(top 32, left 32, bottom 32, right 32)))) and SpiceCopy (offset 32 if not 0: SpiceImage(SpiceImageDescriptor(id 32, type 8, flags 8, width 32, height 32), case descriptor type to parse image), SpiceRect(top 32, left 32, bottom 32, right 32), rop_descriptor 16, scale_mode 8, SpiceQMask)
packet = new wdi.SpiceDrawCopy().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_BLEND:
packet = new wdi.drawBlend().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_BLACKNESS:
packet = new wdi.SpiceDrawBlackness().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_WHITENESS:
packet = new wdi.SpiceDrawWhiteness().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_INVERS:
packet = new wdi.SpiceDrawInvers().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_ROP3:
packet = new wdi.SpiceDrawRop3().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_STROKE:
packet = new wdi.SpiceStroke().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_TEXT:
packet = new wdi.SpiceDrawText().demarshall(rawSpiceMessage.body, rawSpiceMessage.header.size);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_TRANSPARENT:
packet = new wdi.drawTransparent().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_DRAW_ALPHA_BLEND:
packet = new wdi.drawAlphaBlend().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_SURFACE_CREATE:
packet = new wdi.SpiceSurface().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_DISPLAY_SURFACE_DESTROY:
packet = new wdi.SpiceSurfaceDestroy().demarshall(rawSpiceMessage.body);
break;
}
break;
case wdi.SpiceVars.SPICE_CHANNEL_INPUTS:
switch (rawSpiceMessage.header.type) {
case wdi.SpiceVars.SPICE_MSG_INPUTS_MOUSE_MOTION_ACK:
packet = new Object(); //dummy!
break;
}
break;
case wdi.SpiceVars.SPICE_CHANNEL_MAIN:
switch (rawSpiceMessage.header.type) {
case wdi.SpiceVars.SPICE_MSG_MAIN_INIT:
packet = new wdi.RedMainInit().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_MAIN_AGENT_DATA:
packet = new wdi.VDAgentMessage().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_MAIN_AGENT_DISCONNECTED:
packet = new wdi.SpiceMsgMainAgentDisconnected().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_MAIN_AGENT_CONNECTED:
packet = new wdi.SpiceMsgMainAgentConnected().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_MAIN_MULTI_MEDIA_TIME:
packet = new wdi.MainMultiMediaTime().demarshall(rawSpiceMessage.body);
break;
case wdi.SpiceVars.SPICE_MSG_MAIN_CHANNELS_LIST:
packet = new wdi.MainMChannelsList().demarshall(rawSpiceMessage.body);
break;
}
break;
case wdi.SpiceVars.SPICE_CHANNEL_CURSOR:
switch (rawSpiceMessage.header.type) {
case wdi.SpiceVars.SPICE_MSG_CURSOR_INIT:
packet = new wdi.RedCursorInit().demarshall(rawSpiceMessage.body, rawSpiceMessage.header.size);
break;
case wdi.SpiceVars.SPICE_MSG_CURSOR_SET:
packet = new wdi.RedCursorSet().demarshall(rawSpiceMessage.body, rawSpiceMessage.header.size);
break;
}
break;
case wdi.SpiceVars.SPICE_CHANNEL_PLAYBACK:
switch(rawSpiceMessage.header.type) {
case wdi.SpiceVars.SPICE_MSG_PLAYBACK_MODE:
packet = new wdi.PlaybackMode().demarshall(rawSpiceMessage.body, rawSpiceMessage.header.size);
break;
case wdi.SpiceVars.SPICE_MSG_PLAYBACK_START:
packet = new wdi.PlaybackStart().demarshall(rawSpiceMessage.body, rawSpiceMessage.header.size);
break;
case wdi.SpiceVars.SPICE_MSG_PLAYBACK_STOP:
packet = new wdi.PlaybackStop().demarshall(rawSpiceMessage.body, rawSpiceMessage.header.size);
break;
case wdi.SpiceVars.SPICE_MSG_PLAYBACK_DATA:
packet = new wdi.PlaybackData().demarshall(rawSpiceMessage.body, rawSpiceMessage.header.size);
break;
}
}
if(packet) {
if (wdi.graphicDebug && wdi.graphicDebug.debugMode && originalData) {
packet.originalData = originalData;
}
return new wdi.SpiceMessage({
messageType: rawSpiceMessage.header.type,
channel: rawSpiceMessage.channel,
args: packet
});
}
wdi.Debug.log(rawSpiceMessage.header.type, rawSpiceMessage.header.channel);
return false;
}
};