stdex
Additional custom or not Standard C++ covered algorithms
Loading...
Searching...
No Matches
stdex::stream::file Class Reference

File-system file. More...

#include <stdex/stream.hpp>

Inheritance diagram for stdex::stream::file:
stdex::stream::basic_file stdex::stream::basic_sys stdex::stream::basic stdex::stream::basic stdex::basic_sys_object< T, TR >

Public Member Functions

 file (sys_handle h=invalid_handle, state_t state=state_t::ok)
 
 file (const schar_t *filename, int mode)
 Opens file.
 
template<class TR = std::char_traits<schar_t>, class AX = std::allocator<schar_t>>
 file (const std::basic_string< TR, AX > &filename, int mode)
 Opens file.
 
void open (const schar_t *filename, int mode)
 Opens file.
 
template<class TR = std::char_traits<schar_t>, class AX = std::allocator<schar_t>>
void open (const std::basic_string< TR, AX > &filename, int mode)
 Opens file.
 
virtual fpos_t seek (foff_t offset, seek_t how=seek_t::beg)
 Seeks to specified relative file position.
 
virtual fpos_t tell () const
 Returns absolute file position in file or fpos_max if fails. This method does not update stream state.
 
virtual void lock (fpos_t offset, fsize_t length)
 Locks file section for exclusive access.
 
virtual void unlock (fpos_t offset, fsize_t length)
 Unlocks file section for exclusive access.
 
virtual fsize_t size () const
 Returns file size Should the file size cannot be determined, the method returns fsize_max and it does not reset the state to failed.
 
virtual void truncate ()
 Sets file size - truncates the remainder of file content from the current file position to the end of file.
 
virtual time_point ctime () const
 Returns file creation time.
 
virtual time_point atime () const
 Returns file access time.
 
virtual time_point mtime () const
 Returns file modification time.
 
virtual void set_ctime (time_point date)
 Sets file create time.
 
virtual void set_atime (time_point date)
 Sets file access time.
 
virtual void set_mtime (time_point date)
 Sets file modification time.
 
- Public Member Functions inherited from stdex::stream::basic_file
virtual std::vector< uint8_t > read_remainder (size_t max_length=SIZE_MAX)
 Reads and returns remainder of the stream.
 
fpos_t seekbeg (fpos_t offset)
 Seeks to absolute file position.
 
fpos_t seekcur (foff_t offset)
 Seeks to relative from current file position.
 
fpos_t seekend (foff_t offset)
 Seeks to relative from end file position.
 
virtual void skip (fsize_t amount)
 Skips given amount of bytes of data on the stream.
 
charset_id read_charset (charset_id default_charset=charset_id::system)
 Attempts to detect text-file charset based on UTF-32, UTF-16 or UTF-8 BOM.
 
- Public Member Functions inherited from stdex::stream::basic
 basic (state_t state=state_t::ok)
 
state_t state () const
 Returns stream state after last operation.
 
bool ok () const
 Returns true if the stream state is clean i.e. previous operation was successful.
 
uint8_t read_byte ()
 Reads one byte of data.
 
void write_byte (uint8_t byte, fsize_t amount=1)
 Writes a byte of data.
 
template<class T >
basicread_data (T &data)
 Reads one primitive data type.
 
template<class T >
basicwrite_data (const T data)
 Writes one primitive data type.
 
template<class T , class TR = std::char_traits<T>, class AX = std::allocator<T>>
size_t readln (std::basic_string< T, TR, AX > &str)
 Reads stream to the end-of-line or end-of-file.
 
template<class T_from , class T_to , class TR = std::char_traits<T_to>, class AX = std::allocator<T_to>>
size_t readln (std::basic_string< T_to, TR, AX > &str, charset_encoder< T_from, T_to > &encoder)
 Reads stream to the end-of-line or end-of-file.
 
