forked from GNOME/librsvg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrsvg-xml.c
96 lines (78 loc) · 3.02 KB
/
rsvg-xml.c
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
* Copyright © 2010 Christian Persch
*
* This program 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 program 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 program; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include "config.h"
#include "rsvg-xml.h"
typedef struct {
GInputStream *stream;
GCancellable *cancellable;
GError **error;
} RsvgXmlInputStreamContext;
/* this should use gsize, but libxml2 is borked */
static int
context_read (RsvgXmlInputStreamContext *context,
char *buffer,
int len)
{
gssize n_read;
if (*(context->error))
return -1;
n_read = g_input_stream_read (context->stream, buffer, (gsize) len,
context->cancellable,
context->error);
if (n_read < 0)
return -1;
return (int) n_read;
}
static int
context_close (RsvgXmlInputStreamContext *context)
{
gboolean ret;
/* Don't overwrite a previous error */
ret = g_input_stream_close (context->stream, context->cancellable,
*(context->error) == NULL ? context->error : NULL);
g_object_unref (context->stream);
if (context->cancellable)
g_object_unref (context->cancellable);
g_slice_free (RsvgXmlInputStreamContext, context);
return ret ? 0 : -1;
}
/**
* _rsvg_xml_input_buffer_new_from_stream:
* @context: a #xmlParserCtxtPtr
* @input_stream: a #GInputStream
*
* Returns: a new #xmlParserInputPtr wrapping @input_stream
*/
xmlParserInputBufferPtr
_rsvg_xml_input_buffer_new_from_stream (GInputStream *stream,
GCancellable *cancellable,
xmlCharEncoding enc,
GError **error)
{
RsvgXmlInputStreamContext *context;
g_return_val_if_fail (G_IS_INPUT_STREAM (stream), NULL);
g_return_val_if_fail (cancellable == NULL || G_IS_CANCELLABLE (cancellable), NULL);
g_return_val_if_fail (error != NULL, NULL);
context = g_slice_new (RsvgXmlInputStreamContext);
context->stream = g_object_ref (stream);
context->cancellable = cancellable ? g_object_ref (cancellable) : NULL;
context->error = error;
return xmlParserInputBufferCreateIO ((xmlInputReadCallback) context_read,
(xmlInputCloseCallback) context_close,
context,
enc);
}