2006-08-05 01:10:59 +02:00
|
|
|
// dirsearch.cc -- directory searching for gold
|
|
|
|
|
2008-03-13 22:04:21 +01:00
|
|
|
// Copyright 2006, 2007, 2008 Free Software Foundation, Inc.
|
2007-09-22 23:02:10 +02:00
|
|
|
// Written by Ian Lance Taylor <iant@google.com>.
|
|
|
|
|
|
|
|
// This file is part of gold.
|
|
|
|
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
// MA 02110-1301, USA.
|
|
|
|
|
2006-08-05 01:10:59 +02:00
|
|
|
#include "gold.h"
|
|
|
|
|
|
|
|
#include <cerrno>
|
2007-10-14 08:49:14 +02:00
|
|
|
#include <cstring>
|
2006-08-05 01:10:59 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
|
2008-03-13 02:46:17 +01:00
|
|
|
#include "debug.h"
|
2006-08-05 01:10:59 +02:00
|
|
|
#include "gold-threads.h"
|
2007-12-14 20:00:21 +01:00
|
|
|
#include "options.h"
|
|
|
|
#include "workqueue.h"
|
2006-08-05 01:10:59 +02:00
|
|
|
#include "dirsearch.h"
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
|
|
|
// Read all the files in a directory.
|
|
|
|
|
|
|
|
class Dir_cache
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Dir_cache(const char* dirname)
|
|
|
|
: dirname_(dirname), files_()
|
|
|
|
{ }
|
|
|
|
|
|
|
|
// Read the files in the directory.
|
|
|
|
void read_files();
|
|
|
|
|
|
|
|
// Return whether a file (a base name) is present in the directory.
|
|
|
|
bool find(const std::string&) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
// We can not copy this class.
|
|
|
|
Dir_cache(const Dir_cache&);
|
|
|
|
Dir_cache& operator=(const Dir_cache&);
|
|
|
|
|
|
|
|
const char* dirname_;
|
|
|
|
Unordered_set<std::string> files_;
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
Dir_cache::read_files()
|
|
|
|
{
|
|
|
|
DIR* d = opendir(this->dirname_);
|
|
|
|
if (d == NULL)
|
|
|
|
{
|
|
|
|
// We ignore directories which do not exist.
|
2007-10-14 08:49:14 +02:00
|
|
|
if (errno != ENOENT)
|
|
|
|
gold::gold_error(_("%s: can not read directory: %s"),
|
|
|
|
this->dirname_, strerror(errno));
|
|
|
|
return;
|
2006-08-05 01:10:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dirent* de;
|
|
|
|
while ((de = readdir(d)) != NULL)
|
|
|
|
this->files_.insert(std::string(de->d_name));
|
|
|
|
|
|
|
|
if (closedir(d) != 0)
|
2007-10-14 08:49:14 +02:00
|
|
|
gold::gold_warning("%s: closedir failed: %s", this->dirname_,
|
|
|
|
strerror(errno));
|
2006-08-05 01:10:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Dir_cache::find(const std::string& basename) const
|
|
|
|
{
|
|
|
|
return this->files_.find(basename) != this->files_.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
// A mapping from directory names to caches. A lock permits
|
|
|
|
// concurrent update. There is no lock for read operations--some
|
|
|
|
// other mechanism must be used to prevent reads from conflicting with
|
|
|
|
// writes.
|
|
|
|
|
|
|
|
class Dir_caches
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Dir_caches()
|
|
|
|
: lock_(), caches_()
|
|
|
|
{ }
|
|
|
|
|
|
|
|
~Dir_caches();
|
|
|
|
|
|
|
|
// Add a cache for a directory.
|
|
|
|
void add(const char*);
|
|
|
|
|
|
|
|
// Look up a directory in the cache. This much be locked against
|
|
|
|
// calls to Add.
|
|
|
|
Dir_cache* lookup(const char*) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
// We can not copy this class.
|
|
|
|
Dir_caches(const Dir_caches&);
|
|
|
|
Dir_caches& operator=(const Dir_caches&);
|
|
|
|
|
|
|
|
typedef Unordered_map<const char*, Dir_cache*> Cache_hash;
|
|
|
|
|
|
|
|
gold::Lock lock_;
|
|
|
|
Cache_hash caches_;
|
|
|
|
};
|
|
|
|
|
|
|
|
Dir_caches::~Dir_caches()
|
|
|
|
{
|
|
|
|
for (Cache_hash::iterator p = this->caches_.begin();
|
|
|
|
p != this->caches_.end();
|
|
|
|
++p)
|
|
|
|
delete p->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Dir_caches::add(const char* dirname)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
gold::Hold_lock hl(this->lock_);
|
|
|
|
if (this->lookup(dirname) != NULL)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Dir_cache* cache = new Dir_cache(dirname);
|
|
|
|
|
|
|
|
cache->read_files();
|
|
|
|
|
|
|
|
{
|
|
|
|
gold::Hold_lock hl(this->lock_);
|
|
|
|
|
|
|
|
std::pair<const char*, Dir_cache*> v(dirname, cache);
|
|
|
|
std::pair<Cache_hash::iterator, bool> p = this->caches_.insert(v);
|
2006-11-29 18:56:40 +01:00
|
|
|
gold_assert(p.second);
|
2006-08-05 01:10:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Dir_cache*
|
|
|
|
Dir_caches::lookup(const char* dirname) const
|
|
|
|
{
|
|
|
|
Cache_hash::const_iterator p = this->caches_.find(dirname);
|
|
|
|
if (p == this->caches_.end())
|
|
|
|
return NULL;
|
|
|
|
return p->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The caches.
|
|
|
|
|
2007-11-22 01:05:51 +01:00
|
|
|
Dir_caches* caches;
|
2006-08-05 01:10:59 +02:00
|
|
|
|
|
|
|
// A Task to read the directory.
|
|
|
|
|
|
|
|
class Dir_cache_task : public gold::Task
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Dir_cache_task(const char* dir, gold::Task_token& token)
|
|
|
|
: dir_(dir), token_(token)
|
|
|
|
{ }
|
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
gold::Task_token*
|
|
|
|
is_runnable();
|
2006-08-05 01:10:59 +02:00
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
void
|
|
|
|
locks(gold::Task_locker*);
|
2006-08-05 01:10:59 +02:00
|
|
|
|
2007-11-22 01:05:51 +01:00
|
|
|
void
|
|
|
|
run(gold::Workqueue*);
|
|
|
|
|
|
|
|
std::string
|
|
|
|
get_name() const
|
|
|
|
{ return std::string("Dir_cache_task ") + this->dir_; }
|
2006-08-05 01:10:59 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
const char* dir_;
|
|
|
|
gold::Task_token& token_;
|
|
|
|
};
|
|
|
|
|
|
|
|
// We can always run the task to read the directory.
|
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
gold::Task_token*
|
|
|
|
Dir_cache_task::is_runnable()
|
2006-08-05 01:10:59 +02:00
|
|
|
{
|
2007-12-14 20:00:21 +01:00
|
|
|
return NULL;
|
2006-08-05 01:10:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return the locks to hold. We use a blocker lock to prevent file
|
|
|
|
// lookups from starting until the directory contents have been read.
|
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
void
|
|
|
|
Dir_cache_task::locks(gold::Task_locker* tl)
|
2006-08-05 01:10:59 +02:00
|
|
|
{
|
2007-12-14 20:00:21 +01:00
|
|
|
tl->add(this, &this->token_);
|
2006-08-05 01:10:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run the task--read the directory contents.
|
|
|
|
|
|
|
|
void
|
|
|
|
Dir_cache_task::run(gold::Workqueue*)
|
|
|
|
{
|
2007-11-22 01:05:51 +01:00
|
|
|
caches->add(this->dir_);
|
2006-08-05 01:10:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace gold
|
|
|
|
{
|
|
|
|
|
|
|
|
void
|
2007-10-04 07:49:04 +02:00
|
|
|
Dirsearch::initialize(Workqueue* workqueue,
|
|
|
|
const General_options::Dir_list* directories)
|
2006-08-05 01:10:59 +02:00
|
|
|
{
|
2007-11-22 01:05:51 +01:00
|
|
|
gold_assert(caches == NULL);
|
|
|
|
caches = new Dir_caches;
|
2007-10-04 07:49:04 +02:00
|
|
|
this->directories_ = directories;
|
|
|
|
for (General_options::Dir_list::const_iterator p = directories->begin();
|
|
|
|
p != directories->end();
|
2006-08-05 01:10:59 +02:00
|
|
|
++p)
|
2007-10-04 07:49:04 +02:00
|
|
|
{
|
|
|
|
this->token_.add_blocker();
|
|
|
|
workqueue->queue(new Dir_cache_task(p->name().c_str(), this->token_));
|
|
|
|
}
|
2006-08-05 01:10:59 +02:00
|
|
|
}
|
|
|
|
|
2008-03-13 02:46:17 +01:00
|
|
|
// NOTE: we only log failed file-lookup attempts here. Successfully
|
|
|
|
// lookups will eventually get logged in File_read::open.
|
|
|
|
|
2006-08-05 01:10:59 +02:00
|
|
|
std::string
|
2007-10-04 07:49:04 +02:00
|
|
|
Dirsearch::find(const std::string& n1, const std::string& n2,
|
|
|
|
bool *is_in_sysroot) const
|
2006-08-05 01:10:59 +02:00
|
|
|
{
|
2006-11-29 18:56:40 +01:00
|
|
|
gold_assert(!this->token_.is_blocked());
|
2006-08-05 01:10:59 +02:00
|
|
|
|
2007-10-04 07:49:04 +02:00
|
|
|
for (General_options::Dir_list::const_iterator p =
|
|
|
|
this->directories_->begin();
|
|
|
|
p != this->directories_->end();
|
2006-08-05 01:10:59 +02:00
|
|
|
++p)
|
|
|
|
{
|
2007-11-22 01:05:51 +01:00
|
|
|
Dir_cache* pdc = caches->lookup(p->name().c_str());
|
2006-11-29 18:56:40 +01:00
|
|
|
gold_assert(pdc != NULL);
|
2006-08-05 01:10:59 +02:00
|
|
|
if (pdc->find(n1))
|
2007-10-04 07:49:04 +02:00
|
|
|
{
|
|
|
|
*is_in_sysroot = p->is_in_sysroot();
|
|
|
|
return p->name() + '/' + n1;
|
|
|
|
}
|
2008-03-13 02:46:17 +01:00
|
|
|
else
|
|
|
|
gold_debug(DEBUG_FILES, "Attempt to open %s/%s failed",
|
|
|
|
p->name().c_str(), n1.c_str());
|
|
|
|
|
|
|
|
if (!n2.empty())
|
|
|
|
{
|
|
|
|
if (pdc->find(n2))
|
|
|
|
{
|
|
|
|
*is_in_sysroot = p->is_in_sysroot();
|
|
|
|
return p->name() + '/' + n2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
gold_debug(DEBUG_FILES, "Attempt to open %s/%s failed",
|
|
|
|
p->name().c_str(), n2.c_str());
|
2007-10-04 07:49:04 +02:00
|
|
|
}
|
2006-08-05 01:10:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return std::string();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // End namespace gold.
|