mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-31 18:07:14 +01:00
4a6bfc086c
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
147 lines
2.7 KiB
C++
147 lines
2.7 KiB
C++
//
|
|
// DirectoryIterator.cpp
|
|
//
|
|
// Library: Foundation
|
|
// Package: Filesystem
|
|
// Module: DirectoryIterator
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/DirectoryIterator.h"
|
|
|
|
|
|
#if defined(POCO_OS_FAMILY_WINDOWS)
|
|
#include "DirectoryIterator_WIN32U.cpp"
|
|
#elif defined(POCO_OS_FAMILY_UNIX)
|
|
#include "DirectoryIterator_UNIX.cpp"
|
|
#endif
|
|
|
|
|
|
namespace Poco {
|
|
|
|
|
|
DirectoryIterator::DirectoryIterator(): _pImpl(0)
|
|
{
|
|
}
|
|
|
|
|
|
DirectoryIterator::DirectoryIterator(const std::string& path): _path(path), _pImpl(new DirectoryIteratorImpl(path))
|
|
{
|
|
_path.makeDirectory();
|
|
_path.setFileName(_pImpl->get());
|
|
_file = _path;
|
|
}
|
|
|
|
|
|
DirectoryIterator::DirectoryIterator(const DirectoryIterator& iterator): _path(iterator._path), _pImpl(iterator._pImpl)
|
|
{
|
|
if (_pImpl)
|
|
{
|
|
_pImpl->duplicate();
|
|
_file = _path;
|
|
}
|
|
}
|
|
|
|
|
|
DirectoryIterator::DirectoryIterator(const File& file): _path(file.path()), _pImpl(new DirectoryIteratorImpl(file.path()))
|
|
{
|
|
_path.makeDirectory();
|
|
_path.setFileName(_pImpl->get());
|
|
_file = _path;
|
|
}
|
|
|
|
|
|
DirectoryIterator::DirectoryIterator(const Path& path): _path(path), _pImpl(new DirectoryIteratorImpl(path.toString()))
|
|
{
|
|
_path.makeDirectory();
|
|
_path.setFileName(_pImpl->get());
|
|
_file = _path;
|
|
}
|
|
|
|
|
|
DirectoryIterator::~DirectoryIterator()
|
|
{
|
|
if (_pImpl) _pImpl->release();
|
|
}
|
|
|
|
|
|
DirectoryIterator& DirectoryIterator::operator = (const DirectoryIterator& it)
|
|
{
|
|
if (&it != this)
|
|
{
|
|
if (_pImpl) _pImpl->release();
|
|
_pImpl = it._pImpl;
|
|
if (_pImpl)
|
|
{
|
|
_pImpl->duplicate();
|
|
_path = it._path;
|
|
_file = _path;
|
|
}
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
|
|
DirectoryIterator& DirectoryIterator::operator = (const File& file)
|
|
{
|
|
if (_pImpl) _pImpl->release();
|
|
_pImpl = new DirectoryIteratorImpl(file.path());
|
|
_path.parseDirectory(file.path());
|
|
_path.setFileName(_pImpl->get());
|
|
_file = _path;
|
|
return *this;
|
|
}
|
|
|
|
|
|
DirectoryIterator& DirectoryIterator::operator = (const Path& path)
|
|
{
|
|
if (_pImpl) _pImpl->release();
|
|
_pImpl = new DirectoryIteratorImpl(path.toString());
|
|
_path = path;
|
|
_path.makeDirectory();
|
|
_path.setFileName(_pImpl->get());
|
|
_file = _path;
|
|
return *this;
|
|
}
|
|
|
|
|
|
DirectoryIterator& DirectoryIterator::operator = (const std::string& path)
|
|
{
|
|
if (_pImpl) _pImpl->release();
|
|
_pImpl = new DirectoryIteratorImpl(path);
|
|
_path.parseDirectory(path);
|
|
_path.setFileName(_pImpl->get());
|
|
_file = _path;
|
|
return *this;
|
|
}
|
|
|
|
|
|
DirectoryIterator& DirectoryIterator::operator ++ ()
|
|
{
|
|
if (_pImpl)
|
|
{
|
|
_path.setFileName(_pImpl->next());
|
|
_file = _path;
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
|
|
DirectoryIterator DirectoryIterator::operator ++ (int dummy)
|
|
{
|
|
if (_pImpl)
|
|
{
|
|
_path.setFileName(_pImpl->next());
|
|
_file = _path;
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
|
|
} // namespace Poco
|