keepassxc/src/core/Database.h

142 lines
3.8 KiB
C
Raw Normal View History

2010-08-07 09:10:44 -04:00
/*
* Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
*
* 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 or (at your option)
* version 3 of the License.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef KEEPASSX_DATABASE_H
#define KEEPASSX_DATABASE_H
2011-07-08 07:57:02 -04:00
#include <QtCore/QDateTime>
2010-08-07 09:10:44 -04:00
#include <QtCore/QHash>
2011-07-08 07:57:02 -04:00
#include "core/Uuid.h"
#include "keys/CompositeKey.h"
2011-07-08 07:57:02 -04:00
class Entry;
class Group;
2010-08-07 09:10:44 -04:00
class Metadata;
2012-06-24 11:53:01 -04:00
class QTimer;
2010-08-07 09:10:44 -04:00
struct DeletedObject
{
Uuid uuid;
QDateTime deletionTime;
};
Q_DECLARE_TYPEINFO(DeletedObject, Q_MOVABLE_TYPE);
class Database : public QObject
2010-08-07 09:10:44 -04:00
{
Q_OBJECT
2010-08-07 09:10:44 -04:00
public:
enum CompressionAlgorithm
{
CompressionNone = 0,
CompressionGZip = 1
};
static const quint32 CompressionAlgorithmMax = CompressionGZip;
2010-08-13 12:08:06 -04:00
Database();
~Database();
2010-08-07 09:10:44 -04:00
Group* rootGroup();
2010-08-15 09:03:47 -04:00
const Group* rootGroup() const;
2011-07-08 07:57:02 -04:00
/**
* Sets group as the root group and takes ownership of it.
* Warning: Be careful when calling this method as it doesn't
* emit any notifications so e.g. models aren't updated.
* The caller is responsible for cleaning up the pervious
root group.
2011-07-08 07:57:02 -04:00
*/
void setRootGroup(Group* group);
2011-07-08 07:57:02 -04:00
Metadata* metadata();
2010-09-19 15:22:24 -04:00
const Metadata* metadata() const;
Entry* resolveEntry(const Uuid& uuid);
Group* resolveGroup(const Uuid& uuid);
QList<DeletedObject> deletedObjects();
void addDeletedObject(const DeletedObject& delObj);
void addDeletedObject(const Uuid& uuid);
2010-08-07 09:10:44 -04:00
Uuid cipher() const;
Database::CompressionAlgorithm compressionAlgo() const;
QByteArray transformSeed() const;
quint64 transformRounds() const;
QByteArray transformedMasterKey() const;
void setCipher(const Uuid& cipher);
void setCompressionAlgo(Database::CompressionAlgorithm algo);
void setTransformRounds(quint64 rounds);
2012-04-11 09:57:11 -04:00
void setKey(const CompositeKey& key, const QByteArray& transformSeed, bool updateChangedTime = true);
2011-07-08 07:57:02 -04:00
/**
* Sets the database key and generates a random transform seed.
*/
void setKey(const CompositeKey& key);
bool hasKey();
void recycleEntry(Entry* entry);
2012-04-21 13:06:28 -04:00
void recycleGroup(Group* group);
2012-06-24 11:53:01 -04:00
void setEmitModified(bool value);
/**
* Returns a unique id that is only valid as long as the Database exists.
*/
Uuid uuid();
static Database* databaseByUuid(const Uuid& uuid);
2010-08-15 09:03:47 -04:00
Q_SIGNALS:
void groupDataChanged(Group* group);
void groupAboutToAdd(Group* group, int index);
void groupAdded();
void groupAboutToRemove(Group* group);
void groupRemoved();
void groupAboutToMove(Group* group, Group* toGroup, int index);
void groupMoved();
void nameTextChanged();
2012-04-11 07:52:12 -04:00
void modified();
2012-06-24 11:53:01 -04:00
void modifiedImmediate();
private Q_SLOTS:
void startModifiedTimer();
2010-08-15 09:03:47 -04:00
2010-08-07 09:10:44 -04:00
private:
Entry* recFindEntry(const Uuid& uuid, Group* group);
Group* recFindGroup(const Uuid& uuid, Group* group);
2010-08-07 09:10:44 -04:00
2012-04-21 13:06:28 -04:00
void createRecycleBin();
2012-04-23 13:44:43 -04:00
Metadata* const m_metadata;
2010-08-07 09:10:44 -04:00
Group* m_rootGroup;
QList<DeletedObject> m_deletedObjects;
2012-06-24 11:53:01 -04:00
QTimer* m_timer;
Uuid m_cipher;
CompressionAlgorithm m_compressionAlgo;
QByteArray m_transformSeed;
quint64 m_transformRounds;
QByteArray m_transformedMasterKey;
CompositeKey m_key;
bool m_hasKey;
2012-06-24 11:53:01 -04:00
bool m_emitModified;
Uuid m_uuid;
static QHash<Uuid, Database*> m_uuidMap;
2010-08-07 09:10:44 -04:00
};
#endif // KEEPASSX_DATABASE_H