WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...);
void msg_box_free(WINDOW *padre, WINDOW *win);
+typedef enum {PARAM_OK, SHOW_HELP, TIPO_NO_DEFINIDO, TIPO_INVALIDO, BLOQUE_NO_DEFINIDO} t_Param;
+
/* Verifica Argumentos */
-int param_ok(int argc, char *argv[])
+t_Param param_ok(int argc, char *argv[])
{
- int n;
- switch (argc) {
- case 1:
- return 1;
- case 2:
- if (strcmp("-h", argv[1]) == 0) {
- return 0;
+ int n,i;
+ for(i=1; i<argc; i++) {
+ if ((strcmp(argv[i], "-h")==0) || (strcmp(argv[i], "--help")==0)) return SHOW_HELP;
+
+ if (strcmp(argv[i]+strlen(argv[i])-3, "xml") == 0) {
+ /* Luego del archivo XML debe seguir el tipo */
+ if ((i+1)<argc) {
+ n = atoi(argv[i+1]);
+ if ((n < 1) || (n > 3)) return TIPO_INVALIDO;
+ if (((n == 1) || (n == 3)) && ((i+2)>=argc))
+ return BLOQUE_NO_DEFINIDO;
+ } else {
+ /* Ops, no hay mas parametros */
+ return TIPO_NO_DEFINIDO;
}
- case 3:
- n = atoi(argv[2]);
- if ((n<1) || (n>3))
- return 0;
+ }
}
- return 1;
+
+ return PARAM_OK;
}
void print_help(char *s)
int c, fin=0;
WINDOW *dialog;
- if (!param_ok(argc, argv)) {
- print_help(argv[0]);
- return -1;
+ switch (param_ok(argc, argv)) {
+ case SHOW_HELP:
+ print_help(argv[0]);
+ return 0;
+ case TIPO_NO_DEFINIDO:
+ printf("Falta parámetro requerido.\nLuego del nombre del archivo debe especificar el tipo de archivo\n");
+ return 1;
+ case BLOQUE_NO_DEFINIDO:
+ printf("Falta parámetro requerido.\nLuego del tipo de archivo debe especificar el tamaño del bloque a utilizar\n");
+ return 1;
+ case TIPO_INVALIDO:
+ printf("Tipo de archivo no valido. Los valores posibles para el tipo de archivo son:\n");
+ printf("\t1 - Archivo de bloque parametrizado y registro de long. variable.\n");
+ printf("\t2 - Archivo de registros variables sin bloques.\n");
+ printf("\t3 - Archivos de bloque parametrizado y registro de long. parametrizada.\n");
+ return 2;
+ case PARAM_OK:
+ fin = 0;
}
+#ifdef DEBUG
+ printf("CUIDADO! - Uds esta a punto de ejecutar EMUFS Gui compilado con mensajes de debug (-DDEBUG). ");
+ printf("Esto puede causar que ante un error alguna función trate de emitir un mensaje por pantalla ");
+ printf("haciendo que el aspecto visual se vea desvirtuado.\n\n");
+ printf("Todos los mensajes de error se envian por stderr, por lo que es conveniente que vuelva a ejecutar ");
+ printf("el programa de la siguiente manera :\n");
+ printf("\t#> %s <parametros> 2> error.log\n\n", argv[0]);
+ printf("De esta forma el SO se encargaga de redirigir stderr al archivo error.log y evitar algun problema en ");
+ printf("visualizacion de la aplicacion.\n");
+ printf("Para continuar **bajo su propio riesgo** presione una tecla. Puede cancelar la ejecucion en este punto con CTRL+C\n");
+ fgetc(stdin);
+#endif
+
/* Inicio Curses */
signal(SIGINT, finish);
initscr();
wrefresh(stdscr);
dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ...");
- if (argc == 3) {
- art_cargar(argv[1], atoi(argv[2]));
- fact_cargar(argv[1]);
+ if (argc == 4) {
+ art_cargar(argv[1], atoi(argv[2]), atoi(argv[3]));
+ if (!fact_cargar("facturas.xml", 3, 100))
+ fprintf(stderr, "ERROR CARGANDO FACTURAS\n");
} else
- art_cargar(NULL, -1);
+ art_cargar(NULL, -1, -1);
msg_box_free(stdscr, dialog);
p = item_userptr(cur);
unpost_menu(menu);
refresh();
- p((char *)item_name(cur));
+ p(NULL); /* Paso NULL para que ejecute la accion por defecto */
post_menu(menu);
box(menu_win,0,0);
mvwaddch(menu_win, 2, 0, ACS_LTEE);