1 // dirsearch.cc -- directory searching for gold
3 // Copyright 2006, 2007 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of gold.
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 3 of the License, or
11 // (at your option) any later version.
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 // MA 02110-1301, USA.
27 #include <sys/types.h>
30 #include "gold-threads.h"
32 #include "workqueue.h"
33 #include "dirsearch.h"
38 // Read all the files in a directory.
43 Dir_cache(const char* dirname
)
44 : dirname_(dirname
), files_()
47 // Read the files in the directory.
50 // Return whether a file (a base name) is present in the directory.
51 bool find(const std::string
&) const;
54 // We can not copy this class.
55 Dir_cache(const Dir_cache
&);
56 Dir_cache
& operator=(const Dir_cache
&);
59 Unordered_set
<std::string
> files_
;
63 Dir_cache::read_files()
65 DIR* d
= opendir(this->dirname_
);
68 // We ignore directories which do not exist.
70 gold::gold_error(_("%s: can not read directory: %s"),
71 this->dirname_
, strerror(errno
));
76 while ((de
= readdir(d
)) != NULL
)
77 this->files_
.insert(std::string(de
->d_name
));
80 gold::gold_warning("%s: closedir failed: %s", this->dirname_
,
85 Dir_cache::find(const std::string
& basename
) const
87 return this->files_
.find(basename
) != this->files_
.end();
90 // A mapping from directory names to caches. A lock permits
91 // concurrent update. There is no lock for read operations--some
92 // other mechanism must be used to prevent reads from conflicting with
104 // Add a cache for a directory.
105 void add(const char*);
107 // Look up a directory in the cache. This much be locked against
109 Dir_cache
* lookup(const char*) const;
112 // We can not copy this class.
113 Dir_caches(const Dir_caches
&);
114 Dir_caches
& operator=(const Dir_caches
&);
116 typedef Unordered_map
<const char*, Dir_cache
*> Cache_hash
;
122 Dir_caches::~Dir_caches()
124 for (Cache_hash::iterator p
= this->caches_
.begin();
125 p
!= this->caches_
.end();
131 Dir_caches::add(const char* dirname
)
134 gold::Hold_lock
hl(this->lock_
);
135 if (this->lookup(dirname
) != NULL
)
139 Dir_cache
* cache
= new Dir_cache(dirname
);
144 gold::Hold_lock
hl(this->lock_
);
146 std::pair
<const char*, Dir_cache
*> v(dirname
, cache
);
147 std::pair
<Cache_hash::iterator
, bool> p
= this->caches_
.insert(v
);
148 gold_assert(p
.second
);
153 Dir_caches::lookup(const char* dirname
) const
155 Cache_hash::const_iterator p
= this->caches_
.find(dirname
);
156 if (p
== this->caches_
.end())
165 // A Task to read the directory.
167 class Dir_cache_task
: public gold::Task
170 Dir_cache_task(const char* dir
, gold::Task_token
& token
)
171 : dir_(dir
), token_(token
)
178 locks(gold::Task_locker
*);
181 run(gold::Workqueue
*);
185 { return std::string("Dir_cache_task ") + this->dir_
; }
189 gold::Task_token
& token_
;
192 // We can always run the task to read the directory.
195 Dir_cache_task::is_runnable()
200 // Return the locks to hold. We use a blocker lock to prevent file
201 // lookups from starting until the directory contents have been read.
204 Dir_cache_task::locks(gold::Task_locker
* tl
)
206 tl
->add(this, &this->token_
);
209 // Run the task--read the directory contents.
212 Dir_cache_task::run(gold::Workqueue
*)
214 caches
->add(this->dir_
);
223 Dirsearch::initialize(Workqueue
* workqueue
,
224 const General_options::Dir_list
* directories
)
226 gold_assert(caches
== NULL
);
227 caches
= new Dir_caches
;
228 this->directories_
= directories
;
229 for (General_options::Dir_list::const_iterator p
= directories
->begin();
230 p
!= directories
->end();
233 this->token_
.add_blocker();
234 workqueue
->queue(new Dir_cache_task(p
->name().c_str(), this->token_
));
239 Dirsearch::find(const std::string
& n1
, const std::string
& n2
,
240 bool *is_in_sysroot
) const
242 gold_assert(!this->token_
.is_blocked());
244 for (General_options::Dir_list::const_iterator p
=
245 this->directories_
->begin();
246 p
!= this->directories_
->end();
249 Dir_cache
* pdc
= caches
->lookup(p
->name().c_str());
250 gold_assert(pdc
!= NULL
);
253 *is_in_sysroot
= p
->is_in_sysroot();
254 return p
->name() + '/' + n1
;
256 if (!n2
.empty() && pdc
->find(n2
))
258 *is_in_sysroot
= p
->is_in_sysroot();
259 return p
->name() + '/' + n2
;
263 return std::string();
266 } // End namespace gold.