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
|
/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
#if !IS_CPLUSPLUS
#define memory_ostream_representation any_ostream_representation
#endif
#line 1 "memory-ostream.oo.c"
/* Output stream that accumulates the output in memory.
Copyright (C) 2006-2024 Free Software Foundation, Inc.
Written by Bruno Haible <bruno@clisp.org>, 2006.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
#include <config.h>
/* Specification. */
#include "memory-ostream.h"
#include <stdlib.h>
#include <string.h>
#include <error.h>
#include "xalloc.h"
#include "xsize.h"
#include "gettext.h"
#define _(str) gettext (str)
#line 40 "memory-ostream.c"
#include "memory_ostream.priv.h"
const typeinfo_t memory_ostream_typeinfo = { "memory_ostream" };
static const typeinfo_t * const memory_ostream_superclasses[] =
{ memory_ostream_SUPERCLASSES };
#define super ostream_vtable
#line 40 "memory-ostream.oo.c"
/* Implementation of ostream_t methods. */
static void
memory_ostream__write_mem (memory_ostream_t stream,
const void *data, size_t len)
{
if (len > 0)
{
if (len > stream->allocated - stream->buflen)
{
size_t new_allocated =
xmax (xsum (stream->buflen, len),
xsum (stream->allocated, stream->allocated));
if (size_overflow_p (new_allocated))
error (EXIT_FAILURE, 0,
_("%s: too much output, buffer size overflow"),
"memory_ostream");
stream->buffer = (char *) xrealloc (stream->buffer, new_allocated);
stream->allocated = new_allocated;
}
memcpy (stream->buffer + stream->buflen, data, len);
stream->buflen += len;
}
}
static void
memory_ostream__flush (memory_ostream_t stream, ostream_flush_scope_t scope)
{
}
static void
memory_ostream__free (memory_ostream_t stream)
{
free (stream->buffer);
free (stream);
}
/* Implementation of memory_ostream_t methods. */
static void
memory_ostream__contents (memory_ostream_t stream,
const void **bufp, size_t *buflenp)
{
*bufp = stream->buffer;
*buflenp = stream->buflen;
}
/* Constructor. */
memory_ostream_t
memory_ostream_create (void)
{
memory_ostream_t stream = XMALLOC (struct memory_ostream_representation);
stream->base.vtable = &memory_ostream_vtable;
stream->allocated = 250;
stream->buffer = XNMALLOC (stream->allocated, char);
stream->buflen = 0;
return stream;
}
/* Instanceof test. */
bool
is_instance_of_memory_ostream (ostream_t stream)
{
return IS_INSTANCE (stream, ostream, memory_ostream);
}
#line 122 "memory-ostream.c"
const struct memory_ostream_implementation memory_ostream_vtable =
{
memory_ostream_superclasses,
sizeof (memory_ostream_superclasses) / sizeof (memory_ostream_superclasses[0]),
sizeof (struct memory_ostream_representation),
memory_ostream__write_mem,
memory_ostream__flush,
memory_ostream__free,
memory_ostream__contents,
};
#if !HAVE_INLINE
/* Define the functions that invoke the methods. */
void
memory_ostream_write_mem (memory_ostream_t first_arg, const void *data, size_t len)
{
const struct memory_ostream_implementation *vtable =
((struct memory_ostream_representation_header *) (struct memory_ostream_representation *) first_arg)->vtable;
vtable->write_mem (first_arg,data,len);
}
void
memory_ostream_flush (memory_ostream_t first_arg, ostream_flush_scope_t scope)
{
const struct memory_ostream_implementation *vtable =
((struct memory_ostream_representation_header *) (struct memory_ostream_representation *) first_arg)->vtable;
vtable->flush (first_arg,scope);
}
void
memory_ostream_free (memory_ostream_t first_arg)
{
const struct memory_ostream_implementation *vtable =
((struct memory_ostream_representation_header *) (struct memory_ostream_representation *) first_arg)->vtable;
vtable->free (first_arg);
}
void
memory_ostream_contents (memory_ostream_t first_arg, const void **bufp, size_t *buflenp)
{
const struct memory_ostream_implementation *vtable =
((struct memory_ostream_representation_header *) (struct memory_ostream_representation *) first_arg)->vtable;
vtable->contents (first_arg,bufp,buflenp);
}
#endif
|