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 t_LstArticulos *art_cargar(const char *filename)
15 xmlNode *node, *inicio;
16 int cant, error = 0, i, id;
22 tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
23 if (tmp == NULL) return NULL;
26 /* tmp->array = (t_Reg_Articulo *)malloc(sizeof(t_Reg_Articulo)*tmp->cant);*/
28 if (tmp->array == NULL) {
33 if (filename != NULL) {
34 document = xmlReadFile(filename, "ISO-8859-1",0);
35 if (document == NULL) {
40 node = xmlDocGetRootElement(document);
41 /* Busco el TAG principal "ARTICULOS" */
43 if (node->type == XML_ELEMENT_NODE) {
44 if (strcmp(node->name, "ARTICULOS") == 0) {
45 inicio = node->children;
52 /* Cuento la cantidad de articulos en el archivo */
54 for ( ; node ; node = node->next) {
55 if (node->type == XML_ELEMENT_NODE) {
56 if (strcmp(node->name, "ARTICULO") == 0) {
62 /* leo los datos y los guardo en el archivo*/
64 /* FIXME : por ahora hago que entren 2 bloques y me sobre algo de espacio*/
65 tmp->fp = emufs_crear("articulos", T2, sizeof(t_Articulo)*2, sizeof(t_Articulo));
66 for (node=inicio ; node ; node = node->next) {
67 if (node->type == XML_ELEMENT_NODE) {
68 if (strcmp(node->name, "ARTICULO") == 0) {
70 art.numero = atoi(xmlGetProp(node, "NroArtículo"));
71 strncpy(art.desc, xmlGetProp(node, "Descripción"), 50);
72 strncpy(art.presentacion, xmlGetProp(node, "Presentación"), 30);
73 strncpy(art.existencia, xmlGetProp(node, "Existencia"), 8);
74 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
75 strncpy(art.pvu, xmlGetProp(node, "PVU"), 8);
76 strncpy(art.emin, xmlGetProp(node, "Emín"), 8);
77 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
78 save = procesar_guardar_articulo(&art, &size, lst_articulos);
80 tmp->array[cant].num_reg = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
81 tmp->array[cant].numero = art.numero;
92 tmp->fp = emufs_abrir("articulos");
93 /* Ahora trato de recuperar la info */
94 cant = emufs_idx_get_count(tmp->fp);
95 for(i=0; i<cant; i++) {
97 id = emufs_idx_get_id_at(tmp->fp, i);
99 save = tmp->fp->leer_registro(tmp->fp, id, &size, &error);
100 if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
101 tmp->array[i].num_reg = i;
102 tmp->array[i].numero = art.numero;
112 int art_liberar(t_LstArticulos *l)
114 if (l == NULL) l = lst_articulos;
115 if (l == NULL) return 1;
117 emufs_destruir(l->fp);
118 /* free(l->array); */
121 lst_articulos = NULL;
125 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero)
127 /* FIXME : NO ME GUSTA :-/ */
132 int n = atoi(numero);
134 if (lst == NULL) lst = lst_articulos;
135 if (lst == NULL) return NULL;
137 for(i=0; i<lst->cant; i++) {
138 if (n == lst->array[i].numero) {
139 art = (t_Articulo *)malloc(sizeof(t_Articulo));
140 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
141 tmp = lst->fp->leer_registro(lst->fp, lst->array[i].num_reg, &size, &error);
148 if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
161 t_Articulo *art_form_buscar(WINDOW *win)
164 t_Articulo *articulo;
166 form = form_crear(win);
167 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
168 form_ejecutar(form, 1,1);
169 articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"));
175 void art_modificar(char *s)
179 t_Articulo *articulo;
182 win = newwin(8, COLS-2, 13, 1);
186 articulo = art_form_buscar(win);
188 if (articulo != NULL) {
189 form = form_crear(win);
190 sprintf(num, "%07d", articulo->numero);
191 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
192 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
193 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
194 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
195 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
196 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
197 form_ejecutar(form, 1,1);
199 /* TODO : Actualizar registro */
204 wattron(win, COLOR_PAIR(COLOR_YELLOW));
205 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
206 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
215 void art_eliminar(char *s)
218 t_Articulo *articulo;
220 win = newwin(8, COLS-2, 13, 1);
224 articulo = art_form_buscar(win);
226 if (articulo == NULL) {
227 wattron(win, COLOR_PAIR(COLOR_YELLOW));
228 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
229 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
233 for(i=0; i<lst_articulos->cant; i++) {
234 if (lst_articulos->array[i].numero == articulo->numero) {
235 lst_articulos->array[i].numero = -1;
236 lst_articulos->fp->borrar_registro(lst_articulos->fp, lst_articulos->array[i].num_reg);
248 void art_agregar(char *s)
254 int error = 0, existe, i;
257 win = newwin(8, COLS-2, 13, 1);
261 form = form_crear(win);
262 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
263 form_agregar_widget(form, INPUT, "Descripción", 50, "");
264 form_agregar_widget(form, INPUT, "Presentación", 30, "");
265 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
266 form_agregar_widget(form, INPUT, "PVU", 8, "");
267 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
268 form_ejecutar(form, 1,1);
270 art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
272 for(i=0; i<lst_articulos->cant; i++) {
273 if (art.numero == lst_articulos->array[i].numero) {
280 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
281 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
282 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
283 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
284 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
285 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
287 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
288 save = procesar_guardar_articulo(&art, &size, lst_articulos);
290 lst_articulos->array[lst_articulos->cant].num_reg = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
292 wattron(win, COLOR_PAIR(COLOR_YELLOW));
293 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
294 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
298 lst_articulos->array[lst_articulos->cant].numero = art.numero;
299 lst_articulos->cant++;
303 wattron(win, COLOR_PAIR(COLOR_YELLOW));
304 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
305 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
316 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
319 switch (lst->fp->tipo) {
323 /* Copio el primer campo, esto es facil :-) */
324 memcpy(&dst->numero, ini, sizeof(unsigned int));
325 ini+=sizeof(unsigned int);
326 /* Ahora empieza el juego */
327 /* Los \0 son los delimitadores de campo! */
329 while (*fin!='\0') fin++;
330 memcpy(dst->desc, ini, fin-ini+1);
334 while (*fin!='\0') fin++;
335 memcpy(dst->presentacion, ini, fin-ini+1);
339 while (*fin!='\0') fin++;
340 memcpy(dst->existencia, ini, fin-ini+1);
344 while (*fin!='\0') fin++;
345 memcpy(dst->pvu, ini, fin-ini+1);
348 fin = (char *)src+size;
349 memcpy(dst->emin, ini, fin-ini+1);
353 if (size != sizeof(t_Articulo)) {
354 return 0; /* El tamaño no encaja!! */
356 memcpy(dst, src, size);
359 return 1; /* Todo ok */
362 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
366 switch(lst->fp->tipo) {
369 /* Calculo el tamaño que voy a necesitar */
370 i[0] = sizeof(unsigned int);
371 i[1] = sizeof(char)*(strlen(src->desc)+1);
372 i[2] = sizeof(char)*(strlen(src->presentacion)+1);
373 i[3] = sizeof(char)*(strlen(src->existencia)+1);
374 /* i[4] = sizeof(char)*(strlen(src->ubicacion)+1); */
375 i[4] = sizeof(char)*(strlen(src->pvu)+1);
376 i[5] = sizeof(char)*(strlen(src->emin)+1);
377 (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5];
378 tmp = (char *)malloc((*size));
379 if (tmp == NULL) return NULL;
380 memcpy(tmp, &src->numero, i[0]);
381 memcpy(tmp+i[0], src->desc, i[1]);
382 memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
383 memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
384 memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->pvu, i[4]);
385 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->emin, i[5]);
388 tmp = (char *)malloc(sizeof(t_Articulo));
389 if (tmp == NULL) return NULL;
390 memcpy(tmp, src, sizeof(t_Articulo));
391 (*size) = sizeof(t_Articulo);