1 #include <msp/fs/stat.h>
2 #include <msp/fs/utils.h>
4 #include "installedfile.h"
5 #include "sharedlibrary.h"
10 InstalledFile::InstalledFile(Builder &b, const SourcePackage &p, FileTarget &s, const string &loc):
11 FileTarget(b, p, generate_target_path(b.get_prefix(), s, loc)),
14 add_dependency(source);
17 FS::Path InstalledFile::generate_target_path(const FS::Path &global_prefix, const FileTarget &tgt, const string &loc)
19 if(!tgt.is_installable() && loc.empty())
20 throw invalid_argument(tgt.get_name()+" is not installable");
24 if(!loc.compare(0, 2, "//"))
26 if(!tgt.get_package())
27 throw invalid_argument("No private install location for "+tgt.get_name());
29 prefix = tgt.get_package()->get_temp_directory();
34 prefix = global_prefix;
38 else if(const Component *comp = tgt.get_component())
39 mid = comp->get_install_map().get_install_location(tgt);
43 mid = tgt.get_install_location();
45 string fn = tgt.get_install_filename();
47 fn = FS::basename(tgt.get_path());
52 void InstalledFile::set_symlink(const FS::Path &l)
54 FS::Path al = FS::dirname(path)/l;
56 throw invalid_argument("InstalledFile::set_symlink");
57 link = FS::dirname(path)/l;
58 builder.get_vfs().register_path(link, this);
61 Target *InstalledFile::get_real_target()
63 return source.get_real_target();
66 void InstalledFile::check_rebuild()
69 mark_rebuild("Does not exist");
70 else if(source.get_mtime()>mtime || source.get_size()!=size)
71 mark_rebuild(source.get_name()+" has changed");
72 else if(source.needs_rebuild())
73 mark_rebuild(source.get_name()+" needs rebuilding");
74 if(!needs_rebuild() && !link.empty())
77 mark_rebuild("Symlink does not exist");
80 FS::Path rel_path = FS::relative(path, FS::dirname(link));
81 if(FS::readlink(link)!=rel_path)
82 mark_rebuild("Symlink needs updating");
87 void InstalledFile::clean()
89 if(!link.empty() && mtime)