]> git.tdb.fi Git - builder.git/blob - source/filetarget.cpp
Handle directory creation and unlinking in Task
[builder.git] / source / filetarget.cpp
1 #include <msp/fs/stat.h>
2 #include <msp/fs/utils.h>
3 #include <msp/strings/format.h>
4 #include <msp/strings/utils.h>
5 #include <msp/time/utils.h>
6 #include "builder.h"
7 #include "filetarget.h"
8 #include "sourcepackage.h"
9 #include "task.h"
10 #include "tool.h"
11
12 using namespace std;
13 using namespace Msp;
14
15 FileTarget::FileTarget(Builder &b, const FS::Path &a):
16         Target(b, generate_name(b, 0, a)),
17         path(a)
18 {
19         init(0);
20 }
21
22 FileTarget::FileTarget(Builder &b, const SourcePackage &p, const FS::Path &a):
23         Target(b, generate_name(b, &p, a)),
24         path(a)
25 {
26         init(&p);
27 }
28
29 void FileTarget::init(const SourcePackage *p)
30 {
31         size = 0;
32         package = p;
33
34         builder.get_vfs().register_path(path, this);
35
36         stat();
37 }
38
39 void FileTarget::stat()
40 {
41         if(FS::Stat st = FS::lstat(path))
42         {
43                 mtime = st.get_modify_time();
44                 size = st.get_size();
45         }
46 }
47
48 string FileTarget::generate_name(Builder &builder, const SourcePackage *pkg, const FS::Path &path)
49 {
50         if(pkg && FS::descendant_depth(path, pkg->get_source_directory())>=0)
51         {
52                 FS::Path relpath = FS::relative(path, pkg->get_source_directory());
53                 return format("<%s>%s", pkg->get_name(), relpath.str().substr(1));
54         }
55         else if(FS::descendant_depth(path, builder.get_prefix())>=0)
56         {
57                 FS::Path relpath = FS::relative(path, builder.get_prefix());
58                 return "<prefix>"+relpath.str().substr(1);
59         }
60
61         return path.str();
62 }
63
64 void FileTarget::touch()
65 {
66         mtime = Time::now();
67         signal_bubble_rebuild.emit();
68 }
69
70 void FileTarget::check_rebuild()
71 {
72         if(!tool)
73                 return;
74
75         if(!mtime)
76                 mark_rebuild("Does not exist");
77         else
78         {
79                 for(Dependencies::iterator i=depends.begin(); (i!=depends.end() && !needs_rebuild()); ++i)
80                 {
81                         FileTarget *ft = dynamic_cast<FileTarget *>(*i);
82                         if(ft && ft->get_mtime()>mtime)
83                                 mark_rebuild((*i)->get_name()+" has changed");
84                         else if((*i)->needs_rebuild())
85                                 mark_rebuild((*i)->get_name()+" needs rebuilding");
86                 }
87         }
88
89         if(!needs_rebuild() && package)
90         {
91                 if(package->get_config().get_mtime()>mtime)
92                         mark_rebuild("Package options changed");
93
94                 string build_sig = create_build_signature();
95                 if(package->get_cache().has_key(this, "build_sig"))
96                 {
97                         if(package->get_cache().get_value(this, "build_sig")!=build_sig)
98                                 mark_rebuild("Build signature changed");
99                 }
100         }
101 }
102
103 string FileTarget::create_build_signature() const
104 {
105         if(!package)
106                 return string();
107
108         const BuildInfo &binfo = (component ? component->get_build_info() : package->get_build_info());
109         return tool->create_build_signature(binfo);
110 }
111
112 Task *FileTarget::build()
113 {
114         Task *task = Target::build();
115         task->set_file(path);
116         task->set_unlink(true);
117         return task;
118 }
119
120 void FileTarget::build_finished(bool success)
121 {
122         if(success)
123         {
124                 stat();
125                 if(package)
126                 {
127                         string build_sig = create_build_signature();
128                         if(!build_sig.empty())
129                                 package->get_cache().set_value(this, "build_sig", build_sig);
130                 }
131         }
132
133         Target::build_finished(success);
134 }
135
136 void FileTarget::clean()
137 {
138         if(mtime)
139         {
140                 FS::unlink(path);
141                 mtime = Time::TimeStamp();
142                 size = 0;
143                 check_rebuild();
144         }
145 }