-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain (19).cpp
185 lines (146 loc) · 5 KB
/
main (19).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
176
177
178
179
180
181
182
183
184
#include <iostream>
#include <sstream>
#include <fstream>
#include <vector>
#include <stdexcept>
#include <string> // Include this header for string manipulation
using namespace std;
int registroCount;
class Fecha {
public:
Fecha(int year, int month, int day) : year(year), month(month), day(day) {}
// Getters for year, month, and day
int getYear() const { return year; }
int getMonth() const { return month; }
int getDay() const { return day; }
// Comparison operators for Fecha objects
bool operator<(const Fecha& other) const {
if (year != other.year) return year < other.year;
if (month != other.month) return month < other.month;
return day < other.day;
}
bool operator>(const Fecha& other) const {
return other < *this;
}
bool operator<=(const Fecha& other) const {
return !(other < *this);
}
bool operator>=(const Fecha& other) const {
return !(*this < other);
}
bool operator==(const Fecha& other) const {
return year == other.year && month == other.month && day == other.day;
}
private:
int year;
int month;
int day;
};
class BitacoraLinea {
public:
// Constructor predeterminado sin argumentos
BitacoraLinea() = default;
BitacoraLinea(const string& fecha, const string& hora, const string& ipOrigen,
int puertoOrigen, const string& nombreOrigen, const string& ipDestino,
int puertoDestino, const string& nombreDestino)
: fecha(fecha), hora(hora), ipOrigen(ipOrigen), puertoOrigen(puertoOrigen),
nombreOrigen(nombreOrigen), ipDestino(ipDestino), puertoDestino(puertoDestino),
nombreDestino(nombreDestino) {
}
// Métodos para obtener los campos de la línea de bitácora
string getFecha() const { return fecha; }
string getHora() const { return hora; }
string getIPOrigen() const { return ipOrigen; }
int getPuertoOrigen() const { return puertoOrigen; }
string getNombreOrigen() const { return nombreOrigen; }
string getIPDestino() const { return ipDestino; }
int getPuertoDestino() const { return puertoDestino; }
string getNombreDestino() const { return nombreDestino; }
private:
string fecha;
string hora;
string ipOrigen;
int puertoOrigen;
string nombreOrigen;
string ipDestino;
int puertoDestino;
string nombreDestino;
};
// Forward declaration of parseFecha
Fecha parseFecha(const string& fechaStr);
template <class T>
class Ordenamiento {
public:
static vector<T> insercion(vector<T> e, bool (*compara)(T, T)) {
T index;
int n = (int)e.size();
for (int i = 1; i < n; i++) {
index = e[i];
int j = i - 1;
while (j >= 0 && compara(index, e[j])) {
e[j + 1] = e[j];
j--;
}
e[j + 1] = index;
}
return e;
}
};
// Función de comparación para ordenar BitacoraLinea por fecha
bool comparaPorFecha(BitacoraLinea a, BitacoraLinea b) {
Fecha fechaA(parseFecha(a.getFecha()));
Fecha fechaB(parseFecha(b.getFecha()));
return fechaA < fechaB;
}
// Definition of parseFecha function
Fecha parseFecha(const string& fechaStr) {
int year, month, day;
char dash;
stringstream ss(fechaStr);
ss >> year >> dash >> month >> dash >> day;
return Fecha(year, month, day);
}
vector<BitacoraLinea> read_csv_bitacora(const string& filename) {
vector<BitacoraLinea> bitacora;
ifstream file(filename);
if (!file.is_open()) {
throw runtime_error("No se puede abrir el archivo");
}
string linea;
registroCount = 0;
while (getline(file, linea)) {
stringstream ss(linea);
string fecha, hora, ipOrigen, nombreOrigen, ipDestino, nombreDestino;
int puertoOrigen, puertoDestino;
getline(ss, fecha, ',');
getline(ss, hora, ',');
getline(ss, ipOrigen, ',');
ss >> puertoOrigen;
ss.ignore();
getline(ss, nombreOrigen, ',');
getline(ss, ipDestino, ',');
ss >> puertoDestino;
ss.ignore();
getline(ss, nombreDestino, ',');
bitacora.emplace_back(fecha, hora, ipOrigen, puertoOrigen, nombreOrigen, ipDestino, puertoDestino, nombreDestino);
registroCount++;
}
file.close();
return bitacora;
}
int main() {
string filename = "equipo13.csv";
try {
//int registroCount;
vector<BitacoraLinea> bitacora = read_csv_bitacora(filename);
// Ordena el vector de bitácora por fecha utilizando la función de ordenamiento
bitacora = Ordenamiento<BitacoraLinea>::insercion(bitacora, comparaPorFecha);
/* for (const BitacoraLinea& linea : bitacora) {
cout << "Fecha: " << linea.getFecha() << ", Hora: " << linea.getHora() << endl;
}*/
cout << "Número de registros en el archivo: " << registroCount << endl;
} catch (const exception& e) {
cerr << "Error: " << e.what() << endl;
}
return 0;
};