LLVM API Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Types | Public Member Functions | Static Public Member Functions | List of all members
llvm::FileOutputBuffer Class Reference

#include <FileOutputBuffer.h>

Public Types

enum  { F_executable = 1 }
 

Public Member Functions

uint8_t * getBufferStart ()
 Returns a pointer to the start of the buffer. More...
 
uint8_t * getBufferEnd ()
 Returns a pointer to the end of the buffer. More...
 
size_t getBufferSize () const
 Returns size of the buffer. More...
 
StringRef getPath () const
 Returns path where file will show up if buffer is committed. More...
 
error_code commit (int64_t NewSmallerSize=-1)
 
 ~FileOutputBuffer ()
 

Static Public Member Functions

static error_code create (StringRef FilePath, size_t Size, OwningPtr< FileOutputBuffer > &Result, unsigned Flags=0)
 

Detailed Description

FileOutputBuffer - This interface provides simple way to create an in-memory buffer which will be written to a file. During the lifetime of these objects, the content or existence of the specified file is undefined. That is, creating an OutputBuffer for a file may immediately remove the file. If the FileOutputBuffer is committed, the target file's content will become the buffer content at the time of the commit. If the FileOutputBuffer is not committed, the file will be deleted in the FileOutputBuffer destructor.

Definition at line 33 of file FileOutputBuffer.h.

Member Enumeration Documentation

anonymous enum
Enumerator
F_executable 

Definition at line 36 of file FileOutputBuffer.h.

Constructor & Destructor Documentation

llvm::FileOutputBuffer::~FileOutputBuffer ( )

If this object was previously committed, the destructor just deletes this object. If this object was not committed, the destructor deallocates the buffer and the target file is never written.

Definition at line 30 of file FileOutputBuffer.cpp.

References llvm::sys::fs::remove().

Member Function Documentation

error_code llvm::FileOutputBuffer::commit ( int64_t  NewSmallerSize = -1)

Flushes the content of the buffer to its file and deallocates the buffer. If commit() is not called before this object's destructor is called, the file is deleted in the destructor. The optional parameter is used if it turns out you want the file size to be smaller than initially requested.

Definition at line 90 of file FileOutputBuffer.cpp.

References llvm::sys::fs::rename(), and llvm::sys::fs::resize_file().

error_code llvm::FileOutputBuffer::create ( StringRef  FilePath,
size_t  Size,
OwningPtr< FileOutputBuffer > &  Result,
unsigned  Flags = 0 
)
static
uint8_t* llvm::FileOutputBuffer::getBufferEnd ( )
inline

Returns a pointer to the end of the buffer.

Definition at line 53 of file FileOutputBuffer.h.

size_t llvm::FileOutputBuffer::getBufferSize ( ) const
inline

Returns size of the buffer.

Definition at line 58 of file FileOutputBuffer.h.

uint8_t* llvm::FileOutputBuffer::getBufferStart ( )
inline

Returns a pointer to the start of the buffer.

Definition at line 48 of file FileOutputBuffer.h.

StringRef llvm::FileOutputBuffer::getPath ( ) const
inline

Returns path where file will show up if buffer is committed.

Definition at line 63 of file FileOutputBuffer.h.


The documentation for this class was generated from the following files: