| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| 11 * copyright notice, this list of conditions and the following disclaimer | 11 * copyright notice, this list of conditions and the following disclaimer |
| 12 * in the documentation and/or other materials provided with the | 12 * in the documentation and/or other materials provided with the |
| 13 * distribution. | 13 * distribution. |
| 14 * * Neither the name of Google Inc. nor the names of its | 14 * * Neither the name of Google Inc. nor the names of its |
| 15 * contributors may be used to endorse or promote products derived from | 15 * contributors may be used to endorse or promote products derived from |
| 16 * this software without specific prior written permission. | 16 * this software without specific prior written permission. |
| 17 * | 17 * |
| 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | |
| 31 /** | 30 /** |
| 32 * @interface | 31 * @interface |
| 33 */ | 32 */ |
| 34 WebInspector.ContentProvider = function() { }; | 33 WebInspector.ContentProvider = function() {}; |
| 35 | 34 |
| 36 WebInspector.ContentProvider.prototype = { | 35 WebInspector.ContentProvider.prototype = { |
| 37 /** | 36 /** |
| 38 * @return {string} | 37 * @return {string} |
| 39 */ | 38 */ |
| 40 contentURL: function() { }, | 39 contentURL: function() {}, |
| 41 | 40 |
| 42 /** | 41 /** |
| 43 * @return {!WebInspector.ResourceType} | 42 * @return {!WebInspector.ResourceType} |
| 44 */ | 43 */ |
| 45 contentType: function() { }, | 44 contentType: function() {}, |
| 46 | 45 |
| 47 /** | 46 /** |
| 48 * @return {!Promise<?string>} | 47 * @return {!Promise<?string>} |
| 49 */ | 48 */ |
| 50 requestContent: function() { }, | 49 requestContent: function() {}, |
| 51 | 50 |
| 52 /** | 51 /** |
| 53 * @param {string} query | 52 * @param {string} query |
| 54 * @param {boolean} caseSensitive | 53 * @param {boolean} caseSensitive |
| 55 * @param {boolean} isRegex | 54 * @param {boolean} isRegex |
| 56 * @param {function(!Array.<!WebInspector.ContentProvider.SearchMatch>)} cal
lback | 55 * @param {function(!Array.<!WebInspector.ContentProvider.SearchMatch>)} callb
ack |
| 57 */ | 56 */ |
| 58 searchInContent: function(query, caseSensitive, isRegex, callback) { } | 57 searchInContent: function(query, caseSensitive, isRegex, callback) {} |
| 59 }; | 58 }; |
| 60 | 59 |
| 61 /** | 60 /** |
| 62 * @constructor | 61 * @unrestricted |
| 63 * @param {number} lineNumber | |
| 64 * @param {string} lineContent | |
| 65 */ | 62 */ |
| 66 WebInspector.ContentProvider.SearchMatch = function(lineNumber, lineContent) { | 63 WebInspector.ContentProvider.SearchMatch = class { |
| 64 /** |
| 65 * @param {number} lineNumber |
| 66 * @param {string} lineContent |
| 67 */ |
| 68 constructor(lineNumber, lineContent) { |
| 67 this.lineNumber = lineNumber; | 69 this.lineNumber = lineNumber; |
| 68 this.lineContent = lineContent; | 70 this.lineContent = lineContent; |
| 71 } |
| 69 }; | 72 }; |
| 70 | 73 |
| 71 /** | 74 /** |
| 72 * @param {string} content | 75 * @param {string} content |
| 73 * @param {string} query | 76 * @param {string} query |
| 74 * @param {boolean} caseSensitive | 77 * @param {boolean} caseSensitive |
| 75 * @param {boolean} isRegex | 78 * @param {boolean} isRegex |
| 76 * @return {!Array.<!WebInspector.ContentProvider.SearchMatch>} | 79 * @return {!Array.<!WebInspector.ContentProvider.SearchMatch>} |
| 77 */ | 80 */ |
| 78 WebInspector.ContentProvider.performSearchInContent = function(content, query, c
aseSensitive, isRegex) | 81 WebInspector.ContentProvider.performSearchInContent = function(content, query, c
aseSensitive, isRegex) { |
| 79 { | 82 var regex = createSearchRegex(query, caseSensitive, isRegex); |
| 80 var regex = createSearchRegex(query, caseSensitive, isRegex); | |
| 81 | 83 |
| 82 var text = new WebInspector.Text(content); | 84 var text = new WebInspector.Text(content); |
| 83 var result = []; | 85 var result = []; |
| 84 for (var i = 0; i < text.lineCount(); ++i) { | 86 for (var i = 0; i < text.lineCount(); ++i) { |
| 85 var lineContent = text.lineAt(i); | 87 var lineContent = text.lineAt(i); |
| 86 regex.lastIndex = 0; | 88 regex.lastIndex = 0; |
| 87 if (regex.exec(lineContent)) | 89 if (regex.exec(lineContent)) |
| 88 result.push(new WebInspector.ContentProvider.SearchMatch(i, lineCont
ent)); | 90 result.push(new WebInspector.ContentProvider.SearchMatch(i, lineContent)); |
| 89 } | 91 } |
| 90 return result; | 92 return result; |
| 91 }; | 93 }; |
| 92 | 94 |
| 93 /** | 95 /** |
| 94 * @param {?string} content | 96 * @param {?string} content |
| 95 * @param {string} mimeType | 97 * @param {string} mimeType |
| 96 * @param {boolean} contentEncoded | 98 * @param {boolean} contentEncoded |
| 97 * @param {?string=} charset | 99 * @param {?string=} charset |
| 98 * @return {?string} | 100 * @return {?string} |
| 99 */ | 101 */ |
| 100 WebInspector.ContentProvider.contentAsDataURL = function(content, mimeType, cont
entEncoded, charset) | 102 WebInspector.ContentProvider.contentAsDataURL = function(content, mimeType, cont
entEncoded, charset) { |
| 101 { | 103 const maxDataUrlSize = 1024 * 1024; |
| 102 const maxDataUrlSize = 1024 * 1024; | 104 if (content === null || content.length > maxDataUrlSize) |
| 103 if (content === null || content.length > maxDataUrlSize) | 105 return null; |
| 104 return null; | |
| 105 | 106 |
| 106 return "data:" + mimeType + (charset ? ";charset=" + charset : "") + (conten
tEncoded ? ";base64" : "") + "," + content; | 107 return 'data:' + mimeType + (charset ? ';charset=' + charset : '') + (contentE
ncoded ? ';base64' : '') + ',' + |
| 108 content; |
| 107 }; | 109 }; |
| OLD | NEW |