summaryrefslogtreecommitdiffstats
path: root/chrome/browser/debugger/debugger_wrapper.cc
blob: 8033a835f82fc7139c13a94584579e669b30b99c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/debugger/debugger_wrapper.h"

#include "base/command_line.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/debugger/debugger_shell.h"
#include "chrome/browser/debugger/debugger_io_socket.h"
#include "chrome/browser/debugger/debugger_host.h"
#include "chrome/browser/debugger/debugger_remote_service.h"
#include "chrome/browser/debugger/devtools_protocol_handler.h"
#include "chrome/browser/debugger/devtools_remote_service.h"
#include "chrome/common/chrome_switches.h"

DebuggerWrapper::DebuggerWrapper(int port) {
#ifndef CHROME_DEBUGGER_DISABLED
  if (port > 0) {
    if (!CommandLine::ForCurrentProcess()->HasSwitch(
        switches::kEnableOutOfProcessDevTools)) {
      DebuggerInputOutputSocket *io = new DebuggerInputOutputSocket(port);
      debugger_ = new DebuggerShell(io);
      debugger_->Start();
    } else {
      proto_handler_ = new DevToolsProtocolHandler(port);
      proto_handler_->RegisterDestination(
          new DevToolsRemoteService(proto_handler_),
          DevToolsRemoteService::kToolName);
      proto_handler_->RegisterDestination(
          new DebuggerRemoteService(proto_handler_),
          DebuggerRemoteService::kToolName);
      proto_handler_->Start();
    }
  }
#endif
}

DebuggerWrapper::~DebuggerWrapper() {
  if (proto_handler_.get() != NULL) {
    proto_handler_->Stop();
  }
}

void DebuggerWrapper::SetDebugger(DebuggerHost* debugger) {
  debugger_ = debugger;
}

DebuggerHost* DebuggerWrapper::GetDebugger() {
  return debugger_.get();
}

void DebuggerWrapper::DebugMessage(const std::wstring& msg) {
  if (debugger_.get())
    debugger_->DebugMessage(msg);
}

void DebuggerWrapper::OnDebugAttach() {
  if (debugger_.get())
    debugger_->OnDebugAttach();
}

void DebuggerWrapper::OnDebugDisconnect() {
  if (debugger_.get())
    debugger_->OnDebugDisconnect();
}