-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile.cc
336 lines (214 loc) · 6.43 KB
/
file.cc
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
/* Univerdidad:Universidad de La Laguna.
Grado: Grado de ingeniería informática.
Asignatura: Asignatura Sistemas Operativos (SSOO).
Autor: Alejandro Lugo Fumero.
Correo: [email protected]
Práctica nº: 2
Comentario: Este programa mediante un socket envía la información de un .txt
a otro socket guardando el mensaje en otro .txt.
Compilar: g++ -g -pthread -o Netcp file.cc netcp.cc socket.cc
Ejecutar: ./Netcp 'port' 'ip_address'
*/
#include "file.h"
File::File () {
file_ = -1;
actual_position_ = -1;
size_ = -1;
end_ = false;
read_ = false;
}
File::File (const File& A) {
file_ = A.getFile();
actual_position_ = A.getActualPosition();
size_ = A.getSize();
memory_region_ = A.getMemoryRegion();
end_ = A.getEnd();
read_ = A.getRead();
md5_archive_ = A.getMd5();
archive_ = A.getArchive();
}
File::File (const std::string& archive, int flags, int size) {
Make (archive, flags, size);
}
void
File::Make (const std::string& archive, int flags, int size) {
// Convertimos el string a char*.
char pathname[archive.size()] ;
strcpy(pathname, archive.c_str());
// Abrimos el fichero.
file_ = open (pathname, flags);
if (file_ < 0)
throw std::system_error(errno, std::system_category(), "No se pudo abrir "
"el archivo, compruebe el nombre y vuelva a intentar");
// Si size==0 significa que el archivo se va a mapear para lectura y ya tiene.
// un tamaño de base.
if (size == 0) {
size_ = lseek (file_, 0, SEEK_END);
memory_region_ = (char*)mmap(NULL, size_, PROT_READ, MAP_SHARED, file_,0);
if (memory_region_ == MAP_FAILED)
throw std::system_error(errno, std::system_category(), "No se ha podido"
" mapear el archivo en memoria");
}
// En el caso contrario tendremos que cambiar el tamaño del archivo que hemos
// creado (ya que de base es 0 el tamaño) y lo mapeamos para escritura.
else {
size_ = size;
if (ftruncate (file_, size_) == -1)
throw std::system_error(errno, std::system_category(), "No se ha podido"
" cambiar el tamaño del archivo antes de mapearlo en memoria.");
memory_region_ = (char*)mmap(NULL, size_, PROT_WRITE, MAP_SHARED, file_,0);
if (memory_region_ == MAP_FAILED)
throw std::system_error(errno, std::system_category(), "No se ha podido"
" mapear el archivo en memoria");
// Bloqueamos el archivo.
if (lockf(file_, F_LOCK, 0) == -1)
throw std::system_error(errno, std::system_category(), "No se ha podido"
" bloquear el acceso al archivo");
read_ = true;
}
actual_position_ = 0;
end_ = false;
}
File::File (const std::string& archive, int flags, mode_t mode, int size) {
MakeMode (archive, flags, mode, size);
}
void
File::MakeMode (const std::string& archive, int flags, mode_t mode, int size) {
// Convertimos el string a char*.
char pathname[archive.size()] ;
strcpy(pathname, archive.c_str());
// Abrimos el fichero.
file_ = open (pathname, flags, mode);
if (file_ < 0)
throw std::system_error(errno, std::system_category(), "No se pudo abrir "
"el archivo");
// Si size==0 significa que el archivo se va a mapear para lectura y ya tiene.
// un tamaño de base.
if (size == 0) {
size_ = lseek (file_, 0, SEEK_END);
memory_region_ = (char*)mmap(NULL, size_, PROT_READ, MAP_SHARED, file_,0);
if (memory_region_ == MAP_FAILED)
throw std::system_error(errno, std::system_category(), "No se ha podido"
" mapear el archivo en memoria");
}
// En el caso contrario tendremos que cambiar el tamaño del archivo que hemos
// creado (ya que de base es 0 el tamaño) y lo mapeamos para escritura.
else {
size_ = size;
if (ftruncate (file_, size_) == -1)
throw std::system_error(errno, std::system_category(), "No se ha podido"
" cambiar el tamaño del archivo antes de mapearlo en memoria.");
memory_region_ = (char*)mmap(NULL, size_, PROT_WRITE, MAP_SHARED, file_,0);
if (memory_region_ == MAP_FAILED)
throw std::system_error(errno, std::system_category(), "No se ha podido"
" mapear el archivo en memoria");
// Bloqueamos el archivo.
if (lockf(file_, F_LOCK, 0) == -1)
throw std::system_error(errno, std::system_category(), "No se ha podido"
" bloquear el acceso al archivo");
read_ = true;
}
actual_position_ = 0;
end_ = false;
}
File::~File(){
if (read_)
lockf(file_, F_ULOCK, 0);
munmap(memory_region_,size_);
close(file_);
}
std::string
File::getSize() {
std::string value = std::to_string(size_);
return value;
}
std::string
File::getMd5() {
return md5_archive_;
}
std::string
File::getNumberOfSend() {
return number_of_send_;
}
std::string
File::getArchive() {
return archive_;
}
void
File::setMd5 (std::string& md5_archive) {
md5_archive_ = md5_archive;
}
void
File::setNumberOfSend (std::string& number_of_send) {
number_of_send_ = number_of_send;
}
void
File::setArchive (std::string& archive) {
archive_ = archive;
}
// Pasamos los datos del archivo mapeado en memoria a nuestro array
void
File::WriteArray (std::array<char, 1024>& text) {
for (int travel = 0; travel < 1023; travel++) {
if (actual_position_ < size_) {
text[travel] = memory_region_[actual_position_];
actual_position_++;
}
}
if (actual_position_ == size_)
end_ = true;
}
// Pasamos los datos del array a nuestro archivo mapeado en memoria.
void
File::PrintArray (std::array<char, 1024>& text) {
for (int travel = 0; travel < 1024; travel++) {
if (text[travel] != '\0') {
memory_region_[actual_position_] = text[travel];
actual_position_++;
}
}
if (actual_position_ == size_)
end_ = true;
}
// Bool que devuelve true si hemos llegado al final del archivo.
bool
File::getEnd () {
return end_;
}
const int&
File::getFile () const {
return file_;
}
const int&
File::getActualPosition () const {
return actual_position_;
}
const int&
File::getSize () const {
return size_;
}
char*
File::getMemoryRegion () const {
return memory_region_;
}
const bool&
File::getEnd () const {
return end_;
}
const bool&
File::getRead () const {
return read_;
}
const std::string
File::getMd5 () const {
return md5_archive_;
}
const std::string
File::getArchive() const {
return archive_;
}
File
File::operator= (File& A) {
File copy(A);
return A;
}