syncevolution/src/syncevo/FileDataBlob.cpp
Patrick Ohly 2fa3c3335a C++: replace boost::shared_ptr, boost::function, boost::bind
We can use std::shared_ptr and std::function instead now.

Lambdas are usually a better alternative to boost/std::bind. The
downside is the need to explicitly specify parameters completely. When
inlining callbacks entirely with lambdas, duplication of that
parameter list can be avoided.

Whenever possible, use std::make_shared to construct objects that are
tracked by std::shared_ptr.

Some objects need a std::weak_ptr during object destruction. For that
we have to use our own implementation of std::enable_shared_from_this,
with a matching creator function. The additional benefit is that we
can get rid of explicit static "create" methods by making that create
function a friend.

Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
2020-12-05 21:28:08 +01:00

72 lines
1.9 KiB
C++

/*
* Copyright (C) 2008-2009 Patrick Ohly <patrick.ohly@gmx.de>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) version 3.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#include <syncevo/FileDataBlob.h>
#include <syncevo/SafeOstream.h>
#include <syncevo/util.h>
#include <unistd.h>
#include <syncevo/declarations.h>
SE_BEGIN_CXX
FileDataBlob::FileDataBlob(const std::string &path, const std::string &fileName, bool readonly) :
m_path(path),
m_fileName(fileName),
m_readonly(readonly)
{
}
FileDataBlob::FileDataBlob(const std::string &fullpath, bool readonly) :
m_readonly(readonly)
{
splitPath(fullpath, m_path, m_fileName);
}
std::shared_ptr<std::ostream> FileDataBlob::write()
{
if (m_readonly) {
SE_THROW(getName() + ": internal error: attempt to write read-only FileDataBlob");
}
mkdir_p(m_path);
auto file = std::make_shared<SafeOstream>(getName());
return file;
}
std::shared_ptr<std::istream> FileDataBlob::read()
{
auto file = std::make_shared<std::ifstream>(getName().c_str());
return file;
}
std::string FileDataBlob::getName() const
{
return m_path + "/" + m_fileName;
}
bool FileDataBlob::exists() const
{
std::string fullname = getName();
return !access(fullname.c_str(), F_OK);
}
SE_END_CXX