]> git.tdb.fi Git - builder.git/blob - source/objectfile.cpp
3fd88d25b06f83af74eb8a051e55d4af05a2cf06
[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 Action *ObjectFile::build()
52 {
53         return Target::build(new Compile(builder, *this));
54 }
55
56 /**
57 Recursively looks for header targets and adds them as dependencies.
58 */
59 void ObjectFile::find_depends(Target *tgt)
60 {
61         const string &tname=tgt->get_name();
62         string path=tname.substr(0, tname.rfind('/'));
63
64         SourceFile *src=dynamic_cast<SourceFile *>(tgt);
65         if(!src)
66         {
67                 Install *inst=dynamic_cast<Install *>(tgt);
68                 if(inst)
69                         src=dynamic_cast<SourceFile *>(inst->get_depends().front());
70         }
71         if(!src)
72                 return;
73
74         const StringList &incpath=comp.get_build_info().incpath;
75
76         const list<string> &includes=src->get_includes();
77         for(list<string>::const_iterator i=includes.begin(); i!=includes.end(); ++i)
78         {
79                 Target *hdr2=builder.get_header(*i, path, incpath);
80                 if(hdr2 && find(depends.begin(), depends.end(), hdr2)==depends.end())
81                         add_depend(hdr2);
82         }
83 }
84
85 /**
86 Adds a target to the dependency list as well as the new dependencies list.
87 */
88 void ObjectFile::add_depend(Target *tgt)
89 {
90         Target::add_depend(tgt);
91         new_deps.push_back(tgt);
92 }
93
94 string ObjectFile::generate_target_name(const Component &comp, const string &src)
95 {
96         const SourcePackage &pkg=comp.get_package();
97         return (pkg.get_temp_dir()/comp.get_name()/(splitext(basename(src)).base+".o")).str();
98 }