diff options
Diffstat (limited to 'Source/JavaScriptCore/inspector/ScriptDebugServer.h')
-rw-r--r-- | Source/JavaScriptCore/inspector/ScriptDebugServer.h | 65 |
1 files changed, 30 insertions, 35 deletions
diff --git a/Source/JavaScriptCore/inspector/ScriptDebugServer.h b/Source/JavaScriptCore/inspector/ScriptDebugServer.h index 6d55de241..7e4c54335 100644 --- a/Source/JavaScriptCore/inspector/ScriptDebugServer.h +++ b/Source/JavaScriptCore/inspector/ScriptDebugServer.h @@ -11,7 +11,7 @@ * 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. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of + * 3. Neither the name of Apple Inc. ("Apple") nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * @@ -27,8 +27,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef ScriptDebugServer_h -#define ScriptDebugServer_h +#pragma once #include "ScriptBreakpoint.h" #include "ScriptDebugListener.h" @@ -36,14 +35,12 @@ #include "debugger/Debugger.h" #include <wtf/HashMap.h> #include <wtf/HashSet.h> -#include <wtf/RefPtr.h> -#include <wtf/Vector.h> -#include <wtf/text/TextPosition.h> #include <wtf/text/WTFString.h> namespace JSC { class ExecState; class JSGlobalObject; +class VM; } namespace Inspector { @@ -52,65 +49,63 @@ class JS_EXPORT_PRIVATE ScriptDebugServer : public JSC::Debugger { WTF_MAKE_NONCOPYABLE(ScriptDebugServer); WTF_MAKE_FAST_ALLOCATED; public: - JSC::BreakpointID setBreakpoint(JSC::SourceID, const ScriptBreakpoint&, unsigned* actualLineNumber, unsigned* actualColumnNumber); - void removeBreakpoint(JSC::BreakpointID); - void clearBreakpoints(); - virtual void recompileAllJSFunctions() = 0; + // FIXME: Move BreakpointAction handling into JSC::Debugger or InspectorDebuggerAgent. + void setBreakpointActions(JSC::BreakpointID, const ScriptBreakpoint&); + void removeBreakpointActions(JSC::BreakpointID); + void clearBreakpointActions(); - const Vector<ScriptBreakpointAction>& getActionsForBreakpoint(JSC::BreakpointID); + const BreakpointActions& getActionsForBreakpoint(JSC::BreakpointID); - class Task { - WTF_MAKE_FAST_ALLOCATED; - public: - virtual ~Task() { } - virtual void run() = 0; - }; + void addListener(ScriptDebugListener*); + void removeListener(ScriptDebugListener*, bool isBeingDestroyed); protected: typedef HashSet<ScriptDebugListener*> ListenerSet; typedef void (ScriptDebugServer::*JavaScriptExecutionCallback)(ScriptDebugListener*); - ScriptDebugServer(bool isInWorkerThread = false); + ScriptDebugServer(JSC::VM&); ~ScriptDebugServer(); - virtual ListenerSet* getListenersForGlobalObject(JSC::JSGlobalObject*) = 0; + virtual void attachDebugger() = 0; + virtual void detachDebugger(bool isBeingDestroyed) = 0; + virtual void didPause(JSC::JSGlobalObject*) = 0; virtual void didContinue(JSC::JSGlobalObject*) = 0; virtual void runEventLoopWhilePaused() = 0; virtual bool isContentScript(JSC::ExecState*) const = 0; - virtual void reportException(JSC::ExecState*, JSC::JSValue) const = 0; + virtual void reportException(JSC::ExecState*, JSC::Exception*) const = 0; bool evaluateBreakpointAction(const ScriptBreakpointAction&); - void dispatchFunctionToListeners(JavaScriptExecutionCallback, JSC::JSGlobalObject*); + void dispatchFunctionToListeners(JavaScriptExecutionCallback); void dispatchFunctionToListeners(const ListenerSet& listeners, JavaScriptExecutionCallback); void dispatchDidPause(ScriptDebugListener*); void dispatchDidContinue(ScriptDebugListener*); void dispatchDidParseSource(const ListenerSet& listeners, JSC::SourceProvider*, bool isContentScript); void dispatchFailedToParseSource(const ListenerSet& listeners, JSC::SourceProvider*, int errorLine, const String& errorMessage); void dispatchBreakpointActionLog(JSC::ExecState*, const String&); - void dispatchBreakpointActionSound(JSC::ExecState*); - void dispatchDidSampleProbe(JSC::ExecState*, int probeIdentifier, const Deprecated::ScriptValue& sample); + void dispatchBreakpointActionSound(JSC::ExecState*, int breakpointActionIdentifier); + void dispatchBreakpointActionProbe(JSC::ExecState*, const ScriptBreakpointAction&, JSC::JSValue sample); - bool m_doneProcessingDebuggerEvents; + bool m_doneProcessingDebuggerEvents { true }; private: - typedef Vector<ScriptBreakpointAction> BreakpointActions; typedef HashMap<JSC::BreakpointID, BreakpointActions> BreakpointIDToActionsMap; - virtual void sourceParsed(JSC::ExecState*, JSC::SourceProvider*, int errorLine, const String& errorMsg) override final; - virtual bool needPauseHandling(JSC::JSGlobalObject*) override final; - virtual void handleBreakpointHit(const JSC::Breakpoint&) override final; - virtual void handleExceptionInBreakpointCondition(JSC::ExecState*, JSC::JSValue exception) const override final; - virtual void handlePause(JSC::Debugger::ReasonForPause, JSC::JSGlobalObject*) override final; - virtual void notifyDoneProcessingDebuggerEvents() override final; + void sourceParsed(JSC::ExecState*, JSC::SourceProvider*, int errorLine, const String& errorMsg) final; + void handleBreakpointHit(JSC::JSGlobalObject*, const JSC::Breakpoint&) final; + void handleExceptionInBreakpointCondition(JSC::ExecState*, JSC::Exception*) const final; + void handlePause(JSC::JSGlobalObject*, JSC::Debugger::ReasonForPause) final; + void notifyDoneProcessingDebuggerEvents() final; + + JSC::JSValue exceptionOrCaughtValue(JSC::ExecState*); - unsigned m_hitCount; - bool m_callingListeners; BreakpointIDToActionsMap m_breakpointIDToActions; + ListenerSet m_listeners; + bool m_callingListeners { false }; + unsigned m_nextProbeSampleId { 1 }; + unsigned m_currentProbeBatchId { 0 }; }; } // namespace Inspector - -#endif // ScriptDebugServer_h |