mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-04-04 11:27:13 +02:00
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.
38 lines
645 B
C++
38 lines
645 B
C++
//
|
|
// Replace.cpp
|
|
//
|
|
// Library: Zip
|
|
// Package: Manipulation
|
|
// Module: Replace
|
|
//
|
|
// Copyright (c) 2007, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/Zip/Replace.h"
|
|
#include "Poco/Zip/Compress.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace Zip {
|
|
|
|
|
|
Replace::Replace(const ZipLocalFileHeader& hdr, const std::string& localPath):
|
|
_del(hdr),
|
|
_add(hdr.getFileName(), localPath, hdr.getCompressionMethod(), hdr.getCompressionLevel())
|
|
{
|
|
}
|
|
|
|
|
|
void Replace::execute(Compress& c, std::istream& input)
|
|
{
|
|
_del.execute(c, input);
|
|
_add.execute(c, input);
|
|
}
|
|
|
|
|
|
} } // namespace Poco::Zip
|