1 #include <msp/core/maputils.h>
2 #include <msp/fs/utils.h>
3 #include <msp/io/print.h>
4 #include <msp/strings/regex.h>
7 #include "csourcefile.h"
8 #include "sourcepackage.h"
13 CSourceFile::CSourceFile(Builder &b, const FS::Path &p):
17 CSourceFile::CSourceFile(Builder &b, const Component &c, const FS::Path &p):
20 string ext = FS::extpart(FS::basename(path));
21 if(ext==".h" || ext==".H" || ext==".hpp")
22 install_location = "include/"+comp->get_name();
25 void CSourceFile::find_depends()
30 const SourcePackage &spkg = comp->get_package();
31 string relname = FS::relative(path, spkg.get_source()).str();
33 DependencyCache &deps_cache = spkg.get_deps_cache();
34 if(mtime<deps_cache.get_mtime() && deps_cache.has_deps(relname))
35 includes = deps_cache.get_deps(relname);
38 IO::BufferedFile in(path.str());
40 builder.get_logger().log("files", format("Reading includes from %s", path.str()));
42 Regex r_include("^[ \t]*#include[ \t]+([\"<].*)[\">]");
45 while(in.getline(line))
46 if(RegMatch match = r_include.match(line))
47 includes.push_back(match[1].str);
49 deps_cache.set_deps(relname, includes);
52 const StringList &incpath = comp->get_build_info().incpath;
53 StringList local_incpath = incpath;
54 local_incpath.push_front(FS::dirname(path).str());
56 for(list<string>::iterator i=includes.begin(); i!=includes.end(); ++i)
58 Target *hdr = builder.get_vfs().find_header(i->substr(1), ((*i)[0]=='"' ? local_incpath : incpath));