10 #include "articulos.h"
13 #include "registros.h"
17 static void finish(int sig);
20 void menu_articulos();
21 /* cuadro de msg. w y h son de la ventana padre */
22 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...);
23 void msg_box_free(WINDOW *padre, WINDOW *win);
25 typedef enum {PARAM_OK, SHOW_HELP, TIPO_NO_DEFINIDO, TIPO_INVALIDO, BLOQUE_NO_DEFINIDO} t_Param;
27 /* Verifica Argumentos */
28 t_Param param_ok(int argc, char *argv[])
31 for(i=1; i<argc; i++) {
32 if ((strcmp(argv[i], "-h")==0) || (strcmp(argv[i], "--help")==0)) return SHOW_HELP;
34 if (strcmp(argv[i]+strlen(argv[i])-3, "xml") == 0) {
35 /* Luego del archivo XML debe seguir el tipo */
38 if ((n < 1) || (n > 3)) return TIPO_INVALIDO;
39 if (((n == 1) || (n == 3)) && ((i+2)>=argc))
40 return BLOQUE_NO_DEFINIDO;
42 /* Ops, no hay mas parametros */
43 return TIPO_NO_DEFINIDO;
51 void print_help(char *s)
53 printf("EMUFS - 1v0\n");
54 printf("Modo de uso : %s [<archivo articulos XML> tipo=[1|2|3]]\n", s);
55 printf("\nSi especifica un archivo XML desde donde cargar los articulos debera tambien especificar el tipo");
56 printf(" de archivo a crear, siendo 1, 2, 3\n");
59 int main(int argc, char *argv[])
64 switch (param_ok(argc, argv)) {
68 case TIPO_NO_DEFINIDO:
69 printf("Falta parámetro requerido.\nLuego del nombre del archivo debe especificar el tipo de archivo\n");
71 case BLOQUE_NO_DEFINIDO:
72 printf("Falta parámetro requerido.\nLuego del tipo de archivo debe especificar el tamaño del bloque a utilizar\n");
75 printf("Tipo de archivo no valido. Los valores posibles para el tipo de archivo son:\n");
76 printf("\t1 - Archivo de bloque parametrizado y registro de long. variable.\n");
77 printf("\t2 - Archivo de registros variables sin bloques.\n");
78 printf("\t3 - Archivos de bloque parametrizado y registro de long. parametrizada.\n");
85 printf("CUIDADO! - Uds esta a punto de ejecutar EMUFS Gui compilado con mensajes de debug (-DDEBUG). ");
86 printf("Esto puede causar que ante un error alguna función trate de emitir un mensaje por pantalla ");
87 printf("haciendo que el aspecto visual se vea desvirtuado.\n\n");
88 printf("Todos los mensajes de error se envian por stderr, por lo que es conveniente que vuelva a ejecutar ");
89 printf("el programa de la siguiente manera :\n");
90 printf("\t#> %s <parametros> 2> error.log\n\n", argv[0]);
91 printf("De esta forma el SO se encargaga de redirigir stderr al archivo error.log y evitar algun problema en ");
92 printf("visualizacion de la aplicacion.\n");
93 printf("Para continuar **bajo su propio riesgo** presione una tecla. Puede cancelar la ejecucion en este punto con CTRL+C\n");
98 signal(SIGINT, finish);
100 keypad(stdscr, TRUE);
104 /* Si se soporta color, los inicializo */
107 /* Simple color assignment, often all we need. */
108 init_pair(COLOR_BLACK, COLOR_BLACK, COLOR_BLACK); /* COLOR_PAIR(1) */
109 init_pair(COLOR_GREEN, COLOR_GREEN, COLOR_BLACK);
110 init_pair(COLOR_RED, COLOR_RED, COLOR_BLACK);
111 init_pair(COLOR_CYAN, COLOR_CYAN, COLOR_BLACK);
112 init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
113 init_pair(COLOR_MAGENTA, COLOR_MAGENTA, COLOR_BLACK);
114 init_pair(COLOR_BLUE, COLOR_BLUE, COLOR_BLACK);
115 init_pair(COLOR_YELLOW, COLOR_YELLOW, COLOR_BLACK);
118 /* Verifico un tamaño minimo de consola */
119 if ((LINES < 25) || (COLS < 80)) {
121 printf("El tamaño de la consola debe ser de por lo menos 80x25!\n");
125 /* Ventana, caracter para linea vertical, caracter para linea horizontal*/
126 box(stdscr, ACS_VLINE, ACS_HLINE);
127 /* Ventana, Y, X, Texto */
128 mvwaddstr(stdscr, 1, 1, "EMUFS");
129 attron(COLOR_PAIR(2));
130 mvwaddstr(stdscr, LINES-2, 1, "EMUFS (c) The EMUFS Team - Bajo Licencia GNU/GPL");
131 attroff(COLOR_PAIR(2));
134 dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ...");
136 art_cargar(argv[1], atoi(argv[2]), atoi(argv[3]));
137 if (!fact_cargar("facturas.xml", 3, 100))
138 fprintf(stderr, "ERROR CARGANDO FACTURAS\n");
140 art_cargar(NULL, -1, -1);
142 msg_box_free(stdscr, dialog);
144 /* CICLO PRINCIPAL DE LA APLICACION */
145 while ((c = main_menu()) != -1) {
152 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
153 ver_registros(dialog, COLS-2, LINES-4);
175 void menu_articulos()
188 items = (ITEM **)calloc(5, sizeof(ITEM *));
190 items[0] = new_item(opciones[0], "Crear un nuevo articulo.");
191 set_item_userptr(items[0], art_agregar);
192 items[1] = new_item(opciones[1], "Eliminar un articulo existente.");
193 set_item_userptr(items[1], art_eliminar);
194 items[2] = new_item(opciones[2], "Modificar un articulo existente.");
195 set_item_userptr(items[2], art_modificar);
196 items[3] = new_item(opciones[3], "Volver al menu anterior.");
199 menu = new_menu((ITEM **)items);
200 menu_win = newwin(8, COLS-2, 3, 1);
201 keypad(menu_win, TRUE);
202 set_menu_mark(menu, " > ");
203 set_menu_win(menu, menu_win);
204 set_menu_sub(menu, derwin(menu_win, 5, COLS-4, 3, 1));
207 mvwaddch(menu_win, 2, 0, ACS_LTEE);
208 mvwhline(menu_win, 2, 1, ACS_HLINE, COLS-3);
209 mvwaddch(menu_win, 2, COLS-3, ACS_RTEE);
210 wattron(menu_win, COLOR_PAIR(COLOR_RED));
211 mvwaddstr(menu_win, 1, 1, "Menu Articulos");
212 wattroff(menu_win, COLOR_PAIR(COLOR_RED));
218 while((!salir) && (c = getch()) != KEY_F(3)) {
221 menu_driver(menu, REQ_DOWN_ITEM);
224 menu_driver(menu, REQ_UP_ITEM);
231 cur = current_item(menu);
232 if (strcmp(item_name(cur), opciones[3]) == 0) {
235 p = item_userptr(cur);
238 p(NULL); /* Paso NULL para que ejecute la accion por defecto */
241 mvwaddch(menu_win, 2, 0, ACS_LTEE);
242 mvwhline(menu_win, 2, 1, ACS_HLINE, 67);
243 mvwaddch(menu_win, 2, 67, ACS_RTEE);
246 pos_menu_cursor(menu);
267 int c, salir, opcion;
278 items = (ITEM **)calloc(8, sizeof(ITEM *));
280 items[0] = new_item(opciones[0], "Alta,baja,consulta y modificacion de articulos.");
281 items[1] = new_item(opciones[1], "Alta,baja,consulta y modificacion de facturas.");
282 items[2] = new_item(opciones[2], "Ver registros de un archivo.");
283 items[3] = new_item(opciones[3], "Ver bloques de un archivo.");
284 items[4] = new_item(opciones[4], "Ver estadisticas de ocupacion de archivos.");
285 items[5] = new_item(opciones[5], "Tareas de mantenimiento de los archivos.");
286 items[6] = new_item(opciones[6], "Salir del sistema.");
289 menu = new_menu((ITEM **)items);
290 menu_win = newwin(14, COLS-2, 3, 1);
291 keypad(menu_win, TRUE);
292 set_menu_mark(menu, " > ");
293 set_menu_win(menu, menu_win);
294 set_menu_sub(menu, derwin(menu_win, 10, COLS-4, 3, 1));
297 mvwaddch(menu_win, 2, 0, ACS_LTEE);
298 mvwhline(menu_win, 2, 1, ACS_HLINE, COLS-3);
299 mvwaddch(menu_win, 2, COLS-3, ACS_RTEE);
300 wattron(menu_win, COLOR_PAIR(COLOR_RED));
301 mvwaddstr(menu_win, 1, 1, "Menu Principal");
302 wattroff(menu_win, COLOR_PAIR(COLOR_RED));
309 while((!salir) && (c = getch())) {
312 menu_driver(menu, REQ_DOWN_ITEM);
315 menu_driver(menu, REQ_UP_ITEM);
323 cur = current_item(menu);
325 if (strcmp(item_name(cur), opciones[i]) == 0)
328 pos_menu_cursor(menu);
353 static void finish(int sig)
357 /* do your non-curses wrapup here */
361 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...)
367 va_start(ap, format);
368 vsprintf(txt, format, ap);
373 dialog = derwin(win, mh, mw, h/2-mh/2, w/2-mw/2);
375 mvwaddstr(dialog, 1, 1, txt);
381 void msg_box_free(WINDOW *padre, WINDOW *win)