/// MemoryBuffer if successful, otherwise returning null. If FileSize is
/// specified, this means that the client knows that the file exists and that
/// it has the specified size.
- static MemoryBuffer *getFile(StringRef Filename,
- std::string *ErrStr = 0,
+ static MemoryBuffer *getFile(StringRef Filename, std::string *ErrStr = 0,
int64_t FileSize = -1);
- static MemoryBuffer *getFile(const char *Filename,
- std::string *ErrStr = 0,
+ static MemoryBuffer *getFile(const char *Filename, std::string *ErrStr = 0,
int64_t FileSize = -1);
+ /// getOpenFile - Given an already-open file descriptor, read the file and
+ /// return a MemoryBuffer. This takes ownership of the descriptor,
+ /// immediately closing it after reading the file.
+ static MemoryBuffer *getOpenFile(int FD, const char *Filename,
+ std::string *ErrStr = 0,
+ int64_t FileSize = -1);
+
/// getMemBuffer - Open the specified memory range as a MemoryBuffer. Note
/// that InputData must be null terminated.
static MemoryBuffer *getMemBuffer(StringRef InputData,
MemoryBuffer *MemoryBuffer::getFile(StringRef Filename, std::string *ErrStr,
int64_t FileSize) {
+ // Ensure the path is null terminated.
SmallString<256> PathBuf(Filename.begin(), Filename.end());
return MemoryBuffer::getFile(PathBuf.c_str(), ErrStr, FileSize);
}
if (ErrStr) *ErrStr = sys::StrError();
return 0;
}
+
+ return getOpenFile(FD, Filename, ErrStr, FileSize);
+}
+
+MemoryBuffer *MemoryBuffer::getOpenFile(int FD, const char *Filename,
+ std::string *ErrStr, int64_t FileSize) {
FileCloser FC(FD); // Close FD on return.
// If we don't know the file size, use fstat to find out. fstat on an open