template<class T , class TR = std::char_traits<T>, class AX = std::allocator<T>>
size_t readln_and_attach (std::basic_string< T, TR, AX > &str)
 Reads stream to the end-of-line or end-of-file and append to str.
 
template<class T_from , class T_to , class TR = std::char_traits<T_to>, class AX = std::allocator<T_to>>
size_t readln_and_attach (std::basic_string< T_to, TR, AX > &str, charset_encoder< T_from, T_to > &encoder)
 Reads stream to the end-of-line or end-of-file and append to str.
 
size_t read_array (_Out_writes_bytes_(size *count) void *array, size_t size, size_t count)
 Reads an array of data from the stream.
 
size_t write_array (_In_reads_bytes_opt_(size *count) const void *array, size_t size, size_t count)
 Writes an array of data to the stream.
 
template<class T_from , class T_to >
size_t write_array (const T_from *str, charset_encoder< T_from, T_to > &encoder)
 Writes array of characters to the stream.
 
template<class T_from , class T_to >
size_t write_array (_In_reads_or_z_opt_(num_chars) const T_from *str, size_t num_chars, charset_encoder< T_from, T_to > &encoder)
 Writes array of characters to the stream.
 
template<class T_from , class T_to , class TR = std::char_traits<T_from>, class AX = std::allocator<T_from>>
size_t write_array (const std::basic_string< T_from, TR, AX > &str, charset_encoder< T_from, T_to > &encoder)
 Writes array of characters to the stream.
 
template<class T , class TR = std::char_traits<T>, class AX = std::allocator<T>>
basicread_str (std::basic_string< T, TR, AX > &data)
 Reads length-prefixed string from the stream.
 
template<class T >
basicwrite_str (const T *data)
 Writes string to the stream length-prefixed.
 
template<class T , class TR = std::char_traits<T>, class AX = std::allocator<T>>
basicwrite_str (const std::basic_string< T, TR, AX > &data)
 Writes string to the stream length-prefixed.
 
fsize_t write_stream (basic &stream, fsize_t amount=fsize_max)
 Writes content of another stream.
 
void write_charset (charset_id charset)
 Writes UTF8, UTF-16 or UTF-32 byte-order-mark.
 
size_t write_sprintf (_Printf_format_string_params_(2) const char *format, locale_t locale,...)
 Writes formatted string to the stream.
 
size_t write_sprintf (_Printf_format_string_params_(2) const wchar_t *format, locale_t locale,...)
 Writes formatted string to the stream.
 
size_t write_vsprintf (_Printf_format_string_params_(2) const char *format, locale_t locale, va_list params)
 Writes formatted string to the stream.
 
size_t write_vsprintf (_Printf_format_string_params_(2) const wchar_t *format, locale_t locale, va_list params)
 Writes formatted string to the stream.
 
basicoperator>> (int8_t &data)
 
basicoperator<< (const int8_t data)
 
basicoperator>> (int16_t &data)
 
basicoperator<< (const int16_t data)
 
basicoperator>> (int32_t &data)
 
basicoperator<< (const int32_t data)
 
basicoperator>> (int64_t &data)
 
basicoperator<< (const int64_t data)
 
basicoperator>> (uint8_t &data)
 
basicoperator<< (const uint8_t data)
 
basicoperator>> (uint16_t &data)
 
basicoperator<< (const uint16_t data)
 
basicoperator>> (uint32_t &data)
 
basicoperator<< (const uint32_t data)
 
basicoperator>> (uint64_t &data)
 
basicoperator<< (const uint64_t data)
 
basicoperator>> (float &data)
 
basicoperator<< (const float data)
 
basicoperator>> (double &data)
 
basicoperator<< (const double data)
 
basicoperator>> (char &data)
 
basicoperator<< (const char data)
 
template<class T , class TR = std::char_traits<T>, class AX = std::allocator<T>>
basicoperator>> (std::basic_string< T, TR, AX > &data)
 
template<class T >
basicoperator<< (const T *data)
 
