]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
Se emprolija un poco los archivos de indices.
authorLeandro Lucarella <llucax@gmail.com>
Fri, 9 Apr 2004 19:27:56 +0000 (19:27 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Fri, 9 Apr 2004 19:27:56 +0000 (19:27 +0000)
emufs/did.c
emufs/did.h
emufs/emufs.c
emufs/fsc.c
emufs/fsc.h
emufs/idx.c
emufs/idx.h
emufs/tipo3.h

index 939493b040128444dfae7157790fda4eebcfdc32..f19302578c55733bbde1f814f36d29542e1468c0 100644 (file)
  */
 
 #include "did.h"
  */
 
 #include "did.h"
+#include <string.h>
+#include <unistd.h>
+
+#define EMUFS_DID_EXT ".did"
 
 int emufs_did_get_last(EMUFS *emu)
 {
 
 int emufs_did_get_last(EMUFS *emu)
 {
@@ -44,7 +48,7 @@ int emufs_did_get_last(EMUFS *emu)
        char name_f_did[255];
        
        strcpy(name_f_did, emu->nombre);
        char name_f_did[255];
        
        strcpy(name_f_did, emu->nombre);
-       strcat(name_f_did, ".did");
+       strcat(name_f_did,  EMUFS_DID_EXT);
        
        if ( (f_did = fopen(name_f_did,"r")) == NULL) return -1; /*ERROR*/
        fseek(f_did, 0, SEEK_END);
        
        if ( (f_did = fopen(name_f_did,"r")) == NULL) return -1; /*ERROR*/
        fseek(f_did, 0, SEEK_END);
@@ -76,7 +80,7 @@ int emufs_did_agregar(EMUFS *emu, int ID)
        char name_f_did[255];
        
        strcpy(name_f_did, emu->nombre);
        char name_f_did[255];
        
        strcpy(name_f_did, emu->nombre);
-       strcat(name_f_did, ".did");
+       strcat(name_f_did,  EMUFS_DID_EXT);
        
        if ( (f_did = fopen(name_f_did,"a+")) == NULL) return -1;
        fwrite(&ID, sizeof(int), 1, f_did);
        
        if ( (f_did = fopen(name_f_did,"a+")) == NULL) return -1;
        fwrite(&ID, sizeof(int), 1, f_did);
index 46a78679862790343ba571bbbc9cc4a402fd801e..94770dda9c1228625b5ab6b7d744abd25f66168e 100644 (file)
  *
  */
 
  *
  */
 
-#ifndef _DID_H_
-#define _DID_H_
+#ifndef _EMUFS_DID_H_
+#define _EMUFS_DID_H_
 
 
-#include <string.h>
-#include <unistd.h>
 #include "emufs.h"
 
 int emufs_did_get_last(EMUFS *); 
 
 int emufs_did_agregar(EMUFS *, int);
 
 #include "emufs.h"
 
 int emufs_did_get_last(EMUFS *); 
 
 int emufs_did_agregar(EMUFS *, int);
 
-#endif /* _DID_H */
+#endif /* _EMUFS_DID_H */
index b62702b53dc1f81b77ddb5ad310d66adb2f28d38..9934374ee5b64c039a75540aa4d9dc4ecfb5f267 100644 (file)
@@ -24,7 +24,7 @@
  *          Leandro Lucarella <llucare@fi.uba.ar>
  *----------------------------------------------------------------------------
  *
  *          Leandro Lucarella <llucare@fi.uba.ar>
  *----------------------------------------------------------------------------
  *
- * $Id: command.cpp 220 2003-11-19 23:10:40Z luca $
+ * $Id$
  *
  */
 
  *
  */
 
 #include "tipo3.h"
 
 /* Defino las extenciones que usan cada tipo de archivo */
 #include "tipo3.h"
 
 /* Defino las extenciones que usan cada tipo de archivo */
-#define EXT_TIPO3_ID   ".idx"
 #define EXT_TIPO3_DATA ".dat"
 #define EXT_TIPO3_DATA ".dat"
-#define EXT_TIPO3_DISP ".fsc"
-#define EXT_TIPO3_IDS  ".did"
 
 char *str_dup(const char *s);
 
 
 char *str_dup(const char *s);
 
index f5d6d06b6af13b09ca62f91d0ce825b1a07cae56..c0c026f726e6977c16ff51b26983808aa41e0cac 100644 (file)
@@ -1,21 +1,65 @@
+/* vim: set noexpandtab tabstop=4 shiftwidth=4:
+ *----------------------------------------------------------------------------
+ *                                  emufs
+ *----------------------------------------------------------------------------
+ * This file is part of emufs.
+ *
+ * emufs is free software; you can redistribute it and/or modify it under the
+ * terms of the GNU General Public License as published by the Free Software
+ * Foundation; either version 2 of the License, or (at your option) any later
+ * version.
+ *
+ * emufs is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with emufs; if not, write to the Free Software Foundation, Inc., 59 Temple
+ * Place, Suite 330, Boston, MA  02111-1307  USA
+ *----------------------------------------------------------------------------
+ * Creado:  vie abr  9 16:17:50 ART 2004
+ * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
+ *----------------------------------------------------------------------------
+ *
+ * $Id$
+ *
+ */
+
+/** \file
+ *
+ * Archivo para administrar el espacio libre disponible.
+ * 
+ * Implementación del archivo para administrar el espacio libre disponible.
+ *
+ */
+
 #include "fsc.h"
 #include "fsc.h"
-#include "tipo3.h"
+#include <string.h>
+#include <unistd.h>
+
+#define EMUFS_FSC_EXT ".fsc"
+
+typedef struct emufs_fsc_t {
+       int block;
+       int free_space;
+} EMUFS_FSC;
 
 int emufs_fsc_agregar(EMUFS *emu, int num_bloque, int fs)
 {
        FILE *f_fsc;
 
 int emufs_fsc_agregar(EMUFS *emu, int num_bloque, int fs)
 {
        FILE *f_fsc;
-       BLOCK_FREE_T reg;
+       EMUFS_FSC reg;
        char name_f_fsc[255];
        
        strcpy(name_f_fsc,emu->nombre);
        char name_f_fsc[255];
        
        strcpy(name_f_fsc,emu->nombre);
-       strcat(name_f_fsc,".fsc");
+       strcat(name_f_fsc, EMUFS_FSC_EXT);
        
        /*cargo el registro*/
        reg.block = num_bloque; 
        reg.free_space = fs;
        /*lo guardo en el archivo al final  "a+"*/
        if ( (f_fsc = fopen(name_f_fsc,"a+"))==NULL ) return -1;
        
        /*cargo el registro*/
        reg.block = num_bloque; 
        reg.free_space = fs;
        /*lo guardo en el archivo al final  "a+"*/
        if ( (f_fsc = fopen(name_f_fsc,"a+"))==NULL ) return -1;
-       fwrite(&reg,sizeof(BLOCK_FREE_T),1,f_fsc);
+       fwrite(&reg,sizeof(EMUFS_FSC),1,f_fsc);
        fclose(f_fsc);
        return 0;
 }
        fclose(f_fsc);
        return 0;
 }
@@ -24,20 +68,20 @@ int emufs_fsc_agregar(EMUFS *emu, int num_bloque, int fs)
 int emufs_fsc_actualizar(EMUFS *emu, int num_bloque, int fs)
 {
        FILE *f_fsc;
 int emufs_fsc_actualizar(EMUFS *emu, int num_bloque, int fs)
 {
        FILE *f_fsc;
-       BLOCK_FREE_T reg;
+       EMUFS_FSC reg;
        char name_f_fsc[255];
        
        strcpy(name_f_fsc,emu->nombre);
        char name_f_fsc[255];
        
        strcpy(name_f_fsc,emu->nombre);
-       strcat(name_f_fsc,".fsc");
+       strcat(name_f_fsc, EMUFS_FSC_EXT);
 
        /*busco el bloque que modifique*/
        if ( (f_fsc = fopen(name_f_fsc,"r+")) == NULL) return -1; 
        while ( !feof(f_fsc) ){
 
        /*busco el bloque que modifique*/
        if ( (f_fsc = fopen(name_f_fsc,"r+")) == NULL) return -1; 
        while ( !feof(f_fsc) ){
-               if ( fread(&reg,sizeof(BLOCK_FREE_T),1,f_fsc) != 1) continue;
+               if ( fread(&reg,sizeof(EMUFS_FSC),1,f_fsc) != 1) continue;
                if ( reg.block == num_bloque ){
                        reg.free_space = fs;
                if ( reg.block == num_bloque ){
                        reg.free_space = fs;
-                       fseek(f_fsc,-sizeof(BLOCK_FREE_T),SEEK_CUR);
-                       fwrite(&reg,sizeof(BLOCK_FREE_T),1,f_fsc);
+                       fseek(f_fsc,-sizeof(EMUFS_FSC),SEEK_CUR);
+                       fwrite(&reg,sizeof(EMUFS_FSC),1,f_fsc);
                        break;
                }
        }
                        break;
                }
        }
@@ -49,11 +93,11 @@ int emufs_fsc_actualizar(EMUFS *emu, int num_bloque, int fs)
 int emufs_fsc_buscar_lugar(EMUFS *emu, unsigned long tam, int *fs)
 {
        FILE *f_fsc;
 int emufs_fsc_buscar_lugar(EMUFS *emu, unsigned long tam, int *fs)
 {
        FILE *f_fsc;
-       BLOCK_FREE_T reg;
+       EMUFS_FSC reg;
        char name_f_fsc[255];
        
        strcpy(name_f_fsc,emu->nombre);
        char name_f_fsc[255];
        
        strcpy(name_f_fsc,emu->nombre);
-       strcat(name_f_fsc,".fsc");
+       strcat(name_f_fsc, EMUFS_FSC_EXT);
 
        if ( (f_fsc = fopen(name_f_fsc,"r"))==NULL ) return -1;
 
 
        if ( (f_fsc = fopen(name_f_fsc,"r"))==NULL ) return -1;
 
@@ -63,7 +107,7 @@ int emufs_fsc_buscar_lugar(EMUFS *emu, unsigned long tam, int *fs)
        reg.block = -1;
        *fs = emu->tam_bloque;
        while( !feof(f_fsc) ){
        reg.block = -1;
        *fs = emu->tam_bloque;
        while( !feof(f_fsc) ){
-               if (fread(&reg,sizeof(BLOCK_FREE_T),1,f_fsc) != 1) continue;
+               if (fread(&reg,sizeof(EMUFS_FSC),1,f_fsc) != 1) continue;
                if ( reg.free_space >= tam+sizeof(int)) 
                        break;
                else {
                if ( reg.free_space >= tam+sizeof(int)) 
                        break;
                else {
@@ -81,16 +125,16 @@ int emufs_fsc_buscar_lugar(EMUFS *emu, unsigned long tam, int *fs)
 int emufs_fsc_get_fs(EMUFS *emu, int num_bloque)
 {
        FILE *f_fsc;
 int emufs_fsc_get_fs(EMUFS *emu, int num_bloque)
 {
        FILE *f_fsc;
-       BLOCK_FREE_T reg;
+       EMUFS_FSC reg;
        char name_f_fsc[255];
        
        strcpy(name_f_fsc,emu->nombre);
        char name_f_fsc[255];
        
        strcpy(name_f_fsc,emu->nombre);
-       strcat(name_f_fsc,".fsc");
+       strcat(name_f_fsc, EMUFS_FSC_EXT);
 
        if ( (f_fsc = fopen(name_f_fsc,"r"))==NULL ) return -1;
 
        while ( !feof(f_fsc) ){
 
        if ( (f_fsc = fopen(name_f_fsc,"r"))==NULL ) return -1;
 
        while ( !feof(f_fsc) ){
-               if ( fread(&reg,sizeof(BLOCK_FREE_T),1,f_fsc) != 1 ) continue;
+               if ( fread(&reg,sizeof(EMUFS_FSC),1,f_fsc) != 1 ) continue;
                if ( reg.block == num_bloque )
                        break;
        }
                if ( reg.block == num_bloque )
                        break;
        }
index 354273a69fd32bf4a0bee85672bee83f808973f6..02160943d35a49355ecfce6b8f415972a657b207 100644 (file)
@@ -1,7 +1,42 @@
-#ifndef _FSC_H
-#define _FSC_H
-#include <string.h>
-#include <unistd.h>
+/* vim: set noexpandtab tabstop=4 shiftwidth=4:
+ *----------------------------------------------------------------------------
+ *                                  emufs
+ *----------------------------------------------------------------------------
+ * This file is part of emufs.
+ *
+ * emufs is free software; you can redistribute it and/or modify it under the
+ * terms of the GNU General Public License as published by the Free Software
+ * Foundation; either version 2 of the License, or (at your option) any later
+ * version.
+ *
+ * emufs is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with emufs; if not, write to the Free Software Foundation, Inc., 59 Temple
+ * Place, Suite 330, Boston, MA  02111-1307  USA
+ *----------------------------------------------------------------------------
+ * Creado:  vie abr  9 16:17:50 ART 2004
+ * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
+ *----------------------------------------------------------------------------
+ *
+ * $Id$
+ *
+ */
+
+/** \file
+ *
+ * Archivo para administrar el espacio libre disponible.
+ * 
+ * Interfaz del archivo para administrar el espacio libre disponible.
+ *
+ */
+
+#ifndef _EMUFS_FSC_H
+#define _EMUFS_FSC_H
+
 #include "emufs.h"
 
 int emufs_fsc_agregar(EMUFS *, int, int);
 #include "emufs.h"
 
 int emufs_fsc_agregar(EMUFS *, int, int);
@@ -12,4 +47,4 @@ int emufs_fsc_buscar_lugar(EMUFS *, unsigned long, int *);
 
 int emufs_fsc_get_fs(EMUFS *, int);
 
 
 int emufs_fsc_get_fs(EMUFS *, int);
 
-#endif /* _FSC_H */
+#endif /* _EMUFS_FSC_H */
index a9efcaa0cdc2b0e45eeb7ced6242e8dbe7aec036..093c2ac7689c1a7100bea7ff15f86dd170e61fe3 100644 (file)
  */
 
 #include "idx.h"
  */
 
 #include "idx.h"
-#include "tipo3.h"
+
+#define EMUFS_IDX_EXT ".idx"
+
+typedef struct emufs_idx_t {
+       int block;
+       long int id_reg;
+} EMUFS_IDX;
 
 int emufs_idx_buscar_mayor_id(EMUFS *emu)
 {
        int id, max = -1;
        FILE *f_idx;    
 
 int emufs_idx_buscar_mayor_id(EMUFS *emu)
 {
        int id, max = -1;
        FILE *f_idx;    
-       BLOCK_REG_T reg;
-       char name_f_idx[255];
+       EMUFS_IDX reg;
+       char name_f_idx[255]; /* TODO usar malloc para no limitar el tamaño de nombre de archivo */
 
        strcpy(name_f_idx,emu->nombre);
 
        strcpy(name_f_idx,emu->nombre);
-       strcat(name_f_idx,".idx");
+       strcat(name_f_idx, EMUFS_IDX_EXT);
 
        if ( (f_idx = fopen(name_f_idx,"r")) == NULL) return -1; /*ERROR*/
        id = -1;
        while ( !feof(f_idx) ){
                /* Me aseguro de leer la cantidad de bytes correcta */
 
        if ( (f_idx = fopen(name_f_idx,"r")) == NULL) return -1; /*ERROR*/
        id = -1;
        while ( !feof(f_idx) ){
                /* Me aseguro de leer la cantidad de bytes correcta */
-               if (fread(&reg,sizeof(BLOCK_REG_T),1,f_idx) != 1) continue;
+               if (fread(&reg,sizeof(EMUFS_IDX),1,f_idx) != 1) continue;
                if ( reg.id_reg >= max ) 
                        max = reg.id_reg;
        }
                if ( reg.id_reg >= max ) 
                        max = reg.id_reg;
        }
@@ -65,14 +71,14 @@ int emufs_idx_buscar_mayor_id(EMUFS *emu)
 int emufs_idx_buscar_registro(EMUFS *emu, int ID)
 {
        FILE* f_idx;
 int emufs_idx_buscar_registro(EMUFS *emu, int ID)
 {
        FILE* f_idx;
-       BLOCK_REG_T reg;
+       EMUFS_IDX reg;
        char name_f_idx[255];
        strcpy(name_f_idx,emu->nombre);
        char name_f_idx[255];
        strcpy(name_f_idx,emu->nombre);
-       strcat(name_f_idx,".idx");
+       strcat(name_f_idx, EMUFS_IDX_EXT);
        
        if ( (f_idx = fopen(name_f_idx,"r")) == NULL) return -1; /*ERROR*/
        while ( !feof(f_idx) ){
        
        if ( (f_idx = fopen(name_f_idx,"r")) == NULL) return -1; /*ERROR*/
        while ( !feof(f_idx) ){
-               if (fread(&reg,sizeof(BLOCK_REG_T),1,f_idx) != 1) continue;
+               if (fread(&reg,sizeof(EMUFS_IDX),1,f_idx) != 1) continue;
                if ( reg.id_reg == ID ){
                        fclose(f_idx);
                        return reg.block;
                if ( reg.id_reg == ID ){
                        fclose(f_idx);
                        return reg.block;
@@ -84,20 +90,20 @@ int emufs_idx_buscar_registro(EMUFS *emu, int ID)
 }
 
 /* agrega un registro al final del archivo */
 }
 
 /* agrega un registro al final del archivo */
-emufs_idx_agregar(EMUFS *emu, int num_bloque, int ID_aux)
+int emufs_idx_agregar(EMUFS *emu, int num_bloque, int ID_aux)
 {
        FILE *f_idx;
 {
        FILE *f_idx;
-       BLOCK_REG_T reg;
+       EMUFS_IDX reg;
        char name_f_idx[255];
        
        strcpy(name_f_idx,emu->nombre);
        char name_f_idx[255];
        
        strcpy(name_f_idx,emu->nombre);
-       strcat(name_f_idx,".idx");
+       strcat(name_f_idx, EMUFS_IDX_EXT);
 
        if ( (f_idx = fopen(name_f_idx,"ab+"))==NULL ) return -1;
                
        reg.block = num_bloque;
        reg.id_reg = ID_aux;
 
        if ( (f_idx = fopen(name_f_idx,"ab+"))==NULL ) return -1;
                
        reg.block = num_bloque;
        reg.id_reg = ID_aux;
-       fwrite(&reg,sizeof(BLOCK_REG_T),1,f_idx); 
+       fwrite(&reg,sizeof(EMUFS_IDX),1,f_idx); 
        fclose(f_idx);
        return 0;
 }
        fclose(f_idx);
        return 0;
 }
index a2c9736946cf1fe108a87d8421d23a99f0c373de..2ccef85f0358e6c7a523eed2742429a541add095 100644 (file)
@@ -34,8 +34,8 @@
  *
  */
 
  *
  */
 
-#ifndef _IDX_H
-#define _IDX_H
+#ifndef _EMUFS_IDX_H
+#define _EMUFS_IDX_H
 
 #include <string.h>
 #include "emufs.h"
 
 #include <string.h>
 #include "emufs.h"
@@ -46,4 +46,4 @@ int emufs_idx_buscar_registro(EMUFS *, int);
 
 int emufs_idx_agregar(EMUFS *, int , int);
 
 
 int emufs_idx_agregar(EMUFS *, int , int);
 
-#endif /* _IDX_H */
+#endif /* _EMUFS_IDX_H */
index 0476666df6665dba0f460034adc8843c14594a46..9b64976d31e1633c81696a2c3551c8ca8ba4ed20 100644 (file)
@@ -35,8 +35,8 @@
  *
  */
 
  *
  */
 
-#ifndef _PARAM_CTE_H_
-#define _PARAM_CTE_H_
+#ifndef _EMUFS_TIPO3_H_
+#define _EMUFS_TIPO3_H_
 
 #include <stdio.h>
 #include <stdlib.h>
 
 #include <stdio.h>
 #include <stdlib.h>
 #include "idx.h"
 #include "fsc.h"
 
 #include "idx.h"
 #include "fsc.h"
 
-
-typedef struct block_free_t {
-       int block;
-       int free_space;
-} BLOCK_FREE_T;
-
-typedef struct block_reg_t {
-       int block;
-       long int id_reg;
-} BLOCK_REG_T;
-
 int emufs_tipo3_leer_registro(EMUFS *, int , void *, unsigned long);
 
 int emufs_tipo3_leer_bloque(EMUFS *, int , void *);
 int emufs_tipo3_leer_registro(EMUFS *, int , void *, unsigned long);
 
 int emufs_tipo3_leer_bloque(EMUFS *, int , void *);
@@ -75,4 +64,4 @@ int emufs_tipo3_buscar_lugar(EMUFS *, unsigned long , int *);
 int emufs_tipo3_borrar_registro(EMUFS*, int, int);
 
 
 int emufs_tipo3_borrar_registro(EMUFS*, int, int);
 
 
-#endif /* _PARAM_CTE_H_ */
+#endif /* _EMUFS_TIPO3_H_ */