-
Notifications
You must be signed in to change notification settings - Fork 3
/
data_form.cpp
175 lines (152 loc) · 5.06 KB
/
data_form.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
#include "data_form.h"
std::ostream& operator<<(std::ostream& os, const DATA& data) {
os << data.cid << ";" << data.time << ";" << data.value << "\n";
return os;
}
std::istream& operator>>(std::istream& is, DATA& data) {
char buffer_char;
is >> data.cid >> buffer_char >> data.time >> buffer_char >> data.value;
return is;
}
void DATA::operator=(const DATA& data) {
this->cid = data.cid;
this->time = data.time;
this->value = data.value;
}
DATA::DATA() {
this->cid = __int8();
this->time = unsigned int();
this->value = float();
}
DATA::DATA(__int8 cid, unsigned int time, double value) {
this->cid = cid;
this->time = time;
this->value = value;
}
DataVector::DataVector() { //обычный конструктор
array = new DATA[1];
capacity = 1;
this->size_ = 0;
}
DataVector::DataVector(std::string FileName) { //конструктор, в помощью которого можно сразу выделить память под файл
size_t size_of_file = MemFromFile(FileName);
array = new DATA[size_of_file];
capacity = size_of_file;
this->size_ = 0;
}
DataVector::DataVector(size_t size_of) { //конструктор, в помощью которого можно сразу выделить память под необходимое количество элементов
array = new DATA[size_of];
capacity = size_of;
this->size_ = 0;
}
void DataVector::MemAddForFile(std::string FileName) {//выделение памяти под файл как метод класса
delete[] array;
size_ = 0;
size_t size_of_file = MemFromFile(FileName);
array = new DATA[size_of_file];
capacity = size_of_file;
}
void DataVector::MemAdd() {//выделение доп памяти при обычной работе
capacity *= 2;
DATA* tmp = array;
array = new DATA[capacity];
for (size_t i = 0; i < size_; ++i)
array[i] = tmp[i];
delete[] tmp;
}
void DataVector::MemNAdd(size_t add_size) {//выделение доп памяти обозначенного объёма при обычной работе
capacity += add_size;
DATA* tmp = array;
array = new DATA[capacity];
for (size_t i = 0; i < size_; ++i)
array[i] = tmp[i];
delete[] tmp;
}
int DataVector::MemFromFile(std::string FileName) { // метод который считывает количество переходов на новую строку и возвращает их количество+1 для выделения памяти
std::ifstream DATAFile(FileName, std::ios::binary);
if (DATAFile.is_open())
{
char buf_symb;
while (DATAFile.get(buf_symb)) {//идея следующая: из потока считываются символы, после чего передаются в отдельную функцию, где считается количество
if (buf_symb == '\r' || buf_symb == '\n')
return get_by_buff(DATAFile, buf_symb);
}
}
std::cerr << "Error stream not found, or not have separators in file\n"; // вывод ошибки на всякий случай
std::exit(1);
}
size_t DataVector::get_by_buff(std::ifstream& DATAFile, char buf_symb) {// здесь просто считываются символы и выводится их число, символ разделителя зависит от того, какой передали
DATAFile.seekg(0);
size_t PAR = 1;
std::string symb;
while (getline(DATAFile, symb, buf_symb))
PAR++;
DATAFile.close();
return PAR;
}
void DataVector::push_back(const DATA& value) { // добавление в конец
if (size_ >= capacity) MemAdd();
array[size_++] = value;
}
DATA& DataVector::operator[](size_t index) { // операция получения по индексу
if (index < size_)
return array[index];
else {
std::cerr << "Error dont have in massive DATA[" << index << "]\n";
std::exit(1);
}
}
void DataVector::inc_size() {
this->size_++;
if (size_ >= capacity)
MemAdd();
}
size_t DataVector::size() {
return this->size_;
}
void DataVector::resize(size_t new_size) {
while (new_size > this->capacity) MemAdd();
if (new_size > this->size_) {
for (size_t i = this->size_; i < new_size; i++)
this->array[i] = DATA();
}
this->size_ = new_size;
}
size_t DataVector::count_distance() {
return this->array[2].time - this->array[1].time;
}
void DataVector::clear() {
delete[] array;
size_ = 0;
array = new DATA[capacity];
}
DataVector& DataVector::operator=(DataVector& other) {
if (this != &other) {
delete[] array;
array = new DATA[other.capacity];
for (size_t i = 0; i < other.size_; ++i) array[i] = other.array[i];
size_ = other.size_;
capacity = other.capacity;
}
return *this;
}
DataVector::~DataVector() {
delete[] array;
}
void load_data(DataVector& data, string file_name) {
std::ifstream work_file;
work_file.open(file_name);
DATA temp_datum;
for (int i = 0; !work_file.eof(); i++) {
work_file >> temp_datum;
data.inc_size();
data[i] = temp_datum;
}
}
void dump_data(DataVector& data, string file_name) {
std::ofstream result_file;
result_file.open(file_name);
for (int i = 0; i < data.size(); i++)
result_file << data[i];
result_file.close();
}