mirror of
git://sourceware.org/git/libabigail.git
synced 2025-01-18 15:20:45 +00:00
c458e00db9
Remove the unneccessary includes of abg-cxx-compat.h as users have been migrated to use the corresponding standard includes. * include/abg-comparison.h: Remove include of abg-cxx-compat.h. * include/abg-diff-utils.h: Likewise. * include/abg-fwd.h: Likewise. * include/abg-ini.h: Likewise. * include/abg-interned-str.h: Likewise. * include/abg-ir.h: Likewise. * include/abg-libxml-utils.h: Likewise. * include/abg-libzip-utils.h: Likewise. * include/abg-regex.h: Likewise. * include/abg-reporter.h: Likewise. * include/abg-sptr-utils.h: Likewise. * include/abg-suppression.h: Likewise. * include/abg-tools-utils.h: Likewise. * include/abg-workers.h: Likewise. * src/abg-comp-filter.cc: Likewise. * src/abg-comparison-priv.h: Likewise. * src/abg-corpus.cc: Likewise. * src/abg-dwarf-reader.cc: Likewise. * src/abg-hash.cc: Likewise. * src/abg-ir.cc: Likewise. * src/abg-reader.cc: Likewise. * src/abg-suppression.cc: Likewise. * src/abg-tools-utils.cc: Likewise. * src/abg-writer.cc: Likewise. * tests/test-diff-suppr.cc: Likewise. * tests/test-read-write.cc: Likewise. * tools/abicompat.cc: Likewise. * tools/abidw.cc: Likewise. * tools/abilint.cc: Likewise. * tools/abipkgdiff.cc: Likewise. Signed-off-by: Matthias Maennich <maennich@google.com>
62 lines
1.2 KiB
C++
62 lines
1.2 KiB
C++
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
// -*- mode: C++ -*-
|
|
//
|
|
// Copyright (C) 2013-2020 Red Hat, Inc.
|
|
|
|
/// @file
|
|
|
|
#ifndef __ABG_LIBZIP_UTILS_H__
|
|
#define __ABG_LIBZIP_UTILS_H__
|
|
|
|
#include <zip.h>
|
|
#include <memory>
|
|
|
|
namespace abigail
|
|
{
|
|
|
|
namespace zip_utils
|
|
{
|
|
|
|
using std::shared_ptr;
|
|
using std::string;
|
|
|
|
/// @brief Functor passed to shared_ptr constructor during
|
|
/// instantiation with zip*
|
|
///
|
|
/// Its aim is to delete zip* managed by shared_ptr.
|
|
struct archive_deleter
|
|
{
|
|
void
|
|
operator()(zip* archive)
|
|
{
|
|
/// ??? Maybe check the return code of close and throw if the
|
|
/// close fails? But then callers must be prepared to handle
|
|
/// this.
|
|
zip_close(archive);
|
|
}
|
|
};//end archive_deleter
|
|
|
|
/// @brief Functor passed to shared_ptr<zip_file>'s constructor.
|
|
///
|
|
/// Its aim is to close (actually delete) the zip_file* managed by the
|
|
/// shared_ptr.
|
|
struct zip_file_deleter
|
|
{
|
|
void
|
|
operator()(zip_file*f)
|
|
{
|
|
zip_fclose(f);
|
|
}
|
|
};
|
|
|
|
typedef shared_ptr<zip> zip_sptr;
|
|
zip_sptr open_archive(const string& path, int flags, int *errorp);
|
|
|
|
typedef shared_ptr<zip_file> zip_file_sptr;
|
|
zip_file_sptr open_file_in_archive(zip_sptr archive,
|
|
int file_index);
|
|
|
|
}// end namespace zip
|
|
}// end namespace abigail
|
|
#endif //__ABG_LIBZIP_UTILS_H__
|