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
|
/*
* 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 = class JavaScriptLogViewController extends WebInspector.Object
{
constructor(element, scrollElement, textPrompt, delegate, historySettingIdentifier)
{
super();
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._previousMessageView = null;
this._lastCommitted = "";
this._repeatCountWasInterrupted = false;
this._sessions = [];
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._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._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();
}
// Public
get prompt()
{
return this._prompt;
}
get currentConsoleGroup()
{
return this._currentConsoleGroup;
}
clear()
{
this._cleared = true;
this.startNewSession(true);
}
startNewSession(clearPreviousSessions)
{
if (this._sessions.length && clearPreviousSessions) {
for (var i = 0; i < this._sessions.length; ++i)
this._element.removeChild(this._sessions[i].element);
this._sessions = [];
this._currentConsoleGroup = null;
}
var lastSession = this._sessions.lastValue;
// Reuse the last session if it has no messages.
if (lastSession && !lastSession.hasMessages()) {
// Make sure the session is visible.
lastSession.element.scrollIntoView();
return;
}
var consoleSession = new WebInspector.ConsoleSession;
this._previousMessageView = null;
this._lastCommitted = "";
this._repeatCountWasInterrupted = false;
this._sessions.push(consoleSession);
this._currentConsoleGroup = consoleSession;
this._element.appendChild(consoleSession.element);
// Make sure the new session is visible.
consoleSession.element.scrollIntoView();
}
appendImmediateExecutionWithResult(text, result, addSpecialUserLogClass, synthetic)
{
console.assert(result instanceof WebInspector.RemoteObject);
var commandMessageView = new WebInspector.ConsoleCommandView(text, addSpecialUserLogClass ? "special-user-log" : null);
this._appendConsoleMessageView(commandMessageView, true);
function saveResultCallback(savedResultIndex)
{
let commandResultMessage = new WebInspector.ConsoleCommandResultMessage(result, false, savedResultIndex, synthetic);
let commandResultMessageView = new WebInspector.ConsoleMessageView(commandResultMessage);
this._appendConsoleMessageView(commandResultMessageView, true);
}
WebInspector.runtimeManager.saveResult(result, saveResultCallback.bind(this));
}
appendConsoleMessage(consoleMessage)
{
var consoleMessageView = new WebInspector.ConsoleMessageView(consoleMessage);
this._appendConsoleMessageView(consoleMessageView);
return consoleMessageView;
}
updatePreviousMessageRepeatCount(count)
{
console.assert(this._previousMessageView);
if (!this._previousMessageView)
return false;
var previousIgnoredCount = this._previousMessageView[WebInspector.JavaScriptLogViewController.IgnoredRepeatCount] || 0;
var previousVisibleCount = this._previousMessageView.repeatCount;
if (!this._repeatCountWasInterrupted) {
this._previousMessageView.repeatCount = count - previousIgnoredCount;
return true;
}
var consoleMessage = this._previousMessageView.message;
var duplicatedConsoleMessageView = new WebInspector.ConsoleMessageView(consoleMessage);
duplicatedConsoleMessageView[WebInspector.JavaScriptLogViewController.IgnoredRepeatCount] = previousIgnoredCount + previousVisibleCount;
duplicatedConsoleMessageView.repeatCount = 1;
this._appendConsoleMessageView(duplicatedConsoleMessageView);
return true;
}
isScrolledToBottom()
{
// 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()
{
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(prompt)
{
this._promptHistorySetting.value = this.prompt.history;
}
consolePromptShouldCommitText(prompt, text, cursorIsAtLastPosition, handler)
{
// Always commit the text if we are not at the last position.
if (!cursorIsAtLastPosition) {
handler(true);
return;
}
function parseFinished(error, result, message, range)
{
handler(result !== RuntimeAgent.SyntaxErrorType.Recoverable);
}
RuntimeAgent.parse(text, parseFinished.bind(this));
}
consolePromptTextCommitted(prompt, text)
{
console.assert(text);
if (this._lastCommitted !== text) {
let commandMessageView = new WebInspector.ConsoleCommandView(text);
this._appendConsoleMessageView(commandMessageView, true);
this._lastCommitted = text;
}
function printResult(result, wasThrown, savedResultIndex)
{
if (!result || this._cleared)
return;
let synthetic = false;
let commandResultMessage = new WebInspector.ConsoleCommandResultMessage(result, wasThrown, savedResultIndex, synthetic);
let commandResultMessageView = new WebInspector.ConsoleMessageView(commandResultMessage);
this._appendConsoleMessageView(commandResultMessageView, true);
}
WebInspector.runtimeManager.evaluateInInspectedWindow(text, WebInspector.RuntimeManager.ConsoleObjectGroup, true, false, false, true, true, printResult.bind(this));
}
// Private
_handleClearShortcut()
{
WebInspector.logManager.requestClearMessages();
}
_handleFindNextShortcut()
{
this.delegate.highlightNextSearchMatch();
}
_handleFindPreviousShortcut()
{
this.delegate.highlightPreviousSearchMatch();
}
_appendConsoleMessageView(messageView, repeatCountWasInterrupted)
{
var wasScrolledToBottom = this.isScrolledToBottom();
this._cleared = false;
this._repeatCountWasInterrupted = repeatCountWasInterrupted || false;
if (!repeatCountWasInterrupted)
this._previousMessageView = messageView;
if (messageView.message && messageView.message.source !== WebInspector.ConsoleMessage.MessageSource.JS)
this._lastCommitted = "";
var type = messageView instanceof WebInspector.ConsoleCommandView ? null : messageView.message.type;
if (type === WebInspector.ConsoleMessage.MessageType.EndGroup) {
var parentGroup = this._currentConsoleGroup.parentGroup;
if (parentGroup)
this._currentConsoleGroup = parentGroup;
} else {
if (type === WebInspector.ConsoleMessage.MessageType.StartGroup || type === WebInspector.ConsoleMessage.MessageType.StartGroupCollapsed) {
var group = new WebInspector.ConsoleGroup(this._currentConsoleGroup);
var groupElement = group.render(messageView);
this._currentConsoleGroup.append(groupElement);
this._currentConsoleGroup = group;
} else
this._currentConsoleGroup.addMessageView(messageView);
}
if (type === WebInspector.ConsoleMessage.MessageType.Result || wasScrolledToBottom)
this.scrollToBottom();
if (this.delegate && typeof this.delegate.didAppendConsoleMessageView === "function")
this.delegate.didAppendConsoleMessageView(messageView);
}
};
WebInspector.JavaScriptLogViewController.CachedPropertiesDuration = 30000;
WebInspector.JavaScriptLogViewController.IgnoredRepeatCount = Symbol("ignored-repeat-count");
|