Skip to content
Snippets Groups Projects
Unverified Commit 30769735 authored by Guilherme Amadio's avatar Guilherme Amadio
Browse files

Use std::move() to keep ownership transfer more explicit

This makes it again as it was previously implemented by Vassil
in commit 92f1f502. Suggested by Enrico as easier to read.
parent 9d226a34
No related branches found
No related tags found
No related merge requests found
......@@ -104,7 +104,7 @@ private:
/** TBufferMerger has no copy operator */
TBufferMerger &operator=(const TBufferMerger &);
void Init(TFile*);
void Init(std::unique_ptr<TFile>);
void Merge();
void Push(TBufferFile *buffer);
......
......@@ -16,6 +16,8 @@
#include "TROOT.h"
#include "TVirtualMutex.h"
#include <utility>
namespace ROOT {
namespace Experimental {
......@@ -24,20 +26,20 @@ TBufferMerger::TBufferMerger(const char *name, Option_t *option, Int_t compress)
// We cannot chain constructors or use in-place initialization here because
// instantiating a TBufferMerger should not alter gDirectory's state.
TDirectory::TContext ctxt;
Init(TFile::Open(name, option, /* title */ name, compress));
Init(std::unique_ptr<TFile>(TFile::Open(name, option, /* title */ name, compress)));
}
TBufferMerger::TBufferMerger(std::unique_ptr<TFile> output)
{
Init(output.release());
Init(std::move(output));
}
void TBufferMerger::Init(TFile *output)
void TBufferMerger::Init(std::unique_ptr<TFile> output)
{
if (!output || !output->IsWritable() || output->IsZombie())
Error("TBufferMerger", "cannot write to output file");
fMerger.OutputFile(std::unique_ptr<TFile>(output));
fMerger.OutputFile(std::move(output));
fMergingThread.reset(new std::thread([&]() { this->WriteOutputFile(); }));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment