aboutsummaryrefslogtreecommitdiffstats
path: root/vespalog/src/logger/llreader.cpp
blob: 200f4bb039dd31c168418d12ff38d377bb885c51 (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
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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "llreader.h"
#include <cstdlib>
#include <cstring>
#include <unistd.h>

namespace ns_log {

InputBuf::InputBuf(int fd)
    : _inputfd(fd),
      _size(1000),
      _buf((char *)malloc(_size)),
      _bp(_buf),
      _left(_size)
{ }


InputBuf::~InputBuf()
{
    free(_buf);
}


bool
InputBuf::hasInput()
{
    char *p = _buf;
    while (p < _bp) {
        if (*p == '\n') return true;
        p++;
    }
    return false;

}

void
InputBuf::doInput(LLParser& via)
{
    char *p = _buf;
    while (p < _bp) {
        if (*p == '\n') {
            *p = '\0';
            via.doInput(_buf);
	    ++p;
            int len = p - _buf;
	    int movelen = _bp - p;
            memmove(_buf, p, movelen);
	    _bp -= len;
	    _left += len;
            p = _buf;
            continue;
        }
        p++;
    }
}

void
InputBuf::extend()
{
    _size *= 2;
    int pos = _bp - _buf;
    char *nbuf = (char *)realloc(_buf, _size);
    if (nbuf == NULL) {
        free(_buf);
        throw MsgException("realloc failed");
    }
    _buf = nbuf;
    _bp = _buf + pos;
    _left = _size - pos;
}

bool
InputBuf::blockRead()
{
    if (_left < 80) {
        extend();
    }
    ssize_t len = ::read(_inputfd, _bp, _left);
    if (len > 0) {
        _bp += len;
        _left -= len;
	// printf("read %d bytes: '%.*s'\n", len, len, _buf);
    } else if (len < 0) {
        throw MsgException("error reading");
    } else {
	// EOF on input
        return false;
    }
    return true;
}

void
InputBuf::doAllInput(LLParser &outputvia)
{
    while (blockRead()) {
        while (hasInput()) {
            doInput(outputvia);
        }
    }
    if (_bp != _buf) {
	if (_left < 1) extend();
	*_bp++ = '\n';
	doInput(outputvia);
    }
}

} // namespace