X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ffiletarget.cpp;h=493f0203ee4f155a6e31a5e821a1a1a72c510c35;hb=7c2db9e2b91da953701be233336c5bfa1f3c4af0;hp=8f35cfc9ed3b54f776f30159ab7e909fb5ed4843;hpb=75bdcf13fbd285e2006337ec606ca28fa4ddae9e;p=builder.git diff --git a/source/filetarget.cpp b/source/filetarget.cpp index 8f35cfc..493f020 100644 --- a/source/filetarget.cpp +++ b/source/filetarget.cpp @@ -1,29 +1,180 @@ -/* $Id$ - -This file is part of builder -Copyright © 2009 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - +#include #include #include +#include +#include +#include #include "builder.h" #include "filetarget.h" +#include "sourcepackage.h" +#include "task.h" +#include "tool.h" using namespace std; using namespace Msp; -FileTarget::FileTarget(Builder &b, const Package *p, const FS::Path &a): - Target(b, p, FS::basename(a.str())), - path(a), - size(0) +FileTarget::FileTarget(Builder &b, const FS::Path &a): + Target(b, generate_name(b, 0, a)), + path(a) +{ + init(0); +} + +FileTarget::FileTarget(Builder &b, const SourcePackage &p, const FS::Path &a): + Target(b, generate_name(b, &p, a)), + path(a) +{ + init(&p); +} + +void FileTarget::init(const SourcePackage *p) +{ + size = 0; + package = p; + nested_build_sig = false; + arch_in_build_sig = false; + + builder.get_vfs().register_path(path, this); + + stat(); +} + +void FileTarget::stat() +{ + if(FS::Stat st = FS::lstat(path)) + { + mtime = st.get_modify_time(); + size = st.get_size(); + } +} + +string FileTarget::generate_name(Builder &builder, const SourcePackage *pkg, const FS::Path &path) { - builder.add_target(this); + if(pkg && FS::descendant_depth(path, pkg->get_source_directory())>=0) + { + FS::Path relpath = FS::relative(path, pkg->get_source_directory()); + return format("<%s>%s", pkg->get_name(), relpath.str().substr(1)); + } + else if(FS::descendant_depth(path, builder.get_prefix())>=0) + { + FS::Path relpath = FS::relative(path, builder.get_prefix()); + return ""+relpath.str().substr(1); + } - struct stat st; - if(!FS::stat(path, st)) + return path.str(); +} + +void FileTarget::touch() +{ + mtime = Time::now(); + modified(); + signal_bubble_rebuild.emit(); +} + +void FileTarget::check_rebuild() +{ + if(!tool || needs_rebuild()) + return; + + if(!mtime) + mark_rebuild("Does not exist"); + else + { + for(Target *d: depends) + { + FileTarget *ft = dynamic_cast(d); + if(ft && ft->get_mtime()>mtime) + mark_rebuild(d->get_name()+" has changed"); + else if(d->needs_rebuild()) + mark_rebuild(d->get_name()+" needs rebuilding"); + if(needs_rebuild()) + break; + } + } + + if(!needs_rebuild()) + { + // Some side effects might not exist + auto i = find_if(side_effects, [](const Target *s){ return s->needs_rebuild(); }); + if(i!=side_effects.end()) + mark_rebuild((*i)->get_name()+" needs rebuilding"); + } + + if(!needs_rebuild() && package) + { + if(package->get_config().get_mtime()>mtime) + mark_rebuild("Package options changed"); + + if(tool->get_executable()) + { + string build_sig = create_build_signature(); + if(package->get_cache().has_key(this, "build_sig")) + { + if(package->get_cache().get_value(this, "build_sig")!=build_sig) + mark_rebuild("Build signature changed"); + } + } + } +} + +string FileTarget::create_build_signature() const +{ + if(!package) + return string(); + + const BuildInfo &binfo = (component ? component->get_build_info() : package->get_build_info()); + list sigs; + if(nested_build_sig && component) + { + set depend_tools; + for(Target *d: depends) + if(d->get_component()==component && d->get_tool()) + depend_tools.insert(d->get_tool()); + + for(const Tool *t: depend_tools) + sigs.push_back(t->create_build_signature(binfo)); + sigs.sort(); + sigs.push_front(tool->create_build_signature(binfo)); + } + else + sigs.push_back(tool->create_build_signature(binfo)); + + if(arch_in_build_sig) + if(const Architecture *arch = tool->get_architecture()) + sigs.push_front(arch->get_name()); + + return join(sigs.begin(), sigs.end(), ";"); +} + +void FileTarget::build(Task &task) +{ + task.add_file(path); + task.set_unlink(true); +} + +void FileTarget::build_finished(bool success) +{ + if(success) + { + stat(); + if(package) + { + string build_sig = create_build_signature(); + if(!build_sig.empty()) + package->get_cache().set_value(this, "build_sig", build_sig); + } + } + + Target::build_finished(success); +} + +void FileTarget::clean() +{ + if(mtime) { - mtime = Time::TimeStamp::from_unixtime(st.st_mtime); - size = st.st_size; + FS::unlink(path); + mtime = Time::TimeStamp(); + size = 0; + check_rebuild(); } }