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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
|
/*
* Copyright (C) 2020, Red Hat, Inc
*
* 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., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
* Author: Carlos Garnacho <carlosg@gnome.org>
*/
/* Serialization of cursors to the XML format defined at:
* https://www.w3.org/TR/2013/REC-rdf-sparql-XMLres-20130321/
*/
#include "config.h"
#include "tracker-serializer-xml.h"
#include <libxml/xmlwriter.h>
/* Make required type casts a bit more descriptive. */
#define XML(x) ((const xmlChar *) x)
struct _TrackerSerializerXml
{
TrackerSerializer parent_instance;
xmlBufferPtr buffer;
xmlTextWriterPtr writer;
GPtrArray *vars;
gssize current_pos;
guint stream_closed : 1;
guint cursor_started : 1;
guint cursor_finished : 1;
guint head_printed : 1;
};
G_DEFINE_TYPE (TrackerSerializerXml, tracker_serializer_xml,
TRACKER_TYPE_SERIALIZER)
static void
tracker_serializer_xml_finalize (GObject *object)
{
g_input_stream_close (G_INPUT_STREAM (object), NULL, NULL);
G_OBJECT_CLASS (tracker_serializer_xml_parent_class)->finalize (object);
}
static gboolean
serialize_up_to_position (TrackerSerializerXml *serializer_xml,
gsize pos,
GCancellable *cancellable,
GError **error)
{
TrackerSparqlCursor *cursor;
GError *inner_error = NULL;
gint i;
if (!serializer_xml->buffer)
serializer_xml->buffer = xmlBufferCreate ();
if (!serializer_xml->writer)
serializer_xml->writer = xmlNewTextWriterMemory (serializer_xml->buffer, 0);
if (!serializer_xml->vars)
serializer_xml->vars = g_ptr_array_new_with_free_func (g_free);
cursor = tracker_serializer_get_cursor (TRACKER_SERIALIZER (serializer_xml));
if (!serializer_xml->head_printed) {
xmlTextWriterStartDocument (serializer_xml->writer, "1.0", "UTF-8", NULL);
if (xmlTextWriterStartElement (serializer_xml->writer, XML ("sparql")) < 0)
goto error;
if (xmlTextWriterStartElement (serializer_xml->writer, XML ("head")) < 0)
goto error;
for (i = 0; i < tracker_sparql_cursor_get_n_columns (cursor); i++) {
const gchar *var;
var = tracker_sparql_cursor_get_variable_name (cursor, i);
if (xmlTextWriterStartElement (serializer_xml->writer, XML ("variable")) < 0)
goto error;
if (var && *var) {
g_ptr_array_add (serializer_xml->vars,
g_strdup (var));
} else {
g_ptr_array_add (serializer_xml->vars,
g_strdup_printf ("var%d", i + 1));
}
if (xmlTextWriterWriteFormatAttribute (serializer_xml->writer,
XML ("name"),
"%s",
(char *) g_ptr_array_index (serializer_xml->vars, i)) < 0)
goto error;
xmlTextWriterEndElement (serializer_xml->writer);
}
xmlTextWriterEndElement (serializer_xml->writer);
if (xmlTextWriterStartElement (serializer_xml->writer, XML ("results")) < 0)
goto error;
serializer_xml->head_printed = TRUE;
}
while (!serializer_xml->cursor_finished &&
(gsize) xmlBufferLength (serializer_xml->buffer) < pos) {
if (!tracker_sparql_cursor_next (cursor, cancellable, &inner_error)) {
if (inner_error) {
g_propagate_error (error, inner_error);
return FALSE;
} else {
xmlTextWriterEndElement (serializer_xml->writer);
xmlTextWriterEndElement (serializer_xml->writer);
xmlTextWriterEndDocument (serializer_xml->writer);
serializer_xml->cursor_finished = TRUE;
break;
}
} else {
serializer_xml->cursor_started = TRUE;
}
if (xmlTextWriterStartElement (serializer_xml->writer, XML ("result")) < 0)
goto error;
for (i = 0; i < tracker_sparql_cursor_get_n_columns (cursor); i++) {
const gchar *var, *str, *type = NULL, *datatype = NULL;
switch (tracker_sparql_cursor_get_value_type (cursor, i)) {
case TRACKER_SPARQL_VALUE_TYPE_URI:
type = "uri";
break;
case TRACKER_SPARQL_VALUE_TYPE_STRING:
type = "literal";
datatype = TRACKER_PREFIX_XSD "string";
break;
case TRACKER_SPARQL_VALUE_TYPE_INTEGER:
case TRACKER_SPARQL_VALUE_TYPE_BOOLEAN:
type = "literal";
datatype = TRACKER_PREFIX_XSD "integer";
break;
case TRACKER_SPARQL_VALUE_TYPE_DOUBLE:
type = "literal";
datatype = TRACKER_PREFIX_XSD "double";
break;
case TRACKER_SPARQL_VALUE_TYPE_DATETIME:
type = "literal";
datatype = TRACKER_PREFIX_XSD "dateTime";
break;
case TRACKER_SPARQL_VALUE_TYPE_BLANK_NODE:
type = "bnode";
break;
case TRACKER_SPARQL_VALUE_TYPE_UNBOUND:
continue;
}
var = g_ptr_array_index (serializer_xml->vars, i);
if (xmlTextWriterStartElement (serializer_xml->writer, XML ("binding")) < 0)
goto error;
if (xmlTextWriterWriteFormatAttribute (serializer_xml->writer,
XML ("name"),
"%s",
var) < 0)
goto error;
if (xmlTextWriterStartElement (serializer_xml->writer, XML (type)) < 0)
goto error;
if (datatype) {
if (xmlTextWriterWriteFormatAttribute (serializer_xml->writer,
XML ("datatype"),
"%s",
datatype) < 0)
goto error;
}
str = tracker_sparql_cursor_get_string (cursor, i, NULL);
if (str) {
if (xmlTextWriterWriteRaw (serializer_xml->writer, XML (str)) < 0)
goto error;
}
xmlTextWriterEndElement (serializer_xml->writer);
xmlTextWriterEndElement (serializer_xml->writer);
}
xmlTextWriterEndElement (serializer_xml->writer);
}
return TRUE;
error:
g_set_error_literal (error,
TRACKER_SPARQL_ERROR,
TRACKER_SPARQL_ERROR_INTERNAL,
"Error writing XML cursor content");
return FALSE;
}
static gssize
tracker_serializer_xml_read (GInputStream *istream,
gpointer buffer,
gsize count,
GCancellable *cancellable,
GError **error)
{
TrackerSerializerXml *serializer_xml = TRACKER_SERIALIZER_XML (istream);
gsize bytes_unflushed, bytes_copied;
const xmlChar *xml_buf;
if (serializer_xml->stream_closed ||
(serializer_xml->cursor_finished &&
serializer_xml->current_pos == xmlBufferLength (serializer_xml->buffer)))
return 0;
if (!serialize_up_to_position (serializer_xml,
serializer_xml->current_pos + count,
cancellable,
error))
return -1;
bytes_unflushed =
xmlBufferLength (serializer_xml->buffer) - serializer_xml->current_pos;
bytes_copied = MIN (count, bytes_unflushed);
xml_buf = xmlBufferContent (serializer_xml->buffer);
memcpy (buffer,
&xml_buf[serializer_xml->current_pos],
bytes_copied);
serializer_xml->current_pos += bytes_copied;
return bytes_copied;
}
static gboolean
tracker_serializer_xml_close (GInputStream *istream,
GCancellable *cancellable,
GError **error)
{
TrackerSerializerXml *serializer_xml = TRACKER_SERIALIZER_XML (istream);
serializer_xml->stream_closed = TRUE;
g_clear_pointer (&serializer_xml->buffer, xmlBufferFree);
g_clear_pointer (&serializer_xml->writer, xmlFreeTextWriter);
return TRUE;
}
static void
tracker_serializer_xml_class_init (TrackerSerializerXmlClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
GInputStreamClass *istream_class = G_INPUT_STREAM_CLASS (klass);
object_class->finalize = tracker_serializer_xml_finalize;
istream_class->read_fn = tracker_serializer_xml_read;
istream_class->close_fn = tracker_serializer_xml_close;
}
static void
tracker_serializer_xml_init (TrackerSerializerXml *serializer)
{
}
|