1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-02 17:09:26 +02:00
audacity/lib-src/redland/raptor/src/raptor_locator.c
2010-01-24 09:19:39 +00:00

223 lines
4.8 KiB
C

/* -*- Mode: c; c-basic-offset: 2 -*-
*
* raptor_locator.c - Raptor parsing locator functions
*
* Copyright (C) 2002-2006, David Beckett http://www.dajobe.org/
* Copyright (C) 2002-2006, 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.
*
*
*/
#ifdef HAVE_CONFIG_H
#include <raptor_config.h>
#endif
#ifdef WIN32
#include <win32_raptor_config.h>
#endif
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <stdarg.h>
#ifdef HAVE_ERRNO_H
#include <errno.h>
#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
/* Raptor includes */
#include "raptor.h"
#include "raptor_internal.h"
/**
* raptor_print_locator:
* @stream: stream to print to
* @locator: #raptor_locator to print
*
* Print a raptor locator to a stream.
*
**/
void
raptor_print_locator(FILE *stream, raptor_locator* locator)
{
if(!locator)
return;
if(locator->uri)
fprintf(stream, "URI %s", raptor_uri_as_string(locator->uri));
else if (locator->file)
fprintf(stream, "file %s", locator->file);
else
return;
if(locator->line >= 0) {
fprintf(stream, ":%d", locator->line);
if(locator->column >= 0)
fprintf(stream, " column %d", locator->column);
}
}
/**
* raptor_format_locator:
* @buffer: buffer to store format
* @length: size of buffer
* @locator: #raptor_locator to format
*
* Format a raptor locator as a string.
*
* If buffer is NULL or length is insufficient for the size of
* the locator, returns the number of additional bytes required
* in the buffer to write the locator.
*
* Return value: 0 on success, >0 if additional bytes required in buffer, <0 on failure
**/
int
raptor_format_locator(char *buffer, size_t length, raptor_locator* locator)
{
size_t bufsize=0;
int count;
if(!locator)
return -1;
if(locator->uri) {
size_t uri_len;
(void)raptor_uri_as_counted_string(locator->uri, &uri_len);
bufsize= 4 + uri_len; /* "URI " */
} else if (locator->file)
bufsize= 5 + strlen(locator->file); /* "file " */
else
return -1;
if(locator->line > 0) {
bufsize += snprintf(NULL, 0, ":%d", locator->line);
if(locator->column >= 0)
bufsize += snprintf(NULL, 0, " column %d", locator->column);
}
if(!buffer || !length || length < bufsize)
return bufsize;
if(locator->uri)
count=sprintf(buffer, "URI %s", raptor_uri_as_string(locator->uri));
else if (locator->file)
count=sprintf(buffer, "file %s", locator->file);
else
return -1;
buffer+= count;
if(locator->line > 0) {
count=sprintf(buffer, ":%d", locator->line);
if(locator->column >= 0)
sprintf(buffer+count, " column %d", locator->column);
}
return 0;
}
/**
* raptor_locator_line:
* @locator: locator
*
* Get line number from locator.
*
* Return value: integer line number, or -1 if there is no line number available
**/
int
raptor_locator_line(raptor_locator *locator)
{
if (!locator)
return -1;
return locator->line;
}
/**
* raptor_locator_column:
* @locator: locator
*
* Get column number from locator.
*
* Return value: integer column number, or -1 if there is no column number available
**/
int
raptor_locator_column(raptor_locator *locator)
{
if (!locator)
return -1;
return locator->column;
}
/**
* raptor_locator_byte:
* @locator: locator
*
* Get the locator byte offset from locator.
*
* Return value: integer byte number, or -1 if there is no byte offset available
**/
int
raptor_locator_byte(raptor_locator *locator)
{
if (!locator)
return -1;
return locator->byte;
}
/**
* raptor_locator_file:
* @locator: locator
*
* Get file name from locator.
*
* Return value: string file name, or NULL if there is no filename available
**/
const char *
raptor_locator_file(raptor_locator *locator)
{
if (!locator)
return NULL;
return locator->file;
}
/**
* raptor_locator_uri:
* @locator: locator
*
* Get URI from locator.
*
* Returns a pointer to a shared string version of the URI in
* the locator. This must be copied if it is needed.
*
* Return value: string URI, or NULL if there is no URI available
**/
const char *
raptor_locator_uri(raptor_locator *locator)
{
if (!locator)
return NULL;
return (const char*)raptor_uri_as_string(locator->uri);
}