kde-extraapps/kdevelop/languages/cpp/codegen/unresolvedincludeassistant.cpp

152 lines
5.6 KiB
C++

/*
Copyright 2009 David Nolden <david.nolden.kdevelop@art-master.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "unresolvedincludeassistant.h"
#include "customincludepaths.h"
#include <klocalizedstring.h>
#include <interfaces/icore.h>
#include <interfaces/iprojectcontroller.h>
#include <interfaces/iuicontroller.h>
#include <kparts/mainwindow.h>
#include <kmessagebox.h>
#include <kdialog.h>
#include <includepathresolver.h>
#include <language/backgroundparser/backgroundparser.h>
#include <interfaces/ilanguagecontroller.h>
using namespace Cpp;
Cpp::AddCustomIncludePathAction::AddCustomIncludePathAction(KDevelop::IndexedString url, QString directive) {
m_url = url;
m_directive = directive;
}
void Cpp::AddCustomIncludePathAction::execute() {
KDialog dialog(KDevelop::ICore::self()->uiController()->activeMainWindow());
dialog.setButtons(KDialog::Ok | KDialog::Cancel);
dialog.setInitialSize(QSize(600, 600));
CustomIncludePaths includePaths;
dialog.setMainWidget(&includePaths);
KUrl current = m_url.toUrl().upUrl();
includePaths.setStorageDirectoryUrl(current);
// o.sourceDirectory->setUrl(current);
// o.buildDirectory->setUrl(current);
//Find old settings
CppTools::CustomIncludePathsSettings oldSettings = CppTools::CustomIncludePathsSettings::findAndRead(current.toLocalFile());
///@todo Integrate with project manager, to only show useful options, and maybe merge them
if(oldSettings.isValid()) {
current = KUrl(oldSettings.storagePath);
includePaths.setStorageDirectoryUrl(current);
includePaths.setSourceDirectoryUrl(KUrl(oldSettings.sourceDir));
includePaths.setBuildDirectoryUrl(KUrl(oldSettings.buildDir));
includePaths.setCustomIncludePaths(oldSettings.paths);
}
if(dialog.exec() == QDialog::Accepted) {
kDebug() << "storing settings";
if(( !includePaths.storageDirectoryUrl().isValid() ||
(includePaths.customIncludePaths().isEmpty() &&
(!includePaths.sourceDirectoryUrl().isValid() || !includePaths.buildDirectoryUrl().isValid() ||
includePaths.sourceDirectoryUrl() == includePaths.buildDirectoryUrl() )))
&& oldSettings.isValid()) {
kDebug() << "deleting settings";
oldSettings.delete_();
}else{
if(oldSettings.isValid() && includePaths.storageDirectoryUrl().isParentOf(KUrl(oldSettings.storagePath)))
oldSettings.delete_(); //Delete old settings, when the settings are moved up in the hierarchy, so old settings won't shadow new ones
oldSettings.sourceDir = includePaths.sourceDirectoryUrl().toLocalFile();
oldSettings.buildDir = includePaths.buildDirectoryUrl().toLocalFile();
oldSettings.paths = includePaths.customIncludePaths();
kDebug() << "saving, paths" << oldSettings.paths;
kDebug() << "dirs" << oldSettings.sourceDir << oldSettings.buildDir;
oldSettings.storagePath = includePaths.storageDirectoryUrl().toLocalFile();
if(!oldSettings.write()) {
KMessageBox::error(KDevelop::ICore::self()->uiController()->activeMainWindow(), i18n("Failed to save custom include paths in directory: %1", oldSettings.storagePath));
} else {
emit executed(this);
}
}
}else{
kDebug() << "not accepted";
}
CppTools::IncludePathResolver::clearCache();
//Trigger an update, so the user sees the progress
KDevelop::ICore::self()->languageController()->backgroundParser()->addDocument(m_url);
}
QString Cpp::AddCustomIncludePathAction::description() const {
return i18n("Add Custom Include Path");
}
Cpp::OpenProjectForFileAssistant::OpenProjectForFileAssistant(KUrl url) : m_url(url) {
}
void Cpp::OpenProjectForFileAssistant::execute() {
KDevelop::ICore::self()->projectController()->openProjectForUrl(m_url);
emit executed(this);
}
QString Cpp::OpenProjectForFileAssistant::description() const {
return i18n("Open Project");
}
QString MissingIncludePathAssistant::title() const {
return i18n("Include file \"%1\" not found", m_directive);
}
Cpp::MissingIncludePathAssistant::MissingIncludePathAssistant(KDevelop::IndexedString url, QString directive) {
m_url = url;
m_directive = directive;
}
void MissingIncludePathAssistant::createActions()
{
auto project = KDevelop::ICore::self()->projectController()->findProjectForUrl(m_url.toUrl());
if (!project) {
addAction(KDevelop::IAssistantAction::Ptr(new OpenProjectForFileAssistant(m_url.toUrl())));
addAction(KDevelop::IAssistantAction::Ptr(new AddCustomIncludePathAction(m_url, m_directive)));
} else {
addAction(KDevelop::IAssistantAction::Ptr(new OpenProjectConfigurationAction(project)));
}
}
OpenProjectConfigurationAction::OpenProjectConfigurationAction(KDevelop::IProject* project)
: m_project(project)
{}
QString OpenProjectConfigurationAction::description() const
{
return i18n("Add Custom Include Path");
}
void OpenProjectConfigurationAction::execute()
{
KDevelop::ICore::self()->projectController()->configureProject(m_project);
emit executed(this);
}