Upstream version 7.35.144.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / devtools / front_end / network / RequestJSONView.js
1 /*
2  * Copyright (C) 2011 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  */
30
31 /**
32  * @constructor
33  * @extends {WebInspector.RequestView}
34  * @param {!WebInspector.NetworkRequest} request
35  */
36 WebInspector.RequestJSONView = function(request, parsedJSON)
37 {
38     WebInspector.RequestView.call(this, request);
39     this._parsedJSON = parsedJSON;
40     this.element.classList.add("json");
41 }
42
43 WebInspector.RequestJSONView.parseJSON = function(text)
44 {
45     var prefix = "";
46
47     // Trim while(1), for(;;), weird numbers, etc. We need JSON start.
48     var start = /[{[]/.exec(text);
49     if (start && start.index) {
50         prefix = text.substring(0, start.index);
51         text = text.substring(start.index);
52     }
53
54     try {
55         return new WebInspector.ParsedJSON(JSON.parse(text), prefix, "");
56     } catch (e) {
57         return;
58     }
59 }
60
61 WebInspector.RequestJSONView.parseJSONP = function(text)
62 {
63     // Taking everything between first and last parentheses
64     var start = text.indexOf("(");
65     var end = text.lastIndexOf(")");
66     if (start == -1 || end == -1 || end < start)
67         return;
68
69     var prefix = text.substring(0, start + 1);
70     var suffix = text.substring(end);
71     text = text.substring(start + 1, end);
72
73     try {
74         return new WebInspector.ParsedJSON(JSON.parse(text), prefix, suffix);
75     } catch (e) {
76         return;
77     }
78 }
79
80 WebInspector.RequestJSONView.prototype = {
81     /**
82      * @return {boolean}
83      */
84     hasContent: function()
85     {
86         return true;
87     },
88
89     wasShown: function()
90     {
91         this._initialize();
92     },
93
94     _initialize: function()
95     {
96         if (this._initialized)
97             return;
98         this._initialized = true;
99
100         var obj = WebInspector.RemoteObject.fromLocalObject(this._parsedJSON.data);
101         var title = this._parsedJSON.prefix + obj.description + this._parsedJSON.suffix;
102         var section = new WebInspector.ObjectPropertiesSection(obj, title);
103         section.expand();
104         section.editable = false;
105         this.element.appendChild(section.element);
106     },
107
108     __proto__: WebInspector.RequestView.prototype
109 }
110
111 /**
112  * @constructor
113  */
114 WebInspector.ParsedJSON = function(data, prefix, suffix)
115 {
116     this.data = data;
117     this.prefix = prefix;
118     this.suffix = suffix;
119 }