blob: 71cee16c60ed78a4bf7c23e7e2aafaca5f5482df (
plain)
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
|
/***************************************************************************
* Copyright (C) 2005-2006 Nicolas Hadacek <hadacek@kde.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#include "pfile.h"
#include <qfile.h>
//-----------------------------------------------------------------------------
PURL::FileBase::FileBase(Log::Generic &log, const QString &extension)
: _tmp(0), _file(0), _stream(0), _extension(extension), _log(log)
{}
PURL::FileBase::~FileBase()
{
delete _stream;
delete _file;
delete _tmp;
}
const QFile *PURL::FileBase::qfile() const
{
return (_tmp ? _tmp->file() : _file);
}
QFile *PURL::FileBase::qfile()
{
return (_tmp ? _tmp->file() : _file);
}
void PURL::FileBase::flush()
{
if ( qfile() ) qfile()->flush();
}
QTextStream &PURL::FileBase::stream()
{
if ( _stream==0 ) _stream = new QTextStream(qfile());
return *_stream;
}
bool PURL::FileBase::hasError() const
{
if ( qfile()==0 || !_error.isEmpty() ) return true;
return ( uint(qfile()->status())!=IO_Ok );
}
QString PURL::FileBase::errorString() const
{
if ( _error.isEmpty() ) {
if ( qfile()==0 ) return i18n("File not open.");
else return qfile()->errorString();
}
return _error;
}
QStringList PURL::FileBase::readLines()
{
QStringList lines;
for (;;) {
QString s = stream().readLine();
if ( s.isNull() ) break;
lines.append(s);
}
return lines;
}
QByteArray PURL::FileBase::readAll()
{
if ( qfile() ) return qfile()->readAll();
return QByteArray();
}
//-----------------------------------------------------------------------------
PURL::File::File(const Url &url, Log::Generic &log)
: FileBase(log, QString::null), _url(url)
{
_file = new QFile;
}
void PURL::File::setUrl(const Url &url)
{
close();
_url = url;
}
|