1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
|
/*
* Copyright (C) 2013 Apple 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:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS 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 APPLE INC. OR ITS 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.
*/
WebInspector.JavaScriptLogViewController = function(element, scrollElement, textPrompt, delegate, historySettingIdentifier)
{
WebInspector.Object.call(this);
console.assert(textPrompt instanceof WebInspector.ConsolePrompt);
console.assert(historySettingIdentifier);
this._element = element;
this._scrollElement = scrollElement;
this._promptHistorySetting = new WebInspector.Setting(historySettingIdentifier, null);
this._prompt = textPrompt;
this._prompt.delegate = this;
this._prompt.history = this._promptHistorySetting.value;
this.delegate = delegate;
this._cleared = true;
this._previousMessage = null;
this._repeatCountWasInterrupted = false;
this._topConsoleGroups = [];
this.messagesClearKeyboardShortcut = new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.CommandOrControl, "K", this._handleClearShortcut.bind(this));
this.messagesAlternateClearKeyboardShortcut = new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.Control, "L", this._handleClearShortcut.bind(this), this._element);
this._messagesFindKeyboardShortcut = new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.CommandOrControl, "F", this._handleFindShortcut.bind(this), this._element);
this._messagesFindNextKeyboardShortcut = new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.CommandOrControl, "G", this._handleFindNextShortcut.bind(this), this._element);
this._messagesFindPreviousKeyboardShortcut = new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.CommandOrControl | WebInspector.KeyboardShortcut.Modifier.Shift, "G", this._handleFindPreviousShortcut.bind(this), this._element);
this._promptAlternateClearKeyboardShortcut = new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.Control, "L", this._handleClearShortcut.bind(this), this._prompt.element);
this._promptFindKeyboardShortcut = new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.CommandOrControl, "F", this._handleFindShortcut.bind(this), this._prompt.element);
this._promptFindNextKeyboardShortcut = new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.CommandOrControl, "G", this._handleFindNextShortcut.bind(this), this._prompt.element);
this._promptFindPreviousKeyboardShortcut = new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.CommandOrControl | WebInspector.KeyboardShortcut.Modifier.Shift, "G", this._handleFindPreviousShortcut.bind(this), this._prompt.element);
this.startNewSession();
};
WebInspector.JavaScriptLogViewController.CachedPropertiesDuration = 30000;
WebInspector.JavaScriptLogViewController.prototype = {
constructor: WebInspector.JavaScriptLogViewController,
// Public
get prompt()
{
return this._prompt;
},
get topConsoleGroup()
{
return this._topConsoleGroup;
},
get currentConsoleGroup()
{
return this._currentConsoleGroup;
},
clear: function()
{
this._cleared = true;
this.startNewSession(true);
this.prompt.focus();
if (this.delegate && typeof this.delegate.didClearMessages === "function")
this.delegate.didClearMessages();
},
startNewSession: function(clearPreviousSessions)
{
if (this._topConsoleGroups.length && clearPreviousSessions) {
for (var i = 0; i < this._topConsoleGroups.length; ++i)
this._element.removeChild(this._topConsoleGroups[i].element);
this._topConsoleGroups = [];
this._topConsoleGroup = null;
this._currentConsoleGroup = null;
}
// Reuse the top group if it has no messages.
if (this._topConsoleGroup && !this._topConsoleGroup.hasMessages()) {
// Make sure the session is visible.
this._topConsoleGroup.element.scrollIntoView();
return;
}
var hasPreviousSession = !!this._topConsoleGroup;
var consoleGroup = new WebInspector.ConsoleGroup(null, hasPreviousSession);
this._previousMessage = null;
this._repeatCountWasInterrupted = false;
this._topConsoleGroups.push(consoleGroup);
this._topConsoleGroup = consoleGroup;
this._currentConsoleGroup = consoleGroup;
this._element.appendChild(consoleGroup.element);
// Make sure the new session is visible.
consoleGroup.element.scrollIntoView();
},
appendConsoleMessage: function(consoleMessage)
{
// Clone the message since there might be multiple clients using the message,
// and since the message has a DOM element it can't be two places at once.
var messageClone = consoleMessage.clone();
this._appendConsoleMessage(messageClone);
return messageClone;
},
updatePreviousMessageRepeatCount: function(count)
{
console.assert(this._previousMessage);
if (!this._previousMessage)
return;
if (!this._repeatCountWasInterrupted) {
this._previousMessage.repeatCount = count - (this._previousMessage.ignoredCount || 0);
this._previousMessage.updateRepeatCount();
} else {
var newMessage = this._previousMessage.clone();
// If this message is repeated after being cloned, messageRepeatCountUpdated will be called with a
// count that includes the count of this message before cloning. We should ignore instances of this
// log that occurred before we cloned, so set a property on the message with the number of previous
// instances of this log that we should ignore.
newMessage.ignoredCount = newMessage.repeatCount + (this._previousMessage.ignoredCount || 0);
newMessage.repeatCount = 1;
this._appendConsoleMessage(newMessage);
}
},
isScrolledToBottom: function()
{
// Lie about being scrolled to the bottom if we have a pending request to scroll to the bottom soon.
return this._scrollToBottomTimeout || this._scrollElement.isScrolledToBottom();
},
scrollToBottom: function()
{
if (this._scrollToBottomTimeout)
return;
function delayedWork()
{
this._scrollToBottomTimeout = null;
this._scrollElement.scrollTop = this._scrollElement.scrollHeight;
}
// Don't scroll immediately so we are not causing excessive layouts when there
// are many messages being added at once.
this._scrollToBottomTimeout = setTimeout(delayedWork.bind(this), 0);
},
// Protected
consolePromptHistoryDidChange: function(prompt)
{
this._promptHistorySetting.value = this.prompt.history;
},
consolePromptShouldCommitText: function(prompt, text, cursorIsAtLastPosition, handler)
{
// Always commit the text if we are not at the last position.
if (!cursorIsAtLastPosition) {
handler(true);
return;
}
// COMPATIBILITY (iOS 6): RuntimeAgent.parse did not exist in iOS 6. Always commit.
if (!RuntimeAgent.parse) {
handler(true);
return;
}
function parseFinished(error, result, message, range)
{
handler(result !== RuntimeAgent.SyntaxErrorType.Recoverable);
}
RuntimeAgent.parse(text, parseFinished.bind(this));
},
consolePromptTextCommitted: function(prompt, text)
{
console.assert(text);
var commandMessage = new WebInspector.ConsoleCommand(text);
this._appendConsoleMessage(commandMessage, true);
function printResult(result, wasThrown)
{
if (!result || this._cleared)
return;
this._appendConsoleMessage(new WebInspector.ConsoleCommandResult(result, wasThrown, commandMessage), true);
}
text += "\n//# sourceURL=__WebInspectorConsole__\n";
WebInspector.runtimeManager.evaluateInInspectedWindow(text, "console", true, false, false, printResult.bind(this));
},
// Private
_handleClearShortcut: function()
{
this.clear();
},
_handleFindShortcut: function()
{
this.delegate.focusSearchBar();
},
_handleFindNextShortcut: function()
{
this.delegate.highlightNextSearchMatch();
},
_handleFindPreviousShortcut: function()
{
this.delegate.highlightPreviousSearchMatch();
},
_appendConsoleMessage: function(msg, repeatCountWasInterrupted)
{
var wasScrolledToBottom = this.isScrolledToBottom();
this._cleared = false;
this._repeatCountWasInterrupted = repeatCountWasInterrupted || false;
if (!repeatCountWasInterrupted)
this._previousMessage = msg;
if (msg.type === WebInspector.ConsoleMessage.MessageType.EndGroup) {
var parentGroup = this._currentConsoleGroup.parentGroup;
if (parentGroup)
this._currentConsoleGroup = parentGroup;
} else {
if (msg.type === WebInspector.ConsoleMessage.MessageType.StartGroup || msg.type === WebInspector.ConsoleMessage.MessageType.StartGroupCollapsed) {
var group = new WebInspector.ConsoleGroup(this._currentConsoleGroup);
this._currentConsoleGroup.messagesElement.appendChild(group.element);
this._currentConsoleGroup = group;
}
this._currentConsoleGroup.addMessage(msg);
}
if (msg.type === WebInspector.ConsoleMessage.MessageType.Result || wasScrolledToBottom)
this.scrollToBottom();
if (this.delegate && typeof this.delegate.didAppendConsoleMessage === "function")
this.delegate.didAppendConsoleMessage(msg);
}
};
WebInspector.JavaScriptLogViewController.prototype.__proto__ = WebInspector.Object.prototype;
|