/* * 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 reader which automatically handles the given input stream, returning * strictly text data. Note that this object will overwrite any installed event * handlers on the given Guacamole.InputStream. * * @constructor * @param {Guacamole.InputStream} stream The stream that data will be read * from. */ Guacamole.StringReader = function(stream) { /** * Reference to this Guacamole.InputStream. * @private */ var guac_reader = this; /** * Wrapped Guacamole.ArrayBufferReader. * @private * @type {Guacamole.ArrayBufferReader} */ var array_reader = new Guacamole.ArrayBufferReader(stream); /** * The number of bytes remaining for the current codepoint. * * @private * @type {Number} */ var bytes_remaining = 0; /** * The current codepoint value, as calculated from bytes read so far. * * @private * @type {Number} */ var codepoint = 0; /** * Decodes the given UTF-8 data into a Unicode string. The data may end in * the middle of a multibyte character. * * @private * @param {ArrayBuffer} buffer Arbitrary UTF-8 data. * @return {String} A decoded Unicode string. */ function __decode_utf8(buffer) { var text = ""; var bytes = new Uint8Array(buffer); for (var i=0; i