GNU Octave  8.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
fstream Class Reference

#include "oct-fstrm.h"

Inheritance diagram for fstream:
Collaboration diagram for fstream:

Public Member Functions

 fstream (const fstream &)=delete
 
 fstream (const std::string &nm_arg, std::ios::openmode arg_md=std::ios::in|std::ios::out, mach_info::float_format flt_fmt=mach_info::native_float_format())
 
void close (void)
 
void do_close (void)
 
bool eof (void) const
 
std::string error (bool clear, int &err_num)
 
virtual int file_number (void) const
 
std::istream * input_stream (void)
 
bool is_open (void) const
 
std::string name (void) const
 
bool ok (void) const
 
fstreamoperator= (const fstream &)=delete
 
std::ostream * output_stream (void)
 
std::ostream * preferred_output_stream (void)
 
int seek (off_t offset, int origin)
 
off_t tell (void)
 

Static Public Member Functions

static stream create (const std::string &nm_arg, std::ios::openmode arg_md=std::ios::in|std::ios::out, mach_info::float_format flt_fmt=mach_info::native_float_format())
 

Protected Member Functions

 ~fstream (void)=default
 
OCTINTERP_API void clear (void)
 
OCTINTERP_API void clearerr (void)
 
std::string encoding (void) const
 
OCTINTERP_API void error (const std::string &msg)
 
OCTINTERP_API void error (const std::string &who, const std::string &msg)
 
mach_info::float_format float_format (void) const
 
int mode (void) const
 

Private Types

typedef string::deletable_facet< string::codecvt_u8 > convfacet_u8
 

Private Member Functions

OCTINTERP_API std::string do_gets (octave_idx_type max_len, bool &err, bool strip_newline, const std::string &who)
 
OCTINTERP_API int do_numeric_printf_conv (std::ostream &os, const printf_format_elt *elt, int nsa, int sa_1, int sa_2, const octave_value &val, const std::string &who)
 
OCTINTERP_API bool do_oscanf (const scanf_format_elt *elt, octave_value &, const std::string &who)
 
OCTINTERP_API int do_printf (printf_format_list &fmt_list, const octave_value_list &args, const std::string &who)
 
OCTINTERP_API octave_value do_scanf (scanf_format_list &fmt_list, octave_idx_type nr, octave_idx_type nc, bool one_elt_size_spec, octave_idx_type &count, const std::string &who)
 
OCTINTERP_API octave_value do_textscan (const std::string &fmt, octave_idx_type ntimes, const octave_value_list &options, const std::string &who, octave_idx_type &count)
 
OCTINTERP_API void field_width_error (const std::string &who) const
 
OCTINTERP_API int flush (void)
 
OCTINTERP_API std::string getl (octave_idx_type max_len, bool &err, const std::string &who)
 
OCTINTERP_API std::string gets (octave_idx_type max_len, bool &err, const std::string &who)
 
OCTINTERP_API void invalid_operation (const std::string &who, const char *rw)
 
OCTINTERP_API octave_value_list oscanf (const std::string &fmt, const std::string &who)
 
OCTINTERP_API int printf (const std::string &fmt, const octave_value_list &args, const std::string &who)
 
OCTINTERP_API int puts (const std::string &s, const std::string &who)
 
OCTINTERP_API octave_value scanf (const std::string &fmt, const Array< double > &size, octave_idx_type &count, const std::string &who)
 
OCTINTERP_API off_t skipl (off_t count, bool &err, const std::string &who)
 

Private Attributes

std::ostream * m_conv_ostream
 
std::string m_encoding
 
std::string m_errmsg
 
bool m_fail
 
mach_info::float_format m_flt_fmt
 
std::fstream m_fstream
 
int m_mode
 
std::string m_name
 
bool m_open_state
 

Detailed Description

Definition at line 38 of file oct-fstrm.h.

Member Typedef Documentation

◆ convfacet_u8

typedef string::deletable_facet<string::codecvt_u8> base_stream::convfacet_u8
privateinherited

Definition at line 215 of file oct-stream.h.

Constructor & Destructor Documentation

◆ fstream() [1/2]

fstream::fstream ( const std::string &  nm_arg,
std::ios::openmode  arg_md = std::ios::in | std::ios::out,
mach_info::float_format  flt_fmt = mach_info::native_float_format () 
)

Definition at line 45 of file oct-fstrm.cc.

References base_stream::error(), m_fstream, and m_name.

◆ fstream() [2/2]

fstream::fstream ( const fstream )
delete

◆ ~fstream()

fstream::~fstream ( void  )
protecteddefault

Member Function Documentation

◆ clear()

void base_stream::clear ( void  )
protectedinherited

Definition at line 4087 of file oct-stream.cc.

References base_stream::m_errmsg, and base_stream::m_fail.

Referenced by base_stream::error().

◆ clearerr()

void base_stream::clearerr ( void  )
protectedinherited

◆ close()

void base_stream::close ( void  )
inlineinherited

Definition at line 152 of file oct-stream.h.

References stream::is_open().

◆ create()

stream fstream::create ( const std::string &  nm_arg,
std::ios::openmode  arg_md = std::ios::in | std::ios::out,
mach_info::float_format  flt_fmt = mach_info::native_float_format () 
)
static

Definition at line 39 of file oct-fstrm.cc.

References base_stream::stream.

◆ do_close()

void fstream::do_close ( void  )
virtual

Reimplemented from base_stream.

Definition at line 87 of file oct-fstrm.cc.

References m_fstream.

◆ do_gets()

