libcosmos
Linux C++ System Programming Library
|
Wrapper type around a C-style string for use with system APIs. More...
#include <SysString.hxx>
Public Member Functions | |
SysString (const std::string &str) | |
SysString (const char *str) | |
const char * | raw () const |
size_t | length () const |
bool | empty () const |
std::string | str () const |
std::string_view | view () const |
operator std::string () const | |
operator std::string_view () const | |
SysString & | operator= (const char *str) |
SysString & | operator= (const std::string &str) |
bool | operator== (const SysString &other) const |
bool | operator!= (const SysString &other) const |
Protected Attributes | |
const char * | m_ptr = nullptr |
Wrapper type around a C-style string for use with system APIs.
This type is used in place of a plain const char*
to pass string data to system APIs and vice versa.
This type can be constructed from a plain const char*
or from a std::string
. It cannot be constructed from a std::string_view()
, since this would need to create a copy. std::string_view
needs not to be null terminated, but system APIs require null terminated strings. To pass a std::string_view
you need to explicitly convert it into a std::string
instead. This is similar to the behaviour of STL APIs where an implicit conversion from std::string_view
to std::string
is not available.
This is only a lightweight container that is mostly intended for passing strings back and forth to lower level APIs. There is no ownership tracking here, the object only carries a flat copy of whatever string was passed into it. So take care not to use an instance of this type after the backing object has lost validity.
Definition at line 33 of file SysString.hxx.
|
inline |
Definition at line 37 of file SysString.hxx.
|
inline |
Definition at line 40 of file SysString.hxx.
|
inline |
Definition at line 51 of file SysString.hxx.
|
inline |
Definition at line 47 of file SysString.hxx.
|
inline |
Definition at line 63 of file SysString.hxx.
|
inline |
Definition at line 67 of file SysString.hxx.
|
inline |
Definition at line 91 of file SysString.hxx.
|
inline |
Definition at line 71 of file SysString.hxx.
|
inline |
Definition at line 76 of file SysString.hxx.
|
inline |
Definition at line 81 of file SysString.hxx.
|
inline |
Definition at line 43 of file SysString.hxx.
|
inline |
Definition at line 55 of file SysString.hxx.
|
inline |
Definition at line 59 of file SysString.hxx.
|
protected |
Definition at line 97 of file SysString.hxx.