/usr/include/io_lib/dstring.h is in libstaden-read-dev 1.14.6-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 | /*
* Copyright (c) 2013 Genome Research Ltd.
* Author(s): James Bonfield
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* 3. Neither the names Genome Research Ltd and Wellcome Trust Sanger
* Institute nor the names of its contributors may be used to endorse
* or promote products derived from this software without specific
* prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY GENOME RESEARCH LTD AND CONTRIBUTORS "AS
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GENOME RESEARCH
* LTD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Author(s): James Bonfield
*
* Copyright (c) 2003 MEDICAL RESEARCH COUNCIL
* All rights reserved
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1 Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2 Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3 Neither the name of the MEDICAL RESEARCH COUNCIL, THE LABORATORY OF
* MOLECULAR BIOLOGY nor the names of its contributors may be used
* to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef _DSTRING_H
#define _DSTRING_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdlib.h>
#include <stdarg.h>
#include "io_lib/misc.h"
/*
* Implements a simple dynamic string object.
* Like C, offsets start from 0.
*/
typedef struct {
char *str; /* String ptr itself */
size_t allocated; /* Amount of memory malloced (including the nul) */
size_t length; /* Amount of memory used (excluding the nul) */
} dstring_t;
#define DSTRING_STR(ds) ((ds)->str)
#define DSTRING_LEN(ds) ((ds)->length)
/*
* Allocates a new dstring, initialising it to a default str (or NULL).
*
* Returns dstring_t pointer on success.
* NULL on failure.
*/
dstring_t *dstring_create(const char *str);
/*
* As per dstring_create(), but using str,len as the internal data.
* Ie the caller is giving this data to the dstring object. str should
* be a malloced pointer.
*
* Returns dstring_t pointer on success.
* NULL on failure.
*/
dstring_t *dstring_create_with(char *str, size_t len);
/* Deallocates a dstring */
void dstring_destroy(dstring_t *ds);
/*
* Returns a C string from a dstring. If the dstring is empty this may be
* NULL.
*/
char *dstring_str(const dstring_t *ds);
/*
* Force the memory allocated for a dstring to be at least length characters
* long. (The allocated length will include 1 more to allow for the nul
* termination.)
* It's possible to shrink a string too, although shrinking a string will not
* guarantee if remains nul terminated.
*
* Returns 0 for success
* -1 for failure
*/
int dstring_resize(dstring_t *ds, size_t length);
#define DSTRING_RESIZE(ds, len) ((ds)->allocated > (len) ? 0 : dstring_resize((ds),(len)))
/*
* Refreshes the cached dstring length.
* Use this if you obtain a copy of the internal C string and manipulate it
* in some way.
*/
void dstring_refresh_length(dstring_t *ds);
/*
* Returns the length of the dstring (excluding nul; like strlen).
*/
size_t dstring_length(dstring_t *ds);
/*
* Insertion functions.
* dstring_ninsert, nappend and nprepend take a string and a length (much
* like strncmp, strncpy, etc).
* dstring_insert, append and prepend just take a normal C string.
* dstring_dinsert inserts one dstring into another.
*
* All Return 0 for success
* -1 for failure
*/
int dstring_insert(dstring_t *ds, size_t offset, const char *str);
int dstring_ninsert(dstring_t *ds,
size_t offset,
const char *str,
size_t len);
int dstring_dinsert(dstring_t *ds_to,
size_t offset,
const dstring_t *ds_from);
int dstring_vinsertf(dstring_t *ds,
size_t offset,
const char *fmt,
va_list args);
int dstring_insertf(dstring_t *ds, size_t offset, const char *fmt, ...) __PRINTF_FORMAT__(3,4);
int dstring_prepend(dstring_t *ds, const char *str);
int dstring_nprepend(dstring_t *ds, const char *str, size_t len);
int dstring_prependf(dstring_t *ds, const char *fmt, ...) __PRINTF_FORMAT__(2,3);
int dstring_append(dstring_t *ds, const char *str);
int dstring_nappend(dstring_t *ds, const char *str, size_t len);
int dstring_appendf(dstring_t *ds, const char *fmt, ...) __PRINTF_FORMAT__(2,3);
int dstring_append_char(dstring_t *ds, char c);
int dstring_append_int(dstring_t *ds, int i);
int dstring_append_hex_encoded(dstring_t *ds, const char *str,
const char *meta);
void dstring_empty(dstring_t *ds);
/*
* Deletes a section from a dstring, starting at 'offset' and extending
* for 'length' characters.
*/
void dstring_delete(dstring_t *ds, size_t offset, size_t length);
/*
* Replaces a section from a dstring (at offset for length bytes) with a
* new (C) string.
*
* Returns 0 for success
* -1 for failure
*/
int dstring_replace(dstring_t *ds,
size_t offset,
size_t length,
const char *rep_str);
/*
* Replaces a section from a dstring (at offset for length bytes) with a
* new dstring.
*
* Returns 0 for success
* -1 for failure
*/
int dstring_dreplace(dstring_t *ds,
size_t offset,
size_t length,
const dstring_t *rep_with);
/*
* Searches for the first occurance of 'search' in a dstring starting
* at position offset (including looking at that position).
*
* Returns the new offset if found
* -1 if not.
*/
int dstring_find(dstring_t *ds,
size_t offset,
const char *search);
/*
* A combination of dstring_find and dstring_replace.
* Look for 'search' starting at a specific offset. If found replace it with
* replace.
*
* Returns position of replaced string if found
* -1 if not found or on error.
*/
int dstring_find_replace(dstring_t *ds,
size_t offset,
const char *search,
const char *rep_with);
/*
* Look for 'search' starting at a specific offset. If found replace it with
* replace. Repeat until all occurances have been replaced.
*
* Returns 0 for success
* -1 on error
*/
int dstring_find_replace_all(dstring_t *ds,
const char *search,
const char *rep_with);
/*
* Converts a text string into a HTML version representing the same string.
* This includes escaping any HTML meta characters and searching for URLs
* within the string and replacing it with an HTML link (keeping the link as
* the anchor name).
* This is simply a wrapper joining dstring_escape_html and
* dstring_htmlise_links.
*
* Returns 0 for success
* -1 on error
*/
int dstring_to_html(dstring_t *ds);
/*
* Escapes HTML meta characters by replacing them with appropriate HTML
* codes.
* We deal with the following:
*
* & &
* < <
* > >
* " "
*
* Returns 0 for success
* -1 on error
*/
int dstring_escape_html(dstring_t *ds);
/*
* Searches for URLs in text strings and converts then to html href links.
* At present we just look for http://, https://, ftp://, file:// and
* mailto://
*
* Returns 0 for success
* -1 on error
*/
int dstring_htmlise_links(dstring_t *ds);
/*
* Appends an system error much like perror().
* 'str' is added in the form "str: error_message".
*
* All Return 0 for success
* -1 for failure
*/
int dstring_perror(dstring_t *ds, const char *str);
#ifdef __cplusplus
}
#endif
#endif
|