Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/io/basic fstream"

From cppreference.com
< cpp‎ | io
m (Update links.)
(Added example)
Line 56: Line 56:
 
{{cpp/io/basic_ios/inherit}}
 
{{cpp/io/basic_ios/inherit}}
 
{{cpp/io/ios_base/inherit}}
 
{{cpp/io/ios_base/inherit}}
 +
 +
===Example===
 +
{{example
 +
|code=
 +
#include <iostream>
 +
#include <fstream>
 +
#include <limits>
 +
#include <string>
 +
 +
struct Birthday { long day, month, year; };
 +
 +
class Entry {
 +
    std::string name;
 +
    Birthday bday;
 +
public:
 +
    Entry(std::string name_, long day_, long month_, long year_) :
 +
        name(name_), bday({day_, month_, year_}) {}
 +
    void printToStdOut() {
 +
        std::cout << name << ' ' << bday.day << '/' << bday.month << '/'
 +
                  << bday.year << '\n';
 +
    }
 +
    //name and bday are private so we must make << and >> friends of the class
 +
    friend std::ostream &operator<<(std::ostream &, Entry &);
 +
    friend std::istream &operator>>(std::istream &, Entry &);
 +
};
 +
 +
std::ostream &operator<<(std::ostream &strm, Entry &e) {
 +
    //Since the length of e.name is not necessarily known at compile time, we
 +
    // can't simply use: strm.write(reinterpret_cast<char*>(&e), sizeof e);
 +
    unsigned int length = e.name.length();
 +
    strm.write(reinterpret_cast<char*>(&length), sizeof length);
 +
    strm.write(&e.name[0], length);
 +
    strm.write(reinterpret_cast<char*>(&e.bday), sizeof e.bday);
 +
    return strm;
 +
}
 +
 +
std::istream &operator>>(std::istream &strm, Entry &e) {
 +
    unsigned int length;
 +
    strm.read(reinterpret_cast<char*>(&length), sizeof length);
 +
    e.name.resize(length);
 +
    strm.read(&e.name[0], length);
 +
    strm.read(reinterpret_cast<char*>(&e.bday), sizeof e.bday);
 +
    return strm;
 +
}
 +
 +
int main() {
 +
    Entry e("Alpha", 1, 1, -13820000000);
 +
    e.printToStdOut();
 +
   
 +
    std::string filename = "Test.b";
 +
    std::ofstream ostrm;
 +
    //Open the file or else create it
 +
    ostrm.open(filename, std::fstream::binary);
 +
    if(!ostrm.is_open()) {
 +
        ostrm.clear();
 +
        ostrm.open(filename, std::fstream::out);  //Create the file
 +
        ostrm.close();
 +
        ostrm.open(filename, std::fstream::binary);
 +
        if(!ostrm.good())
 +
            return 1;
 +
    }
 +
   
 +
    //write the Entry e to the file
 +
    ostrm << e;
 +
    ostrm.close();
 +
   
 +
    Entry e_recovered("Omega", 31, 12, std::numeric_limits<long>::max());
 +
    e_recovered.printToStdOut();
 +
 +
    //Open the file for reading
 +
    std::ifstream istrm;
 +
    istrm.open(filename, std::fstream::binary);
 +
    if(!istrm.good())
 +
        return 1;
 +
 +
    //overwrite e_recovered with the values from istrm
 +
    istrm >> e_recovered;
 +
    istrm.close();
 +
   
 +
    e_recovered.printToStdOut();
 +
    return 0;
 +
}
 +
|output=
 +
Alpha 1/1/-13820000000
 +
Omega 31/12/9223372036854775807
 +
Alpha 1/1/-13820000000
 +
}}
  
 
[[de:cpp/io/basic fstream]]
 
[[de:cpp/io/basic fstream]]

Revision as of 09:29, 22 February 2017

 
 
 
 
Defined in header <fstream>
template<

    class CharT,
    class Traits = std::char_traits<CharT>

> class basic_fstream : public std::basic_iostream<CharT, Traits>

The class template basic_fstream implements high-level input/output operations on file based streams. It interfaces a file-based streambuffer (std::basic_filebuf) with the high-level interface of (std::basic_iostream).

A typical implementation of std::basic_fstream holds only one non-derived data member: an instance of std::basic_filebuf<CharT, Traits>.

cpp/io/ios basecpp/io/basic ioscpp/io/basic istreamcpp/io/basic ostreamcpp/io/basic iostreamstd-basic fstream-inheritance.svg

Inheritance diagram

Two specializations for common character types are also defined:

Defined in header <fstream>
Type Definition
fstream basic_fstream<char>
wfstream basic_fstream<wchar_t>

Contents

Member types

Member type Definition
char_type CharT[edit]
traits_type Traits; the program is ill-formed if Traits::char_type is not CharT.[edit]
int_type Traits::int_type[edit]
pos_type Traits::pos_type[edit]
off_type Traits::off_type[edit]

Member functions

constructs the file stream
(public member function) [edit]
(destructor)
[virtual] (implicitly declared)
destructs the basic_fstream and the associated buffer, closes the file
(virtual public member function) [edit]
(C++11)
moves the file stream
(public member function) [edit]
(C++11)
swaps two file streams
(public member function) [edit]
returns the underlying raw file device object
(public member function) [edit]
File operations
checks if the stream has an associated file
(public member function) [edit]
opens a file and associates it with the stream
(public member function) [edit]
closes the associated file
(public member function) [edit]

Non-member functions

specializes the std::swap algorithm
(function template) [edit]

Inherited from std::basic_istream

Member functions

Formatted input
extracts formatted data
(public member function of std::basic_istream<CharT,Traits>) [edit]
Unformatted input
extracts characters
(public member function of std::basic_istream<CharT,Traits>) [edit]
reads the next character without extracting it
(public member function of std::basic_istream<CharT,Traits>) [edit]
unextracts a character
(public member function of std::basic_istream<CharT,Traits>) [edit]
puts a character into input stream
(public member function of std::basic_istream<CharT,Traits>) [edit]
extracts characters until the given character is found
(public member function of std::basic_istream<CharT,Traits>) [edit]
extracts and discards characters until the given character is found
(public member function of std::basic_istream<CharT,Traits>) [edit]
extracts blocks of characters
(public member function of std::basic_istream<CharT,Traits>) [edit]
extracts already available blocks of characters
(public member function of std::basic_istream<CharT,Traits>) [edit]
returns number of characters extracted by last unformatted input operation
(public member function of std::basic_istream<CharT,Traits>) [edit]
Positioning
returns the input position indicator
(public member function of std::basic_istream<CharT,Traits>) [edit]
sets the input position indicator
(public member function of std::basic_istream<CharT,Traits>) [edit]
Miscellaneous
synchronizes with the underlying storage device
(public member function of std::basic_istream<CharT,Traits>) [edit]

Member classes

implements basic logic for preparation of the stream for input operations
(public member class of std::basic_istream<CharT,Traits>) [edit]

Inherited from std::basic_ostream

Member functions

Formatted output
inserts formatted data
(public member function of std::basic_ostream<CharT,Traits>) [edit]
Unformatted output
inserts a character
(public member function of std::basic_ostream<CharT,Traits>) [edit]
inserts blocks of characters
(public member function of std::basic_ostream<CharT,Traits>) [edit]
Positioning
returns the output position indicator
(public member function of std::basic_ostream<CharT,Traits>) [edit]
sets the output position indicator
(public member function of std::basic_ostream<CharT,Traits>) [edit]
Miscellaneous
synchronizes with the underlying storage device
(public member function of std::basic_ostream<CharT,Traits>) [edit]

Member classes

implements basic logic for preparation of the stream for output operations
(public member class of std::basic_ostream<CharT,Traits>) [edit]

Inherited from std::basic_ios

Member types

Member type Definition
char_type CharT
traits_type Traits
int_type Traits::int_type
pos_type Traits::pos_type
off_type Traits::off_type

