X-Git-Url: http://git.tdb.fi/?p=builder.git;a=blobdiff_plain;f=source%2Fvirtualfilesystem.cpp;h=36fe1c129190e83ebd7736e7557a2619d27e9db8;hp=fe0159e857d61892ee7cc055bacedcc40d00b303;hb=650560b14cac4bb35589b5b8db99197c5e1345cc;hpb=dc4b917034c9d3718f07139e2f0f3631a080c6f3 diff --git a/source/virtualfilesystem.cpp b/source/virtualfilesystem.cpp index fe0159e..36fe1c1 100644 --- a/source/virtualfilesystem.cpp +++ b/source/virtualfilesystem.cpp @@ -1,27 +1,20 @@ +#include #include +#include #include #include #include "builder.h" #include "csourcefile.h" -#include "misc.h" +#include "executable.h" +#include "importlibrary.h" #include "sharedlibrary.h" #include "staticlibrary.h" +#include "tool.h" #include "virtualfilesystem.h" using namespace std; using namespace Msp; -namespace { - -void update_hash(string &hash, const string &value) -{ - for(unsigned i=0; iget_name())); } -FileTarget *VirtualFileSystem::find_header(const string &include, const FS::Path &from, const list &path) +FileTarget *VirtualFileSystem::find_header(const string &name, Tool *tool, const SearchPath &path, bool use_syspath) { - string hash(8, 0); - if(include[0]=='\"') - update_hash(hash, from.str()); - for(list::const_iterator i=path.begin(); i!=path.end(); ++i) - update_hash(hash, *i); - - string id = hash+include; - TargetMap::iterator i = include_cache.find(id); - if(i!=include_cache.end()) - return i->second; - - static string cxx_ver; - if(cxx_ver.empty()) - { - // XXX This needs to go elsewhere - /*StringList argv; - argv.push_back(current_arch->get_tool("CXX")); - argv.push_back("--version"); - if(RegMatch m = Regex("[0-9]\\.[0-9.]+").match(run_command(argv))) - { - cxx_ver = m[0].str; - while(!cxx_ver.empty() && !FS::is_dir(FS::Path("/usr/include/c++")/cxx_ver)) - { - string::size_type dot = cxx_ver.rfind('.'); - if(dot==string::npos) - break; - cxx_ver.erase(dot); - } - if(verbose>=5) - IO::print("C++ version is %s\n", cxx_ver); - } - else*/ - cxx_ver = "-"; - } + if(!tool) + tool = builder.get_toolchain().get_tool_for_suffix(FS::extpart(FS::basename(name)), true); + if(!tool) + return 0; - string fn = include.substr(1); - if(builder.get_verbose()>=5) - IO::print("Looking for include %s from %s with path %s\n", fn, from, join(path.begin(), path.end())); + tool->prepare(); - SearchPath syspath; - const Architecture &arch = builder.get_current_arch(); - if(arch.is_native()) - syspath.push_back("/usr/include"); - else - syspath.push_back("/usr/"+arch.get_cross_prefix()+"/include"); - if(cxx_ver!="-") - syspath.push_back((FS::Path("/usr/include/c++/")/cxx_ver).str()); + list combined_path(path.begin(), path.end()); + if(use_syspath) + { + const Tool::SearchPath &syspath = tool->get_system_path(); + combined_path.insert(combined_path.end(), syspath.begin(), syspath.end()); + } - FileTarget *tgt = 0; - if(include[0]=='\"') - tgt = get_header(FS::Path(from)/fn); - for(list::const_iterator j=path.begin(); (!tgt && j!=path.end()); ++j) - tgt = get_header(FS::Path(*j)/fn); - for(list::const_iterator j=syspath.begin(); (!tgt && j!=syspath.end()); ++j) - tgt = get_header(FS::Path(*j)/fn); + for(list::const_iterator i=combined_path.begin(); i!=combined_path.end(); ++i) + { + FS::Path filename = *i/name; + if(FileTarget *tgt = get_target(filename)) + { + builder.get_logger().log("vfs", format("Header %s found in %s as existing %s", name, i->str(), tgt->get_type())); + return tgt; + } + else if(file_exists(filename)) + { + builder.get_logger().log("vfs", format("Header %s found in %s", name, i->str())); + return dynamic_cast(tool->create_source(filename)); + } - include_cache.insert(TargetMap::value_type(id, tgt)); + builder.get_logger().log("vfs", format("Header %s not found in %s", name, i->str())); + } - return tgt; + return 0; } -FileTarget *VirtualFileSystem::find_library(const string &lib, const list &path, LibMode mode) +FileTarget *VirtualFileSystem::find_library(const string &lib, const SearchPath &path, BuildInfo::LibraryMode mode, bool use_syspath) { - string hash(8, 0); - for(list::const_iterator i=path.begin(); i!=path.end(); ++i) - update_hash(hash, *i); - - string id = hash+string(1, mode)+lib; - TargetMap::iterator i = library_cache.find(id); - if(i!=library_cache.end()) - return i->second; - - SearchPath syspath; - const Architecture &arch = builder.get_current_arch(); - if(arch.is_native()) + list combined_path(path.begin(), path.end()); + if(use_syspath) { - syspath.push_back("/lib"); - syspath.push_back("/usr/lib"); - if(arch.match_name("pc-32-linux")) - syspath.push_back("/usr/lib/i386-linux-gnu"); - else if(arch.match_name("pc-64-linux")) - syspath.push_back("/usr/lib/x86_64-linux-gnu"); + Tool &linker = builder.get_toolchain().get_tool("LINK"); + linker.prepare(); + const Tool::SearchPath &syspath = linker.get_system_path(); + combined_path.insert(combined_path.end(), syspath.begin(), syspath.end()); } - else - syspath.push_back("/usr/"+arch.get_cross_prefix()+"/lib"); - if(builder.get_verbose()>=5) - IO::print("Looking for library %s with path %s\n", lib, join(path.begin(), path.end())); + const Architecture &arch = builder.get_current_arch(); - FileTarget *tgt = 0; - for(StringList::const_iterator j=path.begin(); (!tgt && j!=path.end()); ++j) - tgt = get_library(lib, *j, mode); - for(StringList::iterator j=syspath.begin(); (!tgt && j!=syspath.end()); ++j) - tgt = get_library(lib, *j, mode); + list shared_names; + bool use_import_lib = false; + if(mode!=BuildInfo::FORCE_STATIC) + { + shared_names = Pattern::apply_list(arch.get_patterns(), lib); + if(!(use_import_lib = !shared_names.empty())) + shared_names = Pattern::apply_list(arch.get_patterns(), lib); + } - library_cache.insert(TargetMap::value_type(id, tgt)); + list static_names; + if(mode!=BuildInfo::FORCE_DYNAMIC) + static_names = Pattern::apply_list(arch.get_patterns(), lib); - return tgt; -} + for(list::const_iterator i=combined_path.begin(); i!=combined_path.end(); ++i) + { + const list *cur_names = (mode>=BuildInfo::DYNAMIC ? &shared_names : &static_names); + for(list::const_iterator j=cur_names->begin(); j!=cur_names->end(); ) + { + FS::Path filename = *i / *j; + if(FileTarget *tgt = get_target(filename)) + { + builder.get_logger().log("vfs", format("Library %s (%s) found in %s as existing %s", lib, *j, i->str(), tgt->get_type())); + return tgt; + } + else if(file_exists(filename)) + { + builder.get_logger().log("vfs", format("Library %s (%s) found in %s", lib, *j, i->str())); + if(cur_names==&shared_names) + { + if(use_import_lib) + return new ImportLibrary(builder, filename); + return new SharedLibrary(builder, filename); + } + else + return new StaticLibrary(builder, filename); + } -FileTarget *VirtualFileSystem::get_header(const FS::Path &fn) -{ - FileTarget *tgt = get_target(fn); - if(tgt) - return tgt; + if(++j==cur_names->end()) + { + if(mode==BuildInfo::DYNAMIC && cur_names==&shared_names) + cur_names = &static_names; + else if(mode==BuildInfo::STATIC && cur_names==&static_names) + cur_names = &shared_names; + else + break; + j = cur_names->begin(); + } + } - if(FS::is_reg(fn)) - { - tgt = new CSourceFile(builder, fn); - return tgt; + builder.get_logger().log("vfs", format("Library %s not found in %s", lib, i->str())); } + return 0; } -FileTarget *VirtualFileSystem::get_library(const string &lib, const FS::Path &path, LibMode mode) +FileTarget *VirtualFileSystem::find_binary(const string &name) { - const Architecture &arch = builder.get_current_arch(); - - /* Try dynamic libraries only if library mode permits it */ - if(mode!=ALL_STATIC) + SearchPath path; + if(FS::Path(name).is_absolute()) + path.push_back("/"); + else if(const char *env_path = getenv("PATH")) { - FS::Path fn = try_patterns(path, arch.get_shared_library_patterns(), lib); - if(!fn.empty()) - { - FileTarget *tgt = get_target(fn); - if(!tgt) - return new SharedLibrary(builder, fn); - else if(mode==DYNAMIC || !tgt->get_package()) - return tgt; - } + vector parts = split(env_path, ':'); + for(vector::const_iterator i=parts.begin(); i!=parts.end(); ++i) + path.push_back(*i); + } + else + { + path.push_back("/bin"); + path.push_back("/usr/bin"); } - /* Static libraries are always considered, since sometimes shared versions - may not be available */ - FS::Path fn = try_patterns(path, arch.get_static_library_patterns(), lib); - if(!fn.empty()) + for(SearchPath::const_iterator i=path.begin(); i!=path.end(); ++i) { - if(FileTarget *tgt = get_target(fn)) + FS::Path filename = *i/name; + if(FileTarget *tgt = get_target(filename)) + { + builder.get_logger().log("vfs", format("Binary %s found in %s as existing %s", name, *i, tgt->get_type())); return tgt; - else - return new StaticLibrary(builder, fn); + } + else if(file_exists(filename)) + { + builder.get_logger().log("vfs", format("Binary %s found in %s", name, *i)); + return new Executable(builder, filename); + } + + builder.get_logger().log("vfs", format("Binary %s not found in %s", name, *i)); } return 0; } -FS::Path VirtualFileSystem::try_patterns(const FS::Path &dir, const list &patterns, const string &base) +bool VirtualFileSystem::file_exists(const FS::Path &filename) { - for(list::const_iterator i=patterns.begin(); i!=patterns.end(); ++i) - { - FS::Path full = dir/i->apply(base); - if(get_target(full) || FS::is_reg(full)) - return full; - } - - return FS::Path(); + if(nonexistent.count(filename)) + return false; + if(FS::is_reg(filename)) + return true; + nonexistent.insert(filename); + return false; }