~ubuntu-branches/ubuntu/wily/kbibtex/wily

« back to all changes in this revision

Viewing changes to src/libkbibtexio/file.cpp

  • Committer: Package Import Robot
  • Author(s): Michael Hanke
  • Date: 2011-07-18 09:29:48 UTC
  • mfrom: (1.1.6) (2.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20110718092948-ksxjmg7kdfamolmg
Tags: 0.3-1
* First upstream release for KDE4 (Closes: #634255). A number of search
  engines are still missing, in comparison to the 0.2 series.
* Bumped Standards-Version to 3.9.2, no changes necessary.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
*   Copyright (C) 2004-2009 by Thomas Fischer                             *
 
3
*   fischer@unix-ag.uni-kl.de                                             *
 
4
*                                                                         *
 
5
*   This program is free software; you can redistribute it and/or modify  *
 
6
*   it under the terms of the GNU General Public License as published by  *
 
7
*   the Free Software Foundation; either version 2 of the License, or     *
 
8
*   (at your option) any later version.                                   *
 
9
*                                                                         *
 
10
*   This program is distributed in the hope that it will be useful,       *
 
11
*   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
*   GNU General Public License for more details.                          *
 
14
*                                                                         *
 
15
*   You should have received a copy of the GNU General Public License     *
 
16
*   along with this program; if not, write to the                         *
 
17
*   Free Software Foundation, Inc.,                                       *
 
18
*   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 
19
***************************************************************************/
 
20
 
 
21
#include <QFile>
 
22
#include <QTextStream>
 
23
#include <QIODevice>
 
24
#include <QStringList>
 
25
#include <QRegExp>
 
26
 
 
27
#include <KDebug>
 
28
 
 
29
#include <file.h>
 
30
#include <entry.h>
 
31
#include <element.h>
 
32
#include <macro.h>
 
33
#include <comment.h>
 
34
 
 
35
const QString File::Url = QLatin1String("Url");
 
36
const QString File::Encoding = QLatin1String("Encoding");
 
37
 
 
38
class File::FilePrivate
 
39
{
 
40
private:
 
41
    File *p;
 
42
 
 
43
public:
 
44
    QMap<QString, QVariant> properties;
 
45
 
 
46
    FilePrivate(File *parent)
 
47
            : p(parent)        {
 
48
        // TODO
 
49
    }
 
50
};
 
51
 
 
52
File::File()
 
53
        : QList<Element*>(), d(new FilePrivate(this))
 
54
{
 
55
    // nothing
 
56
}
 
57
 
 
58
File::~File()
 
59
{
 
60
    // nothing
 
61
}
 
62
 
 
63
const Element *File::containsKey(const QString &key) const
 
64
{
 
65
    for (ConstIterator it = begin(); it != end(); ++it) {
 
66
        const Entry* entry = dynamic_cast<const Entry*>(*it);
 
67
        if (entry != NULL) {
 
68
            if (entry->id() == key)
 
69
                return entry;
 
70
        } else {
 
71
            const Macro* macro = dynamic_cast<const Macro*>(*it);
 
72
            if (macro != NULL) {
 
73
                if (macro->key() == key)
 
74
                    return macro;
 
75
            }
 
76
        }
 
77
    }
 
78
 
 
79
    return NULL;
 
80
}
 
81
 
 
82
QStringList File::allKeys() const
 
83
{
 
84
    QStringList result;
 
85
 
 
86
    for (ConstIterator it = begin(); it != end(); ++it) {
 
87
        const Entry* entry = dynamic_cast<const Entry*>(*it);
 
88
        if (entry != NULL)
 
89
            result.append(entry->id());
 
90
        else {
 
91
            const Macro* macro = dynamic_cast<const Macro*>(*it);
 
92
            if (macro != NULL)
 
93
                result.append(macro->key());
 
94
        }
 
95
    }
 
96
 
 
97
    return result;
 
98
}
 
99
 
 
100
void File::setProperty(const QString &key, const QVariant &value)
 
101
{
 
102
    d->properties.insert(key, value);
 
103
}
 
104
 
 
105
QVariant File::property(const QString &key) const
 
106
{
 
107
    return d->properties.value(key);
 
108
}
 
109
 
 
110
QVariant File::property(const QString &key, const QVariant &defaultValue) const
 
111
{
 
112
    return d->properties.value(key, defaultValue);
 
113
}
 
114
 
 
115
bool File::hasProperty(const QString &key) const
 
116
{
 
117
    return d->properties.contains(key);
 
118
}