Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / devtools / front_end / resources / FileContentView.js
blob1429a16bd63cdff63566a3e287ecd7a7fc68a5fb
1 /*
2  * Copyright (C) 2012 Google Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following disclaimer
12  * in the documentation and/or other materials provided with the
13  * distribution.
14  *     * Neither the name of Google Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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.
29  */
31 /**
32  * @constructor
33  * @extends {WebInspector.VBox}
34  * @param {!WebInspector.FileSystemModel.File} file
35  */
36 WebInspector.FileContentView = function(file)
38     WebInspector.VBox.call(this);
40     this._innerView = /** @type {?WebInspector.Widget} */ (null);
41     this._file = file;
42     this._content = null;
45 WebInspector.FileContentView.prototype = {
46     wasShown: function()
47     {
48         if (!this._innerView) {
49             if (this._file.isTextFile)
50                 this._innerView = new WebInspector.EmptyWidget("");
51             else
52                 this._innerView = new WebInspector.EmptyWidget(WebInspector.UIString("Binary File"));
53             this.refresh();
54         }
56         this._innerView.show(this.element);
57     },
59     /**
60      * @param {number} errorCode
61      * @param {!FileSystemAgent.Metadata} metadata
62      */
63     _metadataReceived: function(errorCode, metadata)
64     {
65         if (errorCode || !metadata)
66             return;
68         if (this._content) {
69             if (!this._content.updateMetadata(metadata))
70                 return;
71             var sourceFrame = /** @type {!WebInspector.SourceFrame} */ (this._innerView);
72             this._content.requestContent(sourceFrame.setContent.bind(sourceFrame));
73         } else {
74             this._innerView.detach();
75             this._content = new WebInspector.FileContentView.FileContentProvider(this._file, metadata);
76             var sourceFrame = new WebInspector.SourceFrame(this._content);
77             sourceFrame.setHighlighterType(this._file.resourceType.canonicalMimeType());
78             this._innerView = sourceFrame;
79             this._innerView.show(this.element);
80         }
81     },
83     refresh: function()
84     {
85         if (!this._innerView)
86             return;
88         if (this._file.isTextFile)
89             this._file.requestMetadata(this._metadataReceived.bind(this));
90     },
92     __proto__: WebInspector.VBox.prototype
95 /**
96  * @constructor
97  * @implements {WebInspector.ContentProvider}
98  * @param {!WebInspector.FileSystemModel.File} file
99  * @param {!FileSystemAgent.Metadata} metadata
100  */
101 WebInspector.FileContentView.FileContentProvider = function(file, metadata)
103     this._file = file;
104     this._metadata = metadata;
107 WebInspector.FileContentView.FileContentProvider.prototype = {
108     /**
109      * @override
110      * @return {string}
111      */
112     contentURL: function()
113     {
114         return this._file.url;
115     },
117     /**
118      * @override
119      * @return {!WebInspector.ResourceType}
120      */
121     contentType: function()
122     {
123         return this._file.resourceType;
124     },
126     /**
127      * @override
128      * @param {function(?string)} callback
129      */
130     requestContent: function(callback)
131     {
132         var size = /** @type {number} */ (this._metadata.size);
133         this._file.requestFileContent(true, 0, size, this._charset || "", this._fileContentReceived.bind(this, callback));
134     },
136     /**
137      * @param {function(?string)} callback
138      * @param {number} errorCode
139      * @param {string=} content
140      * @param {boolean=} base64Encoded
141      * @param {string=} charset
142      */
143     _fileContentReceived: function(callback, errorCode, content, base64Encoded, charset)
144     {
145         if (errorCode || !content) {
146             callback(null);
147             return;
148         }
150         this._charset = charset;
151         callback(content);
152     },
154     /**
155      * @override
156      * @param {string} query
157      * @param {boolean} caseSensitive
158      * @param {boolean} isRegex
159      * @param {function(!Array.<!WebInspector.ContentProvider.SearchMatch>)} callback
160      */
161     searchInContent: function(query, caseSensitive, isRegex, callback)
162     {
163         setTimeout(callback.bind(null, []), 0);
164     },
166     /**
167      * @param {!FileSystemAgent.Metadata} metadata
168      * @return {boolean}
169      */
170     updateMetadata: function(metadata)
171     {
172         if (this._metadata.modificationTime >= metadata.modificationTime)
173             return false;
174         this._metadata = metadata.modificationTime;
175         return true;
176     }