buffer.c 4.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * QEMU generic buffers
 *
 * Copyright (c) 2015 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 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, see <http://www.gnu.org/licenses/>.
 *
 */

P
Peter Maydell 已提交
21
#include "qemu/osdep.h"
22
#include "qemu/host-utils.h"
23
#include "qemu/buffer.h"
G
Gerd Hoffmann 已提交
24
#include "trace.h"
25

G
Gerd Hoffmann 已提交
26 27
#define BUFFER_MIN_INIT_SIZE     4096
#define BUFFER_MIN_SHRINK_SIZE  65536
28

W
Wei Jiangang 已提交
29
/* define the factor alpha for the exponential smoothing
30 31 32 33
 * that is used in the average size calculation. a shift
 * of 7 results in an alpha of 1/2^7. */
#define BUFFER_AVG_SIZE_SHIFT       7

P
Peter Lieven 已提交
34 35 36 37 38 39
static size_t buffer_req_size(Buffer *buffer, size_t len)
{
    return MAX(BUFFER_MIN_INIT_SIZE,
               pow2ceil(buffer->offset + len));
}

P
Peter Lieven 已提交
40 41 42 43 44 45 46
static void buffer_adj_size(Buffer *buffer, size_t len)
{
    size_t old = buffer->capacity;
    buffer->capacity = buffer_req_size(buffer, len);
    buffer->buffer = g_realloc(buffer->buffer, buffer->capacity);
    trace_buffer_resize(buffer->name ?: "unnamed",
                        old, buffer->capacity);
47 48

    /* make it even harder for the buffer to shrink, reset average size
W
Wei Jiangang 已提交
49
     * to current capacity if it is larger than the average. */
50 51
    buffer->avg_size = MAX(buffer->avg_size,
                           buffer->capacity << BUFFER_AVG_SIZE_SHIFT);
P
Peter Lieven 已提交
52
}
P
Peter Lieven 已提交
53

G
Gerd Hoffmann 已提交
54 55 56 57 58 59 60 61 62
void buffer_init(Buffer *buffer, const char *name, ...)
{
    va_list ap;

    va_start(ap, name);
    buffer->name = g_strdup_vprintf(name, ap);
    va_end(ap);
}

63 64 65 66 67
static uint64_t buffer_get_avg_size(Buffer *buffer)
{
    return buffer->avg_size >> BUFFER_AVG_SIZE_SHIFT;
}

G
Gerd Hoffmann 已提交
68 69
void buffer_shrink(Buffer *buffer)
{
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
    size_t new;

    /* Calculate the average size of the buffer as
     * avg_size = avg_size * ( 1 - a ) + required_size * a
     * where a is 1 / 2 ^ BUFFER_AVG_SIZE_SHIFT. */
    buffer->avg_size *= (1 << BUFFER_AVG_SIZE_SHIFT) - 1;
    buffer->avg_size >>= BUFFER_AVG_SIZE_SHIFT;
    buffer->avg_size += buffer_req_size(buffer, 0);

    /* And then only shrink if the average size of the buffer is much
     * too big, to avoid bumping up & down the buffers all the time.
     * realloc() isn't exactly cheap ...  */
    new = buffer_req_size(buffer, buffer_get_avg_size(buffer));
    if (new < buffer->capacity >> 3 &&
        new >= BUFFER_MIN_SHRINK_SIZE) {
        buffer_adj_size(buffer, buffer_get_avg_size(buffer));
G
Gerd Hoffmann 已提交
86 87
    }

P
Peter Lieven 已提交
88
    buffer_adj_size(buffer, 0);
G
Gerd Hoffmann 已提交
89 90
}

91 92 93
void buffer_reserve(Buffer *buffer, size_t len)
{
    if ((buffer->capacity - buffer->offset) < len) {
P
Peter Lieven 已提交
94
        buffer_adj_size(buffer, len);
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
    }
}

gboolean buffer_empty(Buffer *buffer)
{
    return buffer->offset == 0;
}

uint8_t *buffer_end(Buffer *buffer)
{
    return buffer->buffer + buffer->offset;
}

void buffer_reset(Buffer *buffer)
{
    buffer->offset = 0;
111
    buffer_shrink(buffer);
112 113 114 115
}

void buffer_free(Buffer *buffer)
{
G
Gerd Hoffmann 已提交
116
    trace_buffer_free(buffer->name ?: "unnamed", buffer->capacity);
117
    g_free(buffer->buffer);
G
Gerd Hoffmann 已提交
118
    g_free(buffer->name);
119 120 121
    buffer->offset = 0;
    buffer->capacity = 0;
    buffer->buffer = NULL;
G
Gerd Hoffmann 已提交
122
    buffer->name = NULL;
123 124 125 126 127 128 129 130 131 132 133 134 135
}

void buffer_append(Buffer *buffer, const void *data, size_t len)
{
    memcpy(buffer->buffer + buffer->offset, data, len);
    buffer->offset += len;
}

void buffer_advance(Buffer *buffer, size_t len)
{
    memmove(buffer->buffer, buffer->buffer + len,
            (buffer->offset - len));
    buffer->offset -= len;
136
    buffer_shrink(buffer);
137
}
G
Gerd Hoffmann 已提交
138 139 140

void buffer_move_empty(Buffer *to, Buffer *from)
{
G
Gerd Hoffmann 已提交
141 142 143
    trace_buffer_move_empty(to->name ?: "unnamed",
                            from->offset,
                            from->name ?: "unnamed");
G
Gerd Hoffmann 已提交
144 145 146 147 148 149 150 151 152 153 154
    assert(to->offset == 0);

    g_free(to->buffer);
    to->offset = from->offset;
    to->capacity = from->capacity;
    to->buffer = from->buffer;

    from->offset = 0;
    from->capacity = 0;
    from->buffer = NULL;
}
G
Gerd Hoffmann 已提交
155 156 157 158 159 160 161 162

void buffer_move(Buffer *to, Buffer *from)
{
    if (to->offset == 0) {
        buffer_move_empty(to, from);
        return;
    }

G
Gerd Hoffmann 已提交
163 164 165
    trace_buffer_move(to->name ?: "unnamed",
                      from->offset,
                      from->name ?: "unnamed");
G
Gerd Hoffmann 已提交
166 167 168 169 170 171 172 173
    buffer_reserve(to, from->offset);
    buffer_append(to, from->buffer, from->offset);

    g_free(from->buffer);
    from->offset = 0;
    from->capacity = 0;
    from->buffer = NULL;
}