1 /* vim: set noexpandtab tabstop=4 shiftwidth=4 wrap:
2 *----------------------------------------------------------------------------
4 *----------------------------------------------------------------------------
5 * This file is part of emufs.
7 * emufs is free software; you can redistribute it and/or modify it under the
8 * terms of the GNU General Public License as published by the Free Software
9 * Foundation; either version 2 of the License, or (at your option) any later
12 * emufs is distributed in the hope that it will be useful, but WITHOUT ANY
13 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 * You should have received a copy of the GNU General Public License along
18 * with emufs; if not, write to the Free Software Foundation, Inc., 59 Temple
19 * Place, Suite 330, Boston, MA 02111-1307 USA
20 *----------------------------------------------------------------------------
21 * Creado: vie abr 9 16:47:32 ART 2004
22 * Autores: Leandro Lucarella <llucare@fi.uba.ar>
23 *----------------------------------------------------------------------------
31 * Archivo con bloque de longitud parametrizada, registro de longitud variable.
33 * Implementación del archivo con bloques de longitud parametrizada y registros
34 * de longitud variable.
48 # define MIN(x, y) (((x) > (y)) ? (y) : (x))
51 /*------------------ Declaraciones privadas ----------------------*/
53 /** Cabecera de un registro de un archivo tipo1. */
55 EMUFS_REG_ID id; /**< Identificador del registro. */
56 EMUFS_REG_SIZE size; /**< Tamaño del registro. */
57 } EMUFS_TIPO1_REG_HEADER;
59 static size_t emufs_tipo1_header_size(void);
61 static int emufs_tipo1_header_jump(FILE*);
63 static int emufs_tipo1_block_jump(EMUFS*, FILE*, EMUFS_BLOCK_ID);
65 static void emufs_tipo1_escribir_reg_en_memoria(char*, EMUFS_TIPO1_REG_HEADER,
68 static void emufs_tipo1_escribir_reg_chunk_en_memoria(char* dst,
69 EMUFS_TIPO1_REG_HEADER header, char* reg, EMUFS_REG_SIZE reg_size);
71 /** Lee el bloque \param num_bloque y lo almacena en \c ptr. */
72 static void* emufs_tipo1_leer_bloque(EMUFS*, EMUFS_BLOCK_ID, int*);
74 /** Graba el bloque apuntado por \c ptr en el archivo. */
75 static EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque(EMUFS*, void*, EMUFS_BLOCK_ID,
78 /** Obtiene el tamaño del archivo. */
79 static long emufs_tipo1_get_file_size(EMUFS*, int*);
81 /** Guarda un registro con un id determinado */
82 static int emufs_tipo1_grabar_registro_con_id(EMUFS* efs, void* reg,
83 EMUFS_TIPO1_REG_HEADER header);
85 /*------------------ Funciones públicas ----------------------*/
87 int emufs_tipo1_inicializar(EMUFS* efs)
89 /* como mínimo el tamaño de bloque debe ser 2 veces el tamaño de la cabecera
90 * (una relación 1/2 entre datos e info de control ya es lo suficientemente
92 if (efs->tam_bloque < (sizeof(EMUFS_TIPO1_REG_HEADER) * 2)) {
93 PERR("bloque demasiado chico");
94 return 1000; /* EMUFS_ERROR_BLOCK_SIZE_TOO_SMALL */
96 /* Asigna punteros a funciones. */
97 efs->leer_bloque = emufs_tipo1_leer_bloque;
98 efs->grabar_registro = emufs_tipo1_grabar_registro;
99 efs->borrar_registro = emufs_tipo1_borrar_registro;
100 efs->leer_registro = emufs_tipo1_leer_registro;
101 efs->leer_registro_raw = emufs_tipo1_leer_registro_raw;
102 efs->leer_estadisticas = emufs_tipo1_leer_estadisticas;
103 efs->compactar = emufs_tipo1_compactar;
104 return 0; /* EMUFS_OK */
107 void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id,
108 EMUFS_REG_SIZE* reg_size, int *err)
110 char* block; /* bloque leido (en donde está el registro a leer) */
111 char* registro; /* registro a leer */
112 EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
113 EMUFS_BLOCK_SIZE offset; /* offset del bloque leído */
114 EMUFS_TIPO1_REG_HEADER curr_reg_header; /* cabecera del registro a leer */
116 block_id = emufs_idx_buscar_registro(efs, reg_id);
117 if (block_id == EMUFS_NOT_FOUND) {
118 /* TODO Manejo de errores */
119 PERR("Registro no encontrado");
120 *err = EMUFS_NOT_FOUND;
123 if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, err))) {
124 /* TODO Manejo de errores */
125 PERR("no se pudo reservar memoria");
126 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
130 /* Busco secuencialmente en el bloque el registro a leer */
133 /* Copio la cabecera del registro actual. */
134 memcpy(&curr_reg_header, block + offset, sizeof(EMUFS_TIPO1_REG_HEADER));
135 offset += sizeof(EMUFS_TIPO1_REG_HEADER);
136 if (curr_reg_header.id == reg_id) {
137 /* tamaño máximo ultilizable para datos en un bloque */
138 EMUFS_BLOCK_SIZE block_space
139 = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
140 /* tamaño de la porción de registro que se guarda */
141 EMUFS_REG_SIZE chunk_size = 0;
142 /* puntero a la porción actual del registro */
145 *reg_size = curr_reg_header.size;
146 registro = chunk_ptr = (char*) malloc(*reg_size);
147 if (registro == NULL) {
148 /* TODO Manejo de errores */
150 PERR("No hay memoria");
151 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
155 chunk_ptr += chunk_size; /* Avanzo para guardar prox chunk */
156 curr_reg_header.size -= chunk_size; /* Resto lo que ya guardé */
157 chunk_size = MIN(curr_reg_header.size, block_space);
158 /* copio porción de registro en el buffer */
159 memcpy(chunk_ptr, block + offset, chunk_size);
160 /* falta leer un bloque */
161 if (curr_reg_header.size > block_space) {
163 if (!(block = (char*) emufs_tipo1_leer_bloque(efs,
165 /* TODO Manejo de errores */
167 PERR("no se pudo reservar memoria");
168 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
171 } else { /* se terminó de leer */
177 /* Desplazo el offset */
178 offset += curr_reg_header.size;
180 /* esto no debería ser nunca false porque sé positivamente que el */
181 } while (offset < efs->tam_bloque); /* registro está en el bloque */
187 /* @todo TODO hacer que soporte registros de más de un bloque */
188 void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id,
189 EMUFS_REG_SIZE *size, int *pos)
191 char* block; /* bloque leido (en donde está el registro a leer) */
192 EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
193 EMUFS_BLOCK_SIZE offset; /* offset del bloque leído */
194 EMUFS_TIPO1_REG_HEADER curr_reg_header; /* cabecera del registro a leer */
197 block_id = emufs_idx_buscar_registro(efs, id);
198 if (block_id == EMUFS_NOT_FOUND) {
202 if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
206 /* Busco secuencialmente en el bloque el registro a leer */
209 /* Copio la cabecera del registro. */
210 memcpy(&curr_reg_header, block + offset, sizeof(EMUFS_TIPO1_REG_HEADER));
211 offset += sizeof(EMUFS_TIPO1_REG_HEADER);
212 if (curr_reg_header.id == id) {
213 *pos = offset - sizeof(EMUFS_TIPO1_REG_HEADER);
216 /* Desplazo el offset */
217 offset += curr_reg_header.size;
218 } while (offset < efs->tam_bloque);
220 (*size) = efs->tam_bloque;
224 void* emufs_tipo1_leer_bloque(EMUFS* efs, EMUFS_BLOCK_ID block_id, int *err)
227 char* block; /* bloque leido (en donde está el registro a leer) */
230 strcpy(name_f,efs->nombre);
231 strcat(name_f,".dat");
233 if ((file = fopen(name_f, "r")) == NULL) {
234 PERR("No se puede abrir archivo");
235 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
236 return NULL; /* FIXME ERROR */
238 emufs_tipo1_header_jump(file); /* salta cabeceras */
239 emufs_tipo1_block_jump(efs, file, block_id); /* salta bloques */
240 /* FIXME: verificar que no se pase de fin de archivo*/
241 block = (char*) malloc(efs->tam_bloque);
243 /* TODO Manejo de errores */
244 PERR("No hay memoria");
245 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
248 if (fread(block, efs->tam_bloque, 1, file) != 1) {
249 /* TODO Manejo de errores */
251 PERR("Error al leer bloque");
252 *err = 3; /* EMUFS_ERROR_FILE_READ */
259 EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg, EMUFS_REG_SIZE reg_size, int* err)
261 EMUFS_TIPO1_REG_HEADER header; /* cabecera del registro a leer */
262 /* obtengo identificador que corresponderá al registro */
263 header.id = emufs_idx_get_new_id(efs, err);
265 PERR("no se pudo obtener un id para el registro nuevo");
266 return EMUFS_NOT_FOUND;
268 header.size = reg_size; /* tamaño del registro */
269 if ((*err = emufs_tipo1_grabar_registro_con_id(efs, reg, header))) {
270 PERR("error al grabar el registro");
271 return EMUFS_NOT_FOUND;
276 int emufs_tipo1_borrar_registro(EMUFS* efs, EMUFS_REG_ID reg_id)
278 char* block; /* bloque leido (en donde está el registro a leer) */
279 EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
280 EMUFS_BLOCK_SIZE offset; /* offset del bloque leído */
281 EMUFS_TIPO1_REG_HEADER curr_reg_header; /* cabecera del registro a leer */
282 int err = 0; /* para almacenar código de error */
284 block_id = emufs_idx_buscar_registro(efs, reg_id);
285 if (block_id == EMUFS_NOT_FOUND) {
286 /* TODO Manejo de errores */
287 PERR("Registro no encontrado");
288 return EMUFS_NOT_FOUND;
290 if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
291 /* TODO Manejo de errores */
292 PERR("no se pudo reservar memoria");
296 /* Busco secuencialmente en el bloque el registro a leer */
299 /* Copio la cabecera del registro actual. */
300 memcpy(&curr_reg_header, block + offset, sizeof(EMUFS_TIPO1_REG_HEADER));
301 if (curr_reg_header.id == reg_id) {
302 /* identificador del bloque actual */
303 EMUFS_BLOCK_ID curr_block_id = block_id;
304 /* tamaño máximo ultilizable para datos en un bloque */
305 EMUFS_BLOCK_SIZE block_space
306 = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
307 EMUFS_FREE fs; /* cantidad de espacio libre en el bloque */
310 /* actualizo archivo de espacio libre por bloque */
311 fs = emufs_fsc_get_fs(efs, curr_block_id)
312 + MIN(curr_reg_header.size, block_space)
313 + sizeof(EMUFS_TIPO1_REG_HEADER);
314 if ((err = emufs_fsc_actualizar(efs, curr_block_id, fs))) {
315 /* TODO Manejo de errores */
316 PERR("no se pudo actualizar .fsc");
320 /* falta liberar un bloque (o porción) */
321 if (curr_reg_header.size > block_space) {
323 if (!(block = (char*) emufs_tipo1_leer_bloque(efs,
324 ++curr_block_id, &err))) {
325 /* TODO Manejo de errores */
326 PERR("no se pudo leer el bloque");
329 /* copio la cabecera del primer registro (si ocupa más de un
330 * registro está en bloques contiguos) */
331 memcpy(&curr_reg_header, block,
332 sizeof(EMUFS_TIPO1_REG_HEADER));
333 } else { /* se terminó de leer */
338 /* actualizo archivo de identificadores de registros borrados */
339 if ((err = emufs_did_agregar(efs, reg_id))) {
340 /* TODO Manejo de errores */
341 PERR("no se pudo actualizar .did");
345 /*actualizo archivo .idx*/
346 if ((err = emufs_idx_borrar(efs, reg_id))) {
347 /* TODO Manejo de errores */
348 PERR("no se pudo actualizar .did");
353 /* desplazo registros a izquierda */
354 { /* offset del fin del registro a borrar */
355 EMUFS_BLOCK_SIZE offset_reg_end = offset
356 + sizeof(EMUFS_TIPO1_REG_HEADER) + curr_reg_header.size;
357 /* si es necesario desplazar */
358 if (offset < offset_reg_end) {
359 /* muevo la porción de bloque a izquierda */
360 memcpy(block + offset, block + offset_reg_end,
361 efs->tam_bloque - offset_reg_end);
364 /* guardo el bloque en disco */
365 emufs_tipo1_grabar_bloque(efs, block, curr_block_id, &err);
367 /* TODO Manejo de errores */
368 PERR("no se pudo grabar bloque en disco");
373 break; /* salgo del loop, ya hice todo lo que tenía que hacer */
375 /* desplazo el offset */
376 offset += sizeof(EMUFS_TIPO1_REG_HEADER) + curr_reg_header.size;
378 /* esto no debería ser nunca false porque sé positivamente que el */
379 } while (offset < efs->tam_bloque); /* registro está en el bloque */
382 return 0; /* EMUFS_OK */
385 EMUFS_Estadisticas emufs_tipo1_leer_estadisticas(EMUFS* efs)
388 EMUFS_Estadisticas stats;
389 memset(&stats, 0, sizeof(EMUFS_Estadisticas));
391 stats.tam_archivo_bytes = emufs_tipo1_get_file_size(efs, &err);
393 /* TODO manejo de errores */
394 PERR("no se pudo obtener el tamaño del archivo");
398 /* obtengo cantidad de bloques */
399 stats.cant_bloques = (stats.tam_archivo_bytes - emufs_tipo1_header_size())
402 /* obtengo la cantidad de registros en el archivo */
404 EMUFS_REG_ID *tmp = emufs_idx_get(efs, &stats.tam_archivo);
405 if (tmp) free(tmp); /* libera memoria innecesaria */
408 /* obtengo total de información de control que guarda el archivo */
409 stats.info_control = emufs_tipo1_header_size() /* cabecera del archivo */
410 /* mas las cabeceras de todos los registros */
411 + stats.tam_archivo * sizeof(EMUFS_TIPO1_REG_HEADER);
413 /* obtengo las estadísticas del archivo de espacio libre por bloque */
414 stats.total_fs = emufs_fsc_get_total_fs(efs);
415 stats.media_fs = emufs_fsc_get_media_fs(efs);
416 emufs_fsc_get_max_min_fs(efs, &stats.min_fs, &stats.max_fs);
421 void emufs_tipo1_compactar(EMUFS* efs)
423 EMUFS_REG_ID total_ids; /* cantidad total de registros en el array */
424 /* array con los identificadores de los registros */
425 EMUFS_REG_ID* reg_ids = emufs_idx_get(efs, &total_ids);
426 int i; /* índice de elemento actual del array */
428 /* recorro cada registro válido del archivo */
429 for (i = 0; i < total_ids; ++i) {
430 EMUFS_FREE fs; /* espacio libre en el bloque */
431 EMUFS_TIPO1_REG_HEADER header; /* cabecera del registro a leer */
432 int err = 0; /* para almacenar código de error */
433 /* bloque al que pertenece el registro */
434 EMUFS_BLOCK_ID block_id = emufs_idx_buscar_registro(efs, reg_ids[i]);
435 /* obtengo un bloque con espacio suficiente para almacenarlo */
436 EMUFS_BLOCK_ID free_block_id = emufs_fsc_buscar_lugar(efs,
437 sizeof(EMUFS_TIPO1_REG_HEADER) + reg_ids[i], &fs);
439 /* si el registro está borrado, continúo con el próximo */
440 if (block_id == EMUFS_NOT_FOUND) {
443 /* obtengo identificador del registro actual */
444 header.id = reg_ids[i];
445 /* TODO analizar caso de registros multibloque */
446 /* si el bloque obtenido está antes del bloque actual */
447 if (free_block_id < block_id) {
448 /* leo el registro */
449 char* reg = (char*) efs->leer_registro(efs, header.id,
452 PERR("error al leer registro");
455 /* borro el registro */
456 if ((err = efs->borrar_registro(efs, header.id))) {
457 PERR("error al borrar registro");
461 /* lo inserto en la nueva posición */
462 if ((err = emufs_tipo1_grabar_registro_con_id(efs, reg, header))) {
463 PERR("error al borrar registro");
473 EMUFS_BLOCK_ID emufs_tipo1_grabar_bloque(EMUFS *efs, void *block,
474 EMUFS_BLOCK_ID block_id, int* err)
479 strcpy(name_f,efs->nombre);
480 strcat(name_f,".dat");
482 if ((file = fopen(name_f, "r+b")) == NULL) {
483 /* TODO Manejo de errores */
484 PERR("Error al abrir archivo");
485 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
486 return EMUFS_NOT_FOUND;
488 /* Si es NOT_FOUND tengo que agregar un bloque al final del archivo */
489 if (block_id == EMUFS_NOT_FOUND) {
490 /* me paro al final del archivo */
491 if (fseek(file, 0l, SEEK_END)) {
492 /* TODO Manejo de errores */
493 PERR("No se pudo hacer fseek()");
495 *err = 8; /* EMUFS_ERROR_SEEK_FILE */
496 return EMUFS_NOT_FOUND;
498 /* Obtengo ID del bloque nuevo */
499 block_id = (ftell(file) - emufs_tipo1_header_size()) / efs->tam_bloque;
500 /* Si es un ID válido, salto hasta ese bloque. */
502 /* Salta el header del archivo */
503 if ((*err = emufs_tipo1_header_jump(file))) {
504 PERR("no se pudo saltar la cabecera del archivo");
506 return EMUFS_NOT_FOUND;
509 if ((*err = emufs_tipo1_block_jump(efs, file, block_id))) {
510 PERR("no se pudo saltar la cabecera del bloque");
512 return EMUFS_NOT_FOUND;
515 /* Grabo el bloque */
516 if (fwrite(block, efs->tam_bloque, 1, file) != 1) {
517 PERR("No se pudo escribir el archivo");
519 *err = 6; /* EMUFS_ERROR_WRITE_FILE */
520 return EMUFS_NOT_FOUND;
527 static int emufs_tipo1_grabar_registro_con_id(EMUFS* efs, void* reg,
528 EMUFS_TIPO1_REG_HEADER header)
530 EMUFS_FREE fs; /* espacio libre en el bloque */
531 EMUFS_BLOCK_ID block_id; /* identificador del 1er bloque */
532 char* block; /* buffer del bloque a guardar en disco */
536 strcpy(name_f, efs->nombre);
537 strcat(name_f, ".dat");
539 /* busco lugar para el registro en un bloque existente */
540 block_id = emufs_fsc_buscar_lugar(efs, sizeof(EMUFS_TIPO1_REG_HEADER)
542 /* si no hay bloques con suficiente espacio creo un bloque nuevo */
543 if (block_id == EMUFS_NOT_FOUND) {
544 /* tamaño máximo ultilizable para datos en un bloque */
545 EMUFS_BLOCK_SIZE block_space = efs->tam_bloque - sizeof(EMUFS_TIPO1_REG_HEADER);
546 /* identificador del bloque que se guarda */
547 EMUFS_BLOCK_ID curr_block_id = EMUFS_NOT_FOUND;
548 /* tamaño de la porción de registro que se guarda */
549 EMUFS_REG_SIZE chunk_size = 0;
550 /* puntero a la poción del registro */
551 char* chunk_ptr = reg;
553 /* crear un nuevo bloque en memoria */
554 block = (char*) malloc(efs->tam_bloque);
556 /* TODO Manejo de errores */
557 PERR("No hay memoria");
558 return 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
561 memset(block, 0, efs->tam_bloque); /* inicializa bloque */
562 chunk_ptr += chunk_size; /* Avanzo para guardar prox chunk */
563 header.size -= chunk_size; /* Resto lo que ya guardé */
564 chunk_size = MIN(header.size, block_space);
565 /* graba porción del registro en bloque */
566 emufs_tipo1_escribir_reg_chunk_en_memoria(block, header, chunk_ptr, chunk_size);
567 /* graba el bloque en el archivo */
568 curr_block_id = emufs_tipo1_grabar_bloque(efs, block, EMUFS_NOT_FOUND, &err);
570 PERR("error al grabar bloque");
574 /* grabo el nuevo registro en el archivo de espacios libres */
575 err = emufs_fsc_agregar(efs, curr_block_id, block_space - chunk_size);
577 PERR("No se pudo agregar fsc");
581 /* si es el primer id de bloque obtenido, lo guardo para
582 * agregarlo después al archivo de índices. */
583 if (block_id == EMUFS_NOT_FOUND) {
584 block_id = curr_block_id;
586 } while (header.size > block_space);
589 /* Encontró espacio en un bloque existente, graba registro ahí */
591 /* cargo el bloque en block_id */
592 if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
593 /* TODO Manejo de errores */
594 PERR("no se pudo leer el bloque");
597 /* graba registro en bloque */
598 emufs_tipo1_escribir_reg_en_memoria(block + efs->tam_bloque - fs,
600 /* graba el bloque en el archivo */
601 block_id = emufs_tipo1_grabar_bloque(efs, block, block_id, &err);
603 PERR("error al grabar bloque");
608 /* actualizo el archivo de espacios libres */
609 err = emufs_fsc_actualizar(efs, block_id, fs - header.size
610 - sizeof(EMUFS_TIPO1_REG_HEADER));
612 PERR("No se pudo actualizar fsc");
617 /* actualizo el indice de bloques y registros */
618 err = emufs_idx_agregar(efs, header.id, block_id);
620 PERR("No se pudo agregar idx");
627 EMUFS_REG_ID emufs_tipo1_modificar_registro(EMUFS *emu, EMUFS_REG_ID id,
628 void *data, EMUFS_REG_SIZE size, int *error)
630 emufs_tipo1_borrar_registro(emu, id);
631 return emufs_tipo1_grabar_registro(emu, data, size, error);
634 size_t emufs_tipo1_header_size(void)
636 return sizeof(EMUFS_Tipo) + sizeof(EMUFS_BLOCK_SIZE);
639 int emufs_tipo1_header_jump(FILE* fp)
641 if (fseek(fp, emufs_tipo1_header_size(), SEEK_CUR)) {
642 PERR("No se pudo hacer fseek()");
643 return 8; /* EMUFS_ERROR_SEEK_FILE */
645 return 0; /* EMUFS_OK */
648 int emufs_tipo1_block_jump(EMUFS* efs, FILE* fp, EMUFS_BLOCK_ID block_count)
650 if (fseek(fp, block_count * efs->tam_bloque, SEEK_CUR)) {
651 PERR("No se pudo hacer fseek()");
652 return 8; /* EMUFS_ERROR_SEEK_FILE */
654 return 0; /* EMUFS_OK */
657 void emufs_tipo1_escribir_reg_en_memoria(char* dst, EMUFS_TIPO1_REG_HEADER header,
660 emufs_tipo1_escribir_reg_chunk_en_memoria(dst, header, reg, header.size);
663 void emufs_tipo1_escribir_reg_chunk_en_memoria(char* dst,
664 EMUFS_TIPO1_REG_HEADER header, char* reg, EMUFS_REG_SIZE reg_size)
666 /* grabo cabecera del registro en el bloque */
667 memcpy(dst, &header, sizeof(EMUFS_TIPO1_REG_HEADER));
668 /* incremento puntero de escritura */
669 dst += sizeof(EMUFS_TIPO1_REG_HEADER);
670 /* grabo el registro en el bloque */
671 memcpy(dst, reg, reg_size);
674 long emufs_tipo1_get_file_size(EMUFS* efs, int* err)
680 strcpy(name_f, efs->nombre);
681 strcat(name_f, ".dat");
682 if ((file = fopen(name_f, "ab")) == NULL) {
683 /* TODO Manejo de errores */
684 PERR("Error al abrir archivo");
685 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
688 file_size = ftell(file);