2007-02-09 H.J. Lu <hongjiu.lu@intel.com>
[binutils.git] / gold / fileread.cc
blob1a142022569a624bdfd8e7148404374e96a1d104
1 // fileread.cc -- read files for gold
3 #include "gold.h"
5 #include <cstring>
6 #include <cerrno>
7 #include <fcntl.h>
8 #include <unistd.h>
10 #include "options.h"
11 #include "dirsearch.h"
12 #include "fileread.h"
14 namespace gold
17 // Class File_read::View.
19 File_read::View::~View()
21 gold_assert(!this->is_locked());
22 delete[] this->data_;
25 void
26 File_read::View::lock()
28 ++this->lock_count_;
31 void
32 File_read::View::unlock()
34 gold_assert(this->lock_count_ > 0);
35 --this->lock_count_;
38 bool
39 File_read::View::is_locked()
41 return this->lock_count_ > 0;
44 // Class File_read.
46 // The File_read class is designed to support file descriptor caching,
47 // but this is not currently implemented.
49 File_read::~File_read()
51 gold_assert(this->lock_count_ == 0);
52 if (this->descriptor_ >= 0)
54 if (close(this->descriptor_) < 0)
55 fprintf(stderr, _("%s: warning: close(%s) failed: %s"),
56 program_name, this->name_.c_str(), strerror(errno));
57 this->descriptor_ = -1;
59 this->name_.clear();
60 this->clear_views(true);
63 // Open the file.
65 bool
66 File_read::open(const std::string& name)
68 gold_assert(this->lock_count_ == 0
69 && this->descriptor_ < 0
70 && this->name_.empty());
71 this->name_ = name;
72 this->descriptor_ = ::open(this->name_.c_str(), O_RDONLY);
73 ++this->lock_count_;
74 return this->descriptor_ >= 0;
77 // Open the file for testing purposes.
79 bool
80 File_read::open(const std::string& name, const unsigned char* contents,
81 off_t contents_size)
83 gold_assert(this->lock_count_ == 0
84 && this->descriptor_ < 0
85 && this->name_.empty());
86 this->name_ = name;
87 this->contents_ = contents;
88 this->contents_size_ = contents_size;
89 ++this->lock_count_;
90 return true;
93 void
94 File_read::lock()
96 ++this->lock_count_;
99 void
100 File_read::unlock()
102 gold_assert(this->lock_count_ > 0);
103 --this->lock_count_;
106 bool
107 File_read::is_locked()
109 return this->lock_count_ > 0;
112 // See if we have a view which covers the file starting at START for
113 // SIZE bytes. Return a pointer to the View if found, NULL if not.
115 inline File_read::View*
116 File_read::find_view(off_t start, off_t size)
118 off_t page = File_read::page_offset(start);
119 Views::iterator p = this->views_.find(page);
120 if (p == this->views_.end())
121 return NULL;
122 if (p->second->size() - (start - page) < size)
123 return NULL;
124 return p->second;
127 // Read data from the file. Return the number of bytes read. If
128 // PBYTES is not NULL, store the number of bytes in *PBYTES, otherwise
129 // require that we read exactly the number of bytes requested.
131 off_t
132 File_read::do_read(off_t start, off_t size, void* p, off_t* pbytes)
134 gold_assert(this->lock_count_ > 0);
136 off_t bytes;
137 if (this->contents_ == NULL)
139 int o = this->descriptor_;
141 if (lseek(o, start, SEEK_SET) < 0)
143 fprintf(stderr, _("%s: %s: lseek to %lld failed: %s"),
144 program_name, this->filename().c_str(),
145 static_cast<long long>(start),
146 strerror(errno));
147 gold_exit(false);
150 bytes = ::read(o, p, size);
151 if (bytes < 0)
153 fprintf(stderr, _("%s: %s: read failed: %s\n"),
154 program_name, this->filename().c_str(), strerror(errno));
155 gold_exit(false);
158 else
160 bytes = this->contents_size_ - start;
161 if (bytes < 0)
162 bytes = 0;
163 else if (bytes > size)
164 bytes = size;
165 memcpy(p, this->contents_ + start, bytes);
168 if (pbytes != NULL)
169 *pbytes = bytes;
170 else if (bytes != size)
172 fprintf(stderr,
173 _("%s: %s: file too short: read only %lld of %lld "
174 "bytes at %lld\n"),
175 program_name, this->filename().c_str(),
176 static_cast<long long>(bytes),
177 static_cast<long long>(size),
178 static_cast<long long>(start));
179 gold_exit(false);
182 return bytes;
185 void
186 File_read::read(off_t start, off_t size, void* p, off_t* pbytes)
188 gold_assert(this->lock_count_ > 0);
190 File_read::View* pv = this->find_view(start, size);
191 if (pv != NULL)
193 memcpy(p, pv->data() + (start - pv->start()), size);
194 if (pbytes != NULL)
195 *pbytes = size;
196 return;
199 this->do_read(start, size, p, pbytes);
202 // Find an existing view or make a new one.
204 File_read::View*
205 File_read::find_or_make_view(off_t start, off_t size, off_t* pbytes)
207 gold_assert(this->lock_count_ > 0);
209 off_t poff = File_read::page_offset(start);
211 File_read::View* const vnull = NULL;
212 std::pair<Views::iterator, bool> ins =
213 this->views_.insert(std::make_pair(poff, vnull));
215 if (!ins.second)
217 // There was an existing view at this offset.
218 File_read::View* v = ins.first->second;
219 if (v->size() - (start - v->start()) >= size)
221 if (pbytes != NULL)
222 *pbytes = size;
223 return v;
226 // This view is not large enough.
227 this->saved_views_.push_back(v);
230 // We need to read data from the file.
232 off_t psize = File_read::pages(size + (start - poff));
233 unsigned char* p = new unsigned char[psize];
235 off_t got_bytes;
236 off_t bytes = this->do_read(poff, psize, p, &got_bytes);
238 File_read::View* v = new File_read::View(poff, bytes, p);
240 ins.first->second = v;
242 if (bytes - (start - poff) >= size)
244 if (pbytes != NULL)
245 *pbytes = size;
246 return v;
249 if (pbytes != NULL)
251 *pbytes = bytes - (start - poff);
252 return v;
255 fprintf(stderr,
256 _("%s: %s: file too short: read only %lld of %lld bytes at %lld\n"),
257 program_name, this->filename().c_str(),
258 static_cast<long long>(bytes - (start - poff)),
259 static_cast<long long>(size),
260 static_cast<long long>(start));
261 gold_exit(false);
264 // This implementation of get_view just reads into a memory buffer,
265 // which we store on view_list_. At some point we should support
266 // mmap.
268 const unsigned char*
269 File_read::get_view(off_t start, off_t size, off_t* pbytes)
271 gold_assert(this->lock_count_ > 0);
272 File_read::View* pv = this->find_or_make_view(start, size, pbytes);
273 return pv->data() + (start - pv->start());
276 File_view*
277 File_read::get_lasting_view(off_t start, off_t size, off_t* pbytes)
279 gold_assert(this->lock_count_ > 0);
280 File_read::View* pv = this->find_or_make_view(start, size, pbytes);
281 pv->lock();
282 return new File_view(*this, pv, pv->data() + (start - pv->start()));
285 // Remove all the file views.
287 void
288 File_read::clear_views(bool destroying)
290 for (Views::iterator p = this->views_.begin();
291 p != this->views_.end();
292 ++p)
294 if (!p->second->is_locked())
295 delete p->second;
296 else
298 gold_assert(!destroying);
299 this->saved_views_.push_back(p->second);
302 this->views_.clear();
304 Saved_views::iterator p = this->saved_views_.begin();
305 while (p != this->saved_views_.end())
307 if (!(*p)->is_locked())
309 delete *p;
310 p = this->saved_views_.erase(p);
312 else
314 gold_assert(!destroying);
315 ++p;
320 // Class File_view.
322 File_view::~File_view()
324 gold_assert(this->file_.is_locked());
325 this->view_->unlock();
328 // Class Input_file.
330 // Create a file for testing.
332 Input_file::Input_file(const char* name, const unsigned char* contents,
333 off_t size)
334 : file_()
336 this->input_argument_ =
337 new Input_file_argument(name, false, Position_dependent_options());
338 bool ok = file_.open(name, contents, size);
339 gold_assert(ok);
342 // Open the file.
344 void
345 Input_file::open(const General_options& options, const Dirsearch& dirpath)
347 std::string name;
348 if (!this->input_argument_->is_lib())
349 name = this->input_argument_->name();
350 else
352 std::string n1("lib");
353 n1 += this->input_argument_->name();
354 std::string n2;
355 if (options.is_static())
356 n1 += ".a";
357 else
359 n2 = n1 + ".a";
360 n1 += ".so";
362 name = dirpath.find(n1, n2);
363 if (name.empty())
365 fprintf(stderr, _("%s: cannot find %s\n"), program_name,
366 this->input_argument_->name());
367 gold_exit(false);
371 if (!this->file_.open(name))
373 fprintf(stderr, _("%s: cannot open %s: %s\n"), program_name,
374 name.c_str(), strerror(errno));
375 gold_exit(false);
379 } // End namespace gold.