summaryrefslogtreecommitdiff
path: root/gio/src/memoryoutputstream.hg
blob: dda03766e92befbc33d974fde6d5c9399f30b694 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*-

/* Copyright (C) 2008 The gtkmm Development Team
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <giomm/outputstream.h>
#include <giomm/seekable.h>
#include <glibmm/object.h>
// TODO: remove this if possible -- it's here for the GReallocFunc definition
#include <gio/gio.h>

_DEFS(giomm,gio)
_PINCLUDE(giomm/private/outputstream_p.h)

namespace Gio
{

//TODO: Proper documentation:

/** Streaming output operations on memory chunks
 *
 * @ingroup Streams
 *
 * @newin{2,20}
 */
class MemoryOutputStream :
    public OutputStream,
    public Seekable
{
  _CLASS_GOBJECT(MemoryOutputStream, GMemoryOutputStream, G_MEMORY_OUTPUT_STREAM, Gio::OutputStream, GOutputStream)
  _IMPLEMENTS_INTERFACE(Seekable)
protected:
  // TODO: more C++-like interface using sigc++
  _WRAP_CTOR(MemoryOutputStream(void* data, gsize size, GReallocFunc realloc_function, GDestroyNotify destroy_function), g_memory_output_stream_new)

public:
  // TODO: more C++-like interface using sigc++
  _WRAP_CREATE(void* data, gsize size, GReallocFunc realloc_function, GDestroyNotify destroy_function)

  _WRAP_METHOD(void* get_data(), g_memory_output_stream_get_data)
  _WRAP_METHOD(const void* get_data() const, g_memory_output_stream_get_data, constversion)
  _WRAP_METHOD(void* steal_data(), g_memory_output_stream_steal_data)

  _WRAP_METHOD(gsize get_size() const, g_memory_output_stream_get_size)
  _WRAP_METHOD(gsize get_data_size() const, g_memory_output_stream_get_data_size)
  
  _WRAP_PROPERTY("data", void*)
  _WRAP_PROPERTY("data-size", gulong)
  //Too C-like:   _WRAP_PROPERTY("destroy-function", void*)
  //Too C-like:   _WRAP_PROPERTY("realloc-function"         gpointer              : Read / Write / Construct Only
  _WRAP_PROPERTY("size", gulong)
  
};

} // namespace Gio