libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
formatting.hxx File Reference
#include <iomanip>
#include <functional>
#include <ostream>
#include <string>
#include <sstream>
#include <type_traits>
#include <cosmos/compiler.hxx>
#include <cosmos/dso_export.h>
#include <cosmos/fs/types.hxx>
#include <cosmos/proc/types.hxx>
#include <cosmos/string.hxx>
#include <cosmos/thread/thread.hxx>
#include <cosmos/types.hxx>
#include <cosmos/utils.hxx>

Go to the source code of this file.

Classes

struct  cosmos::FormattedNumber< NUM >
 Base class for HexNum and OctNum format output helpers. More...
 
struct  cosmos::HexNum< NUM >
 Helper to output a primitive integer as hexadecimal in the style of 0x1234. More...
 
struct  cosmos::OctNum< NUM >
 Helper to output a primitive integer as octal in the style of 0o123. More...
 

Functions

std::ostream & operator<< (std::ostream &o, const cosmos::ProcessID &pid)
 
std::ostream & operator<< (std::ostream &o, const cosmos::ThreadID &tid)
 
std::ostream & operator<< (std::ostream &o, const cosmos::UserID &uid)
 
std::ostream & operator<< (std::ostream &o, const cosmos::GroupID &gid)
 
std::ostream & operator<< (std::ostream &o, const cosmos::SignalNr &sig)
 
std::ostream & operator<< (std::ostream &o, const cosmos::FileNum &fd)
 
template<typename NUM >
std::ostream & operator<< (std::ostream &o, const cosmos::FormattedNumber< NUM > &fmtnum)
 
template<typename T >
auto cosmos::to_printable_integer (T num) -> decltype(+num)
 This helper makes sure that any integer is turned into a printable integer.
 
std::string cosmos::sprintf (const char *fmt,...) COSMOS_FORMAT_PRINTF(1
 This is a C++ variant of the libc sprintf() function.
 

Detailed Description

C stdio and C++ iostream related helper types and functions. Also some output operators for cosmos primitive types.

Definition in file formatting.hxx.

Function Documentation

◆ operator<<() [1/7]

std::ostream & operator<< ( std::ostream & o,
const cosmos::FileNum & fd )
inline

Definition at line 64 of file formatting.hxx.

64 {
65 // similarly we could use special annotation here
66 o << cosmos::to_integral(fd);
67 return o;
68}

◆ operator<<() [2/7]

template<typename NUM >
std::ostream & operator<< ( std::ostream & o,
const cosmos::FormattedNumber< NUM > & fmtnum )

Definition at line 68 of file formatting.cxx.

68 {
69 const auto orig_flags = o.flags();
70 const auto orig_fill = o.fill();
71
72 static_assert(std::is_integral_v<NUM>, "template type needs to be an integral integer type");
73
74 // don't handle this with std::showbase, it's behaving badly e.g. the
75 // "0x" prefix counts towards the field with, also, the fill character
76 // will be prepended to the "0x" prefix resulting in things like
77 // "0000x64".
78 if (fmtnum.showBase())
79 o << fmtnum.basePrefix();
80 o << std::setw(fmtnum.width());
81 fmtnum.baseFN()(o);
82 o << std::setfill('0') << cosmos::to_printable_integer(fmtnum.num());
83
84 o.flags(orig_flags);
85 o.fill(orig_fill);
86 return o;
87}
auto to_printable_integer(T num) -> decltype(+num)
This helper makes sure that any integer is turned into a printable integer.
const FormattedNumber & showBase(bool yes_no)
If a prefix identifier for the number's base should be shown (e.g. 0x for hex, default: yes).

◆ operator<<() [3/7]

std::ostream & operator<< ( std::ostream & o,
const cosmos::GroupID & gid )
inline

Definition at line 52 of file formatting.hxx.

52 {
53 // similarly we could use special annotation here
54 o << cosmos::to_integral(gid);
55 return o;
56}

◆ operator<<() [4/7]

std::ostream & operator<< ( std::ostream & o,
const cosmos::ProcessID & pid )
inline

Definition at line 33 of file formatting.hxx.

33 {
34 // we could also think about using a consistent annotation of process
35 // ids in the output like @1234 or <pid: 1234> something like that.
36 o << cosmos::to_integral(pid);
37 return o;
38}

◆ operator<<() [5/7]

std::ostream & operator<< ( std::ostream & o,
const cosmos::SignalNr & sig )
inline

Definition at line 58 of file formatting.hxx.

58 {
59 // similarly we could use special annotation here
60 o << cosmos::to_integral(sig);
61 return o;
62}

◆ operator<<() [6/7]

std::ostream & operator<< ( std::ostream & o,
const cosmos::ThreadID & tid )
inline

Definition at line 40 of file formatting.hxx.

40 {
41 // similarly we could use special annotation here
42 o << cosmos::to_integral(tid);
43 return o;
44}

◆ operator<<() [7/7]

std::ostream & operator<< ( std::ostream & o,
const cosmos::UserID & uid )
inline

Definition at line 46 of file formatting.hxx.

46 {
47 // similarly we could use special annotation here
48 o << cosmos::to_integral(uid);
49 return o;
50}

◆ sprintf()

COSMOS_API std::string cosmos::sprintf ( const char * fmt,
... )

This is a C++ variant of the libc sprintf() function.

This function is taking care of the memory management details of sprintf() and returns the fully formatted string as a std::string object.

On error an empty string is returned.

Definition at line 57 of file formatting.cxx.

57 {
58 va_list varargs;
59 va_start(varargs, fmt);
60 const auto ret = sprintf_v(fmt, varargs);
61 va_end(varargs);
62 return ret;
63}

◆ to_printable_integer()

template<typename T >
auto cosmos::to_printable_integer ( T num) -> decltype(+num)

This helper makes sure that any integer is turned into a printable integer.

Attempting to output a char related type onto an ostream will print its symbolic value as opposed to its numerical representation. To avoid this effect this helper function can be used to return a representation of num that will be printed as a numerical value when output onto an ostream.

Definition at line 157 of file formatting.hxx.

157 {
158 // using the unary + operator promotes the number to a printable type
159 return +num;
160}