libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
SysString.hxx
1#pragma once
2
3// C++
4#include <cstring>
5#include <iosfwd>
6#include <string>
7#include <string_view>
8
9// Cosmos
10#include <cosmos/dso_export.h>
11
12namespace cosmos {
13
15
33struct SysString {
34
35 SysString() = default;
36
37 SysString(const std::string &str) :
38 m_ptr{str.c_str()} {}
39
40 SysString(const char *str) :
41 m_ptr{str} {}
42
43 const char* raw() const {
44 return m_ptr ? m_ptr : "";
45 }
46
47 size_t length() const {
48 return view().length();
49 }
50
51 bool empty() const {
52 return !m_ptr || m_ptr[0] == '\0';
53 }
54
55 std::string str() const {
56 return m_ptr ? std::string{m_ptr} : std::string{};
57 }
58
59 std::string_view view() const {
60 return m_ptr ? std::string_view{m_ptr} : std::string_view{};
61 }
62
63 operator std::string() const {
64 return str();
65 }
66
67 operator std::string_view() const {
68 return view();
69 }
70
71 SysString& operator=(const char *str) {
72 m_ptr = str;
73 return *this;
74 }
75
76 SysString& operator=(const std::string &str) {
77 m_ptr = str.c_str();
78 return *this;
79 }
80
81 bool operator==(const SysString &other) const {
82 if (m_ptr == other.m_ptr)
83 return true;
84
85 if (!m_ptr || !other.m_ptr)
86 return false;
87
88 return std::strcmp(m_ptr, other.m_ptr) == 0;
89 }
90
91 bool operator!=(const SysString &other) const {
92 return !(*this == other);
93 }
94
95protected: // data
96
97 const char *m_ptr = nullptr;
98};
99
100} // end ns
101
102COSMOS_API std::ostream& operator<<(std::ostream &o, const cosmos::SysString str);
103
104inline bool operator==(const std::string &s, const cosmos::SysString str) {
105 return s == str.view();
106}
107
108inline bool operator!=(const std::string &s, const cosmos::SysString str) {
109 return !(s == str);
110}
111
112inline bool operator==(const std::string_view &s, const cosmos::SysString str) {
113 return s == str.view();
114}
115
116inline bool operator!=(const std::string_view &s, const cosmos::SysString str) {
117 return !(s == str);
118}
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33