Fix crash on startup if an LV2 plugin has a bad .ttl file.
[ardour.git] / libs / glibmm2 / gio / src / memoryinputstream.hg
1 // -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2
3 /* Copyright (C) 2007 The gtkmm Development Team
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the Free
17  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19
20 #include <giomm/inputstream.h>
21 #include <giomm/seekable.h>
22
23 _DEFS(giomm,gio)
24 _PINCLUDE(giomm/private/inputstream_p.h)
25
26 namespace Gio
27 {
28
29 /** MemoryInputStream implements InputStream for arbitrary memory chunks.
30  *
31  * @ingroup Streams
32  *
33  * @newin2p16
34  */
35 class MemoryInputStream 
36 : public Gio::InputStream, 
37   public Seekable
38 {
39   _CLASS_GOBJECT(MemoryInputStream, GMemoryInputStream, G_MEMORY_INPUT_STREAM, Gio::InputStream, GInputStream)
40   _IMPLEMENTS_INTERFACE(Seekable)
41
42 protected:
43   _CTOR_DEFAULT
44   // TODO: *_new_from_data constructor needs to be fixed?
45
46 public:
47   _WRAP_CREATE()
48
49   /** Appends to data that can be read from the input stream.
50    *
51    * @param data Input data.
52    */
53   void add_data(const std::string& data);
54
55   /** Appends to data that can be read from the input stream.
56    *
57    * @param data Input data.
58    * @param len Length of the data, may be -1 if data is a null-terminated string.
59    */
60   void add_data(const void* data, gssize len);
61 };
62
63 } // namespace Gio
64