electron/brightray/browser/net_log.cc

64 lines
1.7 KiB
C++
Raw Normal View History

2015-06-05 14:54:38 +00:00
// Copyright (c) 2015 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include "brightray/browser/net_log.h"
2015-06-05 14:54:38 +00:00
#include <utility>
#include "base/callback.h"
2015-06-05 14:54:38 +00:00
#include "base/command_line.h"
2015-08-11 10:29:55 +00:00
#include "base/files/file_path.h"
#include "base/memory/ptr_util.h"
2015-08-11 10:29:55 +00:00
#include "base/values.h"
2015-06-05 14:54:38 +00:00
#include "content/public/common/content_switches.h"
#include "net/log/file_net_log_observer.h"
2015-06-05 14:54:38 +00:00
#include "net/log/net_log_util.h"
2015-08-11 10:29:55 +00:00
namespace brightray {
2015-06-05 14:54:38 +00:00
2015-06-06 09:03:07 +00:00
namespace {
std::unique_ptr<base::DictionaryValue> GetConstants() {
std::unique_ptr<base::DictionaryValue> constants = net::GetNetConstants();
2015-06-06 09:03:07 +00:00
// Adding client information to constants dictionary.
auto client_info = base::MakeUnique<base::DictionaryValue>();
2015-06-09 01:51:38 +00:00
client_info->SetString(
"command_line",
2015-06-06 09:03:07 +00:00
base::CommandLine::ForCurrentProcess()->GetCommandLineString());
constants->Set("clientInfo", std::move(client_info));
2015-06-09 01:51:38 +00:00
return constants;
2015-06-06 09:03:07 +00:00
}
} // namespace
2015-08-11 10:29:55 +00:00
NetLog::NetLog() {
}
NetLog::~NetLog() {
2017-11-02 15:06:18 +00:00
if (file_net_log_observer_) {
file_net_log_observer_->StopObserving(nullptr, base::Closure());
file_net_log_observer_.reset();
}
}
void NetLog::StartLogging() {
2015-06-05 14:54:38 +00:00
auto command_line = base::CommandLine::ForCurrentProcess();
2015-08-11 10:29:55 +00:00
if (!command_line->HasSwitch(switches::kLogNetLog))
return;
base::FilePath log_path =
command_line->GetSwitchValuePath(switches::kLogNetLog);
std::unique_ptr<base::Value> constants(GetConstants());
net::NetLogCaptureMode capture_mode =
net::NetLogCaptureMode::IncludeCookiesAndCredentials();
file_net_log_observer_ =
net::FileNetLogObserver::CreateUnbounded(log_path, std::move(constants));
file_net_log_observer_->StartObserving(this, capture_mode);
2015-06-05 14:54:38 +00:00
}
} // namespace brightray