| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef ThreadDebugger_h | 5 #ifndef ThreadDebugger_h |
| 6 #define ThreadDebugger_h | 6 #define ThreadDebugger_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/inspector/ConsoleTypes.h" | 9 #include "core/inspector/ConsoleTypes.h" |
| 10 #include "platform/Timer.h" | 10 #include "platform/Timer.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 class ConsoleMessage; | 21 class ConsoleMessage; |
| 22 class ExecutionContext; | 22 class ExecutionContext; |
| 23 class SourceLocation; | 23 class SourceLocation; |
| 24 | 24 |
| 25 // TODO(dgozman): rename this to ThreadInspector (and subclasses). | 25 // TODO(dgozman): rename this to ThreadInspector (and subclasses). |
| 26 class CORE_EXPORT ThreadDebugger : public V8InspectorClient { | 26 class CORE_EXPORT ThreadDebugger : public V8InspectorClient { |
| 27 WTF_MAKE_NONCOPYABLE(ThreadDebugger); | 27 WTF_MAKE_NONCOPYABLE(ThreadDebugger); |
| 28 public: | 28 public: |
| 29 explicit ThreadDebugger(v8::Isolate*); | 29 explicit ThreadDebugger(v8::Isolate*); |
| 30 ~ThreadDebugger() override; | 30 ~ThreadDebugger() override; |
| 31 |
| 31 static ThreadDebugger* from(v8::Isolate*); | 32 static ThreadDebugger* from(v8::Isolate*); |
| 33 virtual bool isWorker() = 0; |
| 34 V8Inspector* v8Inspector() const { return m_v8Inspector.get(); } |
| 32 | 35 |
| 33 static void willExecuteScript(v8::Isolate*, int scriptId); | 36 static void willExecuteScript(v8::Isolate*, int scriptId); |
| 34 static void didExecuteScript(v8::Isolate*); | 37 static void didExecuteScript(v8::Isolate*); |
| 35 static void idleStarted(v8::Isolate*); | 38 static void idleStarted(v8::Isolate*); |
| 36 static void idleFinished(v8::Isolate*); | 39 static void idleFinished(v8::Isolate*); |
| 37 | 40 |
| 38 void asyncTaskScheduled(const String& taskName, void* task, bool recurring); | 41 void asyncTaskScheduled(const String& taskName, void* task, bool recurring); |
| 39 void asyncTaskCanceled(void* task); | 42 void asyncTaskCanceled(void* task); |
| 40 void allAsyncTasksCanceled(); | 43 void allAsyncTasksCanceled(); |
| 41 void asyncTaskStarted(void* task); | 44 void asyncTaskStarted(void* task); |
| 42 void asyncTaskFinished(void* task); | 45 void asyncTaskFinished(void* task); |
| 43 unsigned promiseRejected(v8::Local<v8::Context>, const String16& errorMessag
e, v8::Local<v8::Value> exception, std::unique_ptr<SourceLocation>); | 46 unsigned promiseRejected(v8::Local<v8::Context>, const String16& errorMessag
e, v8::Local<v8::Value> exception, std::unique_ptr<SourceLocation>); |
| 44 void promiseRejectionRevoked(v8::Local<v8::Context>, unsigned promiseRejecti
onId); | 47 void promiseRejectionRevoked(v8::Local<v8::Context>, unsigned promiseRejecti
onId); |
| 45 | 48 |
| 49 protected: |
| 50 virtual int contextGroupId(ExecutionContext*) = 0; |
| 51 virtual void reportConsoleMessage(ExecutionContext*, MessageSource, MessageL
evel, const String& message, SourceLocation*) = 0; |
| 52 void installAdditionalCommandLineAPI(v8::Local<v8::Context>, v8::Local<v8::O
bject>) override; |
| 53 void createFunctionProperty(v8::Local<v8::Context>, v8::Local<v8::Object>, c
onst char* name, v8::FunctionCallback, const char* description); |
| 54 static MessageLevel consoleAPITypeToMessageLevel(V8ConsoleAPIType); |
| 55 |
| 56 v8::Isolate* m_isolate; |
| 57 |
| 58 private: |
| 46 // V8InspectorClient implementation. | 59 // V8InspectorClient implementation. |
| 47 void beginUserGesture() override; | 60 void beginUserGesture() override; |
| 48 void endUserGesture() override; | 61 void endUserGesture() override; |
| 49 String16 valueSubtype(v8::Local<v8::Value>) override; | 62 String16 valueSubtype(v8::Local<v8::Value>) override; |
| 50 bool formatAccessorsAsProperties(v8::Local<v8::Value>) override; | 63 bool formatAccessorsAsProperties(v8::Local<v8::Value>) override; |
| 51 double currentTimeMS() override; | 64 double currentTimeMS() override; |
| 52 bool isInspectableHeapObject(v8::Local<v8::Object>) override; | 65 bool isInspectableHeapObject(v8::Local<v8::Object>) override; |
| 53 void installAdditionalCommandLineAPI(v8::Local<v8::Context>, v8::Local<v8::O
bject>) override; | |
| 54 void consoleTime(const String16& title) override; | 66 void consoleTime(const String16& title) override; |
| 55 void consoleTimeEnd(const String16& title) override; | 67 void consoleTimeEnd(const String16& title) override; |
| 56 void consoleTimeStamp(const String16& title) override; | 68 void consoleTimeStamp(const String16& title) override; |
| 57 void startRepeatingTimer(double, V8InspectorClient::TimerCallback, void* dat
a) override; | 69 void startRepeatingTimer(double, V8InspectorClient::TimerCallback, void* dat
a) override; |
| 58 void cancelTimer(void* data) override; | 70 void cancelTimer(void* data) override; |
| 59 | 71 |
| 60 V8Inspector* v8Inspector() const { return m_v8Inspector.get(); } | 72 void onTimer(TimerBase*); |
| 61 virtual bool isWorker() { return true; } | |
| 62 virtual void reportConsoleMessage(ExecutionContext*, MessageSource, MessageL
evel, const String& message, SourceLocation*) = 0; | |
| 63 virtual int contextGroupId(ExecutionContext*) = 0; | |
| 64 | 73 |
| 65 protected: | |
| 66 void createFunctionProperty(v8::Local<v8::Context>, v8::Local<v8::Object>, c
onst char* name, v8::FunctionCallback, const char* description); | |
| 67 void onTimer(TimerBase*); | |
| 68 static MessageLevel consoleAPITypeToMessageLevel(V8ConsoleAPIType); | |
| 69 | |
| 70 v8::Isolate* m_isolate; | |
| 71 | |
| 72 private: | |
| 73 static void setMonitorEventsCallback(const v8::FunctionCallbackInfo<v8::Valu
e>&, bool enabled); | 74 static void setMonitorEventsCallback(const v8::FunctionCallbackInfo<v8::Valu
e>&, bool enabled); |
| 74 static void monitorEventsCallback(const v8::FunctionCallbackInfo<v8::Value>&
); | 75 static void monitorEventsCallback(const v8::FunctionCallbackInfo<v8::Value>&
); |
| 75 static void unmonitorEventsCallback(const v8::FunctionCallbackInfo<v8::Value
>&); | 76 static void unmonitorEventsCallback(const v8::FunctionCallbackInfo<v8::Value
>&); |
| 76 | 77 |
| 77 static void getEventListenersCallback(const v8::FunctionCallbackInfo<v8::Val
ue>&); | 78 static void getEventListenersCallback(const v8::FunctionCallbackInfo<v8::Val
ue>&); |
| 78 | 79 |
| 79 std::unique_ptr<V8Inspector> m_v8Inspector; | 80 std::unique_ptr<V8Inspector> m_v8Inspector; |
| 80 Vector<std::unique_ptr<Timer<ThreadDebugger>>> m_timers; | 81 Vector<std::unique_ptr<Timer<ThreadDebugger>>> m_timers; |
| 81 Vector<V8InspectorClient::TimerCallback> m_timerCallbacks; | 82 Vector<V8InspectorClient::TimerCallback> m_timerCallbacks; |
| 82 Vector<void*> m_timerData; | 83 Vector<void*> m_timerData; |
| 83 std::unique_ptr<UserGestureIndicator> m_userGestureIndicator; | 84 std::unique_ptr<UserGestureIndicator> m_userGestureIndicator; |
| 84 }; | 85 }; |
| 85 | 86 |
| 86 } // namespace blink | 87 } // namespace blink |
| 87 | 88 |
| 88 #endif // ThreadDebugger_h | 89 #endif // ThreadDebugger_h |
| OLD | NEW |