-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile_reader.cpp
55 lines (44 loc) · 1.15 KB
/
file_reader.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//
// Created by gosha on 10/26/2021.
//
#include "headers/file_reader.h"
#include <fstream>
#include <cassert>
#include <cstddef>
#include <iostream>
File_Reader::File_Reader(const char *fn) : file_name(fn) {
fin.open(file_name, std::ios::in);
assert(fin.is_open() && "File opening failure!");
}
File_Reader::~File_Reader() {
fin.close();
}
bool File_Reader::float_reading(float &f_out) {
if (fin >> f_out) {
return true;
}
std::cout << "Unable to read a floating point number, possibly incomplete data or data type mismatch.\n";
return false;
}
bool File_Reader::sizet_reading(std::size_t &s_out) {
if (fin >> s_out) {
return true;
}
std::cout << "Unable to read a size_t data, possibly incomplete data or data type mismatch.\n";
return false;
}
bool File_Reader::char_reading(char &c_out) {
if (fin >> c_out) {
return true;
}
return false;
}
bool File_Reader::string_reading(std::string &s_out) {
if (!std::getline(fin, s_out)) { //just reading '\n' symbol before line
return false;
}
if (std::getline(fin, s_out)) {
return true;
}
return false;
}