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
|
/* This file is part of Strigi Desktop Search
*
* Copyright (C) 2009 Jos van den Oever <jos@vandenoever.info>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "skippingfileinputstream.h"
#include <config.h>
#include <strigi/strigiconfig.h>
#include <iostream>
#include <algorithm>
#include <cerrno>
#include <cstring>
#include <cstdlib>
using namespace Strigi;
using namespace std;
SkippingFileInputStream::SkippingFileInputStream(const char* filepath) {
buffer = 0;
buffersize = 0;
if (filepath == 0) {
file = 0;
m_error = "No filename was provided.";
m_status = Error;
return;
}
FILE* f = fopen(filepath, "rb");
open(f, filepath);
}
void
SkippingFileInputStream::open(FILE* f, const char* path) {
// try to open the file for reading
file = f;
filepath.assign(path);
if (file == 0) {
cerr << "ohoh" << endl;
// handle error
m_error = "Could not read file '";
m_error += filepath;
m_error += "': ";
m_error += strerror(errno);
m_status = Error;
return;
}
// determine file size. if the stream is not seekable, the size will be -1
if (fseeko(file, 0, SEEK_END) == -1) {
m_size = -1;
} else {
m_size = ftello(file);
fseeko(file, 0, SEEK_SET);
// if the file has size 0, make sure that it's really empty
// this is useful for filesystems like /proc that report files as size 0
// for files that do contain content
if (m_size == 0) {
char dummy[1];
size_t n = fread(dummy, 1, 1, file);
if (n == 1) {
m_size = -1;
fseeko(file, 0, SEEK_SET);
}
}
}
}
SkippingFileInputStream::~SkippingFileInputStream() {
if (file) {
if (fclose(file)) {
// handle error
m_error = "Could not close file '" + filepath + "'.";
}
}
free(buffer);
}
int32_t
SkippingFileInputStream::read(const char*& start, int32_t _min, int32_t _max) {
if (!file) {
m_status = Error;
return -2; // error
}
// take a decent buffersize that can hold the request
int32_t n = max(_min, _max);
if (_max <= 0) {
n = max(1024, max(buffersize, _min));
}
if (n > buffersize) {
if (_max <= 0) {
n = max(n, 2 * buffersize);
if (m_size != -1 && n > m_size - m_position) {
n = m_size - m_position + 1;
}
}
buffer = (char*)realloc(buffer, n);
buffersize = n;
}
int32_t nr = (int32_t)fread(buffer, 1, n, file);
m_position = ftell(file);
if (nr != n) {
if (ferror(file)) {
m_status = Error;
} else {
m_status = Eof;
if (m_size == -1) {
m_size = m_position;
}
}
}
start = buffer;
return nr;
}
int64_t
SkippingFileInputStream::skip(int64_t ntoskip) {
int64_t oldpos = m_position;
if (reset(m_position + ntoskip) == -2) return -2;
return m_position - oldpos;
}
int64_t
SkippingFileInputStream::reset(int64_t pos) {
if (!file) {
m_status = Error;
return -2; // error
}
if (m_size >= 0 && pos > m_size) pos = m_size;
if (fseek(file, pos, SEEK_SET)) {
m_status = Error;
return -2;
}
m_position = ftell(file);
m_status = (m_position == m_size) ?Eof :Ok;
return m_position;
}
|