forked from qt-creator/qt-creator
If the include search paths and the compiler macros have not changed it is save to assume that we don't need to update the symbol database. This saves us from executing a very expensive task. Later we have to test the modification time of the files too. Change-Id: I6b958075024a811c2abd3d7918263fd74bba090b Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
180 lines
6.7 KiB
C++
180 lines
6.7 KiB
C++
/****************************************************************************
|
|
**
|
|
** 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)
|
|
{
|
|
Sqlite::ImmediateTransaction transaction{database};
|
|
|
|
createSymbolsTable();
|
|
createLocationsTable();
|
|
createSourcesTable();
|
|
createDirectoriesTable();
|
|
createProjectPartsTable();
|
|
createProjectPartsSourcesTable();
|
|
createUsedMacrosTable();
|
|
createFileStatusesTable();
|
|
createSourceDependenciesTable();
|
|
|
|
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);
|
|
const Sqlite::Column &lineColumn = table.addColumn("line", Sqlite::ColumnType::Integer);
|
|
const Sqlite::Column &columnColumn = table.addColumn("column", Sqlite::ColumnType::Integer);
|
|
const Sqlite::Column &sourceIdColumn = table.addColumn("sourceId", Sqlite::ColumnType::Integer);
|
|
table.addIndex({sourceIdColumn, lineColumn, columnColumn});
|
|
|
|
table.initialize(database);
|
|
}
|
|
|
|
void createSourcesTable()
|
|
{
|
|
Sqlite::Table table;
|
|
table.setUseIfNotExists(true);
|
|
table.setName("sources");
|
|
table.addColumn("sourceId", Sqlite::ColumnType::Integer, Sqlite::Contraint::PrimaryKey);
|
|
const Sqlite::Column &directoryIdColumn = table.addColumn("directoryId", Sqlite::ColumnType::Integer);
|
|
const Sqlite::Column &sourceNameColumn = table.addColumn("sourceName", Sqlite::ColumnType::Text);
|
|
table.addColumn("sourceType", Sqlite::ColumnType::Integer);
|
|
table.addIndex({directoryIdColumn, sourceNameColumn});
|
|
|
|
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});
|
|
|
|
table.initialize(database);
|
|
}
|
|
|
|
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.addColumn("compilerMacros", Sqlite::ColumnType::Text);
|
|
table.addColumn("includeSearchPaths", Sqlite::ColumnType::Text);
|
|
table.addIndex({projectPartNameColumn});
|
|
|
|
table.initialize(database);
|
|
}
|
|
|
|
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.addUniqueIndex({sourceIdColumn, projectPartIdColumn});
|
|
table.addIndex({projectPartIdColumn});
|
|
|
|
table.initialize(database);
|
|
}
|
|
|
|
void createUsedMacrosTable()
|
|
{
|
|
Sqlite::Table table;
|
|
table.setUseIfNotExists(true);
|
|
table.setName("usedMacros");
|
|
table.addColumn("usedMacroId", Sqlite::ColumnType::Integer, Sqlite::Contraint::PrimaryKey);
|
|
const Sqlite::Column &sourceIdColumn = table.addColumn("sourceId", Sqlite::ColumnType::Integer);
|
|
const Sqlite::Column ¯oNameColumn = table.addColumn("macroName", Sqlite::ColumnType::Text);
|
|
table.addIndex({sourceIdColumn, macroNameColumn});
|
|
table.addIndex({macroNameColumn});
|
|
|
|
table.initialize(database);
|
|
}
|
|
|
|
void createFileStatusesTable()
|
|
{
|
|
Sqlite::Table table;
|
|
table.setUseIfNotExists(true);
|
|
table.setName("fileStatuses");
|
|
table.addColumn("sourceId", Sqlite::ColumnType::Integer, Sqlite::Contraint::PrimaryKey);
|
|
table.addColumn("size", Sqlite::ColumnType::Integer);
|
|
table.addColumn("lastModified", Sqlite::ColumnType::Integer);
|
|
|
|
table.initialize(database);
|
|
}
|
|
|
|
void createSourceDependenciesTable()
|
|
{
|
|
Sqlite::Table table;
|
|
table.setUseIfNotExists(true);
|
|
table.setName("sourceDependencies");
|
|
const Sqlite::Column &sourceIdColumn = table.addColumn("sourceId", Sqlite::ColumnType::Integer);
|
|
const Sqlite::Column &dependencySourceIdColumn = table.addColumn("dependencySourceId", Sqlite::ColumnType::Integer);
|
|
table.addIndex({sourceIdColumn, dependencySourceIdColumn});
|
|
|
|
table.initialize(database);
|
|
}
|
|
public:
|
|
DatabaseType &database;
|
|
};
|
|
|
|
} // namespace ClangBackEnd
|