X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftarget.cpp;h=c43ad99ea8361cb71934f3fb57a5f4dce27e23ff;hb=632361796a7ddadf8a726526c937fab22281fb7b;hp=b094e941e6984707f47d47e75bea1f2455188b60;hpb=4d0d003b022943d8a0e39ba19078bab8d32d8857;p=builder.git diff --git a/source/target.cpp b/source/target.cpp index b094e94..c43ad99 100644 --- a/source/target.cpp +++ b/source/target.cpp @@ -1,39 +1,40 @@ -/* $Id$ - -This file is part of builder -Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#include -#include -#include "action.h" +#include +#include #include "builder.h" +#include "filetarget.h" #include "package.h" -#include "sourcepackage.h" #include "target.h" +#include "task.h" +#include "tool.h" using namespace std; using namespace Msp; -/** -Tries to locate a target that will help getting this target built. If all -dependencies are up-to-date, returns this target. If there are no targets -ready to be built (maybe because they are being built right now), returns 0. -*/ +Target::Target(Builder &b, const string &n): + builder(b), + package(0), + component(0), + name(n), + tool(0), + state(INIT), + deps_ready(false) +{ + builder.add_target(this); +} + Target *Target::get_buildable_target() { - if(!rebuild) + if(!needs_rebuild()) return 0; - bool self_ok=!building; - for(TargetList::iterator i=depends.begin(); i!=depends.end(); ++i) + bool self_ok = state!=BUILDING; + for(Dependencies::iterator i=depends.begin(); i!=depends.end(); ++i) { - Target *tgt=(*i)->get_buildable_target(); + Target *tgt = (*i)->get_buildable_target(); if(tgt) return tgt; - else if((*i)->get_rebuild()) - self_ok=false; + else if((*i)->needs_rebuild()) + self_ok = false; } if(self_ok) @@ -42,124 +43,64 @@ Target *Target::get_buildable_target() return 0; } +void Target::set_tool(const Tool &t) +{ + tool = &t; +} + void Target::add_depend(Target *dep) { if(dep==this) - throw InvalidParameterValue("A target can't depend on itself"); + throw invalid_argument("Target::add_depend"); depends.push_back(dep); - dep->rdepends.push_back(this); } -/** -Prepares the target by recursively preparing dependencies, then checking -whether rebuilding is needed. A flag is used to prevent unnecessary -executions. -*/ void Target::prepare() { - if(prepared) + if(state>PREPARING) return; + if(state==PREPARING) + { + builder.problem((package ? package->get_name() : string()), "Dependency cycle detected at "+name); + return; + } - prepared=true; - for(TargetList::iterator i=depends.begin(); i!=depends.end(); ++i) + state = PREPARING; + for(Dependencies::iterator i=depends.begin(); i!=depends.end(); ++i) (*i)->prepare(); check_rebuild(); - + if(state==PREPARING) + state = UPTODATE; } -/** -Returns the number of targets that need to be rebuilt in order to get this -target up-to-date. -*/ -unsigned Target::count_rebuild() +Task *Target::build() { - if(counted) + if(!tool) + { + state = UPTODATE; return 0; + } - counted=true; - unsigned count=rebuild; - for(TargetList::iterator i=depends.begin(); i!=depends.end(); ++i) - count+=(*i)->count_rebuild(); - return count; -} - -/** -Changes the mtime of the target to the current time. -*/ -void Target::touch() -{ - mtime=Time::now(); -} + // XXX Minor breach of OO here + if(FileTarget *ft = dynamic_cast(this)) + if(!builder.get_dry_run() && FS::exists(ft->get_path())) + FS::unlink(ft->get_path()); -Target::Target(Builder &b, const Package *p, const string &n): - builder(b), - package(p), - name(n), - buildable(false), - building(false), - rebuild(false), - deps_ready(false), - prepared(false), - counted(false) -{ - builder.add_target(this); + Task *task = tool->run(*this); + task->signal_finished.connect(sigc::mem_fun(this, &Target::build_finished)); + state = BUILDING; - struct stat st; - if(!stat(name, st)) - mtime=Time::TimeStamp::from_unixtime(st.st_mtime); + return task; } void Target::mark_rebuild(const std::string &reason) { - rebuild=true; - rebuild_reason=reason; -} - -/** -Checks if this target needs to be rebuilt and why. -*/ -void Target::check_rebuild() -{ - if(!buildable) - return; - - if(builder.get_build_all()) - mark_rebuild("Rebuilding everything"); - else if(!mtime) - mark_rebuild("Does not exist"); - else - { - for(TargetList::iterator i=depends.begin(); (i!=depends.end() && !rebuild); ++i) - { - if((*i)->get_mtime()>mtime) - mark_rebuild(basename((*i)->get_name())+" has changed"); - else if((*i)->get_rebuild()) - mark_rebuild(basename((*i)->get_name())+" needs rebuilding"); - } - } - - const SourcePackage *spkg=dynamic_cast(package); - if(!rebuild && spkg && spkg->get_config().get_mtime()>mtime) - mark_rebuild("Package options changed"); -} - -/** -Hooks the target up with the given action, then returns it. This should be -called from the public build() function of buildable targets. -*/ -Action *Target::build(Action *action) -{ - building=true; - action->signal_done.connect(sigc::mem_fun(this, &Target::build_done)); - return action; + state = REBUILD; + rebuild_reason = reason; } -/** -Handles for the build_done signal of Action. -*/ -void Target::build_done() +void Target::build_finished(bool /*success*/) { - building=false; - rebuild=false; + state = UPTODATE; }