2 * Copyright (C) 2013, 2014 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above
12 * copyright notice, this list of conditions and the following disclaimer
13 * in the documentation and/or other materials provided with the
15 * * Neither the name of Google Inc. nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 #include "InspectorRuntimeAgent.h"
37 #include "Completion.h"
38 #include "InjectedScript.h"
39 #include "InjectedScriptManager.h"
40 #include "InspectorValues.h"
42 #include "ParserError.h"
43 #include "ScriptDebugServer.h"
44 #include "SourceCode.h"
45 #include <wtf/PassRefPtr.h>
51 static bool asBool(const bool* const b
)
53 return b
? *b
: false;
56 InspectorRuntimeAgent::InspectorRuntimeAgent(InjectedScriptManager
* injectedScriptManager
)
57 : InspectorAgentBase(ASCIILiteral("Runtime"))
58 , m_injectedScriptManager(injectedScriptManager
)
59 , m_scriptDebugServer(nullptr)
64 InspectorRuntimeAgent::~InspectorRuntimeAgent()
68 static ScriptDebugServer::PauseOnExceptionsState
setPauseOnExceptionsState(ScriptDebugServer
* scriptDebugServer
, ScriptDebugServer::PauseOnExceptionsState newState
)
70 ASSERT(scriptDebugServer
);
71 ScriptDebugServer::PauseOnExceptionsState presentState
= scriptDebugServer
->pauseOnExceptionsState();
72 if (presentState
!= newState
)
73 scriptDebugServer
->setPauseOnExceptionsState(newState
);
77 static PassRefPtr
<Inspector::TypeBuilder::Runtime::ErrorRange
> buildErrorRangeObject(const JSTokenLocation
& tokenLocation
)
79 RefPtr
<Inspector::TypeBuilder::Runtime::ErrorRange
> result
= Inspector::TypeBuilder::Runtime::ErrorRange::create()
80 .setStartOffset(tokenLocation
.startOffset
)
81 .setEndOffset(tokenLocation
.endOffset
);
82 return result
.release();
85 void InspectorRuntimeAgent::parse(ErrorString
*, const String
& expression
, Inspector::TypeBuilder::Runtime::SyntaxErrorType::Enum
* result
, Inspector::TypeBuilder::OptOutput
<String
>* message
, RefPtr
<Inspector::TypeBuilder::Runtime::ErrorRange
>& range
)
88 JSLockHolder
lock(vm
);
91 checkSyntax(vm
, JSC::makeSource(expression
), error
);
93 switch (error
.m_syntaxErrorType
) {
94 case ParserError::SyntaxErrorNone
:
95 *result
= Inspector::TypeBuilder::Runtime::SyntaxErrorType::None
;
97 case ParserError::SyntaxErrorIrrecoverable
:
98 *result
= Inspector::TypeBuilder::Runtime::SyntaxErrorType::Irrecoverable
;
100 case ParserError::SyntaxErrorUnterminatedLiteral
:
101 *result
= Inspector::TypeBuilder::Runtime::SyntaxErrorType::UnterminatedLiteral
;
103 case ParserError::SyntaxErrorRecoverable
:
104 *result
= Inspector::TypeBuilder::Runtime::SyntaxErrorType::Recoverable
;
108 if (error
.m_syntaxErrorType
!= ParserError::SyntaxErrorNone
) {
109 *message
= error
.m_message
;
110 range
= buildErrorRangeObject(error
.m_token
.m_location
);
114 void InspectorRuntimeAgent::evaluate(ErrorString
* errorString
, const String
& expression
, const String
* const objectGroup
, const bool* const includeCommandLineAPI
, const bool* const doNotPauseOnExceptionsAndMuteConsole
, const int* executionContextId
, const bool* const returnByValue
, const bool* generatePreview
, RefPtr
<Inspector::TypeBuilder::Runtime::RemoteObject
>& result
, Inspector::TypeBuilder::OptOutput
<bool>* wasThrown
)
116 InjectedScript injectedScript
= injectedScriptForEval(errorString
, executionContextId
);
117 if (injectedScript
.hasNoValue())
120 ScriptDebugServer::PauseOnExceptionsState previousPauseOnExceptionsState
= ScriptDebugServer::DontPauseOnExceptions
;
121 if (asBool(doNotPauseOnExceptionsAndMuteConsole
))
122 previousPauseOnExceptionsState
= setPauseOnExceptionsState(m_scriptDebugServer
, ScriptDebugServer::DontPauseOnExceptions
);
123 if (asBool(doNotPauseOnExceptionsAndMuteConsole
))
126 injectedScript
.evaluate(errorString
, expression
, objectGroup
? *objectGroup
: "", asBool(includeCommandLineAPI
), asBool(returnByValue
), asBool(generatePreview
), &result
, wasThrown
);
128 if (asBool(doNotPauseOnExceptionsAndMuteConsole
)) {
130 setPauseOnExceptionsState(m_scriptDebugServer
, previousPauseOnExceptionsState
);
134 void InspectorRuntimeAgent::callFunctionOn(ErrorString
* errorString
, const String
& objectId
, const String
& expression
, const RefPtr
<InspectorArray
>* const optionalArguments
, const bool* const doNotPauseOnExceptionsAndMuteConsole
, const bool* const returnByValue
, const bool* generatePreview
, RefPtr
<Inspector::TypeBuilder::Runtime::RemoteObject
>& result
, Inspector::TypeBuilder::OptOutput
<bool>* wasThrown
)
136 InjectedScript injectedScript
= m_injectedScriptManager
->injectedScriptForObjectId(objectId
);
137 if (injectedScript
.hasNoValue()) {
138 *errorString
= ASCIILiteral("Inspected frame has gone");
143 if (optionalArguments
)
144 arguments
= (*optionalArguments
)->toJSONString();
146 ScriptDebugServer::PauseOnExceptionsState previousPauseOnExceptionsState
= ScriptDebugServer::DontPauseOnExceptions
;
147 if (asBool(doNotPauseOnExceptionsAndMuteConsole
))
148 previousPauseOnExceptionsState
= setPauseOnExceptionsState(m_scriptDebugServer
, ScriptDebugServer::DontPauseOnExceptions
);
149 if (asBool(doNotPauseOnExceptionsAndMuteConsole
))
152 injectedScript
.callFunctionOn(errorString
, objectId
, expression
, arguments
, asBool(returnByValue
), asBool(generatePreview
), &result
, wasThrown
);
154 if (asBool(doNotPauseOnExceptionsAndMuteConsole
)) {
156 setPauseOnExceptionsState(m_scriptDebugServer
, previousPauseOnExceptionsState
);
160 void InspectorRuntimeAgent::getProperties(ErrorString
* errorString
, const String
& objectId
, const bool* const ownProperties
, const bool* const ownAndGetterProperties
, RefPtr
<Inspector::TypeBuilder::Array
<Inspector::TypeBuilder::Runtime::PropertyDescriptor
>>& result
, RefPtr
<Inspector::TypeBuilder::Array
<Inspector::TypeBuilder::Runtime::InternalPropertyDescriptor
>>& internalProperties
)
162 InjectedScript injectedScript
= m_injectedScriptManager
->injectedScriptForObjectId(objectId
);
163 if (injectedScript
.hasNoValue()) {
164 *errorString
= ASCIILiteral("Inspected frame has gone");
168 ScriptDebugServer::PauseOnExceptionsState previousPauseOnExceptionsState
= setPauseOnExceptionsState(m_scriptDebugServer
, ScriptDebugServer::DontPauseOnExceptions
);
171 injectedScript
.getProperties(errorString
, objectId
, ownProperties
? *ownProperties
: false, ownAndGetterProperties
? *ownAndGetterProperties
: false, &result
);
172 injectedScript
.getInternalProperties(errorString
, objectId
, &internalProperties
);
175 setPauseOnExceptionsState(m_scriptDebugServer
, previousPauseOnExceptionsState
);
178 void InspectorRuntimeAgent::releaseObject(ErrorString
*, const String
& objectId
)
180 InjectedScript injectedScript
= m_injectedScriptManager
->injectedScriptForObjectId(objectId
);
181 if (!injectedScript
.hasNoValue())
182 injectedScript
.releaseObject(objectId
);
185 void InspectorRuntimeAgent::releaseObjectGroup(ErrorString
*, const String
& objectGroup
)
187 m_injectedScriptManager
->releaseObjectGroup(objectGroup
);
190 void InspectorRuntimeAgent::run(ErrorString
*)
194 } // namespace Inspector
196 #endif // ENABLE(INSPECTOR)