|
|
|
// ***************************************************************** -*- C++ -*-
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2004-2018 Exiv2 authors
|
|
|
|
* This program is part of the Exiv2 distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
/*!
|
|
|
|
@file image_int.hpp
|
|
|
|
@brief Internal image helpers
|
|
|
|
@author Andreas Huggel (ahu)
|
|
|
|
<a href="mailto:ahuggel@gmx.net">ahuggel@gmx.net</a>
|
|
|
|
@date 10-May-15, ahu: created
|
|
|
|
*/
|
|
|
|
#ifndef IMAGE_INT_HPP_
|
|
|
|
#define IMAGE_INT_HPP_
|
|
|
|
|
|
|
|
// *****************************************************************************
|
|
|
|
// included header files
|
|
|
|
#include "types.hpp"
|
|
|
|
|
|
|
|
// + standard includes
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#if (defined(__GNUG__) || defined(__GNUC__)) || defined(__clang__)
|
|
|
|
#define ATTRIBUTE_FORMAT_PRINTF __attribute__((format(printf, 1, 0)))
|
|
|
|
#else
|
|
|
|
#define ATTRIBUTE_FORMAT_PRINTF
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// *****************************************************************************
|
|
|
|
// namespace extensions
|
|
|
|
namespace Exiv2 {
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
// *****************************************************************************
|
|
|
|
// class definitions
|
|
|
|
|
|
|
|
/*!
|
|
|
|
@brief format a string in the pattern of \em sprintf \em .
|
|
|
|
*/
|
|
|
|
std::string stringFormat(const char* format, ...) ATTRIBUTE_FORMAT_PRINTF;
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* @brief format data binary for display in @ref Image::printStructure()
|
|
|
|
*
|
|
|
|
* Overload for DataBuf.
|
|
|
|
*/
|
|
|
|
std::string binaryToString(const DataBuf& buf, size_t size, size_t start =0);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* @brief format data binary for display in @ref Image::printStructure()
|
|
|
|
*
|
|
|
|
* This function creates printable version of the binary data in `buff`
|
|
|
|
* according to the following rules:
|
|
|
|
* - characters with numeric values larger than 0x20 (= space) and smaller
|
|
|
|
* or equal to 0x7F (Delete) are printed as ordinary characters
|
|
|
|
* - characters outside of that range are printed as '.'
|
|
|
|
* - if the last element of the buffer is 0, then it is omitted
|
|
|
|
*
|
|
|
|
* @param[in] buff Binary data buffer that should be printed. Must have
|
|
|
|
* length `size + start`.
|
|
|
|
* @param[in] size Number of bytes from buffer that will be converted to
|
|
|
|
* the printable version. This is **not** the length of the buffer!
|
|
|
|
* @param[in] start Begin of the region of buff that will be printed. The
|
|
|
|
* region ends at `start + size`.
|
|
|
|
*
|
|
|
|
* **CAUTION** In contrast to the expected behavior, the second parameter is
|
|
|
|
* **not** the length of `buff` but the length of the printed region.
|
|
|
|
*
|
|
|
|
* @return Appropriately formatted string
|
|
|
|
*/
|
|
|
|
std::string binaryToString(const byte* buff, size_t size, size_t start /*=0*/);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
@brief format binary for display of raw data .
|
|
|
|
*/
|
|
|
|
std::string binaryToHex(const byte *data, size_t size);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
@brief indent output for kpsRecursive in \em printStructure() \em .
|
|
|
|
*/
|
|
|
|
std::string indent(int32_t depth);
|
|
|
|
|
|
|
|
}} // namespace Internal, Exiv2
|
|
|
|
|
|
|
|
#endif // #ifndef IMAGE_INT_HPP_
|