1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-05 14:18:53 +02:00
audacity/lib-src/redland/librdf/rdf_query_internal.h
2010-01-24 09:19:39 +00:00

179 lines
6.0 KiB
C

/* -*- Mode: c; c-basic-offset: 2 -*-
*
* rdf_query_internal.h - Internal RDF Query definitions
*
* Copyright (C) 2002-2008, David Beckett http://www.dajobe.org/
* Copyright (C) 2002-2005, University of Bristol, UK http://www.bristol.ac.uk/
*
* This package is Free Software and part of Redland http://librdf.org/
*
* It is licensed under the following three licenses as alternatives:
* 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version
* 2. GNU General Public License (GPL) V2 or any newer version
* 3. Apache License, V2.0 or any newer version
*
* You may not use this file except in compliance with at least one of
* the above three licenses.
*
* See LICENSE.html or LICENSE.txt at the top of this package for the
* complete terms and further detail along with the license texts for
* the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively.
*
*
*/
#ifndef LIBRDF_QUERY_INTERNAL_H
#define LIBRDF_QUERY_INTERNAL_H
#ifdef __cplusplus
extern "C" {
#endif
/** A query object */
struct librdf_query_s
{
librdf_world *world;
int usage;
void *context;
struct librdf_query_factory_s* factory;
/* list of all the results for this query */
librdf_query_results* results;
};
struct librdf_query_results_s
{
/* query that this was executed over */
librdf_query* query;
/* next query result */
librdf_query_results* next;
};
#ifdef RASQAL_H
/* rasqal.h will have defined this */
#else
/* provide a forward reference */
#ifndef RASQAL_QUERY_RESULTS_FORMATTER_DECLARED
#define RASQAL_QUERY_RESULTS_FORMATTER_DECLARED 1
typedef struct rasqal_query_results_formatter_s rasqal_query_results_formatter;
#endif
#endif
struct librdf_query_results_formatter_s
{
/* query result that this is formatting */
librdf_query_results* query_results;
rasqal_query_results_formatter *formatter;
};
/** A Query Factory */
struct librdf_query_factory_s {
librdf_world *world;
struct librdf_query_factory_s* next;
char* name; /* name of query language - required */
librdf_uri *uri; /* URI of query language - may be NULL */
/* the rest of this structure is populated by the
* query-specific register function */
size_t context_length;
/* create a new query */
int (*init)(librdf_query* query, const char *name, librdf_uri *uri, const unsigned char *query_string, librdf_uri *base_uri);
/* copy a query */
/* clone is assumed to do leave the new query in the same state
* after an init() method on an existing query - i.e ready to
* use but closed.
*/
int (*clone)(librdf_query* new_query, librdf_query* old_query);
/* destroy a query */
void (*terminate)(librdf_query* query);
/* perform the query on a model */
librdf_query_results* (*execute)(librdf_query* query, librdf_model* model);
/* get/set query results limit (max results to return) */
int (*get_limit)(librdf_query *query);
int (*set_limit)(librdf_query *query, int limit);
/* get/set query results offset (results to skip) */
int (*get_offset)(librdf_query *query);
int (*set_offset)(librdf_query *query, int offset);
/* get the query results as a stream - OPTIONAL */
librdf_stream* (*results_as_stream)(librdf_query_results* query_results);
/* get number of results (so far) - OPTIONAL */
int (*results_get_count)(librdf_query_results* query_results);
/* get next result - OPTIONAL */
int (*results_next)(librdf_query_results* query_results);
/* find out if binding results are exhausted - OPTIONAL */
int (*results_finished)(librdf_query_results* query_results);
/* get all binding names, values for current result - OPTIONAL */
int (*results_get_bindings)(librdf_query_results* query_results, const char ***names, librdf_node **values);
/* get one value for current result - OPTIONAL */
librdf_node* (*results_get_binding_value)(librdf_query_results* query_results, int offset);
/* get one name for current result - OPTIONAL */
const char* (*results_get_binding_name)(librdf_query_results* query_results, int offset);
/* get one value by name for current result - OPTIONAL */
librdf_node* (*results_get_binding_value_by_name)(librdf_query_results* query_results, const char *name);
/* get number of bound variables in the result - OPTIONAL */
int (*results_get_bindings_count)(librdf_query_results* query_results);
/* tidy up query results - OPTIONAL */
void (*free_results)(librdf_query_results* query_results);
/* Return true/false if result is format given - OPTIONAL */
int (*results_is_bindings)(librdf_query_results *query_results);
int (*results_is_boolean)(librdf_query_results *query_results);
int (*results_is_graph)(librdf_query_results *query_results);
int (*results_is_syntax)(librdf_query_results *query_results);
/* get a boolean result - OPTIONAL */
int (*results_get_boolean)(librdf_query_results *query_results);
/* query results formatter */
librdf_query_results_formatter* (*new_results_formatter)(librdf_query_results* query_results, const char *name, librdf_uri* uri);
librdf_query_results_formatter* (*new_results_formatter_by_mime_type)(librdf_query_results* query_results, const char *mime_type);
void (*free_results_formatter)(librdf_query_results_formatter* formatter);
int (*results_formatter_write)(raptor_iostream *iostr, librdf_query_results_formatter* formatter, librdf_query_results* results, librdf_uri *base_uri);
};
/* module init */
void librdf_init_query(librdf_world *world);
/* module terminate */
void librdf_finish_query(librdf_world *world);
/* class methods */
librdf_query_factory* librdf_get_query_factory(librdf_world *world, const char *name, librdf_uri* uri);
void librdf_query_triples_constructor(librdf_world *world);
void librdf_query_rasqal_constructor(librdf_world *world);
void librdf_query_rasqal_destructor(librdf_world *world);
void librdf_query_add_query_result(librdf_query *query, librdf_query_results* query_results);
void librdf_query_remove_query_result(librdf_query *query, librdf_query_results* query_results);
#ifdef __cplusplus
}
#endif
#endif