/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ var Guacamole = Guacamole || {}; /** * A writer which automatically writes to the given output stream with arbitrary * binary data, supplied as ArrayBuffers. * * @constructor * @param {Guacamole.OutputStream} stream The stream that data will be written * to. */ Guacamole.ArrayBufferWriter = function(stream) { /** * Reference to this Guacamole.StringWriter. * @private */ var guac_writer = this; // Simply call onack for acknowledgements stream.onack = function(status) { if (guac_writer.onack) guac_writer.onack(status); }; /** * Encodes the given data as base64, sending it as a blob. The data must * be small enough to fit into a single blob instruction. * * @private * @param {Uint8Array} bytes The data to send. */ function __send_blob(bytes) { var binary = ""; // Produce binary string from bytes in buffer for (var i=0; i