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} 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;
40 /* Ops, no hay mas parametros */
41 return TIPO_NO_DEFINIDO;
49 void print_help(char *s)
51 printf("EMUFS - 1v0\n");
52 printf("Modo de uso : %s [<archivo articulos XML> tipo=[1|2|3]]\n", s);
53 printf("\nSi especifica un archivo XML desde donde cargar los articulos debera tambien especificar el tipo");
54 printf(" de archivo a crear, siendo 1, 2, 3\n");
57 int main(int argc, char *argv[])
62 switch (param_ok(argc, argv)) {
66 case TIPO_NO_DEFINIDO:
67 printf("Falta parámetro requerido. Luego del nombre del archivo debe especificar el tipo de archivo\n");
70 printf("Tipo de archivo no valido. Los valores posibles para el tipo de archivo son:\n");
71 printf("\t1 - Archivo de bloque parametrizado y registro de long. variable.\n");
72 printf("\t2 - Archivo de registros variables sin bloques.\n");
73 printf("\t3 - Archivos de bloque parametrizado y registro de long. parametrizada.\n");
80 printf("CUIDADO! - Uds esta a punto de ejecutar EMUFS Gui compilado con mensajes de debug (-DDEBUG). ");
81 printf("Esto puede causar que ante un error alguna función trate de emitir un mensaje por pantalla ");
82 printf("haciendo que el aspecto visual se vea desvirtuado.\n\n");
83 printf("Todos los mensajes de error se envian por stderr, por lo que es conveniente que vuelva a ejecutar ");
84 printf("el programa de la siguiente manera :\n");
85 printf("\t#> %s <parametros> 2> error.log\n\n", argv[0]);
86 printf("De esta forma el SO se encargaga de redirigir stderr al archivo error.log y evitar algun problema en ");
87 printf("visualizacion de la aplicacion.\n");
88 printf("Para continuar **bajo su propio riesgo** presione una tecla. Puede cancelar la ejecucion en este punto con CTRL+C\n");
93 signal(SIGINT, finish);
99 /* Si se soporta color, los inicializo */
102 /* Simple color assignment, often all we need. */
103 init_pair(COLOR_BLACK, COLOR_BLACK, COLOR_BLACK); /* COLOR_PAIR(1) */
104 init_pair(COLOR_GREEN, COLOR_GREEN, COLOR_BLACK);
105 init_pair(COLOR_RED, COLOR_RED, COLOR_BLACK);
106 init_pair(COLOR_CYAN, COLOR_CYAN, COLOR_BLACK);
107 init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
108 init_pair(COLOR_MAGENTA, COLOR_MAGENTA, COLOR_BLACK);
109 init_pair(COLOR_BLUE, COLOR_BLUE, COLOR_BLACK);
110 init_pair(COLOR_YELLOW, COLOR_YELLOW, COLOR_BLACK);
113 /* Verifico un tamaño minimo de consola */
114 if ((LINES < 25) || (COLS < 80)) {
116 printf("El tamaño de la consola debe ser de por lo menos 80x25!\n");
120 /* Ventana, caracter para linea vertical, caracter para linea horizontal*/
121 box(stdscr, ACS_VLINE, ACS_HLINE);
122 /* Ventana, Y, X, Texto */
123 mvwaddstr(stdscr, 1, 1, "EMUFS");
124 attron(COLOR_PAIR(2));
125 mvwaddstr(stdscr, LINES-2, 1, "EMUFS (c) The EMUFS Team - Bajo Licencia GNU/GPL");
126 attroff(COLOR_PAIR(2));
129 dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ...");
131 art_cargar(argv[1], atoi(argv[2]));
132 fact_cargar(argv[1]);
134 art_cargar(NULL, -1);
136 msg_box_free(stdscr, dialog);
138 /* CICLO PRINCIPAL DE LA APLICACION */
139 while ((c = main_menu()) != -1) {
146 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
147 ver_registros(dialog, COLS-2, LINES-4);
169 void menu_articulos()
182 items = (ITEM **)calloc(5, sizeof(ITEM *));
184 items[0] = new_item(opciones[0], "Crear un nuevo articulo.");
185 set_item_userptr(items[0], art_agregar);
186 items[1] = new_item(opciones[1], "Eliminar un articulo existente.");
187 set_item_userptr(items[1], art_eliminar);
188 items[2] = new_item(opciones[2], "Modificar un articulo existente.");
189 set_item_userptr(items[2], art_modificar);
190 items[3] = new_item(opciones[3], "Volver al menu anterior.");
193 menu = new_menu((ITEM **)items);
194 menu_win = newwin(8, COLS-2, 3, 1);
195 keypad(menu_win, TRUE);
196 set_menu_mark(menu, " > ");
197 set_menu_win(menu, menu_win);
198 set_menu_sub(menu, derwin(menu_win, 5, COLS-4, 3, 1));
201 mvwaddch(menu_win, 2, 0, ACS_LTEE);
202 mvwhline(menu_win, 2, 1, ACS_HLINE, COLS-3);
203 mvwaddch(menu_win, 2, COLS-3, ACS_RTEE);
204 wattron(menu_win, COLOR_PAIR(COLOR_RED));
205 mvwaddstr(menu_win, 1, 1, "Menu Articulos");
206 wattroff(menu_win, COLOR_PAIR(COLOR_RED));
212 while((!salir) && (c = getch()) != KEY_F(3)) {
215 menu_driver(menu, REQ_DOWN_ITEM);
218 menu_driver(menu, REQ_UP_ITEM);
225 cur = current_item(menu);
226 if (strcmp(item_name(cur), opciones[3]) == 0) {
229 p = item_userptr(cur);
232 p(NULL); /* Paso NULL para que ejecute la accion por defecto */
235 mvwaddch(menu_win, 2, 0, ACS_LTEE);
236 mvwhline(menu_win, 2, 1, ACS_HLINE, 67);
237 mvwaddch(menu_win, 2, 67, ACS_RTEE);
240 pos_menu_cursor(menu);
261 int c, salir, opcion;
272 items = (ITEM **)calloc(8, sizeof(ITEM *));
274 items[0] = new_item(opciones[0], "Alta,baja,consulta y modificacion de articulos.");
275 items[1] = new_item(opciones[1], "Alta,baja,consulta y modificacion de facturas.");
276 items[2] = new_item(opciones[2], "Ver registros de un archivo.");
277 items[3] = new_item(opciones[3], "Ver bloques de un archivo.");
278 items[4] = new_item(opciones[4], "Ver estadisticas de ocupacion de archivos.");
279 items[5] = new_item(opciones[5], "Tareas de mantenimiento de los archivos.");
280 items[6] = new_item(opciones[6], "Salir del sistema.");
283 menu = new_menu((ITEM **)items);
284 menu_win = newwin(14, COLS-2, 3, 1);
285 keypad(menu_win, TRUE);
286 set_menu_mark(menu, " > ");
287 set_menu_win(menu, menu_win);
288 set_menu_sub(menu, derwin(menu_win, 10, COLS-4, 3, 1));
291 mvwaddch(menu_win, 2, 0, ACS_LTEE);
292 mvwhline(menu_win, 2, 1, ACS_HLINE, COLS-3);
293 mvwaddch(menu_win, 2, COLS-3, ACS_RTEE);
294 wattron(menu_win, COLOR_PAIR(COLOR_RED));
295 mvwaddstr(menu_win, 1, 1, "Menu Principal");
296 wattroff(menu_win, COLOR_PAIR(COLOR_RED));
303 while((!salir) && (c = getch())) {
306 menu_driver(menu, REQ_DOWN_ITEM);
309 menu_driver(menu, REQ_UP_ITEM);
317 cur = current_item(menu);
319 if (strcmp(item_name(cur), opciones[i]) == 0)
322 pos_menu_cursor(menu);
347 static void finish(int sig)
351 /* do your non-curses wrapup here */
355 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...)
361 va_start(ap, format);
362 vsprintf(txt, format, ap);
367 dialog = derwin(win, mh, mw, h/2-mh/2, w/2-mw/2);
369 mvwaddstr(dialog, 1, 1, txt);
375 void msg_box_free(WINDOW *padre, WINDOW *win)