Member functions

State functions
checks if no error has occurred i.e. I/O operations are available
(public member function of std::basic_ios<CharT,Traits>) [edit]
checks if end-of-file has been reached
(public member function of std::basic_ios<CharT,Traits>) [edit]
checks if an error has occurred
(public member function of std::basic_ios<CharT,Traits>) [edit]
checks if a non-recoverable error has occurred
(public member function of std::basic_ios<CharT,Traits>) [edit]
checks if an error has occurred (synonym of fail())
(public member function of std::basic_ios<CharT,Traits>) [edit]
checks if no error has occurred (synonym of !fail())
(public member function of std::basic_ios<CharT,Traits>) [edit]
returns state flags
(public member function of std::basic_ios<CharT,Traits>) [edit]
sets state flags
(public member function of std::basic_ios<CharT,Traits>) [edit]
modifies state flags
(public member function of std::basic_ios<CharT,Traits>) [edit]
Formatting
copies formatting information
(public member function of std::basic_ios<CharT,Traits>) [edit]
manages the fill character
(public member function of std::basic_ios<CharT,Traits>) [edit]
Miscellaneous
manages exception mask
(public member function of std::basic_ios<CharT,Traits>) [edit]
sets the locale
(public member function of std::basic_ios<CharT,Traits>) [edit]
manages associated stream buffer
(public member function of std::basic_ios<CharT,Traits>) [edit]
manages tied stream
(public member function of std::basic_ios<CharT,Traits>) [edit]
narrows characters
(public member function of std::basic_ios<CharT,Traits>) [edit]
widens characters
(public member function of std::basic_ios<CharT,Traits>) [edit]

Inherited from std::ios_base

Member functions

Formatting
manages format flags
(public member function of std::ios_base) [edit]
sets specific format flag
(public member function of std::ios_base) [edit]
clears specific format flag
(public member function of std::ios_base) [edit]
manages decimal precision of floating point operations
(public member function of std::ios_base) [edit]
manages field width
(public member function of std::ios_base) [edit]
Locales
sets locale
(public member function of std::ios_base) [edit]
returns current locale
(public member function of std::ios_base) [edit]
Internal extensible array
[static]
returns a program-wide unique integer that is safe to use as index to pword() and iword()
(public static member function of std::ios_base) [edit]
resizes the private storage if necessary and access to the long element at the given index
(public member function of std::ios_base) [edit]
resizes the private storage if necessary and access to the void* element at the given index
(public member function of std::ios_base) [edit]
Miscellaneous
registers event callback function
(public member function of std::ios_base) [edit]
sets whether C++ and C I/O libraries are interoperable
(public static member function of std::ios_base) [edit]
Member classes
stream exception
(public member class of std::ios_base) [edit]
initializes standard stream objects
(public member class of std::ios_base) [edit]

Member types and constants

Type Explanation
stream open mode type

The following constants are also defined:

Constant Explanation[edit]
app seek to the end of stream before each write[edit]
binary open in binary mode[edit]
in open for reading[edit]
out open for writing[edit]
trunc discard the contents of the stream when opening[edit]
ate seek to the end of stream immediately after open[edit]
noreplace (C++23) open in exclusive mode[edit]

(typedef) [edit]
formatting flags type

The following constants are also defined:

