aboutsummaryrefslogtreecommitdiffstats
path: root/vbench/src/vbench/core/buffered_output.cpp
blob: 36e01e55fd51db567f8c09e447aaf298f022eb92 (plain) (blame)
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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/fastos/fastos.h>
#include "buffered_output.h"

namespace vbench {

BufferedOutput &
BufferedOutput::printf(const char *fmt, ...)
{
    ensureFree(256);
    int space = (_data.size - _pos);
    int size;
    va_list ap;
    va_start(ap, fmt);
    size = vsnprintf(_data.data + _pos, space, fmt, ap);
    va_end(ap);
    assert(size >= 0);
    if (size >= space) {
        space = size + 1;
        ensureFree(space);
        va_start(ap, fmt);
        size = vsnprintf(_data.data + _pos, space, fmt, ap);
        va_end(ap);
        assert((size + 1) == space);
    }
    _pos += size;
    return *this;
}

} // namespace vbench