mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -04:00
a?adido el codigo del tree model
modificada la funci?n de creaci?n de la base de datos (se crea la estructura de directorios, los c?mics y comic_info) falta determinar qu? informaci?n habr? finalmente en la BD y tratar adecuadamente los errores adem?s habr?a que mover el c?digo relacionado con la base de datos a la clase DataBaseManagement.
This commit is contained in:
parent
51a0f1b458
commit
3533a9ec64
@ -7,7 +7,8 @@ TARGET =
|
|||||||
DEPENDPATH += .
|
DEPENDPATH += .
|
||||||
INCLUDEPATH += .
|
INCLUDEPATH += .
|
||||||
INCLUDEPATH += ../common \
|
INCLUDEPATH += ../common \
|
||||||
./server
|
./server \
|
||||||
|
./db
|
||||||
CONFIG += release
|
CONFIG += release
|
||||||
CONFIG -= flat
|
CONFIG -= flat
|
||||||
QT += sql network
|
QT += sql network
|
||||||
@ -27,8 +28,10 @@ HEADERS += comic_flow.h \
|
|||||||
import_library_dialog.h \
|
import_library_dialog.h \
|
||||||
package_manager.h \
|
package_manager.h \
|
||||||
../common/qnaturalsorting.h \
|
../common/qnaturalsorting.h \
|
||||||
data_base_management.h \
|
bundle_creator.h \
|
||||||
bundle_creator.h
|
./db/data_base_management.h \
|
||||||
|
./db/treeitem.h \
|
||||||
|
./db/treemodel.h
|
||||||
SOURCES += comic_flow.cpp \
|
SOURCES += comic_flow.cpp \
|
||||||
create_library_dialog.cpp \
|
create_library_dialog.cpp \
|
||||||
library_creator.cpp \
|
library_creator.cpp \
|
||||||
@ -44,8 +47,10 @@ SOURCES += comic_flow.cpp \
|
|||||||
import_library_dialog.cpp \
|
import_library_dialog.cpp \
|
||||||
package_manager.cpp \
|
package_manager.cpp \
|
||||||
../common/qnaturalsorting.cpp \
|
../common/qnaturalsorting.cpp \
|
||||||
data_base_management.cpp \
|
bundle_creator.cpp \
|
||||||
bundle_creator.cpp
|
./db/data_base_management.cpp \
|
||||||
|
./db/treeitem.cpp \
|
||||||
|
./db/treemodel.cpp
|
||||||
|
|
||||||
include(./server/server.pri)
|
include(./server/server.pri)
|
||||||
|
|
||||||
|
@ -1,22 +0,0 @@
|
|||||||
#include "data_base_management.h"
|
|
||||||
|
|
||||||
#include <QtCore>
|
|
||||||
|
|
||||||
DataBaseManagement::DataBaseManagement()
|
|
||||||
:QObject(),dataBasesList()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
bool DataBaseManagement::createDataBase(QString name, QString path)
|
|
||||||
{
|
|
||||||
QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
|
|
||||||
db.setDatabaseName(QDir::cleanPath(path) + "/" + name + ".ydb");
|
|
||||||
if (!db.open())
|
|
||||||
qDebug() << db.lastError();
|
|
||||||
else {
|
|
||||||
qDebug() << db.tables();
|
|
||||||
db.close();
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
52
YACReaderLibrary/db/data_base_management.cpp
Normal file
52
YACReaderLibrary/db/data_base_management.cpp
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
#include "data_base_management.h"
|
||||||
|
|
||||||
|
#include <QtCore>
|
||||||
|
|
||||||
|
DataBaseManagement::DataBaseManagement()
|
||||||
|
:QObject(),dataBasesList()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
TreeModel * DataBaseManagement::newTreeModel(QString path)
|
||||||
|
{
|
||||||
|
//la consulta se ejecuta...
|
||||||
|
QSqlQuery selectQuery(loadDatabase(path));
|
||||||
|
selectQuery.setForwardOnly(true);
|
||||||
|
selectQuery.exec("select * from folder order by parentId,name");
|
||||||
|
return new TreeModel(selectQuery);
|
||||||
|
}
|
||||||
|
|
||||||
|
QSqlDatabase DataBaseManagement::createDatabase(QString name, QString path)
|
||||||
|
{
|
||||||
|
QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
|
||||||
|
db.setDatabaseName(QDir::cleanPath(path) + "/" + name + ".ydb");
|
||||||
|
if (!db.open())
|
||||||
|
qDebug() << db.lastError();
|
||||||
|
else {
|
||||||
|
qDebug() << db.tables();
|
||||||
|
db.close();
|
||||||
|
}
|
||||||
|
return db;
|
||||||
|
}
|
||||||
|
|
||||||
|
QSqlDatabase DataBaseManagement::loadDatabase(QString path)
|
||||||
|
{
|
||||||
|
//TODO check path
|
||||||
|
QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
|
||||||
|
db.setDatabaseName(path);
|
||||||
|
if (!db.open()) {
|
||||||
|
/*QMessageBox::critical( 0, QObject::tr("Cannot open database"),
|
||||||
|
QObject::tr("Unable to establish a database connection.\n"
|
||||||
|
"This example needs SQLite support. Please read "
|
||||||
|
"the Qt SQL driver documentation for information how "
|
||||||
|
"to build it.\n\n"
|
||||||
|
"Click Cancel to exit."), QMessageBox::Cancel);*/
|
||||||
|
|
||||||
|
//se devuelve una base de datos vacía e inválida
|
||||||
|
return QSqlDatabase();
|
||||||
|
}
|
||||||
|
|
||||||
|
//devuelve la base de datos
|
||||||
|
return db;
|
||||||
|
}
|
@ -3,6 +3,9 @@
|
|||||||
|
|
||||||
#include <QtCore>
|
#include <QtCore>
|
||||||
#include <QtSql>
|
#include <QtSql>
|
||||||
|
#include <QSqlDatabase>
|
||||||
|
|
||||||
|
#include "treemodel.h"
|
||||||
|
|
||||||
class DataBaseManagement : public QObject
|
class DataBaseManagement : public QObject
|
||||||
{
|
{
|
||||||
@ -11,8 +14,9 @@ private:
|
|||||||
QList<QString> dataBasesList;
|
QList<QString> dataBasesList;
|
||||||
public:
|
public:
|
||||||
DataBaseManagement();
|
DataBaseManagement();
|
||||||
bool createDataBase(QString name, QString path);
|
TreeModel * newTreeModel(QString path);
|
||||||
|
QSqlDatabase createDatabase(QString name, QString path);
|
||||||
|
QSqlDatabase loadDatabase(QString path);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
118
YACReaderLibrary/db/treeitem.cpp
Normal file
118
YACReaderLibrary/db/treeitem.cpp
Normal file
@ -0,0 +1,118 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
**
|
||||||
|
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
||||||
|
** All rights reserved.
|
||||||
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
||||||
|
**
|
||||||
|
** This file is part of the examples of the Qt Toolkit.
|
||||||
|
**
|
||||||
|
** $QT_BEGIN_LICENSE:BSD$
|
||||||
|
** You may use this file under the terms of the BSD license as follows:
|
||||||
|
**
|
||||||
|
** "Redistribution and use in source and binary forms, with or without
|
||||||
|
** modification, are permitted provided that the following conditions are
|
||||||
|
** met:
|
||||||
|
** * Redistributions of source code must retain the above copyright
|
||||||
|
** notice, this list of conditions and the following disclaimer.
|
||||||
|
** * Redistributions in binary form must reproduce the above copyright
|
||||||
|
** notice, this list of conditions and the following disclaimer in
|
||||||
|
** the documentation and/or other materials provided with the
|
||||||
|
** distribution.
|
||||||
|
** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
|
||||||
|
** the names of its contributors may be used to endorse or promote
|
||||||
|
** products derived from this software without specific prior written
|
||||||
|
** permission.
|
||||||
|
**
|
||||||
|
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
|
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
|
||||||
|
** $QT_END_LICENSE$
|
||||||
|
**
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/*
|
||||||
|
treeitem.cpp
|
||||||
|
|
||||||
|
A container for items of data supplied by the simple tree model.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <QStringList>
|
||||||
|
|
||||||
|
#include "treeitem.h"
|
||||||
|
|
||||||
|
//! [0]
|
||||||
|
TreeItem::TreeItem(const QList<QVariant> &data, TreeItem *parent)
|
||||||
|
{
|
||||||
|
parentItem = parent;
|
||||||
|
itemData = data;
|
||||||
|
}
|
||||||
|
//! [0]
|
||||||
|
|
||||||
|
//! [1]
|
||||||
|
TreeItem::~TreeItem()
|
||||||
|
{
|
||||||
|
qDeleteAll(childItems);
|
||||||
|
}
|
||||||
|
//! [1]
|
||||||
|
|
||||||
|
//! [2]
|
||||||
|
void TreeItem::appendChild(TreeItem *item)
|
||||||
|
{
|
||||||
|
item->parentItem = this;
|
||||||
|
//TODO insertar odernado
|
||||||
|
childItems.append(item);
|
||||||
|
}
|
||||||
|
//! [2]
|
||||||
|
|
||||||
|
//! [3]
|
||||||
|
TreeItem *TreeItem::child(int row)
|
||||||
|
{
|
||||||
|
return childItems.value(row);
|
||||||
|
}
|
||||||
|
//! [3]
|
||||||
|
|
||||||
|
//! [4]
|
||||||
|
int TreeItem::childCount() const
|
||||||
|
{
|
||||||
|
return childItems.count();
|
||||||
|
}
|
||||||
|
//! [4]
|
||||||
|
|
||||||
|
//! [5]
|
||||||
|
int TreeItem::columnCount() const
|
||||||
|
{
|
||||||
|
return itemData.count();
|
||||||
|
}
|
||||||
|
//! [5]
|
||||||
|
|
||||||
|
//! [6]
|
||||||
|
QVariant TreeItem::data(int column) const
|
||||||
|
{
|
||||||
|
return itemData.value(column);
|
||||||
|
}
|
||||||
|
//! [6]
|
||||||
|
|
||||||
|
//! [7]
|
||||||
|
TreeItem *TreeItem::parent()
|
||||||
|
{
|
||||||
|
return parentItem;
|
||||||
|
}
|
||||||
|
//! [7]
|
||||||
|
|
||||||
|
//! [8]
|
||||||
|
int TreeItem::row() const
|
||||||
|
{
|
||||||
|
if (parentItem)
|
||||||
|
return parentItem->childItems.indexOf(const_cast<TreeItem*>(this));
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
//! [8]
|
72
YACReaderLibrary/db/treeitem.h
Normal file
72
YACReaderLibrary/db/treeitem.h
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
**
|
||||||
|
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
||||||
|
** All rights reserved.
|
||||||
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
||||||
|
**
|
||||||
|
** This file is part of the examples of the Qt Toolkit.
|
||||||
|
**
|
||||||
|
** $QT_BEGIN_LICENSE:BSD$
|
||||||
|
** You may use this file under the terms of the BSD license as follows:
|
||||||
|
**
|
||||||
|
** "Redistribution and use in source and binary forms, with or without
|
||||||
|
** modification, are permitted provided that the following conditions are
|
||||||
|
** met:
|
||||||
|
** * Redistributions of source code must retain the above copyright
|
||||||
|
** notice, this list of conditions and the following disclaimer.
|
||||||
|
** * Redistributions in binary form must reproduce the above copyright
|
||||||
|
** notice, this list of conditions and the following disclaimer in
|
||||||
|
** the documentation and/or other materials provided with the
|
||||||
|
** distribution.
|
||||||
|
** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
|
||||||
|
** the names of its contributors may be used to endorse or promote
|
||||||
|
** products derived from this software without specific prior written
|
||||||
|
** permission.
|
||||||
|
**
|
||||||
|
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
|
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
|
||||||
|
** $QT_END_LICENSE$
|
||||||
|
**
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#ifndef TREEITEM_H
|
||||||
|
#define TREEITEM_H
|
||||||
|
|
||||||
|
#include <QList>
|
||||||
|
#include <QVariant>
|
||||||
|
|
||||||
|
//! [0]
|
||||||
|
class TreeItem
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
TreeItem(const QList<QVariant> &data, TreeItem *parent = 0);
|
||||||
|
~TreeItem();
|
||||||
|
|
||||||
|
void appendChild(TreeItem *child);
|
||||||
|
|
||||||
|
TreeItem *child(int row);
|
||||||
|
int childCount() const;
|
||||||
|
int columnCount() const;
|
||||||
|
QVariant data(int column) const;
|
||||||
|
int row() const;
|
||||||
|
TreeItem *parent();
|
||||||
|
TreeItem *parentItem;
|
||||||
|
unsigned long long int id;
|
||||||
|
private:
|
||||||
|
QList<TreeItem*> childItems;
|
||||||
|
QList<QVariant> itemData;
|
||||||
|
|
||||||
|
|
||||||
|
};
|
||||||
|
//! [0]
|
||||||
|
|
||||||
|
#endif
|
192
YACReaderLibrary/db/treemodel.cpp
Normal file
192
YACReaderLibrary/db/treemodel.cpp
Normal file
@ -0,0 +1,192 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
**
|
||||||
|
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
||||||
|
** All rights reserved.
|
||||||
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
||||||
|
**
|
||||||
|
** This file is part of the examples of the Qt Toolkit.
|
||||||
|
**
|
||||||
|
** $QT_BEGIN_LICENSE:BSD$
|
||||||
|
** You may use this file under the terms of the BSD license as follows:
|
||||||
|
**
|
||||||
|
** "Redistribution and use in source and binary forms, with or without
|
||||||
|
** modification, are permitted provided that the following conditions are
|
||||||
|
** met:
|
||||||
|
** * Redistributions of source code must retain the above copyright
|
||||||
|
** notice, this list of conditions and the following disclaimer.
|
||||||
|
** * Redistributions in binary form must reproduce the above copyright
|
||||||
|
** notice, this list of conditions and the following disclaimer in
|
||||||
|
** the documentation and/or other materials provided with the
|
||||||
|
** distribution.
|
||||||
|
** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
|
||||||
|
** the names of its contributors may be used to endorse or promote
|
||||||
|
** products derived from this software without specific prior written
|
||||||
|
** permission.
|
||||||
|
**
|
||||||
|
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
|
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
|
||||||
|
** $QT_END_LICENSE$
|
||||||
|
**
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/*
|
||||||
|
treemodel.cpp
|
||||||
|
|
||||||
|
Provides a simple tree model to show how to create and use hierarchical
|
||||||
|
models.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <QtGui>
|
||||||
|
|
||||||
|
|
||||||
|
#include "treeitem.h"
|
||||||
|
#include "treemodel.h"
|
||||||
|
|
||||||
|
//! [0]
|
||||||
|
TreeModel::TreeModel( QSqlQuery &sqlquery, QObject *parent)
|
||||||
|
: QAbstractItemModel(parent)
|
||||||
|
{
|
||||||
|
//lo más probable es que el nodo raíz no necesite tener información
|
||||||
|
QList<QVariant> rootData;
|
||||||
|
rootData << "root"; //id 0, padre 0, title "root" (el id, y el id del padre van a ir en la clase TreeItem)
|
||||||
|
rootItem = new TreeItem(rootData);
|
||||||
|
rootItem->id = 0;
|
||||||
|
setupModelData(sqlquery, rootItem);
|
||||||
|
}
|
||||||
|
//! [0]
|
||||||
|
|
||||||
|
//! [1]
|
||||||
|
TreeModel::~TreeModel()
|
||||||
|
{
|
||||||
|
delete rootItem;
|
||||||
|
}
|
||||||
|
//! [1]
|
||||||
|
|
||||||
|
//! [2]
|
||||||
|
int TreeModel::columnCount(const QModelIndex &parent) const
|
||||||
|
{
|
||||||
|
if (parent.isValid())
|
||||||
|
return static_cast<TreeItem*>(parent.internalPointer())->columnCount();
|
||||||
|
else
|
||||||
|
return rootItem->columnCount();
|
||||||
|
}
|
||||||
|
//! [2]
|
||||||
|
|
||||||
|
//! [3]
|
||||||
|
QVariant TreeModel::data(const QModelIndex &index, int role) const
|
||||||
|
{
|
||||||
|
if (!index.isValid())
|
||||||
|
return QVariant();
|
||||||
|
|
||||||
|
if (role != Qt::DisplayRole)
|
||||||
|
return QVariant();
|
||||||
|
|
||||||
|
TreeItem *item = static_cast<TreeItem*>(index.internalPointer());
|
||||||
|
|
||||||
|
return item->data(index.column());
|
||||||
|
}
|
||||||
|
//! [3]
|
||||||
|
|
||||||
|
//! [4]
|
||||||
|
Qt::ItemFlags TreeModel::flags(const QModelIndex &index) const
|
||||||
|
{
|
||||||
|
if (!index.isValid())
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
|
||||||
|
}
|
||||||
|
//! [4]
|
||||||
|
|
||||||
|
//! [5]
|
||||||
|
QVariant TreeModel::headerData(int section, Qt::Orientation orientation,
|
||||||
|
int role) const
|
||||||
|
{
|
||||||
|
if (orientation == Qt::Horizontal && role == Qt::DisplayRole)
|
||||||
|
return rootItem->data(section);
|
||||||
|
|
||||||
|
return QVariant();
|
||||||
|
}
|
||||||
|
//! [5]
|
||||||
|
|
||||||
|
//! [6]
|
||||||
|
QModelIndex TreeModel::index(int row, int column, const QModelIndex &parent)
|
||||||
|
const
|
||||||
|
{
|
||||||
|
if (!hasIndex(row, column, parent))
|
||||||
|
return QModelIndex();
|
||||||
|
|
||||||
|
TreeItem *parentItem;
|
||||||
|
|
||||||
|
if (!parent.isValid())
|
||||||
|
parentItem = rootItem;
|
||||||
|
else
|
||||||
|
parentItem = static_cast<TreeItem*>(parent.internalPointer());
|
||||||
|
|
||||||
|
TreeItem *childItem = parentItem->child(row);
|
||||||
|
if (childItem)
|
||||||
|
return createIndex(row, column, childItem);
|
||||||
|
else
|
||||||
|
return QModelIndex();
|
||||||
|
}
|
||||||
|
//! [6]
|
||||||
|
|
||||||
|
//! [7]
|
||||||
|
QModelIndex TreeModel::parent(const QModelIndex &index) const
|
||||||
|
{
|
||||||
|
if (!index.isValid())
|
||||||
|
return QModelIndex();
|
||||||
|
|
||||||
|
TreeItem *childItem = static_cast<TreeItem*>(index.internalPointer());
|
||||||
|
TreeItem *parentItem = childItem->parent();
|
||||||
|
|
||||||
|
if (parentItem == rootItem)
|
||||||
|
return QModelIndex();
|
||||||
|
|
||||||
|
return createIndex(parentItem->row(), 0, parentItem);
|
||||||
|
}
|
||||||
|
//! [7]
|
||||||
|
|
||||||
|
//! [8]
|
||||||
|
int TreeModel::rowCount(const QModelIndex &parent) const
|
||||||
|
{
|
||||||
|
TreeItem *parentItem;
|
||||||
|
if (parent.column() > 0)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
if (!parent.isValid())
|
||||||
|
parentItem = rootItem;
|
||||||
|
else
|
||||||
|
parentItem = static_cast<TreeItem*>(parent.internalPointer());
|
||||||
|
|
||||||
|
return parentItem->childCount();
|
||||||
|
}
|
||||||
|
//! [8]
|
||||||
|
|
||||||
|
void TreeModel::setupModelData(QSqlQuery &sqlquery, TreeItem *parent)
|
||||||
|
{
|
||||||
|
//64 bits para la primary key, es decir la misma precisión que soporta sqlit 2^64
|
||||||
|
//el diccionario permitirá encontrar cualquier nodo del árbol rápidamente, de forma que añadir un hijo a un padre sea O(1)
|
||||||
|
QMap<unsigned long long int, TreeItem *> items;
|
||||||
|
|
||||||
|
//se añade el nodo 0
|
||||||
|
items.insert(parent->id,parent);
|
||||||
|
|
||||||
|
while (sqlquery.next()) {
|
||||||
|
QList<QVariant> data;
|
||||||
|
data << sqlquery.value(2).toString();
|
||||||
|
TreeItem * item = new TreeItem(data);
|
||||||
|
item->id = sqlquery.value(0).toLongLong();
|
||||||
|
items.value(sqlquery.value(1).toLongLong())->appendChild(item);
|
||||||
|
//se añade el item al map, de forma que se pueda encontrar como padre en siguientes iteraciones
|
||||||
|
items.insert(item->id,item);
|
||||||
|
}
|
||||||
|
}
|
77
YACReaderLibrary/db/treemodel.h
Normal file
77
YACReaderLibrary/db/treemodel.h
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
**
|
||||||
|
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
||||||
|
** All rights reserved.
|
||||||
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
||||||
|
**
|
||||||
|
** This file is part of the examples of the Qt Toolkit.
|
||||||
|
**
|
||||||
|
** $QT_BEGIN_LICENSE:BSD$
|
||||||
|
** You may use this file under the terms of the BSD license as follows:
|
||||||
|
**
|
||||||
|
** "Redistribution and use in source and binary forms, with or without
|
||||||
|
** modification, are permitted provided that the following conditions are
|
||||||
|
** met:
|
||||||
|
** * Redistributions of source code must retain the above copyright
|
||||||
|
** notice, this list of conditions and the following disclaimer.
|
||||||
|
** * Redistributions in binary form must reproduce the above copyright
|
||||||
|
** notice, this list of conditions and the following disclaimer in
|
||||||
|
** the documentation and/or other materials provided with the
|
||||||
|
** distribution.
|
||||||
|
** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
|
||||||
|
** the names of its contributors may be used to endorse or promote
|
||||||
|
** products derived from this software without specific prior written
|
||||||
|
** permission.
|
||||||
|
**
|
||||||
|
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
|
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
|
||||||
|
** $QT_END_LICENSE$
|
||||||
|
**
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#ifndef TREEMODEL_H
|
||||||
|
#define TREEMODEL_H
|
||||||
|
|
||||||
|
#include <QAbstractItemModel>
|
||||||
|
#include <QModelIndex>
|
||||||
|
#include <QVariant>
|
||||||
|
#include <QSqlQuery>
|
||||||
|
|
||||||
|
class TreeItem;
|
||||||
|
|
||||||
|
//! [0]
|
||||||
|
class TreeModel : public QAbstractItemModel
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
TreeModel( QSqlQuery &sqlquery, QObject *parent = 0);
|
||||||
|
~TreeModel();
|
||||||
|
|
||||||
|
QVariant data(const QModelIndex &index, int role) const;
|
||||||
|
Qt::ItemFlags flags(const QModelIndex &index) const;
|
||||||
|
QVariant headerData(int section, Qt::Orientation orientation,
|
||||||
|
int role = Qt::DisplayRole) const;
|
||||||
|
QModelIndex index(int row, int column,
|
||||||
|
const QModelIndex &parent = QModelIndex()) const;
|
||||||
|
QModelIndex parent(const QModelIndex &index) const;
|
||||||
|
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
||||||
|
int columnCount(const QModelIndex &parent = QModelIndex()) const;
|
||||||
|
|
||||||
|
private:
|
||||||
|
void setupModelData( QSqlQuery &sqlquery, TreeItem *parent);
|
||||||
|
|
||||||
|
TreeItem *rootItem; //el árbol
|
||||||
|
};
|
||||||
|
//! [0]
|
||||||
|
|
||||||
|
#endif
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
#include <QMutex>
|
#include <QMutex>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
|
#include <QSqlQuery>
|
||||||
//QMutex mutex;
|
//QMutex mutex;
|
||||||
|
|
||||||
|
|
||||||
@ -12,6 +12,39 @@
|
|||||||
QWaitCondition waitCondition;
|
QWaitCondition waitCondition;
|
||||||
QMutex mutex;
|
QMutex mutex;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
class Folder
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
bool knownParent;
|
||||||
|
bool knownId;
|
||||||
|
unsigned long long int id;
|
||||||
|
unsigned long long int parentId;
|
||||||
|
QString name;
|
||||||
|
QString path;
|
||||||
|
|
||||||
|
Folder():knownParent(false), knownId(false){};
|
||||||
|
Folder(unsigned long long int sid, unsigned long long int pid,QString fn, QString fp):id(sid), parentId(pid),name(fn),path(fp),knownParent(true), knownId(true){};
|
||||||
|
Folder(QString fn, QString fp):name(fn),path(fp),knownParent(false), knownId(false){};
|
||||||
|
void setId(unsigned long long int sid){id = sid;knownId = true;};
|
||||||
|
void setFather(unsigned long long int pid){parentId = pid;knownParent = true;};
|
||||||
|
};
|
||||||
|
|
||||||
|
class Comic
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
unsigned long long int comicInfoId;
|
||||||
|
unsigned long long int parentId;
|
||||||
|
QString name;
|
||||||
|
QString path;
|
||||||
|
QString hash;
|
||||||
|
|
||||||
|
Comic(){};
|
||||||
|
Comic(unsigned long long int cparentId, unsigned long long int ccomicInfoId, QString cname, QString cpath, QString chash)
|
||||||
|
:parentId(cparentId),comicInfoId(ccomicInfoId),name(cname),path(cpath),hash(chash){};
|
||||||
|
//Comic(QString fn, QString fp):name(fn),path(fp),knownParent(false), knownId(false){};
|
||||||
|
};
|
||||||
|
|
||||||
LibraryCreator::LibraryCreator()
|
LibraryCreator::LibraryCreator()
|
||||||
{
|
{
|
||||||
_nameFilter << "*.cbr" << "*.cbz" << "*.rar" << "*.zip" << "*.tar";
|
_nameFilter << "*.cbr" << "*.cbz" << "*.rar" << "*.zip" << "*.tar";
|
||||||
@ -21,7 +54,7 @@ void LibraryCreator::createLibrary(const QString &source, const QString &target)
|
|||||||
{
|
{
|
||||||
_source = source;
|
_source = source;
|
||||||
_target = target;
|
_target = target;
|
||||||
if(!QDir(target).exists())
|
if(!QDir(target+"/library.ydb").exists())
|
||||||
_mode = CREATOR;
|
_mode = CREATOR;
|
||||||
else
|
else
|
||||||
_mode = UPDATER;
|
_mode = UPDATER;
|
||||||
@ -34,13 +67,58 @@ void LibraryCreator::updateLibrary(const QString &source, const QString &target)
|
|||||||
_mode = UPDATER;
|
_mode = UPDATER;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool LibraryCreator::createTables()
|
||||||
|
{
|
||||||
|
bool success = true;
|
||||||
|
|
||||||
|
//FOLDER (representa una carpeta en disco)
|
||||||
|
QSqlQuery queryFolder(_database);
|
||||||
|
queryFolder.prepare("CREATE TABLE folder (id INTEGER PRIMARY KEY, parentId INTEGER NOT NULL, name TEXT NOT NULL, path TEXT NOT NULL, FOREIGN KEY(parentId) REFERENCES folder(id))");
|
||||||
|
success = success && queryFolder.exec();
|
||||||
|
|
||||||
|
//COMIC INFO (representa la información de un cómic, cada cómic tendrá un idéntificador único formado por un hash sha1'de los primeros 512kb' + su tamaño en bytes)
|
||||||
|
QSqlQuery queryComicInfo(_database);
|
||||||
|
queryComicInfo.prepare("CREATE TABLE comic_info (id INTEGER PRIMARY KEY, hash TEXT NOT NULL, name TEXT)");
|
||||||
|
success = success && queryComicInfo.exec();
|
||||||
|
|
||||||
|
//COMIC (representa un cómic en disco, contiene el nombre de fichero)
|
||||||
|
QSqlQuery queryComic(_database);
|
||||||
|
queryComic.prepare("CREATE TABLE comic (id INTEGER PRIMARY KEY, parentId INTEGER NOT NULL, comicInfoId INTEGER NOT NULL, fileName TEXT NOT NULL, path TEXT, FOREIGN KEY(parentId) REFERENCES folder(id), FOREIGN KEY(comicInfoId) REFERENCES comic_info(id))");
|
||||||
|
success = success && queryComic.exec();
|
||||||
|
|
||||||
|
return success;
|
||||||
|
}
|
||||||
|
//
|
||||||
void LibraryCreator::run()
|
void LibraryCreator::run()
|
||||||
{
|
{
|
||||||
stopRunning = false;
|
stopRunning = false;
|
||||||
|
|
||||||
if(_mode == CREATOR)
|
if(_mode == CREATOR)
|
||||||
|
{
|
||||||
|
QDir dir;
|
||||||
|
dir.mkpath(_target+"/covers");
|
||||||
|
_database = QSqlDatabase::addDatabase("QSQLITE");
|
||||||
|
_database.setDatabaseName(_target+"/library.ydb");
|
||||||
|
if(!_database.open())
|
||||||
|
return; //TODO avisar del problema
|
||||||
|
_currentPathFolders.clear();
|
||||||
|
_currentPathFolders.append(Folder(0,0,"root","/"));
|
||||||
|
if(!createTables())
|
||||||
|
return;
|
||||||
create(QDir(_source));
|
create(QDir(_source));
|
||||||
|
_database.commit();
|
||||||
|
_database.close();
|
||||||
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
_currentPathFolders.clear();
|
||||||
|
_currentPathFolders.append(Folder(0,0,"root","/"));
|
||||||
|
_database = QSqlDatabase::addDatabase("QSQLITE");
|
||||||
|
_database.setDatabaseName(_target+"/library.ydb");
|
||||||
|
if(!_database.open())
|
||||||
|
return; //TODO avisar del problema
|
||||||
update(QDir(_source),QDir(_target));
|
update(QDir(_source),QDir(_target));
|
||||||
|
}
|
||||||
emit(finished());
|
emit(finished());
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -49,6 +127,60 @@ void LibraryCreator::stop()
|
|||||||
stopRunning = true;
|
stopRunning = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//retorna el id del ultimo de los folders
|
||||||
|
unsigned long long int LibraryCreator::insertFolders()
|
||||||
|
{
|
||||||
|
QList<Folder>::iterator i;
|
||||||
|
int currentId = 0;
|
||||||
|
for (i = _currentPathFolders.begin(); i != _currentPathFolders.end(); ++i)
|
||||||
|
{
|
||||||
|
if(!(i->knownId))
|
||||||
|
{
|
||||||
|
i->setFather(currentId);
|
||||||
|
currentId = insertFolder(currentId,*i);
|
||||||
|
i->setId(currentId);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
currentId = i->id;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
unsigned long long int LibraryCreator::insertFolder(unsigned long long int parentId,const Folder & folder)
|
||||||
|
{
|
||||||
|
QSqlQuery query(_database);
|
||||||
|
query.prepare("INSERT INTO folder (parentId, name, path) "
|
||||||
|
"VALUES (:parentId, :name, :path)");
|
||||||
|
query.bindValue(":parentId", parentId);
|
||||||
|
query.bindValue(":name", folder.name);
|
||||||
|
query.bindValue(":path", folder.path);
|
||||||
|
query.exec();
|
||||||
|
return query.lastInsertId().toLongLong();
|
||||||
|
}
|
||||||
|
|
||||||
|
unsigned long long int LibraryCreator::insertComic(const Comic & comic)
|
||||||
|
{
|
||||||
|
//TODO comprobar si ya hay comic info con ese hash
|
||||||
|
QSqlQuery comicInfoInsert(_database);
|
||||||
|
comicInfoInsert.prepare("INSERT INTO comic_info (hash) "
|
||||||
|
"VALUES (:hash)");
|
||||||
|
comicInfoInsert.bindValue(":hash", comic.hash);
|
||||||
|
comicInfoInsert.exec();
|
||||||
|
unsigned long long int comicInfoId =comicInfoInsert.lastInsertId().toLongLong();
|
||||||
|
|
||||||
|
QSqlQuery query(_database);
|
||||||
|
query.prepare("INSERT INTO comic (parentId, comicInfoId, fileName, path) "
|
||||||
|
"VALUES (:parentId,:comicInfoId,:name, :path)");
|
||||||
|
query.bindValue(":parentId", comic.parentId);
|
||||||
|
query.bindValue(":comicInfoId", comicInfoId);
|
||||||
|
query.bindValue(":name", comic.name);
|
||||||
|
query.bindValue(":path", comic.path);
|
||||||
|
query.exec();
|
||||||
|
return query.lastInsertId().toLongLong();
|
||||||
|
}
|
||||||
|
|
||||||
void LibraryCreator::create(QDir dir)
|
void LibraryCreator::create(QDir dir)
|
||||||
{
|
{
|
||||||
dir.setNameFilters(_nameFilter);
|
dir.setNameFilters(_nameFilter);
|
||||||
@ -59,17 +191,37 @@ void LibraryCreator::create(QDir dir)
|
|||||||
if(stopRunning)
|
if(stopRunning)
|
||||||
return;
|
return;
|
||||||
QFileInfo fileInfo = list.at(i);
|
QFileInfo fileInfo = list.at(i);
|
||||||
|
QString fileName = fileInfo.fileName();
|
||||||
|
QString relativePath = QDir::cleanPath(fileInfo.absoluteFilePath()).remove(_source);
|
||||||
if(fileInfo.isDir())
|
if(fileInfo.isDir())
|
||||||
{
|
{
|
||||||
|
//se añade al path actual el folder, aún no se sabe si habrá que añadirlo a la base de datos
|
||||||
|
_currentPathFolders.append(Folder(fileInfo.fileName(),relativePath));
|
||||||
create(QDir(fileInfo.absoluteFilePath()));
|
create(QDir(fileInfo.absoluteFilePath()));
|
||||||
|
//una vez importada la información del folder, se retira del path actual ya que no volverá a ser visitado
|
||||||
|
_currentPathFolders.pop_back();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
dir.mkpath(_target+(QDir::cleanPath(fileInfo.absolutePath()).remove(_source)));
|
//dir.mkpath(_target+(QDir::cleanPath(fileInfo.absolutePath()).remove(_source)));
|
||||||
emit(coverExtracted(QDir::cleanPath(fileInfo.absoluteFilePath()).remove(_source)));
|
|
||||||
|
|
||||||
ThumbnailCreator tc(QDir::cleanPath(fileInfo.absoluteFilePath()),_target+(QDir::cleanPath(fileInfo.absoluteFilePath()).remove(_source))+".jpg");
|
//en este punto sabemos que todos los folders que hay en _currentPath, deberían estar añadidos a la base de datos
|
||||||
|
insertFolders();
|
||||||
|
emit(coverExtracted(relativePath));
|
||||||
|
|
||||||
|
//Se calcula el hash del cómic
|
||||||
|
|
||||||
|
QCryptographicHash crypto(QCryptographicHash::Sha1);
|
||||||
|
QFile file(fileInfo.absoluteFilePath());
|
||||||
|
file.open(QFile::ReadOnly);
|
||||||
|
crypto.addData(file.read(524288));
|
||||||
|
//hash Sha1 del primer 0.5MB + filesize
|
||||||
|
QString hash = QString(crypto.result().toHex().constData()) + QString::number(fileInfo.size());
|
||||||
|
insertComic(Comic(_currentPathFolders.last().id,0,fileName,relativePath,hash));
|
||||||
|
ThumbnailCreator tc(QDir::cleanPath(fileInfo.absoluteFilePath()),_target+"/covers/"+hash+".jpg");
|
||||||
|
//ThumbnailCreator tc(QDir::cleanPath(fileInfo.absoluteFilePath()),_target+"/covers/"+fileInfo.fileName()+".jpg");
|
||||||
tc.create();
|
tc.create();
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -12,6 +12,10 @@
|
|||||||
#include <QtGui>
|
#include <QtGui>
|
||||||
#include <QMutex>
|
#include <QMutex>
|
||||||
#include <QThread>
|
#include <QThread>
|
||||||
|
#include <QSqlDatabase>
|
||||||
|
|
||||||
|
class Folder;
|
||||||
|
class Comic;
|
||||||
|
|
||||||
class LibraryCreator : public QThread
|
class LibraryCreator : public QThread
|
||||||
{
|
{
|
||||||
@ -23,14 +27,21 @@
|
|||||||
void stop();
|
void stop();
|
||||||
private:
|
private:
|
||||||
enum Mode {CREATOR,UPDATER};
|
enum Mode {CREATOR,UPDATER};
|
||||||
|
//atributos "globales" durante el proceso de creación y actualización
|
||||||
enum Mode _mode;
|
enum Mode _mode;
|
||||||
QString _source;
|
QString _source;
|
||||||
QString _target;
|
QString _target;
|
||||||
QStringList _nameFilter;
|
QStringList _nameFilter;
|
||||||
|
QSqlDatabase _database;
|
||||||
|
QList<Folder> _currentPathFolders; //lista de folders en el orden en el que están siendo explorados, el último es el folder actual
|
||||||
//recursive method
|
//recursive method
|
||||||
void create(QDir currentDirectory);
|
void create(QDir currentDirectory);
|
||||||
void update(QDir currentDirectory,QDir libraryCurrentDirectory);
|
void update(QDir currentDirectory,QDir libraryCurrentDirectory);
|
||||||
void run();
|
void run();
|
||||||
|
bool createTables();
|
||||||
|
unsigned long long int insertFolders();
|
||||||
|
unsigned long long int insertFolder(unsigned long long int parentId,const Folder & folder);
|
||||||
|
unsigned long long int insertComic(const Comic & comic);
|
||||||
bool stopRunning;
|
bool stopRunning;
|
||||||
signals:
|
signals:
|
||||||
void finished();
|
void finished();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user