2017-09-19 17:56:54 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2017 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <createtablesqlstatementbuilder.h>
|
|
|
|
|
|
|
|
|
|
#include <sqlitetransaction.h>
|
|
|
|
|
#include <sqlitetable.h>
|
|
|
|
|
|
|
|
|
|
namespace ClangBackEnd {
|
|
|
|
|
|
|
|
|
|
template<typename DatabaseType>
|
|
|
|
|
class RefactoringDatabaseInitializer
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
RefactoringDatabaseInitializer(DatabaseType &database)
|
|
|
|
|
: database(database)
|
|
|
|
|
{
|
2018-01-22 14:21:01 +01:00
|
|
|
Sqlite::ImmediateTransaction transaction{database};
|
2017-09-19 17:56:54 +02:00
|
|
|
|
|
|
|
|
createSymbolsTable();
|
|
|
|
|
createLocationsTable();
|
|
|
|
|
createSourcesTable();
|
2017-09-21 11:43:59 +02:00
|
|
|
createDirectoriesTable();
|
2017-12-27 16:52:04 +01:00
|
|
|
createProjectPartsTable();
|
2018-01-22 14:21:01 +01:00
|
|
|
createprojectPartsSourcesTable();
|
2017-09-19 17:56:54 +02:00
|
|
|
|
|
|
|
|
transaction.commit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void createSymbolsTable()
|
|
|
|
|
{
|
|
|
|
|
Sqlite::Table table;
|
|
|
|
|
table.setUseIfNotExists(true);
|
|
|
|
|
table.setName("symbols");
|
|
|
|
|
table.addColumn("symbolId", Sqlite::ColumnType::Integer, Sqlite::Contraint::PrimaryKey);
|
|
|
|
|
const Sqlite::Column &usrColumn = table.addColumn("usr", Sqlite::ColumnType::Text);
|
|
|
|
|
table.addColumn("symbolName", Sqlite::ColumnType::Text);
|
|
|
|
|
table.addIndex({usrColumn});
|
|
|
|
|
|
|
|
|
|
table.initialize(database);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void createLocationsTable()
|
|
|
|
|
{
|
|
|
|
|
Sqlite::Table table;
|
|
|
|
|
table.setUseIfNotExists(true);
|
|
|
|
|
table.setName("locations");
|
|
|
|
|
table.addColumn("symbolId", Sqlite::ColumnType::Integer);
|
2017-09-21 11:43:59 +02:00
|
|
|
const Sqlite::Column &lineColumn = table.addColumn("line", Sqlite::ColumnType::Integer);
|
|
|
|
|
const Sqlite::Column &columnColumn = table.addColumn("column", Sqlite::ColumnType::Integer);
|
2017-09-19 17:56:54 +02:00
|
|
|
const Sqlite::Column &sourceIdColumn = table.addColumn("sourceId", Sqlite::ColumnType::Integer);
|
2017-09-21 11:43:59 +02:00
|
|
|
table.addIndex({sourceIdColumn, lineColumn, columnColumn});
|
2017-09-19 17:56:54 +02:00
|
|
|
|
|
|
|
|
table.initialize(database);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void createSourcesTable()
|
|
|
|
|
{
|
|
|
|
|
Sqlite::Table table;
|
|
|
|
|
table.setUseIfNotExists(true);
|
|
|
|
|
table.setName("sources");
|
|
|
|
|
table.addColumn("sourceId", Sqlite::ColumnType::Integer, Sqlite::Contraint::PrimaryKey);
|
2018-01-22 14:21:01 +01:00
|
|
|
const Sqlite::Column &directoryIdColumn = table.addColumn("directoryId", Sqlite::ColumnType::Integer);
|
2017-09-21 11:43:59 +02:00
|
|
|
const Sqlite::Column &sourceNameColumn = table.addColumn("sourceName", Sqlite::ColumnType::Text);
|
|
|
|
|
table.addColumn("sourceType", Sqlite::ColumnType::Integer);
|
2018-01-22 14:21:01 +01:00
|
|
|
table.addIndex({directoryIdColumn, sourceNameColumn});
|
2017-09-21 11:43:59 +02:00
|
|
|
|
|
|
|
|
table.initialize(database);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void createDirectoriesTable()
|
|
|
|
|
{
|
|
|
|
|
Sqlite::Table table;
|
|
|
|
|
table.setUseIfNotExists(true);
|
|
|
|
|
table.setName("directories");
|
|
|
|
|
table.addColumn("directoryId", Sqlite::ColumnType::Integer, Sqlite::Contraint::PrimaryKey);
|
|
|
|
|
const Sqlite::Column &directoryPathColumn = table.addColumn("directoryPath", Sqlite::ColumnType::Text);
|
|
|
|
|
table.addIndex({directoryPathColumn});
|
2017-09-19 17:56:54 +02:00
|
|
|
|
|
|
|
|
table.initialize(database);
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-27 16:52:04 +01:00
|
|
|
void createProjectPartsTable()
|
|
|
|
|
{
|
|
|
|
|
Sqlite::Table table;
|
|
|
|
|
table.setUseIfNotExists(true);
|
|
|
|
|
table.setName("projectParts");
|
|
|
|
|
table.addColumn("projectPartId", Sqlite::ColumnType::Integer, Sqlite::Contraint::PrimaryKey);
|
|
|
|
|
const Sqlite::Column &projectPartNameColumn = table.addColumn("projectPartName", Sqlite::ColumnType::Text);
|
|
|
|
|
table.addColumn("compilerArguments", Sqlite::ColumnType::Text);
|
|
|
|
|
table.addIndex({projectPartNameColumn});
|
|
|
|
|
|
|
|
|
|
table.initialize(database);
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-22 14:21:01 +01:00
|
|
|
void createprojectPartsSourcesTable()
|
|
|
|
|
{
|
|
|
|
|
Sqlite::Table table;
|
|
|
|
|
table.setUseIfNotExists(true);
|
|
|
|
|
table.setName("projectPartsSources");
|
|
|
|
|
const Sqlite::Column &projectPartIdColumn = table.addColumn("projectPartId", Sqlite::ColumnType::Integer);
|
|
|
|
|
const Sqlite::Column &sourceIdColumn = table.addColumn("sourceId", Sqlite::ColumnType::Integer);
|
|
|
|
|
table.addIndex({sourceIdColumn, projectPartIdColumn});
|
|
|
|
|
table.addIndex({projectPartIdColumn});
|
|
|
|
|
|
|
|
|
|
table.initialize(database);
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-19 17:56:54 +02:00
|
|
|
public:
|
|
|
|
|
DatabaseType &database;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace ClangBackEnd
|