libcdr_utils.h
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2/*
3 * This file is part of the libcdr project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
9
10#ifndef __LIBCDR_UTILS_H__
11#define __LIBCDR_UTILS_H__
12
13#ifdef HAVE_CONFIG_H
14#include "config.h"
15#endif
16
17#include <math.h>
18#include <memory>
19#include <vector>
20
21#include <boost/cstdint.hpp>
22
23#include <librevenge-stream/librevenge-stream.h>
24#include <librevenge/librevenge.h>
25
26#ifndef M_PI
27#define M_PI 3.14159265358979323846
28#endif
29
30#define CDR_EPSILON 1E-6
31#define CDR_ALMOST_ZERO(m) (fabs(m) <= CDR_EPSILON)
32
33#if defined(HAVE_FUNC_ATTRIBUTE_FORMAT)
34# define CDR_ATTRIBUTE_PRINTF(fmt, arg) __attribute__((__format__(__printf__, fmt, arg)))
35#else
36# define CDR_ATTRIBUTE_PRINTF(fmt, arg)
37#endif
38
39#if defined(HAVE_CLANG_ATTRIBUTE_FALLTHROUGH)
40# define CDR_FALLTHROUGH [[clang::fallthrough]]
41#elif defined(HAVE_GCC_ATTRIBUTE_FALLTHROUGH)
42# define CDR_FALLTHROUGH __attribute__((fallthrough))
43#else
44# define CDR_FALLTHROUGH ((void) 0)
45#endif
46
47// do nothing with debug messages in a release compile
48#ifdef DEBUG
49namespace libcdr
50{
51void debugPrint(const char *format, ...) CDR_ATTRIBUTE_PRINTF(1, 2);
52}
53#define CDR_DEBUG_MSG(M) libcdr::debugPrint M
54#define CDR_DEBUG(M) M
55#else
56#define CDR_DEBUG_MSG(M)
57#define CDR_DEBUG(M)
58#endif
59
60namespace libcdr
61{
62
64{
65 void operator()(void *) const {}
66};
67
68template<typename T, typename... Args>
69std::unique_ptr<T> make_unique(Args &&... args)
70{
71 return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
72}
73
74uint8_t readU8(librevenge::RVNGInputStream *input, bool bigEndian=false);
75uint16_t readU16(librevenge::RVNGInputStream *input, bool bigEndian=false);
76uint32_t readU32(librevenge::RVNGInputStream *input, bool bigEndian=false);
77uint64_t readU64(librevenge::RVNGInputStream *input, bool bigEndian=false);
78int32_t readS32(librevenge::RVNGInputStream *input, bool bigEndian=false);
79int16_t readS16(librevenge::RVNGInputStream *input, bool bigEndian=false);
80
81double readDouble(librevenge::RVNGInputStream *input, bool bigEndian=false);
82
83double readFixedPoint(librevenge::RVNGInputStream *input, bool bigEndian=false);
84
85unsigned long getLength(librevenge::RVNGInputStream *input);
86unsigned long getRemainingLength(librevenge::RVNGInputStream *input);
87
88int cdr_round(double d);
89
90void writeU16(librevenge::RVNGBinaryData &buffer, const int value);
91void writeU32(librevenge::RVNGBinaryData &buffer, const int value);
92void appendCharacters(librevenge::RVNGString &text, std::vector<unsigned char> characters, unsigned short charset);
93void appendCharacters(librevenge::RVNGString &text, std::vector<unsigned char> characters);
94void appendUTF8Characters(librevenge::RVNGString &text, std::vector<unsigned char> characters);
95
96#ifdef DEBUG
97const char *toFourCC(unsigned value, bool bigEndian=false);
98#endif
99
101{
102};
103
105{
106};
107
111
113{
114};
115
116} // namespace libcdr
117
118#endif // __LIBCDR_UTILS_H__
119/* vim:set shiftwidth=2 softtabstop=2 expandtab: */
Definition libcdr_utils.h:113
Definition libcdr_utils.h:101
Definition libcdr_utils.h:105
Definition libcdr_utils.h:109
#define CDR_ATTRIBUTE_PRINTF(fmt, arg)
Definition libcdr_utils.h:36
Definition CDRCollector.h:25
double readDouble(librevenge::RVNGInputStream *input, bool bigEndian=false)
Definition libcdr_utils.cpp:249
void appendUTF8Characters(librevenge::RVNGString &text, std::vector< unsigned char > characters)
Definition libcdr_utils.cpp:465
uint8_t readU8(librevenge::RVNGInputStream *input, bool bigEndian=false)
Definition libcdr_utils.cpp:163
double readFixedPoint(librevenge::RVNGInputStream *input, bool bigEndian=false)
Definition libcdr_utils.cpp:262
void writeU32(librevenge::RVNGBinaryData &buffer, const int value)
Definition libcdr_utils.cpp:317
void writeU16(librevenge::RVNGBinaryData &buffer, const int value)
Definition libcdr_utils.cpp:311
uint64_t readU64(librevenge::RVNGInputStream *input, bool bigEndian=false)
Definition libcdr_utils.cpp:229
void appendCharacters(librevenge::RVNGString &text, std::vector< unsigned char > characters, unsigned short charset)
Definition libcdr_utils.cpp:325
unsigned long getLength(librevenge::RVNGInputStream *input)
Definition libcdr_utils.cpp:270
int cdr_round(double d)
Definition libcdr_utils.cpp:306
int32_t readS32(librevenge::RVNGInputStream *input, bool bigEndian=false)
Definition libcdr_utils.cpp:224
uint32_t readU32(librevenge::RVNGInputStream *input, bool bigEndian=false)
Definition libcdr_utils.cpp:204
std::unique_ptr< T > make_unique(Args &&... args)
Definition libcdr_utils.h:69
uint16_t readU16(librevenge::RVNGInputStream *input, bool bigEndian=false)
Definition libcdr_utils.cpp:179
int16_t readS16(librevenge::RVNGInputStream *input, bool bigEndian=false)
Definition libcdr_utils.cpp:199
unsigned long getRemainingLength(librevenge::RVNGInputStream *input)
Definition libcdr_utils.cpp:301
Definition libcdr_utils.h:64
void operator()(void *) const
Definition libcdr_utils.h:65

Generated for libcdr by doxygen 1.12.0