| 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" |
| 11 #include "platform/UserGestureIndicator.h" | 11 #include "platform/UserGestureIndicator.h" |
| 12 #include "platform/v8_inspector/public/V8Inspector.h" | 12 #include "platform/v8_inspector/public/V8Inspector.h" |
| 13 #include "platform/v8_inspector/public/V8InspectorClient.h" | 13 #include "platform/v8_inspector/public/V8InspectorClient.h" |
| 14 #include "wtf/Forward.h" | 14 #include "wtf/Forward.h" |
| 15 #include "wtf/Vector.h" | 15 #include "wtf/Vector.h" |
| 16 #include <memory> | 16 #include <memory> |
| 17 #include <v8.h> | 17 #include <v8.h> |
| 18 | 18 |
| 19 namespace blink { | 19 namespace blink { |
| 20 | 20 |
| 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 v8_inspector::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 |
| 32 static ThreadDebugger* from(v8::Isolate*); | 32 static ThreadDebugger* from(v8::Isolate*); |
| 33 virtual bool isWorker() = 0; | 33 virtual bool isWorker() = 0; |
| 34 V8Inspector* v8Inspector() const { return m_v8Inspector.get(); } | 34 v8_inspector::V8Inspector* v8Inspector() const { return m_v8Inspector.get();
} |
| 35 | 35 |
| 36 static void willExecuteScript(v8::Isolate*, int scriptId); | 36 static void willExecuteScript(v8::Isolate*, int scriptId); |
| 37 static void didExecuteScript(v8::Isolate*); | 37 static void didExecuteScript(v8::Isolate*); |
| 38 static void idleStarted(v8::Isolate*); | 38 static void idleStarted(v8::Isolate*); |
| 39 static void idleFinished(v8::Isolate*); | 39 static void idleFinished(v8::Isolate*); |
| 40 | 40 |
| 41 void asyncTaskScheduled(const String& taskName, void* task, bool recurring); | 41 void asyncTaskScheduled(const String& taskName, void* task, bool recurring); |
| 42 void asyncTaskCanceled(void* task); | 42 void asyncTaskCanceled(void* task); |
| 43 void allAsyncTasksCanceled(); | 43 void allAsyncTasksCanceled(); |
| 44 void asyncTaskStarted(void* task); | 44 void asyncTaskStarted(void* task); |
| 45 void asyncTaskFinished(void* task); | 45 void asyncTaskFinished(void* task); |
| 46 unsigned promiseRejected(v8::Local<v8::Context>, const String& errorMessage,
v8::Local<v8::Value> exception, std::unique_ptr<SourceLocation>); | 46 unsigned promiseRejected(v8::Local<v8::Context>, const String& errorMessage,
v8::Local<v8::Value> exception, std::unique_ptr<SourceLocation>); |
| 47 void promiseRejectionRevoked(v8::Local<v8::Context>, unsigned promiseRejecti
onId); | 47 void promiseRejectionRevoked(v8::Local<v8::Context>, unsigned promiseRejecti
onId); |
| 48 | 48 |
| 49 protected: | 49 protected: |
| 50 virtual int contextGroupId(ExecutionContext*) = 0; | 50 virtual int contextGroupId(ExecutionContext*) = 0; |
| 51 virtual void reportConsoleMessage(ExecutionContext*, MessageSource, MessageL
evel, const String& message, SourceLocation*) = 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; | 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); | 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); | 54 static MessageLevel consoleAPITypeToMessageLevel(v8_inspector::V8ConsoleAPIT
ype); |
| 55 | 55 |
| 56 v8::Isolate* m_isolate; | 56 v8::Isolate* m_isolate; |
| 57 | 57 |
| 58 private: | 58 private: |
| 59 // V8InspectorClient implementation. | 59 // V8InspectorClient implementation. |
| 60 void beginUserGesture() override; | 60 void beginUserGesture() override; |
| 61 void endUserGesture() override; | 61 void endUserGesture() override; |
| 62 String16 valueSubtype(v8::Local<v8::Value>) override; | 62 String16 valueSubtype(v8::Local<v8::Value>) override; |
| 63 bool formatAccessorsAsProperties(v8::Local<v8::Value>) override; | 63 bool formatAccessorsAsProperties(v8::Local<v8::Value>) override; |
| 64 double currentTimeMS() override; | 64 double currentTimeMS() override; |
| 65 bool isInspectableHeapObject(v8::Local<v8::Object>) override; | 65 bool isInspectableHeapObject(v8::Local<v8::Object>) override; |
| 66 void consoleTime(const String16& title) override; | 66 void consoleTime(const String16& title) override; |
| 67 void consoleTimeEnd(const String16& title) override; | 67 void consoleTimeEnd(const String16& title) override; |
| 68 void consoleTimeStamp(const String16& title) override; | 68 void consoleTimeStamp(const String16& title) override; |
| 69 void startRepeatingTimer(double, V8InspectorClient::TimerCallback, void* dat
a) override; | 69 void startRepeatingTimer(double, v8_inspector::V8InspectorClient::TimerCallb
ack, void* data) override; |
| 70 void cancelTimer(void* data) override; | 70 void cancelTimer(void* data) override; |
| 71 | 71 |
| 72 void onTimer(TimerBase*); | 72 void onTimer(TimerBase*); |
| 73 | 73 |
| 74 static void setMonitorEventsCallback(const v8::FunctionCallbackInfo<v8::Valu
e>&, bool enabled); | 74 static void setMonitorEventsCallback(const v8::FunctionCallbackInfo<v8::Valu
e>&, bool enabled); |
| 75 static void monitorEventsCallback(const v8::FunctionCallbackInfo<v8::Value>&
); | 75 static void monitorEventsCallback(const v8::FunctionCallbackInfo<v8::Value>&
); |
| 76 static void unmonitorEventsCallback(const v8::FunctionCallbackInfo<v8::Value
>&); | 76 static void unmonitorEventsCallback(const v8::FunctionCallbackInfo<v8::Value
>&); |
| 77 | 77 |
| 78 static void getEventListenersCallback(const v8::FunctionCallbackInfo<v8::Val
ue>&); | 78 static void getEventListenersCallback(const v8::FunctionCallbackInfo<v8::Val
ue>&); |
| 79 | 79 |
| 80 std::unique_ptr<V8Inspector> m_v8Inspector; | 80 std::unique_ptr<v8_inspector::V8Inspector> m_v8Inspector; |
| 81 Vector<std::unique_ptr<Timer<ThreadDebugger>>> m_timers; | 81 Vector<std::unique_ptr<Timer<ThreadDebugger>>> m_timers; |
| 82 Vector<V8InspectorClient::TimerCallback> m_timerCallbacks; | 82 Vector<v8_inspector::V8InspectorClient::TimerCallback> m_timerCallbacks; |
| 83 Vector<void*> m_timerData; | 83 Vector<void*> m_timerData; |
| 84 std::unique_ptr<UserGestureIndicator> m_userGestureIndicator; | 84 std::unique_ptr<UserGestureIndicator> m_userGestureIndicator; |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 } // namespace blink | 87 } // namespace blink |
| 88 | 88 |
| 89 #endif // ThreadDebugger_h | 89 #endif // ThreadDebugger_h |
| OLD | NEW |