A simple refcounted data type representing an immutable byte sequence from an unspecified origin.
More...
|
void | reference () const |
| Increment the reference count for this object.
|
|
void | unreference () const |
| Decrement the reference count for this object.
|
|
GBytes * | gobj () |
| Provides access to the underlying C instance.
|
|
const GBytes * | gobj () const |
| Provides access to the underlying C instance.
|
|
GBytes * | gobj_copy () const |
| Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
|
|
| Bytes ()=delete |
|
| Bytes (const Bytes &)=delete |
|
Bytes & | operator= (const Bytes &)=delete |
|
gconstpointer | get_data (gsize &size) const |
| Get the byte data in the Bytes.
|
|
gsize | get_size () const |
| Get the size of the byte data in the Bytes.
|
|
A simple refcounted data type representing an immutable byte sequence from an unspecified origin.
The purpose of the Bytes class is to keep the memory region that it holds alive for as long as anyone holds a reference to the bytes. When the last reference count is dropped, the memory is released. Multiple unrelated callers can use byte data in the Bytes object without coordinating their activities, resting assured that the byte data will not change or move while they hold a reference.
A Bytes object can come from many different origins that may have different procedures for freeing the memory region. Examples are memory from g_malloc(), from memory slices, from a GMappedFile or memory from other allocators.
- Since glibmm 2.34
static gint Glib::Bytes::compare |
( |
gconstpointer | bytes1, |
|
|
gconstpointer | bytes2 ) |
|
static |
Compares the two Bytes values.
This function can be used to sort GBytes instances in lexicographical order.
If bytes1 and bytes2 have different length but the shorter one is a prefix of the longer one then the shorter one is considered to be less than the longer one. Otherwise the first byte where both differ is used for comparison. If bytes1 has a smaller value at that position it is considered less, otherwise greater than bytes2.
- Since glibmm 2.32
- Parameters
-
bytes1 | A pointer to a Bytes. |
bytes2 | A pointer to a Bytes to compare with bytes1. |
- Returns
- A negative value if bytes1 is less than bytes2, a positive value if bytes1 is greater than bytes2, and zero if bytes1 is equal to bytes2.
gconstpointer Glib::Bytes::get_data |
( |
gsize & | size | ) |
const |
Get the byte data in the Bytes.
This data should not be modified.
This function will always return the same pointer for a given Bytes.
nullptr
may be returned if size is 0. This is not guaranteed, as the Bytes may represent an empty string with data non-nullptr
and size as 0. nullptr
will not be returned if size is non-zero.
- Since glibmm 2.32
- Parameters
-
size | Location to return size of byte data. |
- Returns
- A pointer to the byte data, or
nullptr
.