Skip to content

Commit

Permalink
src: apply clang-tidy rule modernize-make-unique
Browse files Browse the repository at this point in the history
PR-URL: #26493
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
  • Loading branch information
gengjiawen authored and targos committed Mar 30, 2019
1 parent 5a29a94 commit c51cc9e
Show file tree
Hide file tree
Showing 12 changed files with 39 additions and 28 deletions.
5 changes: 3 additions & 2 deletions src/cares_wrap.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@

#include <cerrno>
#include <cstring>
#include <memory>
#include <vector>
#include <unordered_set>

Expand Down Expand Up @@ -663,7 +664,7 @@ class QueryWrap : public AsyncWrap {
memcpy(buf_copy, answer_buf, answer_len);
}

wrap->response_data_.reset(new ResponseData());
wrap->response_data_ = std::make_unique<ResponseData>();
ResponseData* data = wrap->response_data_.get();
data->status = status;
data->is_host = false;
Expand All @@ -683,7 +684,7 @@ class QueryWrap : public AsyncWrap {
cares_wrap_hostent_cpy(host_copy, host);
}

wrap->response_data_.reset(new ResponseData());
wrap->response_data_ = std::make_unique<ResponseData>();
ResponseData* data = wrap->response_data_.get();
data->status = status;
data->host.reset(host_copy);
Expand Down
7 changes: 4 additions & 3 deletions src/env.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <algorithm>
#include <atomic>
#include <cstdio>
#include <memory>

