-
Notifications
You must be signed in to change notification settings - Fork 0
/
Indexador.cpp
280 lines (255 loc) · 9.7 KB
/
Indexador.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
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
/************************************************************************
Indexador.cpp
**************************************************************************/
#include "Indexador.h"
#include "Motor.h"
// Constructors/Destructors
//
Indexador::Indexador ( string nombre, bool variablesAsociado ) {
this->variablesAsociado = variablesAsociado;
this->nombreArchivo = nombre;
this->maximoId = 0;
this->managerFijos = new ManagerFreeReg();
this->managerVariables = new ManagerFreeRegVars();
}
Indexador::~Indexador ( ) {
delete (this->managerVariables);
delete (this->managerFijos);
}
ManagerFreeReg* Indexador::getManagerLibresFijos(){
return this->managerFijos;
}
ManagerFreeRegVars* Indexador::getManagerLibresVariables(){
return this->managerVariables;
}
string Indexador::getNombre(){
return this->nombreArchivo;
}
string Indexador::getNombreVariableAsociado(){
string nombre = "";
if (this->variablesAsociado)
nombre = this->variablesAsociado ? ("nombre" + this->nombreArchivo) : this->nombreArchivo;
return nombre;
}
unsigned short int Indexador::proximoId() {
// utilizar si existe un id libre.
short int id = this->getManagerLibresFijos()->getLibre();
if(id >= 0) {
//this->siguienteId = id;
return id;
} else // sino, el siguiente id.
return this->maximoId++;
}
void Indexador::setMaximoId(unsigned short int id) {
this->maximoId = id;
}
void Indexador::setSiguienteId(unsigned short int id) {
if(id < this->maximoId) // id libre no usado
this->getManagerLibresFijos()->addLibre(id);
else
this->maximoId = id;
}
bool Indexador::reorganizarArchivoVariablesAsociado(){
ManagerFreeRegVars* managerVariables;
int pos;
fstream fileOld;
fstream fileNew;
char* bufferEstado = (char*)calloc(1,sizeof(char));
char* buffer = (char*)calloc(4,sizeof(char));
char* bufferNombre;
unsigned short int sizeSize = 4*sizeof(char);
unsigned short int sizeLibre = 4*sizeof(char);
unsigned short int sizeSiguiente = 4*sizeof(char);
unsigned short int sizeEstado = sizeof(char);
unsigned short int sizeNombre = 0;
string resultado;
string sEstado;
string sSize;
string sLibre;
string sSiguiente;
string sNombre;
string viejoNombreArchivo;
string nuevoNombreArchivo = "newnombre.dat";
Indexador* indexador;
indexador = Motor::getInstancia()->getAdministradorRecursos()->getIndexador(this->getNombreVariableAsociado());
viejoNombreArchivo = indexador->getNombreVariableAsociado();
managerVariables = indexador->getManagerLibresVariables();
indexador->getNombreVariableAsociado();
fileOld.open(viejoNombreArchivo.c_str(),ios::in | ios::out | ios::binary);
fileNew.open(nuevoNombreArchivo.c_str(), ios::in | ios::out | ios::binary);
if(!fileNew.good())
fileNew.open(nuevoNombreArchivo.c_str(), ios::in | ios::out | ios::trunc | ios::binary);
fileOld.seekg(0,ios::beg);
pos = fileOld.tellg();
fileOld.read(bufferEstado,sizeEstado);
sEstado.assign(bufferEstado,sizeEstado);
while(!fileOld.eof()){
//SE RECORRE EL ARCHIVO HASTA EL FIN DEL MISMO BUSCANDO TODOS LOS REGISTROS
//QUE ESTEN OCUPADOS GRABANDOLOS EN UN ARCHIVO NUEVO.
if(sEstado == "O"){
//LEO EL TAMAÑO DEL DATO VARIABLE (SUMA DE OCUPADOS + LIBRES)
fileOld.read(buffer,sizeSize);
sSize.assign(buffer,sizeSize);
sizeNombre = OperacionesBinarias::hexStringAShort(sSize);
fileOld.read(buffer,sizeLibre);
sLibre.assign(buffer,sizeLibre);
fileOld.read(buffer,sizeSiguiente);
sSiguiente.assign(buffer,sizeSiguiente);
sizeNombre = sizeNombre + OperacionesBinarias::hexStringAShort(sLibre);
bufferNombre = (char*)calloc(sizeNombre,sizeof(char));
fileOld.read(bufferNombre,sizeNombre*sizeof(char));
sNombre.assign(bufferNombre,sizeNombre*sizeof(char));
resultado.append(sEstado);
resultado.append(sSize);
resultado.append(sLibre);
resultado.append(sSiguiente);
resultado.append(sNombre);
fileNew.seekp(0,ios::end);
fileNew.write(resultado.c_str(),resultado.size());
resultado = "";
if(pos != 0)
fileOld.seekg(pos + sizeSize + sizeLibre + sizeSiguiente + sizeNombre);
else
fileOld.seekg(pos + sizeSize + sizeLibre + sizeSiguiente + sizeNombre + 1);
fileOld.read(bufferEstado,sizeEstado);
sEstado.assign(bufferEstado,sizeEstado);
free(bufferNombre);
if(!fileOld.eof()){
pos = fileOld.tellg();
}
}else{
while(sEstado == "L" && !fileOld.eof()){
fileOld.read(buffer,sizeSize);
sSize.assign(buffer,sizeSize);
sizeNombre = OperacionesBinarias::hexStringAShort(sSize);
fileOld.read(buffer,sizeLibre);
sLibre.assign(buffer,sizeLibre);
sizeNombre = sizeNombre + OperacionesBinarias::hexStringAShort(sLibre);
if(pos != 0)
fileOld.seekg(pos + sizeSize + sizeLibre + sizeSiguiente + sizeNombre);
else
fileOld.seekg(pos + sizeSize + sizeLibre + sizeSiguiente + sizeNombre + 1);
fileOld.read(bufferEstado,sizeEstado);
sEstado.assign(bufferEstado,sizeEstado);
//OBTENGO LA POSICION DEL SIGUIENTE REGISTRO
if(!fileOld.fail() && !fileOld.eof()){
pos = fileOld.tellg();
}
}//END WHILE
}//END IF-ELSE
}//END WHILE
managerVariables->eliminarListaLibres();
free(bufferEstado);
free(buffer);
fileOld.close();
fileNew.close();
remove(viejoNombreArchivo.c_str());
rename(nuevoNombreArchivo.c_str(),viejoNombreArchivo.c_str());
return true;
}
void Indexador::indexarLibres(){
this->crearDaoAsociada();
this->dao->levantarListaLibres();
this->liberarDao();
}
void Indexador::inicializar(){
this->crearDaoAsociada();
this->dao->inicializarVariables();
this->liberarDao();
}
void Indexador::liberar(){
this->crearDaoAsociada();
this->dao->protegerVariables();
this->liberarDao();
}
//private
void Indexador::crearDaoAsociada(){
if (this->nombreArchivo == DIRECTORIOS)
this->dao = new DirectorioDao();
else if (this->nombreArchivo == OCULTADOS)
this->dao = new TextoDao();
else if (this->nombreArchivo == IMAGENES)
this->dao = new ImagenDao();
else if (this->nombreArchivo == PARTICIONES)
this->dao = new ParticionDao();
}
/**
* Destruye la dao correspondiente
*/
void Indexador::liberarDao(){
delete this->dao;
}
/**
* Reorganizacion de los archivos de la estructura administrativa
*/
bool Indexador::reorganizarArchivoRegistro(double porcentage){
unsigned int tamanoArchivo = 0;
fstream fileOld;
fstream fileNew;
string viejoNombreArchivo = this->getNombre();
string nuevoNombreArchivo = viejoNombreArchivo + ".tmp";
bool reorganizar = false;
//calcular tamano archivo
fileOld.open(viejoNombreArchivo.c_str(),ios::in | ios::out | ios::binary);
if (fileOld.good() && !fileOld.eof() && fileOld.is_open()) {
fileOld.seekg(0, ios_base::beg);
ifstream::pos_type begin_pos = fileOld.tellg();
fileOld.seekg(0, ios_base::end);
tamanoArchivo = static_cast<int>(fileOld.tellg() - begin_pos);
} else fileOld.close();
if(tamanoArchivo > 0) {
// cantidad de registros persistidos
this->crearDaoAsociada();
int tamanoRegistro=this->dao->obtenerTamanoRegistro();
this->liberarDao();
int cantRegs = tamanoArchivo / tamanoRegistro;
int idMaximo = cantRegs -1; // ultimo registro del archivo
int idLibre;
int idUltimoLibre = -1;
list<int> libres = this->getManagerLibresFijos()->getLista();
bool continuar = (libres.size()>0);
// buscar el ultimo Id Libre
while(continuar) {
idLibre = libres.back();
libres.pop_back();
if(idMaximo == idLibre) idUltimoLibre = idMaximo;
continuar = ((idMaximo == idUltimoLibre) && (libres.size()>0));
if(continuar) idMaximo--;
}
if(idUltimoLibre >=0){
double porcentageLibre = idUltimoLibre*100/cantRegs;
porcentageLibre = 100 - porcentageLibre;
if(porcentageLibre >= porcentage) {
char* buffer = new char[tamanoRegistro];
fileNew.open(nuevoNombreArchivo.c_str(), ios::in | ios::out | ios::trunc | ios::binary);
if(fileNew.good())
{
reorganizar = true;
fileOld.seekg(0, ios::beg);
continuar=(!fileOld.eof() && fileOld.good());
while(continuar) {
fileOld.read(buffer, sizeof(buffer));
continuar = fileOld.good();
if(continuar) {
fileNew.write(buffer, sizeof(buffer));
continuar = fileNew.fail();
}
}
}
fileNew.close();
delete buffer;
}
}
fileOld.close();
if(reorganizar) {
remove(viejoNombreArchivo.c_str());
rename(nuevoNombreArchivo.c_str(),viejoNombreArchivo.c_str());
}
}
return reorganizar;
}
void Indexador::actualizarEncadenamientos(){
this->crearDaoAsociada();
dao->actualizarEncadenamiento();
this->liberarDao();
}