5 static t_LstArticulos *lst_articulos;
7 static t_Articulo *art_form_buscar(WINDOW *win);
9 static void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst);
10 static int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst);
12 /* Manejo de la lista doble */
13 static t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num);
14 static int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo);
16 t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num)
19 if (reg == EMUFS_NOT_FOUND) return NULL;
20 tmp = malloc(sizeof(t_Reg_Articulo));
21 if (tmp == NULL) return NULL;
22 tmp->sig = tmp->ant = NULL;
29 int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
31 if (nodo == NULL) return 0;
34 lst->primero->ant = nodo;
35 nodo->sig = lst->primero;
43 t_LstArticulos *art_cargar(const char *filename)
46 xmlNode *node, *inicio;
47 int cant, error = 0, i;
53 tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
54 if (tmp == NULL) return NULL;
58 if (filename != NULL) {
59 document = xmlReadFile(filename, "ISO-8859-1",0);
60 if (document == NULL) {
65 node = xmlDocGetRootElement(document);
66 /* Busco el TAG principal "ARTICULOS" */
68 if (node->type == XML_ELEMENT_NODE) {
69 if (strcmp(node->name, "ARTICULOS") == 0) {
70 inicio = node->children;
77 /* Cuento la cantidad de articulos en el archivo */
79 for ( ; node ; node = node->next) {
80 if (node->type == XML_ELEMENT_NODE) {
81 if (strcmp(node->name, "ARTICULO") == 0) {
87 /* leo los datos y los guardo en el archivo*/
89 /* FIXME : por ahora hago que entren 2 bloques y me sobre algo de espacio*/
90 tmp->fp = emufs_crear("articulos", T2, sizeof(t_Articulo)*2, sizeof(t_Articulo));
91 for (node=inicio ; node ; node = node->next) {
92 if (node->type == XML_ELEMENT_NODE) {
93 if (strcmp(node->name, "ARTICULO") == 0) {
96 art.numero = atoi(xmlGetProp(node, "NroArtículo"));
97 strncpy(art.desc, xmlGetProp(node, "Descripción"), 50);
98 strncpy(art.presentacion, xmlGetProp(node, "Presentación"), 30);
99 strncpy(art.existencia, xmlGetProp(node, "Existencia"), 8);
100 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
101 strncpy(art.pvu, xmlGetProp(node, "PVU"), 8);
102 strncpy(art.emin, xmlGetProp(node, "Emín"), 8);
103 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
104 save = procesar_guardar_articulo(&art, &size, lst_articulos);
106 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
107 agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
113 xmlFreeDoc(document);
116 tmp->fp = emufs_abrir("articulos");
117 /* Ahora trato de recuperar la info */
118 cant = emufs_idx_get_count(tmp->fp);
119 for(i=0; i<cant; i++) {
122 id = emufs_idx_get_id_at(tmp->fp, i);
123 /* Leo el registro */
124 save = tmp->fp->leer_registro(tmp->fp, id, &size, &error);
125 if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
126 agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
135 int art_liberar(t_LstArticulos *l)
137 if (l == NULL) l = lst_articulos;
138 if (l == NULL) return 1;
140 emufs_destruir(l->fp);
141 /* TODO : Liberar lista */
144 lst_articulos = NULL;
148 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero)
151 t_Reg_Articulo *nodo;
155 int n = atoi(numero);
157 if (lst == NULL) lst = lst_articulos;
158 if (lst == NULL) return NULL;
162 if (n == nodo->numero) {
163 art = (t_Articulo *)malloc(sizeof(t_Articulo));
164 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
165 tmp = lst->fp->leer_registro(lst->fp, nodo->num_reg, &size, &error);
172 if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
186 t_Articulo *art_form_buscar(WINDOW *win)
189 t_Articulo *articulo;
191 form = form_crear(win);
192 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
193 form_ejecutar(form, 1,1);
194 articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"));
200 void art_modificar(char *s)
204 t_Articulo *articulo;
207 win = newwin(8, COLS-2, 13, 1);
211 articulo = art_form_buscar(win);
213 if (articulo != NULL) {
214 form = form_crear(win);
215 sprintf(num, "%08d", articulo->numero);
216 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
217 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
218 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
219 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
220 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
221 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
222 form_ejecutar(form, 1,1);
224 /* TODO : Actualizar registro */
229 wattron(win, COLOR_PAIR(COLOR_YELLOW));
230 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
231 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
240 void art_eliminar(char *s)
243 t_Articulo *articulo;
244 t_Reg_Articulo *nodo, *del;
245 win = newwin(8, COLS-2, 13, 1);
249 articulo = art_form_buscar(win);
251 if (articulo == NULL) {
252 wattron(win, COLOR_PAIR(COLOR_YELLOW));
253 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
254 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
258 nodo = lst_articulos->primero;
260 if (nodo->numero == articulo->numero) {
261 lst_articulos->fp->borrar_registro(lst_articulos->fp, nodo->num_reg);
264 nodo->ant->sig = nodo->sig;
266 nodo->sig->ant = nodo->ant;
270 nodo->sig->ant = NULL;
272 lst_articulos->primero = nodo->sig;
287 void art_agregar(char *s)
292 t_Reg_Articulo *nuevo;
294 int error = 0, existe;
298 win = newwin(8, COLS-2, 13, 1);
302 form = form_crear(win);
303 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
304 form_agregar_widget(form, INPUT, "Descripción", 50, "");
305 form_agregar_widget(form, INPUT, "Presentación", 30, "");
306 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
307 form_agregar_widget(form, INPUT, "PVU", 8, "");
308 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
309 form_ejecutar(form, 1,1);
311 art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
313 nuevo = lst_articulos->primero;
315 if (art.numero == nuevo->numero) {
323 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
324 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
325 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
326 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
327 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
328 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
330 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
331 save = procesar_guardar_articulo(&art, &size, lst_articulos);
333 id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
335 wattron(win, COLOR_PAIR(COLOR_YELLOW));
336 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
337 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
341 agregar_nodo_articulo(lst_articulos, crear_nodo_articulo(id, art.numero));
346 wattron(win, COLOR_PAIR(COLOR_YELLOW));
347 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
348 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
359 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
362 switch (lst->fp->tipo) {
366 /* Copio el primer campo, esto es facil :-) */
367 memcpy(&dst->numero, ini, sizeof(unsigned int));
368 ini+=sizeof(unsigned int);
369 /* Ahora empieza el juego */
370 /* Los \0 son los delimitadores de campo! */
372 while (*fin!='\0') fin++;
373 memcpy(dst->desc, ini, fin-ini+1);
377 while (*fin!='\0') fin++;
378 memcpy(dst->presentacion, ini, fin-ini+1);
382 while (*fin!='\0') fin++;
383 memcpy(dst->existencia, ini, fin-ini+1);
387 while (*fin!='\0') fin++;
388 memcpy(dst->pvu, ini, fin-ini+1);
391 fin = (char *)src+size;
392 memcpy(dst->emin, ini, fin-ini+1);
396 memcpy(dst, src, sizeof(t_Articulo));
399 return 1; /* Todo ok */
402 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
406 switch(lst->fp->tipo) {
409 /* Calculo el tamaño que voy a necesitar */
410 i[0] = sizeof(unsigned int);
411 i[1] = sizeof(char)*(strlen(src->desc)+1);
412 i[2] = sizeof(char)*(strlen(src->presentacion)+1);
413 i[3] = sizeof(char)*(strlen(src->existencia)+1);
414 /* i[4] = sizeof(char)*(strlen(src->ubicacion)+1); */
415 i[4] = sizeof(char)*(strlen(src->pvu)+1);
416 i[5] = sizeof(char)*(strlen(src->emin)+1);
417 (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5];
418 tmp = (char *)malloc((*size));
419 if (tmp == NULL) return NULL;
420 memcpy(tmp, &src->numero, i[0]);
421 memcpy(tmp+i[0], src->desc, i[1]);
422 memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
423 memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
424 memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->pvu, i[4]);
425 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->emin, i[5]);
428 tmp = (char *)malloc(sizeof(t_Articulo));
429 if (tmp == NULL) return NULL;
430 memcpy(tmp, src, sizeof(t_Articulo));
431 (*size) = sizeof(t_Articulo);