Constant Explanation[edit]
dec use decimal base for integer I/O: see std::dec[edit]
oct use octal base for integer I/O: see std::oct[edit]
hex use hexadecimal base for integer I/O: see std::hex[edit]
basefield dec | oct | hex. Useful for masking operations[edit]
left left adjustment (adds fill characters to the right): see std::left[edit]
right right adjustment (adds fill characters to the left): see std::right[edit]
internal internal adjustment (adds fill characters to the internal designated point): see std::internal[edit]
adjustfield left | right | internal. Useful for masking operations[edit]
scientific generate floating point types using scientific notation, or hex notation if combined with fixed: see std::scientific[edit]
fixed generate floating point types using fixed notation, or hex notation if combined with scientific: see std::fixed[edit]
floatfield scientific | fixed. Useful for masking operations[edit]
boolalpha insert and extract bool type in alphanumeric format: see std::boolalpha[edit]
showbase generate a prefix indicating the numeric base for integer output, require the currency indicator in monetary I/O: see std::showbase[edit]
showpoint generate a decimal-point character unconditionally for floating-point number output: see std::showpoint[edit]
showpos generate a + character for non-negative numeric output: see std::showpos[edit]
skipws skip leading whitespace before certain input operations: see std::skipws[edit]
unitbuf flush the output after each output operation: see std::unitbuf[edit]
uppercase replace certain lowercase letters with their uppercase
equivalents in certain output operations: see std::uppercase[edit]

(typedef) [edit]
state of the stream type

The following constants are also defined:

Constant Explanation[edit]
goodbit no error[edit]
badbit irrecoverable stream error[edit]
failbit input/output operation failed (formatting or extraction error)[edit]
eofbit associated input sequence has reached end-of-file[edit]

(typedef) [edit]
seeking direction type

The following constants are also defined:

Constant Explanation[edit]
beg the beginning of a stream[edit]
end the ending of a stream[edit]
cur the current position of stream position indicator[edit]

(typedef) [edit]
specifies event type
(enum) [edit]
callback function type
(typedef) [edit]

Example

#include <iostream>
#include <fstream>
#include <limits>
#include <string>
 
struct Birthday { long day, month, year; };
 
class Entry {
    std::string name;
    Birthday bday;
public:
    Entry(std::string name_, long day_, long month_, long year_) : 
        name(name_), bday({day_, month_, year_}) {}
    void printToStdOut() { 
        std::cout << name << ' ' << bday.day << '/' << bday.month << '/'
                  << bday.year << '\n';
    }
    //name and bday are private so we must make << and >> friends of the class
    friend std::ostream &operator<<(std::ostream &, Entry &);
    friend std::istream &operator>>(std::istream &, Entry &);
};
 
std::ostream &operator<<(std::ostream &strm, Entry &e) {
    //Since the length of e.name is not necessarily known at compile time, we
    // can't simply use: strm.write(reinterpret_cast<char*>(&e), sizeof e);
    unsigned int length = e.name.length();
    strm.write(reinterpret_cast<char*>(&length), sizeof length);
    strm.write(&e.name[0], length);
    strm.write(reinterpret_cast<char*>(&e.bday), sizeof e.bday);
    return strm;
}
 
std::istream &operator>>(std::istream &strm, Entry &e) {
    unsigned int length;
    strm.read(reinterpret_cast<char*>(&length), sizeof length);
    e.name.resize(length);
    strm.read(&e.name[0], length);
    strm.read(reinterpret_cast<char*>(&e.bday), sizeof e.bday);
    return strm;
}
 
int main() {
    Entry e("Alpha", 1, 1, -13820000000);
    e.printToStdOut();
 
    std::string filename = "Test.b";
    std::ofstream ostrm;
    //Open the file or else create it
    ostrm.open(filename, std::fstream::binary);
    if(!ostrm.is_open()) {
        ostrm.clear();
        ostrm.open(filename, std::fstream::out);  //Create the file
        ostrm.close();
        ostrm.open(filename, std::fstream::binary);
        if(!ostrm.good())
            return 1;
    }
 
    //write the Entry e to the file
    ostrm << e;
    ostrm.close();
 
    Entry e_recovered("Omega", 31, 12, std::numeric_limits<long>::max());
    e_recovered.printToStdOut();
 
    //Open the file for reading
    std::ifstream istrm;
    istrm.open(filename, std::fstream::binary);
    if(!istrm.good())
        return 1;
 
    //overwrite e_recovered with the values from istrm
    istrm >> e_recovered;
    istrm.close();
 
    e_recovered.printToStdOut();
    return 0;
}

Output:

Alpha 1/1/-13820000000
Omega 31/12/9223372036854775807
Alpha 1/1/-13820000000