X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftarget.cpp;h=cb44b1322d19cad25e8c392077d3e6ea79925485;hb=HEAD;hp=04d9260514a8de701e2dd1380313c3215a6b7151;hpb=b0eb979b0dc79269cb3bb5bb2e67ef4e80689cfe;p=builder.git diff --git a/source/target.cpp b/source/target.cpp deleted file mode 100644 index 04d9260..0000000 --- a/source/target.cpp +++ /dev/null @@ -1,117 +0,0 @@ -#include -#include -#include "action.h" -#include "builder.h" -#include "package.h" -#include "target.h" - -using namespace std; -using namespace Msp; - -Target *Target::get_buildable_target() -{ - bool self_ok=true; - for(list::iterator i=depends.begin(); i!=depends.end(); ++i) - { - Target *tgt=(*i)->get_buildable_target(); - if(tgt) - return tgt; - else if((*i)->get_rebuild()) - self_ok=false; - } - - if(self_ok && rebuild && !building) - return this; - - return 0; -} - -void Target::add_depend(Target *dep) -{ - depends.push_back(dep); - dep->rdepends.push_back(this); -} - -void Target::prepare() -{ - if(prepared) - return; - - for(list::iterator i=depends.begin(); i!=depends.end(); ++i) - (*i)->prepare(); - - check_rebuild(); -} - -unsigned Target::count_rebuild() -{ - if(counted) - return 0; - - counted=true; - unsigned count=rebuild; - for(list::iterator i=depends.begin(); i!=depends.end(); ++i) - count+=(*i)->count_rebuild(); - return count; -} - -void Target::touch() -{ - mtime=Time::now(); -} - -Target::Target(Builder &b, const Package *p, const string &n): - builder(b), - package(p), - name(n), - building(false), - rebuild(false), - deps_ready(false), - prepared(false), - buildable(false), - counted(false) -{ - struct stat st; - if(!Path::stat(name, st)) - mtime=Time::TimeStamp::from_unixtime(st.st_mtime); -} - -void Target::mark_rebuild(const std::string &reason) -{ - rebuild=true; - rebuild_reason=reason; -} - -void Target::check_rebuild() -{ - if(!buildable) - return; - - if(!mtime) - mark_rebuild("Does not exist"); - else - { - for(list::iterator i=depends.begin(); (i!=depends.end() && !rebuild); ++i) - { - if((*i)->get_mtime()>mtime) - mark_rebuild(Path::basename((*i)->get_name())+" has changed"); - else if((*i)->get_rebuild()) - mark_rebuild(Path::basename((*i)->get_name())+" needs rebuilding"); - } - } - if(!rebuild && package && package->get_config().get_mtime()>mtime) - mark_rebuild("Package options changed"); -} - -Action *Target::build(Action *action) -{ - building=true; - action->signal_done.connect(sigc::mem_fun(this, &Target::build_done)); - return action; -} - -void Target::build_done() -{ - building=false; - rebuild=false; -}