]> git.tdb.fi Git - builder.git/blob - source/objectfile.cpp
Include libmode in library lookup hash
[builder.git] / source / objectfile.cpp
1 /* $Id$
2
3 This file is part of builder
4 Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #include <msp/path/utils.h>
9 #include "builder.h"
10 #include "compile.h"
11 #include "component.h"
12 #include "install.h"
13 #include "objectfile.h"
14 #include "sourcefile.h"
15 #include "sourcepackage.h"
16
17 using namespace std;
18 using namespace Msp;
19
20 ObjectFile::ObjectFile(Builder &b, const Component &c, SourceFile &src):
21         Target(b, &c.get_package(), generate_target_name(c, src.get_name())),
22         comp(c)
23 {
24         buildable=true;
25         add_depend(&src);
26 }
27
28 /**
29 Processes as many new dependences as possible.  Some may be left unprocessed
30 if their own dependencies are not ready, requiring another call to this
31 function.  Use the get_deps_ready() function to determine whether this is the
32 case.
33 */
34 void ObjectFile::find_depends()
35 {
36         for(TargetList::iterator i=new_deps.begin(); i!=new_deps.end();)
37         {
38                 Target *tgt=*i;
39                 if(tgt->get_depends_ready())
40                 {
41                         i=new_deps.erase(i);
42                         find_depends(tgt);
43                 }
44                 else
45                         ++i;
46         }
47
48         deps_ready=new_deps.empty();
49 }
50
51
52 /**
53 Recursively looks for header targets and adds them as dependencies.
54 */
55 void ObjectFile::find_depends(Target *tgt)
56 {
57         const string &tname=tgt->get_name();
58         string path=tname.substr(0, tname.rfind('/'));
59
60         SourceFile *src=dynamic_cast<SourceFile *>(tgt);
61         if(!src)
62         {
63                 Install *inst=dynamic_cast<Install *>(tgt);
64                 if(inst)
65                         src=dynamic_cast<SourceFile *>(inst->get_depends().front());
66         }
67         if(!src)
68                 return;
69
70         const StringList &incpath=comp.get_build_info().incpath;
71
72         const list<string> &includes=src->get_includes();
73         for(list<string>::const_iterator i=includes.begin(); i!=includes.end(); ++i)
74         {
75                 Target *hdr2=builder.get_header(*i, path, incpath);
76                 if(hdr2 && find(depends.begin(), depends.end(), hdr2)==depends.end())
77                         add_depend(hdr2);
78         }
79 }
80
81 /**
82 Adds a target to the dependency list as well as the new dependencies list.
83 */
84 void ObjectFile::add_depend(Target *tgt)
85 {
86         Target::add_depend(tgt);
87         new_deps.push_back(tgt);
88 }
89
90 Action *ObjectFile::create_action()
91 {
92         return new Compile(builder, *this);
93 }
94
95 string ObjectFile::generate_target_name(const Component &comp, const string &src)
96 {
97         const SourcePackage &pkg=comp.get_package();
98         return (pkg.get_temp_dir()/comp.get_name()/(splitext(basename(src)).base+".o")).str();
99 }