123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- /*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- * * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- /**
- * @interface
- */
- WebInspector.Formatter = function()
- {
- }
- /**
- * @param {WebInspector.ResourceType} contentType
- * @return {?WebInspector.Formatter}
- */
- WebInspector.Formatter.createFormatter = function(contentType)
- {
- if (contentType === WebInspector.resourceTypes.Script || contentType === WebInspector.resourceTypes.Document)
- return new WebInspector.ScriptFormatter();
- return new WebInspector.IdentityFormatter();
- }
- /**
- * @param {Array.<number>} lineEndings
- * @param {number} lineNumber
- * @param {number} columnNumber
- * @return {number}
- */
- WebInspector.Formatter.locationToPosition = function(lineEndings, lineNumber, columnNumber)
- {
- var position = lineNumber ? lineEndings[lineNumber - 1] + 1 : 0;
- return position + columnNumber;
- }
- /**
- * @param {Array.<number>} lineEndings
- * @param {number} position
- * @return {Array.<number>}
- */
- WebInspector.Formatter.positionToLocation = function(lineEndings, position)
- {
- var lineNumber = lineEndings.upperBound(position - 1);
- if (!lineNumber)
- var columnNumber = position;
- else
- var columnNumber = position - lineEndings[lineNumber - 1] - 1;
- return [lineNumber, columnNumber];
- }
- WebInspector.Formatter.prototype = {
- /**
- * @param {string} mimeType
- * @param {string} content
- * @param {function(string, WebInspector.FormatterSourceMapping)} callback
- */
- formatContent: function(mimeType, content, callback)
- {
- }
- }
- /**
- * @constructor
- * @implements {WebInspector.Formatter}
- */
- WebInspector.ScriptFormatter = function()
- {
- this._tasks = [];
- }
- WebInspector.ScriptFormatter.prototype = {
- /**
- * @param {string} mimeType
- * @param {string} content
- * @param {function(string, WebInspector.FormatterSourceMapping)} callback
- */
- formatContent: function(mimeType, content, callback)
- {
- content = content.replace(/\r\n?|[\n\u2028\u2029]/g, "\n").replace(/^\uFEFF/, '');
- const method = "format";
- var parameters = { mimeType: mimeType, content: content, indentString: WebInspector.settings.textEditorIndent.get() };
- this._tasks.push({ data: parameters, callback: callback });
- this._worker.postMessage({ method: method, params: parameters });
- },
- _didFormatContent: function(event)
- {
- var task = this._tasks.shift();
- var originalContent = task.data.content;
- var formattedContent = event.data.content;
- var mapping = event.data["mapping"];
- var sourceMapping = new WebInspector.FormatterSourceMappingImpl(originalContent.lineEndings(), formattedContent.lineEndings(), mapping);
- task.callback(formattedContent, sourceMapping);
- },
- /**
- * @return {Worker}
- */
- get _worker()
- {
- if (!this._cachedWorker) {
- this._cachedWorker = new Worker("ScriptFormatterWorker.js");
- this._cachedWorker.onmessage = /** @type {function(this:Worker)} */ (this._didFormatContent.bind(this));
- }
- return this._cachedWorker;
- }
- }
- /**
- * @constructor
- * @implements {WebInspector.Formatter}
- */
- WebInspector.IdentityFormatter = function()
- {
- this._tasks = [];
- }
- WebInspector.IdentityFormatter.prototype = {
- /**
- * @param {string} mimeType
- * @param {string} content
- * @param {function(string, WebInspector.FormatterSourceMapping)} callback
- */
- formatContent: function(mimeType, content, callback)
- {
- callback(content, new WebInspector.IdentityFormatterSourceMapping());
- }
- }
- /**
- * @constructor
- */
- WebInspector.FormatterMappingPayload = function()
- {
- this.original = [];
- this.formatted = [];
- }
- /**
- * @interface
- */
- WebInspector.FormatterSourceMapping = function()
- {
- }
- WebInspector.FormatterSourceMapping.prototype = {
- /**
- * @param {number} lineNumber
- * @param {number=} columnNumber
- * @return {Array.<number>}
- */
- originalToFormatted: function(lineNumber, columnNumber) { },
- /**
- * @param {number} lineNumber
- * @param {number=} columnNumber
- * @return {Array.<number>}
- */
- formattedToOriginal: function(lineNumber, columnNumber) { }
- }
- /**
- * @constructor
- * @implements {WebInspector.FormatterSourceMapping}
- */
- WebInspector.IdentityFormatterSourceMapping = function()
- {
- }
- WebInspector.IdentityFormatterSourceMapping.prototype = {
- /**
- * @param {number} lineNumber
- * @param {number=} columnNumber
- * @return {Array.<number>}
- */
- originalToFormatted: function(lineNumber, columnNumber)
- {
- return [lineNumber, columnNumber || 0];
- },
- /**
- * @param {number} lineNumber
- * @param {number=} columnNumber
- * @return {Array.<number>}
- */
- formattedToOriginal: function(lineNumber, columnNumber)
- {
- return [lineNumber, columnNumber || 0];
- }
- }
- /**
- * @constructor
- * @implements {WebInspector.FormatterSourceMapping}
- * @param {Array.<number>} originalLineEndings
- * @param {Array.<number>} formattedLineEndings
- * @param {WebInspector.FormatterMappingPayload} mapping
- */
- WebInspector.FormatterSourceMappingImpl = function(originalLineEndings, formattedLineEndings, mapping)
- {
- this._originalLineEndings = originalLineEndings;
- this._formattedLineEndings = formattedLineEndings;
- this._mapping = mapping;
- }
- WebInspector.FormatterSourceMappingImpl.prototype = {
- /**
- * @param {number} lineNumber
- * @param {number=} columnNumber
- * @return {Array.<number>}
- */
- originalToFormatted: function(lineNumber, columnNumber)
- {
- var originalPosition = WebInspector.Formatter.locationToPosition(this._originalLineEndings, lineNumber, columnNumber || 0);
- var formattedPosition = this._convertPosition(this._mapping.original, this._mapping.formatted, originalPosition || 0);
- return WebInspector.Formatter.positionToLocation(this._formattedLineEndings, formattedPosition);
- },
- /**
- * @param {number} lineNumber
- * @param {number=} columnNumber
- * @return {Array.<number>}
- */
- formattedToOriginal: function(lineNumber, columnNumber)
- {
- var formattedPosition = WebInspector.Formatter.locationToPosition(this._formattedLineEndings, lineNumber, columnNumber || 0);
- var originalPosition = this._convertPosition(this._mapping.formatted, this._mapping.original, formattedPosition);
- return WebInspector.Formatter.positionToLocation(this._originalLineEndings, originalPosition || 0);
- },
- /**
- * @param {Array.<number>} positions1
- * @param {Array.<number>} positions2
- * @param {number} position
- * @return {number}
- */
- _convertPosition: function(positions1, positions2, position)
- {
- var index = positions1.upperBound(position) - 1;
- var convertedPosition = positions2[index] + position - positions1[index];
- if (index < positions2.length - 1 && convertedPosition > positions2[index + 1])
- convertedPosition = positions2[index + 1];
- return convertedPosition;
- }
- }
|