Version: 3.3.0

#include <wx/filesys.h>

+ Inheritance diagram for wxFSFile:

Detailed Description

This class represents a single file opened by wxFileSystem.

It provides more information than wxWidgets' input streams (stream, filename, mime type, anchor).

Note
Any pointer returned by a method of wxFSFile is valid only as long as the wxFSFile object exists. For example a call to GetStream() doesn't create the stream but only returns the pointer to it. In other words after 10 calls to GetStream() you will have obtained ten identical pointers.

Library:  wxBase
Category:  Virtual File System, File Handling
See also
wxFileSystemHandler, wxFileSystem, wxFileSystem Overview

Public Member Functions

 wxFSFile (wxInputStream *stream, const wxString &location, const wxString &mimetype, const wxString &anchor, wxDateTime modif)
 Constructor. More...
 
wxInputStreamDetachStream ()
 Detaches the stream from the wxFSFile object. More...
 
const wxStringGetAnchor () const
 Returns anchor (if present). More...
 
const wxStringGetLocation () const
 Returns full location of the file, including path and protocol. More...
 
const wxStringGetMimeType () const
 Returns the MIME type of the content of this file. More...
 
wxDateTime GetModificationTime () const
 Returns time when this file was modified. More...
 
wxInputStreamGetStream () const
 Returns pointer to the stream. More...
 
- Public Member Functions inherited from wxObject
 wxObject ()
 Default ctor; initializes to nullptr the internal reference data. More...
 
 wxObject (const wxObject &other)
 Copy ctor. More...
 
virtual ~wxObject ()
 Destructor. More...
 
virtual wxClassInfoGetClassInfo () const
 This virtual function is redefined for every class that requires run-time type information, when using the wxDECLARE_CLASS macro (or similar). More...
 
wxObjectRefDataGetRefData () const
 Returns the wxObject::m_refData pointer, i.e. the data referenced by this object. More...
 
bool IsKindOf (const wxClassInfo *info) const
 Determines whether this class is a subclass of (or the same class as) the given class. More...
 
bool IsSameAs (const wxObject &obj) const
 Returns true if this object has the same data pointer as obj. More...
 
void Ref (const wxObject &clone)
 Makes this object refer to the data in clone. More...
 
void SetRefData (wxObjectRefData *data)
 Sets the wxObject::m_refData pointer. More...
 
void UnRef ()
 Decrements the reference count in the associated data, and if it is zero, deletes the data. More...
 
void UnShare ()
 This is the same of AllocExclusive() but this method is public. More...
 
void operator delete (void *buf)
 The delete operator is defined for debugging versions of the library only, when the identifier __WXDEBUG__ is defined. More...
 
void * operator new (size_t size, const wxString &filename=nullptr, int lineNum=0)
 The new operator is defined for debugging versions of the library only, when the identifier __WXDEBUG__ is defined. More...
 

Additional Inherited Members

- Protected Member Functions inherited from wxObject
void AllocExclusive ()
 Ensure that this object's data is not shared with any other object. More...
 
virtual wxObjectRefDataCreateRefData () const
 Creates a new instance of the wxObjectRefData-derived class specific to this object and returns it. More...
 
virtual wxObjectRefDataCloneRefData (const wxObjectRefData *data) const
 Creates a new instance of the wxObjectRefData-derived class specific to this object and initializes it copying data. More...
 
- Protected Attributes inherited from wxObject
wxObjectRefDatam_refData
 Pointer to an object which is the object's reference-counted data. More...
 

Constructor & Destructor Documentation

◆ wxFSFile()

wxFSFile::wxFSFile ( wxInputStream stream,
const wxString location,
const wxString mimetype,
const wxString anchor,
wxDateTime  modif 
)

Constructor.

You probably won't use it. See the Note for details.

It is seldom used by the application programmer but you will need it if you are writing your own virtual FS. For example you may need something similar to wxMemoryInputStream, but because wxMemoryInputStream doesn't free the memory when destroyed and thus passing a memory stream pointer into wxFSFile constructor would lead to memory leaks, you can write your own class derived from wxFSFile:

class wxMyFSFile : public wxFSFile
{
private:
void *m_Mem;
public:
wxMyFSFile(.....)
~wxMyFSFile() {free(m_Mem);}
// of course dtor is virtual ;-)
};
This class represents a single file opened by wxFileSystem.
Definition: filesys.h:204

If you are not sure of the meaning of these params, see the description of the GetXXXX() functions.

Parameters
streamThe input stream that will be used to access data
locationThe full location (aka filename) of the file
mimetypeMIME type of this file. It may be left empty, in which case the type will be determined from file's extension (location must not be empty in this case).
anchorAnchor. See GetAnchor() for details.
modifModification date and time for this file.

Member Function Documentation

◆ DetachStream()

wxInputStream* wxFSFile::DetachStream ( )

Detaches the stream from the wxFSFile object.

That is, the stream obtained with GetStream() will continue its existence after the wxFSFile object is deleted.

You will have to delete the stream yourself.

◆ GetAnchor()

const wxString& wxFSFile::GetAnchor ( ) const

Returns anchor (if present).

The term of anchor can be easily explained using few examples:

index.htm#anchor                      // 'anchor' is anchor
index/wx001.htm                       // NO anchor here!
archive/main.zip#zip:index.htm#global // 'global'
archive/main.zip#zip:index.htm        // NO anchor here!

Usually an anchor is presented only if the MIME type is 'text/html'. But it may have some meaning with other files; for example myanim.avi#200 may refer to position in animation or reality.wrl::MyView may refer to a predefined view in VRML.

◆ GetLocation()

const wxString& wxFSFile::GetLocation ( ) const

Returns full location of the file, including path and protocol.

Examples:

http://www.wxwidgets.org
http://www.ms.mff.cuni.cz/~vsla8348/wxhtml/archive.zip#zip:info.txt
file:/home/vasek/index.htm
relative-file.htm

◆ GetMimeType()

const wxString& wxFSFile::GetMimeType ( ) const

Returns the MIME type of the content of this file.

It is either extension-based (see wxMimeTypesManager) or extracted from HTTP protocol Content-Type header.

◆ GetModificationTime()

wxDateTime wxFSFile::GetModificationTime ( ) const

Returns time when this file was modified.

◆ GetStream()

wxInputStream* wxFSFile::GetStream ( ) const

Returns pointer to the stream.

You can use the returned stream to directly access data. You may suppose that the stream provide Seek and GetSize functionality (even in the case of the HTTP protocol which doesn't provide this by default. wxHtml uses local cache to work around this and to speed up the connection).