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
|
/**
* ======================== legal notice ======================
*
* File: LineReader.cc
* Created: 28. Juli 2012, 06
* Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a>
* Project: libIO: classes for files, filesystem and input/output
*
* CMP - compound media player
*
* is a client/server mediaplayer intended to play any media from any workstation
* without the need to export or mount shares. cmps is an easy to use backend
* with a (ready to use) HTML-interface. Additionally the backend supports
* authentication via HTTP-digest authorization.
* cmpc is a client with vdr-like osd-menues.
*
* Copyright (c) 2012 Reinhard Mantey, some rights reserved!
* published under Creative Commons by-sa
* For details see http://creativecommons.org/licenses/by-sa/3.0/
*
* The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp
*
* --------------------------------------------------------------
*/
#include <LineReader.h>
#include <Reader.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <iostream>
cLineReader::cLineReader(cReader *FileReader)
: reader(FileReader)
, bytesRead(0)
, off(0)
, bufSize(1024)
, buf(NULL)
, lastLine(NULL)
{
buf = (char *) malloc(bufSize + 1);
if (buf) {
buf[bufSize] = 0;
*buf = 0;
}
}
cLineReader::~cLineReader()
{
Close();
}
void cLineReader::Close()
{
if (reader) {
delete reader;
reader = NULL;
}
free(buf);
buf = NULL;
off = NULL;
}
const char *cLineReader::ReadLine(void)
{
const char *rv = NULL;
char *p;
if (lastLine) lastLine += strlen(lastLine) + 1;
else lastLine = buf;
if (bytesRead && lastLine - buf >= bytesRead) return NULL;
p = strchr(lastLine, '\n');
if (!p && strlen(lastLine)) {
memmove(buf, lastLine, strlen(lastLine));
buf[strlen(lastLine)] = 0;
lastLine = buf;
}
if (!p && (!bytesRead || bytesRead == bufSize)) {
bytesRead = strlen(buf);
int br = reader->Read(buf + bytesRead, bufSize - bytesRead);
if (br > 0) bytesRead += br;
if (bytesRead < bufSize) memset(buf + bytesRead, 0, bufSize - bytesRead);
}
if (!p) p = strchr(lastLine, '\n');
if (p) {
if (p - buf <= bytesRead) {
*p = 0;
rv = lastLine;
}
}
else {
if (strlen(lastLine)) rv = lastLine;
}
return rv;
}
|