12#include <cosmos/compiler.hxx>
13#include <cosmos/dso_export.h>
14#include <cosmos/fs/types.hxx>
15#include <cosmos/proc/types.hxx>
16#include <cosmos/string.hxx>
17#include <cosmos/thread/thread.hxx>
18#include <cosmos/types.hxx>
19#include <cosmos/utils.hxx>
29 template <
typename NUM>
30 struct FormattedNumber;
36 o << cosmos::to_integral(pid);
40inline std::ostream& operator<<(std::ostream &o,
const cosmos::ThreadID &tid) {
42 o << cosmos::to_integral(tid);
46inline std::ostream& operator<<(std::ostream &o,
const cosmos::UserID &uid) {
48 o << cosmos::to_integral(uid);
52inline std::ostream& operator<<(std::ostream &o,
const cosmos::GroupID &gid) {
54 o << cosmos::to_integral(gid);
58inline std::ostream& operator<<(std::ostream &o,
const cosmos::SignalNr &sig) {
60 o << cosmos::to_integral(sig);
64inline std::ostream& operator<<(std::ostream &o,
const cosmos::FileNum &fd) {
66 o << cosmos::to_integral(fd);
72template <
typename NUM>
79template <
typename NUM>
84 using SetBaseFN = std::function<void(std::ostream&)>;
89 m_num{num}, m_width{width}, m_setbase_fn{fn}, m_base_prefix{base_prefix} {}
96 size_t width()
const {
return m_width; }
97 bool showBase()
const {
return m_show_base; }
98 auto num()
const {
return m_num; }
99 const std::string& basePrefix()
const {
return m_base_prefix; }
100 SetBaseFN baseFN()
const {
return m_setbase_fn; }
102 explicit operator std::string()
const {
103 std::stringstream ss;
113 std::string m_base_prefix;
114 bool m_show_base =
true;
129template <
typename NUM>
132 HexNum(
const NUM num,
size_t width) :
141template <
typename NUM>
144 OctNum(
const NUM num,
size_t width) :
169COSMOS_API std::string sprintf(
const char *fmt, ...) COSMOS_FORMAT_PRINTF(1, 2);
FileNum
Primitive file descriptor.
SignalNr
A primitive signal number specification.
Helper to output a primitive integer as hexadecimal in the style of 0x1234.
Helper to output a primitive integer as octal in the style of 0o123.