template<class T , class TR = std::char_traits<T>, class AX = std::allocator<T>>
basicoperator<< (const std::basic_string< T, TR, AX > &data)
 
template<class T , class AX = std::allocator<T>>
basicoperator<< (const std::vector< T, AX > &data)
 
template<class T , class AX = std::allocator<T>>
basicoperator>> (std::vector< T, AX > &data)
 
template<class KEY , class PR = std::less<KEY>, class AX = std::allocator<KEY>>
basicoperator<< (const std::set< KEY, PR, AX > &data)
 
template<class KEY , class PR = std::less<KEY>, class AX = std::allocator<KEY>>
basicoperator>> (std::set< KEY, PR, AX > &data)
 
template<class KEY , class PR = std::less<KEY>, class AX = std::allocator<KEY>>
basicoperator<< (const std::multiset< KEY, PR, AX > &data)
 
template<class KEY , class PR = std::less<KEY>, class AX = std::allocator<KEY>>
basicoperator>> (std::multiset< KEY, PR, AX > &data)
 
- Public Member Functions inherited from stdex::stream::basic_sys
 basic_sys (sys_handle h=invalid_handle, state_t state=state_t::ok)
 
virtual size_t read (_Out_writes_bytes_to_opt_(length, return) void *data, size_t length)
 Reads block of data from the stream.
 
virtual size_t write (_In_reads_bytes_opt_(length) const void *data, size_t length)
 Writes block of data to the stream.
 
virtual void close ()
 Closes the stream.
 
virtual void flush ()
 Persists volatile element data.
 
- Public Member Functions inherited from stdex::basic_sys_object< T, TR >
 basic_sys_object (T h=TR::invalid_handle)
 
 basic_sys_object (const basic_sys_object< T, TR > &other)
 
basic_sys_objectoperator= (const basic_sys_object< T, TR > &other)
 
 basic_sys_object (basic_sys_object< T, TR > &&other) noexcept
 
basic_sys_objectoperator= (basic_sys_object< T, TR > &&other) noexcept
 
 operator bool () const noexcept
 Returns true if object has a valid handle.
 
get () const noexcept
 Returns object handle.
 

Static Public Member Functions

static bool exists (const stdex::schar_t *filename)
 Checks if file/folder/symlink likely exists.
 
template<class TR = std::char_traits<schar_t>, class AX = std::allocator<schar_t>>
static bool exists (const std::basic_string< TR, AX > &filename)
 Checks if file/folder/symlink likely exists.
 
static bool readonly (const stdex::schar_t *filename)
 Checks if file/folder/symlink is read-only.
 
template<class TR = std::char_traits<schar_t>, class AX = std::allocator<schar_t>>
static bool readonly (const std::basic_string< TR, AX > &filename)
 Checks if file/folder/symlink is read-only.
 

Additional Inherited Members

- Protected Attributes inherited from stdex::stream::basic
state_t m_state
 
- Protected Attributes inherited from stdex::basic_sys_object< T, TR >
m_h
 

Detailed Description

File-system file.

Constructor & Destructor Documentation

◆ file() [1/2]

stdex::stream::file::file ( const schar_t * filename,
int mode )
inline

Opens file.

Parameters
[in]filenameFilename
[in]modeBitwise combination of mode_t flags

◆ file() [2/2]

template<class TR = std::char_traits<schar_t>, class AX = std::allocator<schar_t>>
stdex::stream::file::file ( const std::basic_string< TR, AX > & filename,
int mode )
inline

Opens file.

Parameters
[in]filenameFilename
[in]modeBitwise combination of mode_t flags

Member Function Documentation

◆ atime()

virtual time_point stdex::stream::file::atime ( ) const
inlinevirtual

Returns file access time.

Reimplemented from stdex::stream::basic_file.

◆ ctime()

virtual time_point stdex::stream::file::ctime ( ) const
inlinevirtual

