| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011 Google Inc. All rights reserved. | 2 * Copyright (c) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 #include "core/inspector/WorkerDebuggerAgent.h" | 36 #include "core/inspector/WorkerDebuggerAgent.h" |
| 37 #include "core/workers/WorkerGlobalScope.h" | 37 #include "core/workers/WorkerGlobalScope.h" |
| 38 #include "core/workers/WorkerThread.h" | 38 #include "core/workers/WorkerThread.h" |
| 39 #include "wtf/MessageQueue.h" | 39 #include "wtf/MessageQueue.h" |
| 40 #include <v8.h> | 40 #include <v8.h> |
| 41 | 41 |
| 42 namespace blink { | 42 namespace blink { |
| 43 | 43 |
| 44 static const char* workerContextDebugId = "[worker]"; | 44 static const char* workerContextDebugId = "[worker]"; |
| 45 | 45 |
| 46 WorkerScriptDebugServer::WorkerScriptDebugServer(WorkerGlobalScope* workerGlobal
Scope) | 46 WorkerScriptDebugServer::WorkerScriptDebugServer(WebThread::TaskObserver* taskOb
server, WorkerGlobalScope* workerGlobalScope) |
| 47 : PerIsolateDebuggerClient(v8::Isolate::GetCurrent(), ScriptDebugServer::cre
ate(v8::Isolate::GetCurrent(), this)) | 47 : PerIsolateDebuggerClient(v8::Isolate::GetCurrent(), ScriptDebugServer::cre
ate(v8::Isolate::GetCurrent(), this)) |
| 48 , m_listener(nullptr) | 48 , m_listener(nullptr) |
| 49 , m_taskObserver(taskObserver) |
| 49 , m_workerGlobalScope(workerGlobalScope) | 50 , m_workerGlobalScope(workerGlobalScope) |
| 50 { | 51 { |
| 51 } | 52 } |
| 52 | 53 |
| 53 WorkerScriptDebugServer::~WorkerScriptDebugServer() | 54 WorkerScriptDebugServer::~WorkerScriptDebugServer() |
| 54 { | 55 { |
| 55 } | 56 } |
| 56 | 57 |
| 57 DEFINE_TRACE(WorkerScriptDebugServer) | 58 DEFINE_TRACE(WorkerScriptDebugServer) |
| 58 { | 59 { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 83 | 84 |
| 84 ScriptDebugListener* WorkerScriptDebugServer::getDebugListenerForContext(v8::Loc
al<v8::Context>) | 85 ScriptDebugListener* WorkerScriptDebugServer::getDebugListenerForContext(v8::Loc
al<v8::Context>) |
| 85 { | 86 { |
| 86 // There is only one worker context in isolate. | 87 // There is only one worker context in isolate. |
| 87 return m_listener; | 88 return m_listener; |
| 88 } | 89 } |
| 89 | 90 |
| 90 void WorkerScriptDebugServer::runMessageLoopOnPause(v8::Local<v8::Context>) | 91 void WorkerScriptDebugServer::runMessageLoopOnPause(v8::Local<v8::Context>) |
| 91 { | 92 { |
| 92 MessageQueueWaitResult result; | 93 MessageQueueWaitResult result; |
| 93 m_workerGlobalScope->thread()->willEnterNestedLoop(); | 94 m_taskObserver->willProcessTask(); |
| 94 do { | 95 do { |
| 95 result = m_workerGlobalScope->thread()->runDebuggerTask(); | 96 result = m_workerGlobalScope->thread()->runDebuggerTask(); |
| 96 // Keep waiting until execution is resumed. | 97 // Keep waiting until execution is resumed. |
| 97 } while (result == MessageQueueMessageReceived && scriptDebugServer()->isPau
sed()); | 98 } while (result == MessageQueueMessageReceived && scriptDebugServer()->isPau
sed()); |
| 98 m_workerGlobalScope->thread()->didLeaveNestedLoop(); | 99 m_taskObserver->didProcessTask(); |
| 99 | 100 |
| 100 // The listener may have been removed in the nested loop. | 101 // The listener may have been removed in the nested loop. |
| 101 if (m_listener) | 102 if (m_listener) |
| 102 m_listener->didContinue(); | 103 m_listener->didContinue(); |
| 103 } | 104 } |
| 104 | 105 |
| 105 void WorkerScriptDebugServer::quitMessageLoopOnPause() | 106 void WorkerScriptDebugServer::quitMessageLoopOnPause() |
| 106 { | 107 { |
| 107 // Nothing to do here in case of workers since runMessageLoopOnPause will ch
eck for paused state after each debugger command. | 108 // Nothing to do here in case of workers since runMessageLoopOnPause will ch
eck for paused state after each debugger command. |
| 108 } | 109 } |
| 109 | 110 |
| 110 } // namespace blink | 111 } // namespace blink |
| OLD | NEW |