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 fact_cargar(argv[1]);
139 art_cargar(NULL, -1, -1);
141 msg_box_free(stdscr, dialog);
143 /* CICLO PRINCIPAL DE LA APLICACION */
144 while ((c = main_menu()) != -1) {
151 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
152 ver_registros(dialog, COLS-2, LINES-4);
174 void menu_articulos()
187 items = (ITEM **)calloc(5, sizeof(ITEM *));
189 items[0] = new_item(opciones[0], "Crear un nuevo articulo.");
190 set_item_userptr(items[0], art_agregar);
191 items[1] = new_item(opciones[1], "Eliminar un articulo existente.");
192 set_item_userptr(items[1], art_eliminar);
193 items[2] = new_item(opciones[2], "Modificar un articulo existente.");
194 set_item_userptr(items[2], art_modificar);
195 items[3] = new_item(opciones[3], "Volver al menu anterior.");
198 menu = new_menu((ITEM **)items);
199 menu_win = newwin(8, COLS-2, 3, 1);
200 keypad(menu_win, TRUE);
201 set_menu_mark(menu, " > ");
202 set_menu_win(menu, menu_win);
203 set_menu_sub(menu, derwin(menu_win, 5, COLS-4, 3, 1));
206 mvwaddch(menu_win, 2, 0, ACS_LTEE);
207 mvwhline(menu_win, 2, 1, ACS_HLINE, COLS-3);
208 mvwaddch(menu_win, 2, COLS-3, ACS_RTEE);
209 wattron(menu_win, COLOR_PAIR(COLOR_RED));
210 mvwaddstr(menu_win, 1, 1, "Menu Articulos");
211 wattroff(menu_win, COLOR_PAIR(COLOR_RED));
217 while((!salir) && (c = getch()) != KEY_F(3)) {
220 menu_driver(menu, REQ_DOWN_ITEM);
223 menu_driver(menu, REQ_UP_ITEM);
230 cur = current_item(menu);
231 if (strcmp(item_name(cur), opciones[3]) == 0) {
234 p = item_userptr(cur);
237 p(NULL); /* Paso NULL para que ejecute la accion por defecto */
240 mvwaddch(menu_win, 2, 0, ACS_LTEE);
241 mvwhline(menu_win, 2, 1, ACS_HLINE, 67);
242 mvwaddch(menu_win, 2, 67, ACS_RTEE);
245 pos_menu_cursor(menu);
266 int c, salir, opcion;
277 items = (ITEM **)calloc(8, sizeof(ITEM *));
279 items[0] = new_item(opciones[0], "Alta,baja,consulta y modificacion de articulos.");
280 items[1] = new_item(opciones[1], "Alta,baja,consulta y modificacion de facturas.");
281 items[2] = new_item(opciones[2], "Ver registros de un archivo.");
282 items[3] = new_item(opciones[3], "Ver bloques de un archivo.");
283 items[4] = new_item(opciones[4], "Ver estadisticas de ocupacion de archivos.");
284 items[5] = new_item(opciones[5], "Tareas de mantenimiento de los archivos.");
285 items[6] = new_item(opciones[6], "Salir del sistema.");
288 menu = new_menu((ITEM **)items);
289 menu_win = newwin(14, COLS-2, 3, 1);
290 keypad(menu_win, TRUE);
291 set_menu_mark(menu, " > ");
292 set_menu_win(menu, menu_win);
293 set_menu_sub(menu, derwin(menu_win, 10, COLS-4, 3, 1));
296 mvwaddch(menu_win, 2, 0, ACS_LTEE);
297 mvwhline(menu_win, 2, 1, ACS_HLINE, COLS-3);
298 mvwaddch(menu_win, 2, COLS-3, ACS_RTEE);
299 wattron(menu_win, COLOR_PAIR(COLOR_RED));
300 mvwaddstr(menu_win, 1, 1, "Menu Principal");
301 wattroff(menu_win, COLOR_PAIR(COLOR_RED));
308 while((!salir) && (c = getch())) {
311 menu_driver(menu, REQ_DOWN_ITEM);
314 menu_driver(menu, REQ_UP_ITEM);
322 cur = current_item(menu);
324 if (strcmp(item_name(cur), opciones[i]) == 0)
327 pos_menu_cursor(menu);
352 static void finish(int sig)
356 /* do your non-curses wrapup here */
360 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...)
366 va_start(ap, format);
367 vsprintf(txt, format, ap);
372 dialog = derwin(win, mh, mw, h/2-mh/2, w/2-mw/2);
374 mvwaddstr(dialog, 1, 1, txt);
380 void msg_box_free(WINDOW *padre, WINDOW *win)