2015-03-11 14:17:42 +00:00
|
|
|
"use strict";
|
|
|
|
/*
|
|
|
|
Copyright (C) 2012 by Jeremy P. White <jwhite@codeweavers.com>
|
|
|
|
|
|
|
|
This file is part of spice-html5.
|
|
|
|
|
|
|
|
spice-html5 is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
spice-html5 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 Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with spice-html5. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
import * as Messages from './spicemsg.js';
|
|
|
|
import { Constants } from './enums.js';
|
|
|
|
import { SpiceCursorConn } from './cursor.js';
|
|
|
|
import { SpiceConn } from './spiceconn.js';
|
|
|
|
import { DEBUG } from './utils.js';
|
|
|
|
import { SpiceFileXferTask } from './filexfer.js';
|
|
|
|
import { SpiceInputsConn, sendCtrlAltDel } from './inputs.js';
|
|
|
|
import { SpiceDisplayConn } from './display.js';
|
|
|
|
import { SpicePlaybackConn } from './playback.js';
|
|
|
|
import { SpicePortConn } from './port.js';
|
|
|
|
import { handle_file_dragover, handle_file_drop } from './filexfer.js';
|
|
|
|
import { resize_helper, handle_resize } from './resize.js';
|
|
|
|
|
2015-03-11 14:17:42 +00:00
|
|
|
/*----------------------------------------------------------------------------
|
|
|
|
** SpiceMainConn
|
|
|
|
** This is the master Javascript class for establishing and
|
|
|
|
** managing a connection to a Spice Server.
|
2018-08-08 11:00:35 +00:00
|
|
|
**
|
2015-03-11 14:17:42 +00:00
|
|
|
** Invocation: You must pass an object with properties as follows:
|
|
|
|
** uri (required) Uri of a WebSocket listener that is
|
|
|
|
** connected to a spice server.
|
|
|
|
** password (required) Password to send to the spice server
|
|
|
|
** message_id (optional) Identifier of an element in the DOM
|
|
|
|
** where SpiceConn will write messages.
|
|
|
|
** It will use classes spice-messages-x,
|
|
|
|
** where x is one of info, warning, or error.
|
|
|
|
** screen_id (optional) Identifier of an element in the DOM
|
|
|
|
** where SpiceConn will create any new
|
|
|
|
** client screens. This is the main UI.
|
|
|
|
** dump_id (optional) If given, an element to use for
|
|
|
|
** dumping every single image + canvas drawn.
|
|
|
|
** Sometimes useful for debugging.
|
|
|
|
** onerror (optional) If given, a function to receive async
|
|
|
|
** errors. Note that you should also catch
|
|
|
|
** errors for ones that occur inline
|
|
|
|
** onagent (optional) If given, a function to be called when
|
|
|
|
** a VD agent is connected; a good opportunity
|
|
|
|
** to request a resize
|
2020-01-23 12:49:43 +00:00
|
|
|
** onsuccess (optional) If given, a function to be called when the
|
|
|
|
** session is successfully connected
|
2015-03-11 14:17:42 +00:00
|
|
|
**
|
|
|
|
** Throws error if there are troubles. Requires a modern (by 2012 standards)
|
|
|
|
** browser, including WebSocket and WebSocket.binaryType == arraybuffer
|
|
|
|
**
|
|
|
|
**--------------------------------------------------------------------------*/
|
|
|
|
function SpiceMainConn()
|
|
|
|
{
|
|
|
|
if (typeof WebSocket === "undefined")
|
|
|
|
throw new Error("WebSocket unavailable. You need to use a different browser.");
|
|
|
|
|
|
|
|
SpiceConn.apply(this, arguments);
|
|
|
|
|
|
|
|
this.agent_msg_queue = [];
|
|
|
|
this.file_xfer_tasks = {};
|
|
|
|
this.file_xfer_task_id = 0;
|
|
|
|
this.file_xfer_read_queue = [];
|
2018-08-08 11:00:35 +00:00
|
|
|
this.ports = [];
|
2015-03-11 14:17:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SpiceMainConn.prototype = Object.create(SpiceConn.prototype);
|
|
|
|
SpiceMainConn.prototype.process_channel_message = function(msg)
|
|
|
|
{
|
2020-01-23 12:49:43 +00:00
|
|
|
if (msg.type == Constants.SPICE_MSG_MAIN_MIGRATE_BEGIN)
|
2018-08-08 11:00:35 +00:00
|
|
|
{
|
|
|
|
this.known_unimplemented(msg.type, "Main Migrate Begin");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
if (msg.type == Constants.SPICE_MSG_MAIN_MIGRATE_CANCEL)
|
2018-08-08 11:00:35 +00:00
|
|
|
{
|
|
|
|
this.known_unimplemented(msg.type, "Main Migrate Cancel");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
if (msg.type == Constants.SPICE_MSG_MAIN_INIT)
|
2015-03-11 14:17:42 +00:00
|
|
|
{
|
|
|
|
this.log_info("Connected to " + this.ws.url);
|
|
|
|
this.report_success("Connected")
|
2020-01-23 12:49:43 +00:00
|
|
|
this.main_init = new Messages.SpiceMsgMainInit(msg.data);
|
2015-03-11 14:17:42 +00:00
|
|
|
this.connection_id = this.main_init.session_id;
|
|
|
|
this.agent_tokens = this.main_init.agent_tokens;
|
|
|
|
|
|
|
|
if (DEBUG > 0)
|
|
|
|
{
|
|
|
|
// FIXME - there is a lot here we don't handle; mouse modes, agent,
|
|
|
|
// ram_hint, multi_media_time
|
|
|
|
this.log_info("session id " + this.main_init.session_id +
|
|
|
|
" ; display_channels_hint " + this.main_init.display_channels_hint +
|
|
|
|
" ; supported_mouse_modes " + this.main_init.supported_mouse_modes +
|
|
|
|
" ; current_mouse_mode " + this.main_init.current_mouse_mode +
|
|
|
|
" ; agent_connected " + this.main_init.agent_connected +
|
|
|
|
" ; agent_tokens " + this.main_init.agent_tokens +
|
|
|
|
" ; multi_media_time " + this.main_init.multi_media_time +
|
|
|
|
" ; ram_hint " + this.main_init.ram_hint);
|
|
|
|
}
|
|
|
|
|
2018-08-08 11:00:35 +00:00
|
|
|
this.our_mm_time = Date.now();
|
|
|
|
this.mm_time = this.main_init.multi_media_time;
|
|
|
|
|
2015-03-11 14:17:42 +00:00
|
|
|
this.handle_mouse_mode(this.main_init.current_mouse_mode,
|
|
|
|
this.main_init.supported_mouse_modes);
|
|
|
|
|
|
|
|
if (this.main_init.agent_connected)
|
|
|
|
this.connect_agent();
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
var attach = new Messages.SpiceMiniData;
|
|
|
|
attach.type = Constants.SPICE_MSGC_MAIN_ATTACH_CHANNELS;
|
2015-03-11 14:17:42 +00:00
|
|
|
attach.size = attach.buffer_size();
|
|
|
|
this.send_msg(attach);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
if (msg.type == Constants.SPICE_MSG_MAIN_MOUSE_MODE)
|
2015-03-11 14:17:42 +00:00
|
|
|
{
|
2020-01-23 12:49:43 +00:00
|
|
|
var mode = new Messages.SpiceMsgMainMouseMode(msg.data);
|
2015-03-11 14:17:42 +00:00
|
|
|
DEBUG > 0 && this.log_info("Mouse supported modes " + mode.supported_modes + "; current " + mode.current_mode);
|
|
|
|
this.handle_mouse_mode(mode.current_mode, mode.supported_modes);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
if (msg.type == Constants.SPICE_MSG_MAIN_MULTI_MEDIA_TIME)
|
2018-08-08 11:00:35 +00:00
|
|
|
{
|
|
|
|
this.known_unimplemented(msg.type, "Main Multi Media Time");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
if (msg.type == Constants.SPICE_MSG_MAIN_CHANNELS_LIST)
|
2015-03-11 14:17:42 +00:00
|
|
|
{
|
|
|
|
var i;
|
|
|
|
var chans;
|
|
|
|
DEBUG > 0 && console.log("channels");
|
2020-01-23 12:49:43 +00:00
|
|
|
chans = new Messages.SpiceMsgChannels(msg.data);
|
2015-03-11 14:17:42 +00:00
|
|
|
for (i = 0; i < chans.channels.length; i++)
|
|
|
|
{
|
|
|
|
var conn = {
|
|
|
|
uri: this.ws.url,
|
|
|
|
parent: this,
|
|
|
|
connection_id : this.connection_id,
|
|
|
|
type : chans.channels[i].type,
|
|
|
|
chan_id : chans.channels[i].id
|
|
|
|
};
|
2020-01-23 12:49:43 +00:00
|
|
|
if (chans.channels[i].type == Constants.SPICE_CHANNEL_DISPLAY)
|
2018-08-08 11:00:35 +00:00
|
|
|
{
|
2020-01-23 12:49:43 +00:00
|
|
|
if (chans.channels[i].id == 0) {
|
2018-08-08 11:00:35 +00:00
|
|
|
this.display = new SpiceDisplayConn(conn);
|
2020-01-23 12:49:43 +00:00
|
|
|
} else {
|
|
|
|
this.log_warn("The spice-html5 client does not handle multiple heads.");
|
|
|
|
}
|
2018-08-08 11:00:35 +00:00
|
|
|
}
|
2020-01-23 12:49:43 +00:00
|
|
|
else if (chans.channels[i].type == Constants.SPICE_CHANNEL_INPUTS)
|
2015-03-11 14:17:42 +00:00
|
|
|
{
|
|
|
|
this.inputs = new SpiceInputsConn(conn);
|
|
|
|
this.inputs.mouse_mode = this.mouse_mode;
|
|
|
|
}
|
2020-01-23 12:49:43 +00:00
|
|
|
else if (chans.channels[i].type == Constants.SPICE_CHANNEL_CURSOR)
|
2015-03-11 14:17:42 +00:00
|
|
|
this.cursor = new SpiceCursorConn(conn);
|
2020-01-23 12:49:43 +00:00
|
|
|
else if (chans.channels[i].type == Constants.SPICE_CHANNEL_PLAYBACK)
|
2015-03-11 14:17:42 +00:00
|
|
|
this.cursor = new SpicePlaybackConn(conn);
|
2020-01-23 12:49:43 +00:00
|
|
|
else if (chans.channels[i].type == Constants.SPICE_CHANNEL_PORT)
|
2018-08-08 11:00:35 +00:00
|
|
|
this.ports.push(new SpicePortConn(conn));
|
2015-03-11 14:17:42 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (! ("extra_channels" in this))
|
|
|
|
this.extra_channels = [];
|
|
|
|
this.extra_channels[i] = new SpiceConn(conn);
|
2018-08-08 11:00:35 +00:00
|
|
|
this.log_err("Channel type " + this.extra_channels[i].channel_type() + " not implemented");
|
2015-03-11 14:17:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
if (msg.type == Constants.SPICE_MSG_MAIN_AGENT_CONNECTED)
|
2015-03-11 14:17:42 +00:00
|
|
|
{
|
|
|
|
this.connect_agent();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
if (msg.type == Constants.SPICE_MSG_MAIN_AGENT_CONNECTED_TOKENS)
|
2015-03-11 14:17:42 +00:00
|
|
|
{
|
2020-01-23 12:49:43 +00:00
|
|
|
var connected_tokens = new Messages.SpiceMsgMainAgentTokens(msg.data);
|
2015-03-11 14:17:42 +00:00
|
|
|
this.agent_tokens = connected_tokens.num_tokens;
|
|
|
|
this.connect_agent();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
if (msg.type == Constants.SPICE_MSG_MAIN_AGENT_TOKEN)
|
2015-03-11 14:17:42 +00:00
|
|
|
{
|
2020-01-23 12:49:43 +00:00
|
|
|
var remaining_tokens, tokens = new Messages.SpiceMsgMainAgentTokens(msg.data);
|
2015-03-11 14:17:42 +00:00
|
|
|
this.agent_tokens += tokens.num_tokens;
|
|
|
|
this.send_agent_message_queue();
|
|
|
|
|
|
|
|
remaining_tokens = this.agent_tokens;
|
|
|
|
while (remaining_tokens > 0 && this.file_xfer_read_queue.length > 0)
|
|
|
|
{
|
|
|
|
var xfer_task = this.file_xfer_read_queue.shift();
|
|
|
|
this.file_xfer_read(xfer_task, xfer_task.read_bytes);
|
|
|
|
remaining_tokens--;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
if (msg.type == Constants.SPICE_MSG_MAIN_AGENT_DISCONNECTED)
|
2015-03-11 14:17:42 +00:00
|
|
|
{
|
|
|
|
this.agent_connected = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
if (msg.type == Constants.SPICE_MSG_MAIN_AGENT_DATA)
|
2015-03-11 14:17:42 +00:00
|
|
|
{
|
2020-01-23 12:49:43 +00:00
|
|
|
var agent_data = new Messages.SpiceMsgMainAgentData(msg.data);
|
|
|
|
if (agent_data.type == Constants.VD_AGENT_ANNOUNCE_CAPABILITIES)
|
2015-03-11 14:17:42 +00:00
|
|
|
{
|
2020-01-23 12:49:43 +00:00
|
|
|
var agent_caps = new Messages.VDAgentAnnounceCapabilities(agent_data.data);
|
2015-03-11 14:17:42 +00:00
|
|
|
if (agent_caps.request)
|
|
|
|
this.announce_agent_capabilities(0);
|
|
|
|
return true;
|
|
|
|
}
|
2020-01-23 12:49:43 +00:00
|
|
|
else if (agent_data.type == Constants.VD_AGENT_FILE_XFER_STATUS)
|
2015-03-11 14:17:42 +00:00
|
|
|
{
|
2020-01-23 12:49:43 +00:00
|
|
|
this.handle_file_xfer_status(new Messages.VDAgentFileXferStatusMessage(agent_data.data));
|
2015-03-11 14:17:42 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
if (msg.type == Constants.SPICE_MSG_MAIN_MIGRATE_SWITCH_HOST)
|
2018-08-08 11:00:35 +00:00
|
|
|
{
|
|
|
|
this.known_unimplemented(msg.type, "Main Migrate Switch Host");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
if (msg.type == Constants.SPICE_MSG_MAIN_MIGRATE_END)
|
2018-08-08 11:00:35 +00:00
|
|
|
{
|
|
|
|
this.known_unimplemented(msg.type, "Main Migrate End");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
if (msg.type == Constants.SPICE_MSG_MAIN_NAME)
|
2018-08-08 11:00:35 +00:00
|
|
|
{
|
|
|
|
this.known_unimplemented(msg.type, "Main Name");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
if (msg.type == Constants.SPICE_MSG_MAIN_UUID)
|
2018-08-08 11:00:35 +00:00
|
|
|
{
|
|
|
|
this.known_unimplemented(msg.type, "Main UUID");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
if (msg.type == Constants.SPICE_MSG_MAIN_MIGRATE_BEGIN_SEAMLESS)
|
2018-08-08 11:00:35 +00:00
|
|
|
{
|
|
|
|
this.known_unimplemented(msg.type, "Main Migrate Begin Seamless");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
if (msg.type == Constants.SPICE_MSG_MAIN_MIGRATE_DST_SEAMLESS_ACK)
|
2018-08-08 11:00:35 +00:00
|
|
|
{
|
|
|
|
this.known_unimplemented(msg.type, "Main Migrate Dst Seamless ACK");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
if (msg.type == Constants.SPICE_MSG_MAIN_MIGRATE_DST_SEAMLESS_NACK)
|
2018-08-08 11:00:35 +00:00
|
|
|
{
|
|
|
|
this.known_unimplemented(msg.type, "Main Migrate Dst Seamless NACK");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-03-11 14:17:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
SpiceMainConn.prototype.stop = function(msg)
|
|
|
|
{
|
|
|
|
this.state = "closing";
|
|
|
|
|
|
|
|
if (this.inputs)
|
|
|
|
{
|
|
|
|
this.inputs.cleanup();
|
|
|
|
this.inputs = undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.cursor)
|
|
|
|
{
|
|
|
|
this.cursor.cleanup();
|
|
|
|
this.cursor = undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.display)
|
|
|
|
{
|
|
|
|
this.display.cleanup();
|
|
|
|
this.display.destroy_surfaces();
|
|
|
|
this.display = undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.cleanup();
|
|
|
|
|
|
|
|
if ("extra_channels" in this)
|
|
|
|
for (var e in this.extra_channels)
|
|
|
|
this.extra_channels[e].cleanup();
|
|
|
|
this.extra_channels = undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
SpiceMainConn.prototype.send_agent_message_queue = function(message)
|
|
|
|
{
|
|
|
|
if (!this.agent_connected)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (message)
|
|
|
|
this.agent_msg_queue.push(message);
|
|
|
|
|
|
|
|
while (this.agent_tokens > 0 && this.agent_msg_queue.length > 0)
|
|
|
|
{
|
|
|
|
var mr = this.agent_msg_queue.shift();
|
|
|
|
this.send_msg(mr);
|
|
|
|
this.agent_tokens--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SpiceMainConn.prototype.send_agent_message = function(type, message)
|
|
|
|
{
|
2020-01-23 12:49:43 +00:00
|
|
|
var agent_data = new Messages.SpiceMsgcMainAgentData(type, message);
|
|
|
|
var sb = 0, maxsize = Constants.VD_AGENT_MAX_DATA_SIZE - Messages.SpiceMiniData.prototype.buffer_size();
|
2015-03-11 14:17:42 +00:00
|
|
|
var data = new ArrayBuffer(agent_data.buffer_size());
|
|
|
|
agent_data.to_buffer(data);
|
|
|
|
while (sb < agent_data.buffer_size())
|
|
|
|
{
|
|
|
|
var eb = Math.min(sb + maxsize, agent_data.buffer_size());
|
2020-01-23 12:49:43 +00:00
|
|
|
var mr = new Messages.SpiceMiniData();
|
|
|
|
mr.type = Constants.SPICE_MSGC_MAIN_AGENT_DATA;
|
2015-03-11 14:17:42 +00:00
|
|
|
mr.size = eb - sb;
|
|
|
|
mr.data = data.slice(sb, eb);
|
|
|
|
this.send_agent_message_queue(mr);
|
|
|
|
sb = eb;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SpiceMainConn.prototype.announce_agent_capabilities = function(request)
|
|
|
|
{
|
2020-01-23 12:49:43 +00:00
|
|
|
var caps = new Messages.VDAgentAnnounceCapabilities(request, (1 << Constants.VD_AGENT_CAP_MOUSE_STATE) |
|
|
|
|
(1 << Constants.VD_AGENT_CAP_MONITORS_CONFIG) |
|
|
|
|
(1 << Constants.VD_AGENT_CAP_REPLY));
|
|
|
|
this.send_agent_message(Constants.VD_AGENT_ANNOUNCE_CAPABILITIES, caps);
|
2015-03-11 14:17:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SpiceMainConn.prototype.resize_window = function(flags, width, height, depth, x, y)
|
|
|
|
{
|
2020-01-23 12:49:43 +00:00
|
|
|
var monitors_config = new Messages.VDAgentMonitorsConfig(flags, width, height, depth, x, y);
|
|
|
|
this.send_agent_message(Constants.VD_AGENT_MONITORS_CONFIG, monitors_config);
|
2015-03-11 14:17:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SpiceMainConn.prototype.file_xfer_start = function(file)
|
|
|
|
{
|
|
|
|
var task_id, xfer_start, task;
|
|
|
|
|
|
|
|
task_id = this.file_xfer_task_id++;
|
|
|
|
task = new SpiceFileXferTask(task_id, file);
|
|
|
|
task.create_progressbar();
|
|
|
|
this.file_xfer_tasks[task_id] = task;
|
2020-01-23 12:49:43 +00:00
|
|
|
xfer_start = new Messages.VDAgentFileXferStartMessage(task_id, file.name, file.size);
|
|
|
|
this.send_agent_message(Constants.VD_AGENT_FILE_XFER_START, xfer_start);
|
2015-03-11 14:17:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SpiceMainConn.prototype.handle_file_xfer_status = function(file_xfer_status)
|
|
|
|
{
|
|
|
|
var xfer_error, xfer_task;
|
|
|
|
if (!this.file_xfer_tasks[file_xfer_status.id])
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
xfer_task = this.file_xfer_tasks[file_xfer_status.id];
|
|
|
|
switch (file_xfer_status.result)
|
|
|
|
{
|
2020-01-23 12:49:43 +00:00
|
|
|
case Constants.VD_AGENT_FILE_XFER_STATUS_CAN_SEND_DATA:
|
2015-03-11 14:17:42 +00:00
|
|
|
this.file_xfer_read(xfer_task);
|
|
|
|
return;
|
2020-01-23 12:49:43 +00:00
|
|
|
case Constants.VD_AGENT_FILE_XFER_STATUS_CANCELLED:
|
2015-03-11 14:17:42 +00:00
|
|
|
xfer_error = "transfer is cancelled by spice agent";
|
|
|
|
break;
|
2020-01-23 12:49:43 +00:00
|
|
|
case Constants.VD_AGENT_FILE_XFER_STATUS_ERROR:
|
2015-03-11 14:17:42 +00:00
|
|
|
xfer_error = "some errors occurred in the spice agent";
|
|
|
|
break;
|
2020-01-23 12:49:43 +00:00
|
|
|
case Constants.VD_AGENT_FILE_XFER_STATUS_SUCCESS:
|
2015-03-11 14:17:42 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
xfer_error = "unhandled status type: " + file_xfer_status.result;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.file_xfer_completed(xfer_task, xfer_error)
|
|
|
|
}
|
|
|
|
|
|
|
|
SpiceMainConn.prototype.file_xfer_read = function(file_xfer_task, start_byte)
|
|
|
|
{
|
2020-01-23 12:49:43 +00:00
|
|
|
var FILE_XFER_CHUNK_SIZE = 32 * Constants.VD_AGENT_MAX_DATA_SIZE;
|
2015-03-11 14:17:42 +00:00
|
|
|
var _this = this;
|
|
|
|
var sb, eb;
|
|
|
|
var slice, reader;
|
|
|
|
|
|
|
|
if (!file_xfer_task ||
|
|
|
|
!this.file_xfer_tasks[file_xfer_task.id] ||
|
|
|
|
(start_byte > 0 && start_byte == file_xfer_task.file.size))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (file_xfer_task.cancelled)
|
|
|
|
{
|
2020-01-23 12:49:43 +00:00
|
|
|
var xfer_status = new Messages.VDAgentFileXferStatusMessage(file_xfer_task.id,
|
|
|
|
Constants.VD_AGENT_FILE_XFER_STATUS_CANCELLED);
|
|
|
|
this.send_agent_message(Constants.VD_AGENT_FILE_XFER_STATUS, xfer_status);
|
2015-03-11 14:17:42 +00:00
|
|
|
delete this.file_xfer_tasks[file_xfer_task.id];
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sb = start_byte || 0,
|
|
|
|
eb = Math.min(sb + FILE_XFER_CHUNK_SIZE, file_xfer_task.file.size);
|
|
|
|
|
|
|
|
if (!this.agent_tokens)
|
|
|
|
{
|
|
|
|
file_xfer_task.read_bytes = sb;
|
|
|
|
this.file_xfer_read_queue.push(file_xfer_task);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
reader = new FileReader();
|
|
|
|
reader.onload = function(e)
|
|
|
|
{
|
2020-01-23 12:49:43 +00:00
|
|
|
var xfer_data = new Messages.VDAgentFileXferDataMessage(file_xfer_task.id,
|
2015-03-11 14:17:42 +00:00
|
|
|
e.target.result.byteLength,
|
|
|
|
e.target.result);
|
2020-01-23 12:49:43 +00:00
|
|
|
_this.send_agent_message(Constants.VD_AGENT_FILE_XFER_DATA, xfer_data);
|
2015-03-11 14:17:42 +00:00
|
|
|
_this.file_xfer_read(file_xfer_task, eb);
|
|
|
|
file_xfer_task.update_progressbar(eb);
|
|
|
|
};
|
|
|
|
|
|
|
|
slice = file_xfer_task.file.slice(sb, eb);
|
|
|
|
reader.readAsArrayBuffer(slice);
|
|
|
|
}
|
|
|
|
|
|
|
|
SpiceMainConn.prototype.file_xfer_completed = function(file_xfer_task, error)
|
|
|
|
{
|
|
|
|
if (error)
|
|
|
|
this.log_err(error);
|
|
|
|
else
|
|
|
|
this.log_info("transfer of '" + file_xfer_task.file.name +"' was successful");
|
|
|
|
|
|
|
|
file_xfer_task.remove_progressbar();
|
|
|
|
|
|
|
|
delete this.file_xfer_tasks[file_xfer_task.id];
|
|
|
|
}
|
|
|
|
|
|
|
|
SpiceMainConn.prototype.connect_agent = function()
|
|
|
|
{
|
|
|
|
this.agent_connected = true;
|
|
|
|
|
2020-01-23 12:49:43 +00:00
|
|
|
var agent_start = new Messages.SpiceMsgcMainAgentStart(~0);
|
|
|
|
var mr = new Messages.SpiceMiniData();
|
|
|
|
mr.build_msg(Constants.SPICE_MSGC_MAIN_AGENT_START, agent_start);
|
2015-03-11 14:17:42 +00:00
|
|
|
this.send_msg(mr);
|
|
|
|
|
|
|
|
this.announce_agent_capabilities(1);
|
|
|
|
|
|
|
|
if (this.onagent !== undefined)
|
|
|
|
this.onagent(this);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
SpiceMainConn.prototype.handle_mouse_mode = function(current, supported)
|
|
|
|
{
|
|
|
|
this.mouse_mode = current;
|
2020-01-23 12:49:43 +00:00
|
|
|
if (current != Constants.SPICE_MOUSE_MODE_CLIENT && (supported & Constants.SPICE_MOUSE_MODE_CLIENT))
|
2015-03-11 14:17:42 +00:00
|
|
|
{
|
2020-01-23 12:49:43 +00:00
|
|
|
var mode_request = new Messages.SpiceMsgcMainMouseModeRequest(Constants.SPICE_MOUSE_MODE_CLIENT);
|
|
|
|
var mr = new Messages.SpiceMiniData();
|
|
|
|
mr.build_msg(Constants.SPICE_MSGC_MAIN_MOUSE_MODE_REQUEST, mode_request);
|
2015-03-11 14:17:42 +00:00
|
|
|
this.send_msg(mr);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.inputs)
|
|
|
|
this.inputs.mouse_mode = current;
|
|
|
|
}
|
|
|
|
|
2018-08-08 11:00:35 +00:00
|
|
|
/* Shift current time to attempt to get a time matching that of the server */
|
|
|
|
SpiceMainConn.prototype.relative_now = function()
|
|
|
|
{
|
|
|
|
var ret = (Date.now() - this.our_mm_time) + this.mm_time;
|
|
|
|
return ret;
|
|
|
|
}
|
2020-01-23 12:49:43 +00:00
|
|
|
|
|
|
|
export {
|
|
|
|
SpiceMainConn,
|
|
|
|
handle_file_dragover,
|
|
|
|
handle_file_drop,
|
|
|
|
resize_helper,
|
|
|
|
handle_resize,
|
|
|
|
sendCtrlAltDel,
|
|
|
|
};
|