2009-03-10 16:56:48 +01:00
|
|
|
//===- Format.h - Efficient printf-style formatting for streams -*- C++ -*-===//
|
2008-08-23 21:48:00 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the format() function, which can be used with other
|
|
|
|
// LLVM subsystems to provide printf-style formatting. This gives all the power
|
|
|
|
// and risk of printf. This can be used like this (with raw_ostreams as an
|
|
|
|
// example):
|
|
|
|
//
|
|
|
|
// OS << "mynumber: " << format("%4.5f", 1234.412) << '\n';
|
|
|
|
//
|
|
|
|
// Or if you prefer:
|
|
|
|
//
|
|
|
|
// OS << format("mynumber: %4.5f\n", 1234.412);
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_SUPPORT_FORMAT_H
|
|
|
|
#define LLVM_SUPPORT_FORMAT_H
|
|
|
|
|
2015-02-15 23:15:41 +01:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2014-09-25 22:30:58 +02:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2014-09-25 23:00:38 +02:00
|
|
|
#include "llvm/Support/DataTypes.h"
|
2009-11-05 14:30:28 +01:00
|
|
|
#include <cassert>
|
2008-08-23 21:48:00 +02:00
|
|
|
#include <cstdio>
|
2015-02-15 23:15:41 +01:00
|
|
|
#include <tuple>
|
2008-08-23 21:48:00 +02:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2014-06-04 17:47:07 +02:00
|
|
|
/// This is a helper class used for handling formatted output. It is the
|
|
|
|
/// abstract base class of a templated derived class.
|
2008-08-23 21:48:00 +02:00
|
|
|
class format_object_base {
|
|
|
|
protected:
|
|
|
|
const char *Fmt;
|
2015-03-04 08:35:04 +01:00
|
|
|
~format_object_base() = default; // Disallow polymorphic deletion.
|
|
|
|
format_object_base(const format_object_base &) = default;
|
2008-08-23 21:48:00 +02:00
|
|
|
virtual void home(); // Out of line virtual method.
|
2009-08-23 22:31:39 +02:00
|
|
|
|
2014-06-04 17:47:07 +02:00
|
|
|
/// Call snprintf() for this object, on the given buffer and size.
|
2009-08-23 22:31:39 +02:00
|
|
|
virtual int snprint(char *Buffer, unsigned BufferSize) const = 0;
|
|
|
|
|
2008-08-23 21:48:00 +02:00
|
|
|
public:
|
|
|
|
format_object_base(const char *fmt) : Fmt(fmt) {}
|
2009-02-20 23:51:36 +01:00
|
|
|
|
2014-06-04 17:47:07 +02:00
|
|
|
/// Format the object into the specified buffer. On success, this returns
|
|
|
|
/// the length of the formatted string. If the buffer is too small, this
|
|
|
|
/// returns a length to retry with, which will be larger than BufferSize.
|
2009-08-23 22:31:39 +02:00
|
|
|
unsigned print(char *Buffer, unsigned BufferSize) const {
|
|
|
|
assert(BufferSize && "Invalid buffer size!");
|
|
|
|
|
|
|
|
// Print the string, leaving room for the terminating null.
|
|
|
|
int N = snprint(Buffer, BufferSize);
|
|
|
|
|
|
|
|
// VC++ and old GlibC return negative on overflow, just double the size.
|
|
|
|
if (N < 0)
|
2014-06-04 17:47:07 +02:00
|
|
|
return BufferSize * 2;
|
2009-08-23 22:31:39 +02:00
|
|
|
|
2014-06-04 17:47:07 +02:00
|
|
|
// Other implementations yield number of bytes needed, not including the
|
|
|
|
// final '\0'.
|
2009-08-23 22:31:39 +02:00
|
|
|
if (unsigned(N) >= BufferSize)
|
2014-06-04 17:47:07 +02:00
|
|
|
return N + 1;
|
2009-08-23 22:31:39 +02:00
|
|
|
|
|
|
|
// Otherwise N is the length of output (not including the final '\0').
|
|
|
|
return N;
|
|
|
|
}
|
2008-08-23 21:48:00 +02:00
|
|
|
};
|
|
|
|
|
2014-06-04 17:47:07 +02:00
|
|
|
/// These are templated helper classes used by the format function that
|
|
|
|
/// capture the object to be formated and the format string. When actually
|
|
|
|
/// printed, this synthesizes the string into a temporary buffer provided and
|
|
|
|
/// returns whether or not it is big enough.
|
|
|
|
|
2015-02-15 23:15:41 +01:00
|
|
|
template <typename... Ts>
|
|
|
|
class format_object final : public format_object_base {
|
|
|
|
std::tuple<Ts...> Vals;
|
2011-10-10 23:21:34 +02:00
|
|
|
|
2015-02-15 23:15:41 +01:00
|
|
|
template <std::size_t... Is>
|
|
|
|
int snprint_tuple(char *Buffer, unsigned BufferSize,
|
|
|
|
index_sequence<Is...>) const {
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
return _snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...);
|
|
|
|
#else
|
2015-02-16 00:17:20 +01:00
|
|
|
return snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...);
|
2015-02-15 23:15:41 +01:00
|
|
|
#endif
|
2011-10-10 23:21:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2015-02-15 23:15:41 +01:00
|
|
|
format_object(const char *fmt, const Ts &... vals)
|
|
|
|
: format_object_base(fmt), Vals(vals...) {}
|
2011-10-10 23:21:34 +02:00
|
|
|
|
2014-03-04 07:24:11 +01:00
|
|
|
int snprint(char *Buffer, unsigned BufferSize) const override {
|
2015-02-15 23:15:41 +01:00
|
|
|
return snprint_tuple(Buffer, BufferSize, index_sequence_for<Ts...>());
|
2014-06-02 03:17:54 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-06-04 17:47:07 +02:00
|
|
|
/// These are helper functions used to produce formatted output. They use
|
|
|
|
/// template type deduction to construct the appropriate instance of the
|
|
|
|
/// format_object class to simplify their construction.
|
2012-09-14 16:57:36 +02:00
|
|
|
///
|
|
|
|
/// This is typically used like:
|
|
|
|
/// \code
|
|
|
|
/// OS << format("%0.4f", myfloat) << '\n';
|
|
|
|
/// \endcode
|
2014-06-04 17:47:07 +02:00
|
|
|
|
2015-02-15 23:15:41 +01:00
|
|
|
template <typename... Ts>
|
|
|
|
inline format_object<Ts...> format(const char *Fmt, const Ts &... Vals) {
|
|
|
|
return format_object<Ts...>(Fmt, Vals...);
|
2014-06-02 03:17:54 +02:00
|
|
|
}
|
|
|
|
|
2014-09-25 22:30:58 +02:00
|
|
|
/// This is a helper class used for left_justify() and right_justify().
|
|
|
|
class FormattedString {
|
|
|
|
StringRef Str;
|
|
|
|
unsigned Width;
|
|
|
|
bool RightJustify;
|
|
|
|
friend class raw_ostream;
|
2015-08-10 06:21:43 +02:00
|
|
|
|
2014-09-25 22:30:58 +02:00
|
|
|
public:
|
|
|
|
FormattedString(StringRef S, unsigned W, bool R)
|
|
|
|
: Str(S), Width(W), RightJustify(R) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
/// left_justify - append spaces after string so total output is
|
|
|
|
/// \p Width characters. If \p Str is larger that \p Width, full string
|
|
|
|
/// is written with no padding.
|
|
|
|
inline FormattedString left_justify(StringRef Str, unsigned Width) {
|
|
|
|
return FormattedString(Str, Width, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// right_justify - add spaces before string so total output is
|
|
|
|
/// \p Width characters. If \p Str is larger that \p Width, full string
|
|
|
|
/// is written with no padding.
|
|
|
|
inline FormattedString right_justify(StringRef Str, unsigned Width) {
|
|
|
|
return FormattedString(Str, Width, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// This is a helper class used for format_hex() and format_decimal().
|
|
|
|
class FormattedNumber {
|
|
|
|
uint64_t HexValue;
|
|
|
|
int64_t DecValue;
|
|
|
|
unsigned Width;
|
|
|
|
bool Hex;
|
|
|
|
bool Upper;
|
2015-01-26 19:21:33 +01:00
|
|
|
bool HexPrefix;
|
2014-09-25 22:30:58 +02:00
|
|
|
friend class raw_ostream;
|
2015-08-10 06:21:43 +02:00
|
|
|
|
2014-09-25 22:30:58 +02:00
|
|
|
public:
|
2015-01-26 19:21:33 +01:00
|
|
|
FormattedNumber(uint64_t HV, int64_t DV, unsigned W, bool H, bool U,
|
|
|
|
bool Prefix)
|
|
|
|
: HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
|
|
|
|
HexPrefix(Prefix) {}
|
2014-09-25 22:30:58 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/// format_hex - Output \p N as a fixed width hexadecimal. If number will not
|
|
|
|
/// fit in width, full number is still printed. Examples:
|
2015-01-26 19:21:33 +01:00
|
|
|
/// OS << format_hex(255, 4) => 0xff
|
|
|
|
/// OS << format_hex(255, 4, true) => 0xFF
|
|
|
|
/// OS << format_hex(255, 6) => 0x00ff
|
|
|
|
/// OS << format_hex(255, 2) => 0xff
|
|
|
|
inline FormattedNumber format_hex(uint64_t N, unsigned Width,
|
|
|
|
bool Upper = false) {
|
2014-09-25 22:30:58 +02:00
|
|
|
assert(Width <= 18 && "hex width must be <= 18");
|
2015-01-26 19:21:33 +01:00
|
|
|
return FormattedNumber(N, 0, Width, true, Upper, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// format_hex_no_prefix - Output \p N as a fixed width hexadecimal. Does not
|
|
|
|
/// prepend '0x' to the outputted string. If number will not fit in width,
|
|
|
|
/// full number is still printed. Examples:
|
|
|
|
/// OS << format_hex_no_prefix(255, 4) => ff
|
|
|
|
/// OS << format_hex_no_prefix(255, 4, true) => FF
|
|
|
|
/// OS << format_hex_no_prefix(255, 6) => 00ff
|
|
|
|
/// OS << format_hex_no_prefix(255, 2) => ff
|
|
|
|
inline FormattedNumber format_hex_no_prefix(uint64_t N, unsigned Width,
|
|
|
|
bool Upper = false) {
|
|
|
|
assert(Width <= 18 && "hex width must be <= 18");
|
|
|
|
return FormattedNumber(N, 0, Width, true, Upper, false);
|
2014-09-25 22:30:58 +02:00
|
|
|
}
|
|
|
|
|
2015-08-10 06:22:09 +02:00
|
|
|
/// format_decimal - Output \p N as a right justified, fixed-width decimal. If
|
2014-09-25 22:30:58 +02:00
|
|
|
/// number will not fit in width, full number is still printed. Examples:
|
|
|
|
/// OS << format_decimal(0, 5) => " 0"
|
|
|
|
/// OS << format_decimal(255, 5) => " 255"
|
|
|
|
/// OS << format_decimal(-1, 3) => " -1"
|
|
|
|
/// OS << format_decimal(12345, 3) => "12345"
|
|
|
|
inline FormattedNumber format_decimal(int64_t N, unsigned Width) {
|
2015-01-26 19:21:33 +01:00
|
|
|
return FormattedNumber(0, N, Width, false, false, false);
|
2014-09-25 22:30:58 +02:00
|
|
|
}
|
|
|
|
|
2008-08-23 21:48:00 +02:00
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|