X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fobjectfile.cpp;h=0536755bb26788354d5e147e021f38fe64d0af36;hb=HEAD;hp=778f74642acc72ca476f2a70224db1e886f7bd2e;hpb=a2adbd9c0a8d7a7567848c4c6bdbf0de6ba32bb1;p=builder.git diff --git a/source/objectfile.cpp b/source/objectfile.cpp deleted file mode 100644 index 778f746..0000000 --- a/source/objectfile.cpp +++ /dev/null @@ -1,100 +0,0 @@ -/* $Id$ - -This file is part of builder -Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#include -#include -#include "builder.h" -#include "compile.h" -#include "component.h" -#include "install.h" -#include "objectfile.h" -#include "sourcefile.h" -#include "sourcepackage.h" - -using namespace std; -using namespace Msp; - -ObjectFile::ObjectFile(Builder &b, const Component &c, SourceFile &src): - Target(b, &c.get_package(), generate_target_name(c, src.get_name())), - comp(c) -{ - buildable=true; - add_depend(&src); -} - -/** -Processes as many new dependences as possible. Some may be left unprocessed -if their own dependencies are not ready, requiring another call to this -function. Use the get_deps_ready() function to determine whether this is the -case. -*/ -void ObjectFile::find_depends() -{ - for(TargetList::iterator i=new_deps.begin(); i!=new_deps.end();) - { - Target *tgt=*i; - if(tgt->get_depends_ready()) - { - i=new_deps.erase(i); - find_depends(tgt); - } - else - ++i; - } - - deps_ready=new_deps.empty(); -} - - -/** -Recursively looks for header targets and adds them as dependencies. -*/ -void ObjectFile::find_depends(Target *tgt) -{ - const string &tname=tgt->get_name(); - string path=tname.substr(0, tname.rfind('/')); - - SourceFile *src=dynamic_cast(tgt); - if(!src) - { - Install *inst=dynamic_cast(tgt); - if(inst) - src=dynamic_cast(inst->get_depends().front()); - } - if(!src) - return; - - const StringList &incpath=comp.get_build_info().incpath; - - const list &includes=src->get_includes(); - for(list::const_iterator i=includes.begin(); i!=includes.end(); ++i) - { - Target *hdr2=builder.get_header(*i, path, incpath); - if(hdr2 && find(depends.begin(), depends.end(), hdr2)==depends.end()) - add_depend(hdr2); - } -} - -/** -Adds a target to the dependency list as well as the new dependencies list. -*/ -void ObjectFile::add_depend(Target *tgt) -{ - Target::add_depend(tgt); - new_deps.push_back(tgt); -} - -Action *ObjectFile::create_action() -{ - return new Compile(builder, *this); -} - -string ObjectFile::generate_target_name(const Component &comp, const string &src) -{ - const SourcePackage &pkg=comp.get_package(); - return (pkg.get_temp_dir()/comp.get_name()/(FS::basepart(FS::basename(src))+".o")).str(); -}