5 static t_LstArticulos *lst_articulos;
7 static t_Articulo *art_form_buscar(WINDOW *win);
9 static void *procesar_guardar_articulo(t_Articulo *src, int *size, t_LstArticulos *lst);
10 static int procesar_leer_articulo(t_Articulo *dst, void *src, int size, t_LstArticulos *lst);
12 t_LstArticulos *art_cargar(const char *filename)
15 xmlNode *node, *inicio;
16 int cant, size, error = 0, i, id;
21 tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
22 if (tmp == NULL) return NULL;
25 /* tmp->array = (t_Reg_Articulo *)malloc(sizeof(t_Reg_Articulo)*tmp->cant);*/
27 if (tmp->array == NULL) {
32 if (filename != NULL) {
33 document = xmlReadFile(filename, "ISO-8859-1",0);
34 if (document == NULL) {
39 node = xmlDocGetRootElement(document);
40 /* Busco el TAG principal "ARTICULOS" */
42 if (node->type == XML_ELEMENT_NODE) {
43 if (strcmp(node->name, "ARTICULOS") == 0) {
44 inicio = node->children;
51 /* Cuento la cantidad de articulos en el archivo */
53 for ( ; node ; node = node->next) {
54 if (node->type == XML_ELEMENT_NODE) {
55 if (strcmp(node->name, "ARTICULO") == 0) {
61 /* leo los datos y los guardo en el archivo*/
63 /* FIXME : por ahora hago que entren 2 bloques y me sobre algo de espacio*/
64 tmp->fp = emufs_crear("articulos", T1, sizeof(t_Articulo)*2, sizeof(t_Articulo));
65 for (node=inicio ; node ; node = node->next) {
66 if (node->type == XML_ELEMENT_NODE) {
67 if (strcmp(node->name, "ARTICULO") == 0) {
69 art.numero = atoi(xmlGetProp(node, "NroArtículo"));
70 strncpy(art.desc, xmlGetProp(node, "Descripción"), 50);
71 strncpy(art.presentacion, xmlGetProp(node, "Presentación"), 30);
72 strncpy(art.existencia, xmlGetProp(node, "Existencia"), 8);
73 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
74 strncpy(art.pvu, xmlGetProp(node, "PVU"), 8);
75 strncpy(art.emin, xmlGetProp(node, "Emín"), 8);
76 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
77 save = procesar_guardar_articulo(&art, &size, lst_articulos);
79 tmp->array[cant].num_reg = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
80 tmp->array[cant].numero = art.numero;
91 tmp->fp = emufs_abrir("articulos");
92 /* Ahora trato de recuperar la info */
93 cant = emufs_idx_get_count(tmp->fp);
94 for(i=0; i<cant; i++) {
96 id = emufs_idx_get_id_at(tmp->fp, i);
98 save = tmp->fp->leer_registro(tmp->fp, id, &size, &error);
99 if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
100 tmp->array[i].num_reg = i;
101 tmp->array[i].numero = art.numero;
111 int art_liberar(t_LstArticulos *l)
113 if (l == NULL) l = lst_articulos;
114 if (l == NULL) return 1;
116 emufs_destruir(l->fp);
117 /* free(l->array); */
120 lst_articulos = NULL;
124 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero)
126 /* FIXME : NO ME GUSTA :-/ */
131 int n = atoi(numero);
133 if (lst == NULL) lst = lst_articulos;
134 if (lst == NULL) return NULL;
136 for(i=0; i<lst->cant; i++) {
137 if (n == lst->array[i].numero) {
138 art = (t_Articulo *)malloc(sizeof(t_Articulo));
139 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
140 tmp = lst->fp->leer_registro(lst->fp, lst->array[i].num_reg, &size, &error);
147 if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
160 t_Articulo *art_form_buscar(WINDOW *win)
163 t_Articulo *articulo;
165 form = form_crear(win);
166 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
167 form_ejecutar(form, 1,1);
168 articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"));
174 void art_modificar(char *s)
178 t_Articulo *articulo;
181 win = newwin(8, COLS-2, 13, 1);
185 articulo = art_form_buscar(win);
187 if (articulo != NULL) {
188 form = form_crear(win);
189 sprintf(num, "%07d", articulo->numero);
190 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
191 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
192 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
193 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
194 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
195 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
196 form_ejecutar(form, 1,1);
198 /* TODO : Actualizar registro */
203 wattron(win, COLOR_PAIR(COLOR_YELLOW));
204 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
205 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
214 void art_eliminar(char *s)
217 t_Articulo *articulo;
219 win = newwin(8, COLS-2, 13, 1);
223 articulo = art_form_buscar(win);
225 if (articulo == NULL) {
226 wattron(win, COLOR_PAIR(COLOR_YELLOW));
227 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
228 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
232 /* TODO : Eliminar un registro */
240 void art_agregar(char *s)
246 int error = 0, size, existe, i;
248 win = newwin(8, COLS-2, 13, 1);
252 form = form_crear(win);
253 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
254 form_agregar_widget(form, INPUT, "Descripción", 50, "");
255 form_agregar_widget(form, INPUT, "Presentación", 30, "");
256 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
257 form_agregar_widget(form, INPUT, "PVU", 8, "");
258 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
259 form_ejecutar(form, 1,1);
261 art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
263 for(i=0; i<lst_articulos->cant; i++) {
264 if (art.numero == lst_articulos->array[i].numero) {
271 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
272 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
273 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
274 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
275 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
276 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
278 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
279 save = procesar_guardar_articulo(&art, &size, lst_articulos);
281 lst_articulos->array[lst_articulos->cant].num_reg = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
283 wattron(win, COLOR_PAIR(COLOR_YELLOW));
284 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
285 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
289 lst_articulos->array[lst_articulos->cant].numero = art.numero;
290 lst_articulos->cant++;
294 wattron(win, COLOR_PAIR(COLOR_YELLOW));
295 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
296 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
307 int procesar_leer_articulo(t_Articulo *dst, void *src, int size, t_LstArticulos *lst)
310 switch (lst->fp->tipo) {
314 /* Copio el primer campo, esto es facil :-) */
315 memcpy(&dst->numero, ini, sizeof(unsigned int));
316 ini+=sizeof(unsigned int);
317 /* Ahora empieza el juego */
318 /* Los \0 son los delimitadores de campo! */
320 while (*fin!='\0') fin++;
321 memcpy(dst->desc, ini, fin-ini+1);
325 while (*fin!='\0') fin++;
326 memcpy(dst->presentacion, ini, fin-ini+1);
330 while (*fin!='\0') fin++;
331 memcpy(dst->existencia, ini, fin-ini+1);
335 while (*fin!='\0') fin++;
336 memcpy(dst->pvu, ini, fin-ini+1);
339 fin = (char *)src+size;
340 memcpy(dst->emin, ini, fin-ini+1);
344 if (size != sizeof(t_Articulo)) {
345 return 0; /* El tamaño no encaja!! */
347 memcpy(dst, src, size);
350 return 1; /* Todo ok */
353 void *procesar_guardar_articulo(t_Articulo *src, int *size, t_LstArticulos *lst)
357 switch(lst->fp->tipo) {
360 /* Calculo el tamaño que voy a necesitar */
361 i[0] = sizeof(unsigned int);
362 i[1] = sizeof(char)*(strlen(src->desc)+1);
363 i[2] = sizeof(char)*(strlen(src->presentacion)+1);
364 i[3] = sizeof(char)*(strlen(src->existencia)+1);
365 /* i[4] = sizeof(char)*(strlen(src->ubicacion)+1); */
366 i[4] = sizeof(char)*(strlen(src->pvu)+1);
367 i[5] = sizeof(char)*(strlen(src->emin)+1);
368 (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5];
369 tmp = (char *)malloc((*size));
370 if (tmp == NULL) return NULL;
371 memcpy(tmp, &src->numero, i[0]);
372 memcpy(tmp+i[0], src->desc, i[1]);
373 memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
374 memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
375 memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->pvu, i[4]);
376 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->emin, i[5]);
379 tmp = (char *)malloc(sizeof(t_Articulo));
380 if (tmp == NULL) return NULL;
381 memcpy(tmp, src, sizeof(t_Articulo));
382 (*size) = sizeof(t_Articulo);