namespace node {

Expand Down Expand Up @@ -217,8 +218,7 @@ Environment::Environment(IsolateData* isolate_data,

#if HAVE_INSPECTOR
// We can only create the inspector agent after having cloned the options.
inspector_agent_ =
std::unique_ptr<inspector::Agent>(new inspector::Agent(this));
inspector_agent_ = std::make_unique<inspector::Agent>(this);
#endif

AssignToContext(context, ContextInfo(""));
Expand All @@ -238,7 +238,8 @@ Environment::Environment(IsolateData* isolate_data,
},
this);

performance_state_.reset(new performance::performance_state(isolate()));
performance_state_ =
std::make_unique<performance::performance_state>(isolate());
performance_state_->Mark(
performance::NODE_PERFORMANCE_MILESTONE_ENVIRONMENT);
performance_state_->Mark(performance::NODE_PERFORMANCE_MILESTONE_NODE_START,
Expand Down
7 changes: 3 additions & 4 deletions src/inspector/main_thread_interface.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#include <unicode/unistr.h>

#include <functional>
#include <memory>

namespace node {
namespace inspector {
Expand Down Expand Up @@ -114,8 +115,7 @@ class AnotherThreadObjectReference {

~AnotherThreadObjectReference() {
// Disappearing thread may cause a memory leak
thread_->Post(
std::unique_ptr<DeleteRequest>(new DeleteRequest(object_id_)));
thread_->Post(std::make_unique<DeleteRequest>(object_id_));
}

template <typename Fn>
Expand Down Expand Up @@ -151,8 +151,7 @@ class MainThreadSessionState {

static std::unique_ptr<MainThreadSessionState> Create(
MainThreadInterface* thread, bool prevent_shutdown) {
return std::unique_ptr<MainThreadSessionState>(
new MainThreadSessionState(thread, prevent_shutdown));
return std::make_unique<MainThreadSessionState>(thread, prevent_shutdown);
}

void Connect(std::unique_ptr<InspectorSessionDelegate> delegate) {
Expand Down
9 changes: 4 additions & 5 deletions src/inspector/worker_inspector.cc
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#include "worker_inspector.h"

#include "main_thread_interface.h"

#include <memory>

namespace node {
namespace inspector {
namespace {
Expand Down Expand Up @@ -88,8 +89,7 @@ void WorkerManager::WorkerStarted(int session_id,
std::unique_ptr<ParentInspectorHandle>
WorkerManager::NewParentHandle(int thread_id, const std::string& url) {
bool wait = !delegates_waiting_on_start_.empty();
return std::unique_ptr<ParentInspectorHandle>(
new ParentInspectorHandle(thread_id, url, thread_, wait));
return std::make_unique<ParentInspectorHandle>(thread_id, url, thread_, wait);
}

void WorkerManager::RemoveAttachDelegate(int id) {
Expand All @@ -106,8 +106,7 @@ std::unique_ptr<WorkerManagerEventHandle> WorkerManager::SetAutoAttach(
// Waiting is only reported when a worker is started, same as browser
Report(delegate, worker.second, false);
}
return std::unique_ptr<WorkerManagerEventHandle>(
new WorkerManagerEventHandle(shared_from_this(), id));
return std::make_unique<WorkerManagerEventHandle>(shared_from_this(), id);
}

void WorkerManager::SetWaitOnStartForDelegate(int id, bool wait) {
Expand Down
6 changes: 4 additions & 2 deletions src/inspector_js_api.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
#include "v8.h"
#include "v8-inspector.h"

#include <memory>

namespace node {
namespace inspector {
namespace {
Expand Down Expand Up @@ -65,8 +67,8 @@ class JSBindingsConnection : public AsyncWrap {
: AsyncWrap(env, wrap, PROVIDER_INSPECTORJSBINDING),
callback_(env->isolate(), callback) {
Agent* inspector = env->inspector_agent();
session_ = inspector->Connect(std::unique_ptr<JSBindingsSessionDelegate>(
new JSBindingsSessionDelegate(env, this)), false);
session_ = inspector->Connect(std::make_unique<JSBindingsSessionDelegate>(
env, this), false);
}

void OnMessage(Local<Value> value) {
Expand Down
6 changes: 3 additions & 3 deletions src/node_file.cc
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ int FileHandle::ReadStart() {
.ToLocal(&wrap_obj)) {
return UV_EBUSY;
}
read_wrap.reset(new FileHandleReadWrap(this, wrap_obj));
read_wrap = std::make_unique<FileHandleReadWrap>(this, wrap_obj);
}
}
int64_t recommended_read = 65536;
Expand Down Expand Up @@ -1288,8 +1288,8 @@ int MKDirpAsync(uv_loop_t* loop,
FSReqBase* req_wrap = FSReqBase::from_req(req);
// on the first iteration of algorithm, stash state information.
if (req_wrap->continuation_data == nullptr) {
req_wrap->continuation_data = std::unique_ptr<FSContinuationData>{
new FSContinuationData(req, mode, cb)};
req_wrap->continuation_data =
std::make_unique<FSContinuationData>(req, mode, cb);
req_wrap->continuation_data->PushPath(std::move(path));
}

Expand Down
5 changes: 3 additions & 2 deletions src/node_platform.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include "debug_utils.h"
#include "util.h"
#include <algorithm>
#include <memory>

namespace node {

Expand Down Expand Up @@ -172,8 +173,8 @@ WorkerThreadsTaskRunner::WorkerThreadsTaskRunner(int thread_pool_size) {
Mutex::ScopedLock lock(platform_workers_mutex);
int pending_platform_workers = thread_pool_size;

delayed_task_scheduler_.reset(
new DelayedTaskScheduler(&pending_worker_tasks_));
delayed_task_scheduler_ = std::make_unique<DelayedTaskScheduler>(
&pending_worker_tasks_);
threads_.push_back(delayed_task_scheduler_->Start());

for (int i = 0; i < thread_pool_size; i++) {
Expand Down
7 changes: 5 additions & 2 deletions src/node_v8_platform-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS

#include <memory>

#include "env-inl.h"
#include "node.h"
#include "node_metadata.h"
Expand Down Expand Up @@ -79,11 +81,12 @@ class NodeTraceStateObserver
struct V8Platform {
#if NODE_USE_V8_PLATFORM
inline void Initialize(int thread_pool_size) {
tracing_agent_.reset(new tracing::Agent());
tracing_agent_ = std::make_unique<tracing::Agent>();
node::tracing::TraceEventHelper::SetAgent(tracing_agent_.get());
node::tracing::TracingController* controller =
tracing_agent_->GetTracingController();
trace_state_observer_.reset(new NodeTraceStateObserver(controller));
trace_state_observer_ =
std::make_unique<NodeTraceStateObserver>(controller);
controller->AddTraceStateObserver(trace_state_observer_.get());
tracing_file_writer_ = tracing_agent_->DefaultHandle();
// Only start the tracing agent if we enabled any tracing categories.
Expand Down
3 changes: 2 additions & 1 deletion src/node_worker.cc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include "inspector/worker_inspector.h" // ParentInspectorHandle
#endif

#include <memory>
#include <string>
#include <vector>

Expand Down Expand Up @@ -77,7 +78,7 @@ Worker::Worker(Environment* env,
return;
}

child_port_data_.reset(new MessagePortData(nullptr));
child_port_data_ = std::make_unique<MessagePortData>(nullptr);
MessagePort::Entangle(parent_port_, child_port_data_.get());

object()->Set(env->context(),
Expand Down
4 changes: 3 additions & 1 deletion src/tracing/node_trace_buffer.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#include "tracing/node_trace_buffer.h"

#include <memory>
#include "util-inl.h"

namespace node {
Expand All @@ -19,7 +21,7 @@ TraceObject* InternalTraceBuffer::AddTraceEvent(uint64_t* handle) {
if (chunk) {
chunk->Reset(current_chunk_seq_++);
} else {
chunk.reset(new TraceBufferChunk(current_chunk_seq_++));
chunk = std::make_unique<TraceBufferChunk>(current_chunk_seq_++);
}
}
auto& chunk = chunks_[total_chunks_ - 1];
Expand Down
3 changes: 2 additions & 1 deletion test/cctest/node_test_fixture.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define TEST_CCTEST_NODE_TEST_FIXTURE_H_

#include <cstdlib>
#include <memory>
#include "gtest/gtest.h"
#include "node.h"
#include "node_platform.h"
Expand Down Expand Up @@ -77,7 +78,7 @@ class NodeTestFixture : public ::testing::Test {
node::Init(&argc, &argv0, &exec_argc, &exec_argv);
}

tracing_agent.reset(new node::tracing::Agent());
tracing_agent = std::make_unique<node::tracing::Agent>();
node::tracing::TraceEventHelper::SetAgent(tracing_agent.get());
CHECK_EQ(0, uv_loop_init(&current_loop));
platform.reset(static_cast<node::NodePlatform*>(
Expand Down
5 changes: 3 additions & 2 deletions test/cctest/test_inspector_socket_server.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include "gtest/gtest.h"

#include <algorithm>
#include <memory>
#include <sstream>

static uv_loop_t loop;
Expand Down Expand Up @@ -356,8 +357,8 @@ ServerHolder::ServerHolder(bool has_targets, uv_loop_t* loop,
targets = { MAIN_TARGET_ID };
std::unique_ptr<TestSocketServerDelegate> delegate(
new TestSocketServerDelegate(this, targets));
server_.reset(
new InspectorSocketServer(std::move(delegate), loop, host, port, out));
server_ = std::make_unique<InspectorSocketServer>(
std::move(delegate), loop, host, port, out);
}

static void TestHttpRequest(int port, const std::string& path,
Expand Down

0 comments on commit c51cc9e

Please sign in to comment.