◆ do_numeric_printf_conv()

◆ do_oscanf()

◆ do_printf()

◆ do_scanf()

◆ do_textscan()

octave_value base_stream::do_textscan ( const std::string &  fmt,
octave_idx_type  ntimes,
const octave_value_list options,
const std::string &  who,
octave_idx_type count 
)
privateinherited

◆ encoding()

std::string base_stream::encoding ( void  ) const
inlineprotectedinherited

◆ eof()

bool fstream::eof ( void  ) const
virtual

Implements base_stream.

Definition at line 81 of file oct-fstrm.cc.

References m_fstream.

◆ error() [1/3]

◆ error() [2/3]

void base_stream::error ( const std::string &  msg)
protectedinherited

Definition at line 4073 of file oct-stream.cc.

References base_stream::m_errmsg, and base_stream::m_fail.

◆ error() [3/3]

void base_stream::error ( const std::string &  who,
const std::string &  msg 
)
protectedinherited

◆ field_width_error()

void base_stream::field_width_error ( const std::string &  who) const
privateinherited

Definition at line 5936 of file oct-stream.cc.

References base_stream::error(), and textscan_format_list::who.

Referenced by base_stream::do_printf().

◆ file_number()

◆ float_format()

mach_info::float_format base_stream::float_format ( void  ) const
inlineprotectedinherited

Definition at line 185 of file oct-stream.h.

◆ flush()

int base_stream::flush ( void  )
privateinherited

◆ getl()

std::string base_stream::getl ( octave_idx_type  max_len,
bool &  err,
const std::string &  who 
)
privateinherited

Definition at line 4214 of file oct-stream.cc.

References base_stream::do_gets(), and textscan_format_list::who.

◆ gets()

std::string base_stream::gets ( octave_idx_type  max_len,
bool &  err,
const std::string &  who 
)
privateinherited

Definition at line 4221 of file oct-stream.cc.

References base_stream::do_gets(), and textscan_format_list::who.

◆ input_stream()

std::istream * fstream::input_stream ( void  )
virtual

Reimplemented from base_stream.

Definition at line 93 of file oct-fstrm.cc.

References m_fstream, and base_stream::mode().

◆ invalid_operation()

void base_stream::invalid_operation ( const std::string &  who,
const char *  rw 
)
privateinherited

◆ is_open()

bool base_stream::is_open ( void  ) const
inlineinherited

Definition at line 148 of file oct-stream.h.

◆ mode()

int base_stream::mode ( void  ) const
inlineprotectedinherited

Definition at line 183 of file oct-stream.h.

Referenced by input_stream(), and output_stream().

◆ name()

std::string fstream::name ( void  ) const
inlinevirtual

Implements base_stream.

Definition at line 74 of file oct-fstrm.h.

◆ ok()

bool base_stream::ok ( void  ) const
inlineinherited

◆ operator=()

fstream& fstream::operator= ( const fstream )
delete

◆ oscanf()

◆ output_stream()

std::ostream * fstream::output_stream ( void  )
virtual

Reimplemented from base_stream.

Definition at line 104 of file oct-fstrm.cc.

References m_fstream, and base_stream::mode().

◆ preferred_output_stream()

std::ostream* base_stream::preferred_output_stream ( void  )
inlineinherited

◆ printf()

int base_stream::printf ( const std::string &  fmt,
const octave_value_list args,
const std::string &  who 
)
privateinherited

◆ puts()

int base_stream::puts ( const std::string &  s,
const std::string &  who 
)
privateinherited

◆ scanf()

octave_value base_stream::scanf ( const std::string &  fmt,
const Array< double > &  size,
octave_idx_type count,
const std::string &  who 
)
privateinherited

◆ seek()

int fstream::seek ( off_t  offset,
int  origin 
)
virtual

Implements base_stream.

Definition at line 59 of file oct-fstrm.cc.

References base_stream::error().

◆ skipl()

off_t base_stream::skipl ( off_t  count,
bool &  err,
const std::string &  who 
)
privateinherited

◆ tell()

off_t fstream::tell ( void  )
virtual

Implements base_stream.

Definition at line 70 of file oct-fstrm.cc.

References base_stream::error().

Member Data Documentation

◆ m_conv_ostream

std::ostream* base_stream::m_conv_ostream
privateinherited

Definition at line 225 of file oct-stream.h.

◆ m_encoding

std::string base_stream::m_encoding
privateinherited

Definition at line 212 of file oct-stream.h.

◆ m_errmsg

std::string base_stream::m_errmsg
privateinherited

Definition at line 234 of file oct-stream.h.

Referenced by base_stream::clear(), and base_stream::error().

◆ m_fail

bool base_stream::m_fail
privateinherited

Definition at line 228 of file oct-stream.h.

Referenced by base_stream::clear(), and base_stream::error().

◆ m_flt_fmt

mach_info::float_format base_stream::m_flt_fmt
privateinherited

Definition at line 209 of file oct-stream.h.

◆ m_fstream

std::fstream fstream::m_fstream
private

Definition at line 88 of file oct-fstrm.h.

Referenced by fstream(), do_close(), eof(), input_stream(), and output_stream().

◆ m_mode

int base_stream::m_mode
privateinherited

Definition at line 206 of file oct-stream.h.

◆ m_name

std::string fstream::m_name
private

Definition at line 86 of file oct-fstrm.h.

Referenced by fstream().

◆ m_open_state

bool base_stream::m_open_state
privateinherited

Definition at line 231 of file oct-stream.h.


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