1 // fileread.h -- read files for gold -*- C++ -*-
3 // Classes used to read data from binary input files.
5 #ifndef GOLD_FILEREAD_H
6 #define GOLD_FILEREAD_H
20 // File_read manages a file descriptor for a file we are reading. We
21 // close file descriptors if we run out of them, so this class reopens
22 // the file as needed.
28 : name_(), descriptor_(-1), lock_count_(0)
34 open(const std::string& name);
36 // Return the file name.
39 { return this->name_; }
41 // Return the file descriptor.
45 // Lock the file for access within a particular Task::run execution.
46 // This means that the descriptor can not be closed. This routine
47 // may only be called from the main thread.
51 // Unlock the descriptor, permitting it to be closed if necessary.
55 // Test whether the object is locked.
59 // Return a view into the file. The pointer will remain valid until
60 // the File_read is unlocked. If PBYTES is NULL, it is an error if
61 // we can not read enough data. Otherwise *PBYTES is set to the
62 // number of bytes read.
64 get_view(off_t start, off_t size, off_t *pbytes = NULL);
66 // Read data from the file into the buffer P. PBYTES is as in
69 read(off_t start, off_t size, void* p, off_t *pbytes = NULL);
71 // Return a lasting view into the file. This is allocated with new,
72 // and the caller is responsible for deleting it when done. The
73 // data associated with this view will remain valid until the view
74 // is deleted. PBYTES is handled as with get_view.
76 get_lasting_view(off_t start, off_t size, off_t *pbytes = NULL);
79 // This class may not be copied.
80 File_read(const File_read&);
81 File_read& operator=(const File_read&);
83 // A view into the file when not using mmap.
87 View(off_t start, off_t size, unsigned char* data)
88 : start_(start), size_(size), data_(data), lock_count_(0)
95 { return this->start_; }
99 { return this->size_; }
103 { return this->data_; }
116 View& operator=(const View&);
120 unsigned char* data_;
124 friend class File_view;
126 // Find a view into the file.
128 find_view(off_t start, off_t size);
130 // Read data from the file into a buffer.
132 do_read(off_t start, off_t size, void* p, off_t* pbytes);
134 // Find or make a view into the file.
136 find_or_make_view(off_t start, off_t size, off_t* pbytes);
138 // Clear the file views.
142 // The size of a file page for buffering data.
143 static const off_t page_size = 8192;
145 // Given a file offset, return the page offset.
147 page_offset(off_t file_offset)
148 { return file_offset & ~ (page_size - 1); }
150 // Given a file size, return the size to read integral pages.
152 pages(off_t file_size)
153 { return (file_size + (page_size - 1)) & ~ (page_size - 1); }
155 // The type of a mapping from page start to views.
156 typedef std::map<off_t, View*> Views;
158 // A simple list of Views.
159 typedef std::list<View*> Saved_views;
165 // Number of locks on the file.
167 // Buffered views into the file.
169 // List of views which were locked but had to be removed from views_
170 // because they were not large enough.
171 Saved_views saved_views_;
174 // A view of file data that persists even when the file is unlocked.
175 // Callers should destroy these when no longer required. These are
176 // obtained form File_read::get_lasting_view. They may only be
177 // destroyed when the underlying File_read is locked.
182 // This may only be called when the underlying File_read is locked.
185 // Return a pointer to the data associated with this view.
188 { return this->data_; }
191 File_view(const File_view&);
192 File_view& operator=(const File_view&);
194 friend class File_read;
196 // Callers have to get these via File_read::get_lasting_view.
197 File_view(File_read& file, File_read::View* view, const unsigned char* data)
198 : file_(file), view_(view), data_(data)
202 File_read::View* view_;
203 const unsigned char* data_;
206 // All the information we hold for a single input file. This can be
207 // an object file, a shared library, or an archive.
212 Input_file(const Input_file_argument& input_argument)
213 : input_argument_(input_argument)
217 open(const General_options&, const Dirsearch&);
219 // Return the name given by the user.
222 { return this->input_argument_.name(); }
224 // Return the file name.
227 { return this->file_.filename(); }
231 { return this->file_; }
234 Input_file(const Input_file&);
235 Input_file& operator=(const Input_file&);
237 const Input_file_argument& input_argument_;
241 } // end namespace gold
243 #endif // !defined(GOLD_FILEREAD_H)