JUCE
Public Member Functions | List of all members
FileInputSource Class Reference

A type of InputSource that represents a normal file. More...

+ Inheritance diagram for FileInputSource:

Public Member Functions

 FileInputSource (const File &file, bool useFileTimeInHashGeneration=false)
 Creates a FileInputSource for a file. More...
 
 ~FileInputSource ()
 Destructor. More...
 
InputStreamcreateInputStream ()
 Returns a new InputStream to read this item. More...
 
InputStreamcreateInputStreamFor (const String &relatedItemPath)
 Returns a new InputStream to read an item, relative. More...
 
int64 hashCode () const
 Returns a hash code that uniquely represents this item. More...
 
- Public Member Functions inherited from InputSource
 InputSource () noexcept
 
virtual ~InputSource ()
 Destructor. More...
 

Detailed Description

A type of InputSource that represents a normal file.

See also
InputSource

Constructor & Destructor Documentation

FileInputSource::FileInputSource ( const File file,
bool  useFileTimeInHashGeneration = false 
)

Creates a FileInputSource for a file.

If the useFileTimeInHashGeneration parameter is true, then this object's hashCode() method will incorporate the file time into its hash code; if false, only the file name will be used for the hash.

FileInputSource::~FileInputSource ( )

Destructor.

Member Function Documentation

InputStream* FileInputSource::createInputStream ( )
virtual

Returns a new InputStream to read this item.

Returns
an inputstream that the caller will delete, or nullptr if the filename isn't found.

Implements InputSource.

InputStream* FileInputSource::createInputStreamFor ( const String relatedItemPath)
virtual

Returns a new InputStream to read an item, relative.

Parameters
relatedItemPaththe relative pathname of the resource that is required
Returns
an inputstream that the caller will delete, or nullptr if the item isn't found.

Implements InputSource.

int64 FileInputSource::hashCode ( ) const
virtual

Returns a hash code that uniquely represents this item.

Implements InputSource.


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