]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
* Empiezo a probar el codigo de tipo3
authorRicardo Markiewicz <gazer.arg@gmail.com>
Mon, 5 Apr 2004 02:18:03 +0000 (02:18 +0000)
committerRicardo Markiewicz <gazer.arg@gmail.com>
Mon, 5 Apr 2004 02:18:03 +0000 (02:18 +0000)
tipo3/Makefile
tipo3/emufs.c
tipo3/emufs.h
tipo3/main.c

index f19ceb8b4d89395ad66d7d11884b25ec1dbb6ada..6d93bd571f2c0d5550e080c7399ca6314a46bd8e 100644 (file)
@@ -3,5 +3,5 @@ LDFLAGS=
 
 all: main
 
-main: main.c param_cte.c
+main: main.c param_cte.c emufs.c
 
index a19ded7980b1b3803eff5129d12ffd4d8ae6b524..b55948967628b0699b7122cbc102bc6f3034bb19 100644 (file)
@@ -1,8 +1,25 @@
 
 #include "emufs.h"
+#include "param_cte.h"
 
-EMUFS *emufs_crear(const char *filename, int tipo)
+/* Defino las extenciones que usan cada tipo de archivo */
+#define EXT_TIPO3_ID ".id3"
+#define EXT_TIPO3_DATA ".dat"
+#define EXT_TIPO3_DISP ".fsc"
+
+char *str_dup(const char *s)
+{
+       if (s == NULL) return NULL;
+       char *tmp = (char *)malloc(sizeof(char)*(strlen(s)+1));
+       strcpy(tmp, s);
+       return tmp;
+}
+
+
+EMUFS *emufs_crear(const char *filename, char tipo, unsigned int tam_bloque, unsigned int tam_reg)
 {
+       char name[255];
+       FILE *fp;
        EMUFS *tmp = (EMUFS *)malloc(sizeof(EMUFS));
 
        switch (tipo) {
@@ -11,6 +28,28 @@ EMUFS *emufs_crear(const char *filename, int tipo)
                case T2:
                break;
                case T3:
+                       tmp->tipo = T3;
+                       tmp->tam_bloque = tam_bloque;
+                       tmp->leer_bloque = leer_bloque;
+                       tmp->leer_registro = leer_registro;
+                       tmp->grabar_registro = grabar_registro;
+                       tmp->borrar_registro = NULL;
+                       tmp->nombre = str_dup(filename);
+
+                       strcpy(name, filename);
+                       strcat(name, EXT_TIPO3_DATA);
+                       fp = fopen(name, "w");
+                       if (fp == NULL) {
+                               /* ERROR */
+                               free(tmp->nombre);
+                               free(tmp);
+                               return NULL;
+                       }
+                       /* Guardo el Header */
+                       fwrite(&tipo, sizeof(char), 1, fp);
+                       fwrite(&tam_bloque, sizeof(unsigned int), 1, fp);
+                       fwrite(&tam_reg, sizeof(unsigned int), 1, fp);
+                       fclose(fp);
                break;
                default:
                        free(tmp);
@@ -21,3 +60,11 @@ EMUFS *emufs_crear(const char *filename, int tipo)
 }
 
 
+int emufs_destruir(EMUFS *e)
+{
+       if (e == NULL) return 1;
+       free(e->nombre);
+       free(e);
+       return 0;
+}
+
index 4314f6d6c6dbdbb2d98b7db46dc2f3d08cd8896d..aeae57220fea1a75eda0fd41891e3ac8a60b2fe8 100644 (file)
@@ -7,16 +7,16 @@
 typedef enum {T1, T2, T3} EMUFS_TYPE;
 
 typedef struct _emu_fs_t {
-    EMUFS_TYPE tipo; /* Corregir nombres */
-    unsigned long tam_bloque; /* 0 si no tiene bloques */
-    int (*leer_bloque)(struct _emu_fs_t *, int, void *);
-    int (*leer_registro)(struct _emu_fs_t *, int, void *, unsigned long);
-    int (*grabar_registro)(int , void *, unsigned long );
+       EMUFS_TYPE tipo; /* Corregir nombres */
+       unsigned long tam_bloque; /* 0 si no tiene bloques */
+       int (*leer_bloque)(struct _emu_fs_t *, int, void *);
+       int (*leer_registro)(struct _emu_fs_t *, int, void *, unsigned long);
+       int (*grabar_registro)(struct _emu_fs_t *, void *, unsigned long );
        int (*borrar_registro)(struct _emu_fs_t *, int);
-    char *nombre;
+       char *nombre;
 } EMUFS;
 
-EMUFS *emufs_crear(const char *filename, int tipo);
-
+EMUFS *emufs_crear(const char *filename, char tipo, unsigned int tam_bloque, unsigned int tam_reg);
 
+int emufs_destruir(EMUFS *e);
 #endif
index 5359aca7bfab63a98a8cf65522ef4086f56d21c7..b6e0579c2bec87d56ec17f0a75a60c75de386dc2 100644 (file)
@@ -1,9 +1,16 @@
 #include <stdio.h>
-
+#include <string.h>
+#include "emufs.h"
 
 int main()
 {
-       printf("TODAVIA NO HAGO NADA, PERO CUANDO HAGA ALGO... AGARRATE!!!\n"); 
+       EMUFS *fp;
+       char a[] = "1234567890";
+
+       fp = emufs_crear("articulos", T3, 512, 100);
+
+       fp->grabar_registro(fp, a, strlen(a)+1);
 
+       emufs_destruir(fp);
        return 0;
 }