Returns file creation time.

Reimplemented from stdex::stream::basic_file.

◆ exists() [1/2]

template<class TR = std::char_traits<schar_t>, class AX = std::allocator<schar_t>>
static bool stdex::stream::file::exists ( const std::basic_string< TR, AX > & filename)
inlinestatic

Checks if file/folder/symlink likely exists.

Parameters
[in]filenameFilename

◆ exists() [2/2]

static bool stdex::stream::file::exists ( const stdex::schar_t * filename)
inlinestatic

Checks if file/folder/symlink likely exists.

Parameters
[in]filenameFilename

◆ lock()

virtual void stdex::stream::file::lock ( fpos_t offset,
fsize_t length )
inlinevirtual

Locks file section for exclusive access.

Reimplemented from stdex::stream::basic_file.

◆ mtime()

virtual time_point stdex::stream::file::mtime ( ) const
inlinevirtual

Returns file modification time.

Reimplemented from stdex::stream::basic_file.

◆ open() [1/2]

void stdex::stream::file::open ( const schar_t * filename,
int mode )
inline

Opens file.

Parameters
[in]filenameFilename
[in]modeBitwise combination of mode_t flags

◆ open() [2/2]

template<class TR = std::char_traits<schar_t>, class AX = std::allocator<schar_t>>
void stdex::stream::file::open ( const std::basic_string< TR, AX > & filename,
int mode )
inline

Opens file.

Parameters
[in]filenameFilename
[in]modeBitwise combination of mode_t flags

◆ readonly() [1/2]

template<class TR = std::char_traits<schar_t>, class AX = std::allocator<schar_t>>
static bool stdex::stream::file::readonly ( const std::basic_string< TR, AX > & filename)
inlinestatic

Checks if file/folder/symlink is read-only.

For inexistent or inaccessible paths, writability is assumed.

Parameters
[in]filenameFilename

◆ readonly() [2/2]

static bool stdex::stream::file::readonly ( const stdex::schar_t * filename)
inlinestatic

Checks if file/folder/symlink is read-only.

For inexistent or inaccessible paths, writability is assumed.

Parameters
[in]filenameFilename

◆ seek()

virtual fpos_t stdex::stream::file::seek ( foff_t offset,
seek_t how = seek_t::beg )
inlinevirtual

Seeks to specified relative file position.

Returns
Absolute file position after seek, or fpos_max if seek failed.

Implements stdex::stream::basic_file.

◆ set_atime()

virtual void stdex::stream::file::set_atime ( time_point date)
inlinevirtual

Sets file access time.

Reimplemented from stdex::stream::basic_file.

◆ set_ctime()

virtual void stdex::stream::file::set_ctime ( time_point date)
inlinevirtual

Sets file create time.

Reimplemented from stdex::stream::basic_file.

◆ set_mtime()

virtual void stdex::stream::file::set_mtime ( time_point date)
inlinevirtual

Sets file modification time.

Reimplemented from stdex::stream::basic_file.

◆ size()

virtual fsize_t stdex::stream::file::size ( ) const
inlinevirtual

Returns file size Should the file size cannot be determined, the method returns fsize_max and it does not reset the state to failed.

Implements stdex::stream::basic_file.

◆ tell()

virtual fpos_t stdex::stream::file::tell ( ) const
inlinevirtual

Returns absolute file position in file or fpos_max if fails. This method does not update stream state.

Returns
Absolute file position or fpos_max if position cannot be determined.

Implements stdex::stream::basic_file.

◆ truncate()

virtual void stdex::stream::file::truncate ( )
inlinevirtual

Sets file size - truncates the remainder of file content from the current file position to the end of file.

Implements stdex::stream::basic_file.

◆ unlock()

virtual void stdex::stream::file::unlock ( fpos_t offset,
fsize_t length )
inlinevirtual

Unlocks file section for exclusive access.

Reimplemented from stdex::stream::basic_file.


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