mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
74 lines
2.1 KiB
C++
74 lines
2.1 KiB
C++
|
// Copyright 2015 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 "net/ssl/ssl_key_logger_impl.h"
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#include "base/bind.h"
|
||
|
#include "base/files/file_util.h"
|
||
|
#include "base/files/scoped_file.h"
|
||
|
#include "base/location.h"
|
||
|
#include "base/logging.h"
|
||
|
#include "base/macros.h"
|
||
|
#include "base/sequence_checker.h"
|
||
|
#include "base/sequenced_task_runner.h"
|
||
|
#include "base/task/post_task.h"
|
||
|
#include "base/task/task_traits.h"
|
||
|
|
||
|
namespace net {
|
||
|
|
||
|
// An object which lives on the background SequencedTaskRunner and performs the
|
||
|
// blocking file operations.
|
||
|
class SSLKeyLoggerImpl::Core {
|
||
|
public:
|
||
|
Core() { DETACH_FROM_SEQUENCE(sequence_checker_); }
|
||
|
~Core() { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); }
|
||
|
|
||
|
void OpenFile(const base::FilePath& path) {
|
||
|
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
|
||
|
DCHECK(!file_);
|
||
|
file_.reset(base::OpenFile(path, "a"));
|
||
|
if (!file_)
|
||
|
LOG(WARNING) << "Could not open " << path.value();
|
||
|
}
|
||
|
|
||
|
void WriteLine(const std::string& line) {
|
||
|
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
|
||
|
if (!file_)
|
||
|
return;
|
||
|
fprintf(file_.get(), "%s\n", line.c_str());
|
||
|
fflush(file_.get());
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
base::ScopedFILE file_;
|
||
|
SEQUENCE_CHECKER(sequence_checker_);
|
||
|
|
||
|
DISALLOW_COPY_AND_ASSIGN(Core);
|
||
|
};
|
||
|
|
||
|
SSLKeyLoggerImpl::SSLKeyLoggerImpl(const base::FilePath& path)
|
||
|
: core_(new Core) {
|
||
|
// The user explicitly asked for debugging information, so these tasks block
|
||
|
// shutdown to avoid dropping some log entries.
|
||
|
task_runner_ = base::CreateSequencedTaskRunnerWithTraits(
|
||
|
{base::MayBlock(), base::TaskShutdownBehavior::BLOCK_SHUTDOWN});
|
||
|
task_runner_->PostTask(
|
||
|
FROM_HERE,
|
||
|
base::BindOnce(&Core::OpenFile, base::Unretained(core_.get()), path));
|
||
|
}
|
||
|
|
||
|
SSLKeyLoggerImpl::~SSLKeyLoggerImpl() {
|
||
|
task_runner_->DeleteSoon(FROM_HERE, core_.release());
|
||
|
}
|
||
|
|
||
|
void SSLKeyLoggerImpl::WriteLine(const std::string& line) {
|
||
|
task_runner_->PostTask(
|
||
|
FROM_HERE,
|
||
|
base::BindOnce(&Core::WriteLine, base::Unretained(core_.get()), line));
|
||
|
}
|
||
|
|
||
|
} // namespace net
|