MemoryInputStream


Object Hierarchy:

GLib.MemoryInputStream GLib.MemoryInputStream GLib.MemoryInputStream GLib.InputStream GLib.InputStream GLib.InputStream->GLib.MemoryInputStream GLib.Object GLib.Object GLib.Object->GLib.InputStream GLib.PollableInputStream GLib.PollableInputStream GLib.PollableInputStream->GLib.MemoryInputStream GLib.Seekable GLib.Seekable GLib.Seekable->GLib.MemoryInputStream

Description:

[ CCode ( type_id = "g_memory_input_stream_get_type ()" ) ]
public class MemoryInputStream : InputStream, PollableInputStream, Seekable

`GMemoryInputStream` is a class for using arbitrary memory chunks as input for GIO streaming input operations.

As of GLib 2.34, `GMemoryInputStream` implements [iface@Gio.PollableInputStream].

Example: MemoryOutputStream:

public static int main (string[] args) {
try {
MemoryOutputStream os = new MemoryOutputStream (null, GLib.realloc, GLib.free);

// Write data to memory:
DataOutputStream dos = new DataOutputStream (os);
dos.put_int16 (int16.MIN);
dos.put_int32 (int32.MIN);
dos.put_int64 (int64.MIN);
dos.close ();

// Read data:
uint8[] data = os.steal_data ();
data.length = (int) os.get_data_size ();

MemoryInputStream @is = new MemoryInputStream.from_data (data, GLib.free);
DataInputStream dis = new DataInputStream (@is);
print ("%d (Expected: %d)\n", dis.read_int16 (), int16.MIN);
print ("%d (Expected: %d)\n", dis.read_int32 (), int32.MIN);
print ("%"+int64.FORMAT+" (Expected: %"+int64.FORMAT+")\n", dis.read_int64 (), int64.MIN);
} catch (IOError e) {
print ("IOError %s\n", e.message);
}
return 0;
}

valac --pkg gio-2.0 GLib.MemoryOutputStream.vala


Namespace: GLib
Package: gio-2.0

Content:

Creation methods:

Methods:

Inherited Members:

All known members inherited from interface GLib.PollableInputStream
All known members inherited from interface GLib.Seekable