1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
/* KDevelop CMake Support
*
* Copyright 2006 Matt Rogers <mattr@kde.org>
* Copyright 2007 Aleix Pol <aleixpol@gmail.com>
*
* 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
* of the License, or (at your option) any later version.
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
#include "cmakemodelitems.h"
#include <QString>
#include <QThread>
#include <kdebug.h>
#include <language/duchain/duchain.h>
#include <language/duchain/parsingenvironment.h>
#include <project/interfaces/ibuildsystemmanager.h>
CMakeFolderItem::CMakeFolderItem( KDevelop::IProject *project, const KUrl &folder, const QString& build,
CMakeFolderItem* item)
: KDevelop::ProjectBuildFolderItem( project, folder, item ), m_formerParent(item), m_buildDir(build)
{
Q_ASSERT(folder.path().endsWith("/"));
}
QStringList CMakeFolderItem::includeDirectories() const
{
QStringList urls(m_includeList);
CMakeFolderItem *folder = formerParent();
if(folder)
{
urls += folder->includeDirectories();
}
return urls;
}
CMakeDefinitions DefinesAttached::definitions(CMakeFolderItem* parentFolder) const
{
CMakeDefinitions result = m_defines;
// This goes up recursively through the hierarchy of cmake-parent-dirs
// and fetches their definitions too. This makes sure that defines set in a parent CMakeLists.txt
// are also applied in this subdirectory.
//
// This is not 100% correct, since the current CMakeLists.txt might have removed one of the parent
// defines again, but at this point we cannot take care of that anymore, this would need to be
// fixed in the parser. In addition this does not take into account wether a define in a parent
// was added before or after the add_subdirectory for this cmakelists.txt. And last but not least
// CMake actually adds all defines as-is, even if two add_definitions are adding the same define
// with the same or different values. Our code will only take the 'last' value.
if( parentFolder ) {
QHash<QString,QString> parentDefs = parentFolder->definitions(parentFolder->formerParent());
for( QHash<QString,QString>::const_iterator it = parentDefs.constBegin(); it != parentDefs.constEnd(); it++ ) {
if( !result.contains( it.key() ) ) {
result[it.key()] = it.value();
}
}
}
return result;
}
void DefinesAttached::defineVariables(const QStringList& vars)
{
foreach(const QString& v, vars)
m_defines.insert(v, QString());
}
KUrl CMakeExecutableTargetItem::builtUrl() const
{
KUrl ret;
if(path.isEmpty())
ret=project()->buildSystemManager()->buildDirectory(const_cast<CMakeExecutableTargetItem*>(this));
else
ret=path;
ret.addPath(outputName);
return ret;
}
bool isTargetType(Target::Type type, KDevelop::ProjectTargetItem* t)
{
return
(type == Target::Library && t->type()==KDevelop::ProjectBaseItem::LibraryTarget) ||
(type == Target::Executable && t->type()==KDevelop::ProjectBaseItem::ExecutableTarget) ||
(type == Target::Custom && t->type()==KDevelop::ProjectBaseItem::Target);
}
KDevelop::ProjectTargetItem* CMakeFolderItem::targetNamed(Target::Type type, const QString& targetName) const
{
QList< KDevelop::ProjectTargetItem* > targets = targetList();
foreach(KDevelop::ProjectTargetItem* t, targets) {
if(isTargetType(type, t) && t->text()==targetName) {
Q_ASSERT(dynamic_cast<KDevelop::ProjectTargetItem*>(t));
return t;
}
}
return 0;
}
KDevelop::ProjectFolderItem* CMakeFolderItem::folderNamed(const QString& name) const
{
QList<KDevelop::ProjectFolderItem*> folders = folderList();
foreach(KDevelop::ProjectFolderItem* folder, folders) {
if(folder->text()==name)
return folder;
}
return 0;
}
template <class T>
bool textInList(const QList<T>& list, KDevelop::ProjectBaseItem* item)
{
foreach(const T& s, list) {
if(item->text()==s.name)
return true;
}
return false;
}
QList<KDevelop::ProjectBaseItem*> CMakeFolderItem::cleanupBuildFolders(const QList< Subdirectory >& subs)
{
QList<ProjectBaseItem*> ret;
QList<KDevelop::ProjectFolderItem*> folders = folderList();
foreach(KDevelop::ProjectFolderItem* folder, folders) {
CMakeFolderItem* cmfolder = dynamic_cast<CMakeFolderItem*>(folder);
if(cmfolder && cmfolder->formerParent()==this && !textInList<Subdirectory>(subs, folder))
ret += folder;
}
return ret;
}
QList<KDevelop::ProjectBaseItem*> CMakeFolderItem::cleanupTargets(const QList<CMakeTarget>& targets)
{
QList<ProjectBaseItem*> ret;
QList<KDevelop::ProjectTargetItem*> targetl = targetList();
foreach(KDevelop::ProjectTargetItem* target, targetl) {
if(!textInList<CMakeTarget>(targets, target))
ret += target;
}
return ret;
}
CMakeExecutableTargetItem::CMakeExecutableTargetItem(KDevelop::IProject* project, const QString& name, CMakeFolderItem* parent, KDevelop::IndexedDeclaration c, const QString& _outputName, const KUrl& basepath)
: KDevelop::ProjectExecutableTargetItem( project, name, parent)
, DUChainAttatched(c)
, outputName(_outputName)
, path(basepath)
{}
CMakeLibraryTargetItem::CMakeLibraryTargetItem(KDevelop::IProject* project, const QString& name, CMakeFolderItem* parent, KDevelop::IndexedDeclaration c, const QString& _outputName, const KUrl&)
: KDevelop::ProjectLibraryTargetItem( project, name, parent), DUChainAttatched(c), outputName(_outputName)
{}
CMakeFolderItem::~CMakeFolderItem() {
}
DescriptorAttatched::~DescriptorAttatched() {
}
DUChainAttatched::~DUChainAttatched() {
}
DefinesAttached::~DefinesAttached() {
}
KUrl CMakeExecutableTargetItem::installedUrl() const {
return KUrl();
}
|