+int emufs_tipo1_header_jump(FILE* fp)
+{
+ if (fseek(fp, emufs_tipo1_header_size(), SEEK_CUR)) {
+ PERR("No se pudo hacer fseek()");
+ return 8; /* EMUFS_ERROR_SEEK_FILE */
+ }
+ return 0; /* EMUFS_OK */
+}
+
+int emufs_tipo1_block_jump(EMUFS* efs, FILE* fp, EMUFS_BLOCK_ID block_count)
+{
+ if (fseek(fp, block_count * efs->tam_bloque, SEEK_CUR)) {
+ PERR("No se pudo hacer fseek()");
+ return 8; /* EMUFS_ERROR_SEEK_FILE */
+ }
+ return 0; /* EMUFS_OK */
+}
+
+size_t emufs_tipo1_header_size(void)
+{
+ return sizeof(EMUFS_Tipo) + /* Cabecera de tipo de archivo */
+ sizeof(EMUFS_BLOCK_SIZE); /* Cabecera de tamaño del bloque */
+}
+
+void emufs_tipo1_escribir_reg_en_memoria(char* dst, EMUFS_REG_ID reg_id,
+ EMUFS_REG_SIZE reg_size, char* reg) {
+ /* grabo el id en el bloque */
+ memcpy(dst, ®_id, sizeof(EMUFS_REG_ID));
+ /* incremento puntero de escritura */
+ dst += sizeof(EMUFS_REG_ID);
+ /* grabo el tamaño del registro en el bloque */
+ memcpy(dst, ®_size, sizeof(EMUFS_REG_SIZE));
+ /* incremento puntero de escritura */
+ dst += sizeof(EMUFS_REG_SIZE);
+ /* grabo el registro en el bloque */
+ memcpy(dst, reg, reg_size);
+}
+
+EMUFS_REG_ID emufs_tipo1_modificar_registro(EMUFS *emu, EMUFS_REG_ID id, void *data, EMUFS_REG_SIZE size, int *error)
+{
+ emufs_tipo1_borrar_registro(emu, id);
+ return emufs_tipo1_grabar_registro(emu, data, size, error);
+}
+
+void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id, EMUFS_REG_SIZE *size, int *pos)
+{
+ char* block; /* bloque leido (en donde está el registro a leer) */
+ EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
+ EMUFS_BLOCK_SIZE offset; /* offset del bloque leído */
+ EMUFS_BLOCK_SIZE block_size; /* tamaño del bloque leído */
+ EMUFS_REG_SIZE curr_reg_size; /* tamaño del registro leído secuencialmente */
+ EMUFS_REG_ID curr_reg_id; /* id del registro leído secuencialmente */
+ int err;
+
+ block_id = emufs_idx_buscar_registro(efs, id);
+ if (block_id == EMUFS_NOT_FOUND) {
+ return NULL;
+ }
+ if (!(block = (char*) emufs_tipo1_leer_bloque(efs, block_id, &err))) {
+ return NULL;
+ }
+
+ /* Busco secuencialmente en el bloque el registro a leer */
+ offset = 0;
+ do {
+ /* Copio el id del registro de la cabecera. */
+ memcpy(&curr_reg_id, block + offset, sizeof(EMUFS_REG_ID));
+ offset += sizeof(EMUFS_REG_ID);
+ /* Copio el tamaño del registro de la cabecera. */
+ memcpy(&curr_reg_size, block + offset, sizeof(EMUFS_REG_SIZE));
+ offset += sizeof(EMUFS_REG_SIZE);
+ if (curr_reg_id == id) {
+ *pos = offset-sizeof(EMUFS_REG_ID)-sizeof(EMUFS_REG_SIZE);
+ break;
+ }
+ /* Desplazo el offset */
+ offset += curr_reg_size;
+ } while (offset < block_size);
+
+ (*size) = efs->tam_bloque;
+ return block;
+}
+