4 static t_LstArticulos *lst_articulos;
6 static t_Articulo *art_form_buscar(WINDOW *win);
8 static void *procesar_guardar_articulo(t_Articulo *src, int *size, t_LstArticulos *lst);
9 static int procesar_leer_articulo(t_Articulo *dst, void *src, int size, t_LstArticulos *lst);
11 t_LstArticulos *art_cargar(const char *filename)
14 xmlNode *node, *inicio;
15 int cant, size, error;
20 tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
21 if (tmp == NULL) return NULL;
24 /* tmp->array = (t_Reg_Articulo *)malloc(sizeof(t_Reg_Articulo)*tmp->cant);*/
26 if (tmp->array == NULL) {
31 if (filename != NULL) {
32 document = xmlReadFile(filename, "ISO-8859-1",0);
33 if (document == NULL) {
38 node = xmlDocGetRootElement(document);
39 /* Busco el TAG principal "ARTICULOS" */
41 if (node->type == XML_ELEMENT_NODE) {
42 if (strcmp(node->name, "ARTICULOS") == 0) {
43 inicio = node->children;
50 /* Cuento la cantidad de articulos en el archivo */
52 for ( ; node ; node = node->next) {
53 if (node->type == XML_ELEMENT_NODE) {
54 if (strcmp(node->name, "ARTICULO") == 0) {
60 /* leo los datos y los guardo en el archivo*/
62 /* FIXME : por ahora hago que entren 2 bloques y me sobre algo de espacio*/
63 tmp->fp = emufs_crear("articulos", T2, sizeof(t_Articulo)*2, sizeof(t_Articulo));
64 for (node=inicio ; node ; node = node->next) {
65 if (node->type == XML_ELEMENT_NODE) {
66 if (strcmp(node->name, "ARTICULO") == 0) {
68 art.numero = atoi(xmlGetProp(node, "NroArtículo"));
69 strncpy(art.desc, xmlGetProp(node, "Descripción"), 50);
70 strncpy(art.presentacion, xmlGetProp(node, "Presentación"), 30);
71 strncpy(art.existencia, xmlGetProp(node, "Existencia"), 8);
72 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
73 strncpy(art.pvu, xmlGetProp(node, "PVU"), 8);
74 strncpy(art.emin, xmlGetProp(node, "Emín"), 8);
75 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
76 save = procesar_guardar_articulo(&art, &size, lst_articulos);
78 tmp->array[cant].num_reg = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
79 tmp->array[cant].numero = art.numero;
80 printf("Grabe un registro\n");
88 printf("Libero XML\n");
93 tmp->fp = emufs_abrir("articulos");
94 /* TODO Cargar registros desde el archivo */
100 int art_liberar(t_LstArticulos *l)
102 if (l == NULL) l = lst_articulos;
103 if (l == NULL) return 1;
105 ver_archivo_FS(l->fp);
106 emufs_destruir(l->fp);
110 lst_articulos = NULL;
114 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero)
116 /* FIXME : NO ME GUSTA :-/ */
120 int n = atoi(numero);
122 if (lst == NULL) lst = lst_articulos;
123 if (lst == NULL) return NULL;
125 for(i=0; i<lst->cant; i++) {
126 if (n == lst->array[i].numero) {
127 art = (t_Articulo *)malloc(sizeof(t_Articulo));
128 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
129 tmp = lst->fp->leer_registro(lst->fp, lst->array[i].num_reg, &size);
131 if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
144 t_Articulo *art_form_buscar(WINDOW *win)
147 t_Articulo *articulo;
149 form = form_crear(win);
150 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
151 form_ejecutar(form, 1,1);
152 articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"));
158 void art_modificar(char *s)
162 t_Articulo *articulo;
165 win = newwin(8, COLS-2, 13, 1);
169 articulo = art_form_buscar(win);
171 if (articulo != NULL) {
172 form = form_crear(win);
173 sprintf(num, "%07d", articulo->numero);
174 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
175 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
176 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
177 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
178 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
179 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
180 form_ejecutar(form, 1,1);
182 /* TODO : Actualizar registro */
187 wattron(win, COLOR_PAIR(COLOR_YELLOW));
188 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
189 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
198 void art_eliminar(char *s)
201 t_Articulo *articulo;
203 win = newwin(8, COLS-2, 13, 1);
207 articulo = art_form_buscar(win);
209 if (articulo == NULL) {
210 wattron(win, COLOR_PAIR(COLOR_YELLOW));
211 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
212 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
216 /* TODO : Eliminar un registro */
224 void art_agregar(char *s)
231 win = newwin(8, COLS-2, 13, 1);
235 form = form_crear(win);
236 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
237 form_agregar_widget(form, INPUT, "Descripción", 50, "");
238 form_agregar_widget(form, INPUT, "Presentación", 30, "");
239 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
240 form_agregar_widget(form, INPUT, "PVU", 8, "");
241 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
242 form_ejecutar(form, 1,1);
244 art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
245 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
246 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
247 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
248 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
249 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
250 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
252 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
253 lst_articulos->array[lst_articulos->cant].num_reg = lst_articulos->fp->grabar_registro(lst_articulos->fp, &art, sizeof(t_Articulo), &error);
254 lst_articulos->array[lst_articulos->cant].numero = art.numero;
255 lst_articulos->cant++;
264 int procesar_leer_articulo(t_Articulo *dst, void *src, int size, t_LstArticulos *lst)
267 switch (lst->fp->tipo) {
271 /* Copio el primer campo, esto es facil :-) */
272 memcpy(&dst->numero, ini, sizeof(unsigned int));
273 ini+=sizeof(unsigned int);
274 /* Ahora empieza el juego */
275 /* Los \0 son los delimitadores de campo! */
277 while (*fin!='\0') fin++;
278 memcpy(dst->desc, ini, fin-ini);
282 while (*fin!='\0') fin++;
283 memcpy(dst->presentacion, ini, fin-ini);
287 while (*fin!='\0') fin++;
288 memcpy(dst->existencia, ini, fin-ini);
292 while (*fin!='\0') fin++;
293 memcpy(dst->pvu, ini, fin-ini);
296 fin = (char *)src+size;
297 while (*fin!='\0') fin++;
298 memcpy(dst->pvu, ini, fin-ini);
302 if (size != sizeof(t_Articulo)) {
303 return 0; /* El tamaño no encaja!! */
305 memcpy(dst, src, size);
308 return 1; /* Todo ok */
311 void *procesar_guardar_articulo(t_Articulo *src, int *size, t_LstArticulos *lst)
315 switch(lst->fp->tipo) {
318 /* Calculo el tamaño que voy a necesitar */
319 i[0] = sizeof(unsigned int);
320 i[1] = sizeof(char)*(strlen(src->desc)+1);
321 i[2] = sizeof(char)*(strlen(src->presentacion)+1);
322 i[3] = sizeof(char)*(strlen(src->existencia)+1);
323 /* i[4] = sizeof(char)*(strlen(src->ubicacion)+1); */
324 i[4] = sizeof(char)*(strlen(src->pvu)+1);
325 i[5] = sizeof(char)*(strlen(src->emin)+1);
326 (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5];
327 tmp = (char *)malloc((*size));
328 if (tmp == NULL) return NULL;
329 memcpy(tmp, &src->numero, i[0]);
330 memcpy(tmp+i[0], src->desc, i[1]);
331 memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
332 memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
333 memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->pvu, i[4]);
334 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->emin, i[5]);
337 tmp = (char *)malloc(sizeof(t_Articulo));
338 if (tmp == NULL) return NULL;
339 memcpy(tmp, src, sizeof(t_Articulo));
340 (*size) = sizeof(t_Articulo);