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
|
/* This file is part of KDevelop
Copyright 2004 Roberto Raggi <roberto@kdevelop.org>
Copyright 2007 Andreas Pakulat <apaku@gmx.de>
Copyright 2007 Dukju Ahn <dukjuahn@gmail.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
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 "makebuilder.h"
#include "makeoutputmodel.h"
#include <config.h>
#include <QtCore/QStringList>
#include <project/projectmodel.h>
#include <project/interfaces/ibuildsystemmanager.h>
#include <util/commandexecutor.h>
#include <interfaces/iproject.h>
#include <interfaces/icore.h>
#include <interfaces/iplugincontroller.h>
#include <outputview/ioutputview.h>
#include <QtDesigner/QExtensionFactory>
#include <QtCore/QProcess>
#include <QtGui/QAction>
#include <QtGui/QKeySequence>
#include <kpluginfactory.h>
#include <kaboutdata.h>
#include <kpluginloader.h>
#include <kglobal.h>
#include <klocale.h>
#include <kdebug.h>
#include <kactioncollection.h>
#include <ksharedconfig.h>
#include <util/environmentgrouplist.h>
#include "makeoutputdelegate.h"
#include "makejob.h"
#include <interfaces/iruncontroller.h>
K_PLUGIN_FACTORY(MakeBuilderFactory, registerPlugin<MakeBuilder>(); )
K_EXPORT_PLUGIN(MakeBuilderFactory(KAboutData("kdevmakebuilder","kdevmakebuilder", ki18n("Make Builder"), "0.1", ki18n("Support for building Make projects"), KAboutData::License_GPL)))
MakeBuilder::MakeBuilder(QObject *parent, const QVariantList &)
: KDevelop::IPlugin(MakeBuilderFactory::componentData(), parent)
, m_delegate(new MakeOutputDelegate(this))
{
KDEV_USE_EXTENSION_INTERFACE( KDevelop::IProjectBuilder )
KDEV_USE_EXTENSION_INTERFACE( IMakeBuilder )
}
MakeBuilder::~MakeBuilder()
{
}
KJob* MakeBuilder::build( KDevelop::ProjectBaseItem *dom )
{
return runMake( dom, MakeJob::BuildCommand );
}
KJob* MakeBuilder::clean( KDevelop::ProjectBaseItem *dom )
{
return runMake( dom, MakeJob::CleanCommand, "clean" );
}
KJob* MakeBuilder::install( KDevelop::ProjectBaseItem *dom )
{
return runMake( dom, MakeJob::InstallCommand, "install" );
}
void MakeBuilder::jobFinished(KJob* job)
{
MakeJob* mj = dynamic_cast<MakeJob*>(job);
if( !mj )
return;
if (mj->error())
{
emit failed( mj->item() );
} else
{
switch( mj->commandType() )
{
case MakeJob::BuildCommand:
emit built( mj->item() );
break;
case MakeJob::InstallCommand:
emit installed( mj->item() );
break;
case MakeJob::CleanCommand:
emit cleaned( mj->item() );
break;
case MakeJob::CustomTargetCommand:
emit makeTargetBuilt( mj->item(), mj->customTarget() );
break;
}
}
}
KJob* MakeBuilder::executeMakeTarget(KDevelop::ProjectBaseItem* item,
const QString& targetname )
{
return runMake( item, MakeJob::CustomTargetCommand, targetname );
}
KJob* MakeBuilder::runMake( KDevelop::ProjectBaseItem* item, MakeJob::CommandType c, const QString& overrideTarget )
{
///Running the same builder twice may result in serious problems, so kill jobs already running on the same project
foreach(KJob* job, KDevelop::ICore::self()->runController()->currentJobs())
{
MakeJob* makeJob = dynamic_cast<MakeJob*>(job);
if( makeJob && item && makeJob->item() && makeJob->item()->project() == item->project() ) {
kDebug() << "killing running make job, due to new started build on same project";
job->kill(KJob::EmitResult);
}
}
MakeJob* job = new MakeJob(this, item, c, overrideTarget);
job->setItem(item);
connect(job, SIGNAL(finished(KJob*)), this, SLOT(jobFinished(KJob*)));
return job;
}
MakeOutputDelegate * MakeBuilder::delegate() const
{
return m_delegate;
}
#include "makebuilder.moc"
|