i have a problem with parsing arguments from a program that i'm writing, the code is below:

void parse_args(int argc, char** argv)
{
    char ch;
    int index = 0;

    struct option options[] = {       
        { "help", no_argument, NULL, 'h'   },      
        { "port", required_argument, NULL, 'p'  },      
        { "stop", no_argument, NULL, 's' },         
        { 0,    0,    0,    0   }       
    };

    while ((ch = getopt_long(argc, argv, "hp:s", options, &index)) != -1) {
        switch (ch) {
            case 'h':   
                printf("Option h, or --help.\n");
                break;
            case 's':
                printf("Option s, or --stop.\n");

                break;
            case 'p':
                printf("Option p, or --port.\n");
                if (optarg != NULL)
                    printf("the port is %s\n", optarg);
                break;
            case '?':
                printf("I don't understand this option!!!\n");

            case -1:  
                break;
            default:
                printf("Help will be printed very soon -:)\n");
        }
    }
}

When i run my program i got some strange output :

./Server -p 80
Option p, or --port.
the port is 80

./Server -po 80
Option p, or --port.
the port is o

./Server -por 80
Option p, or --port.
the port is or

./Server -hoho
Option h, or --help.
Server: invalid option -- o
I don't understand this option!!!
link|improve this question

Why is it strange? What did you expect? – Tom Zych Sep 20 '11 at 19:45
the last three execution output is strange!!! – funnyCoder Sep 20 '11 at 19:50
1  
No it's not. You pass -p, and it interprets the next thing (o or or) as the count, and ignores 80. p should go after o and r. In the fourth run, it's only counting each letter once. – Tom Zych Sep 20 '11 at 20:02
2  
Oh. It accepts single-letter options folded together, like in Unix when you type ls -ltr. You didn't know that? Quit with the !!!, it's not like you're the boss of anyone here. – Tom Zych Sep 20 '11 at 20:10
1  
Lemme try to explain the !!! thing. It's displaying emotion where none is warranted. You're acting excited/forceful and it's socially unacceptable. Your poor grammar, on the other hand, is merely embarrassing and shows that you're a kid. As for getopt(), it works, but it doesn't act like you think it should. Welcome to the rest of your coding life. If you want it to change, you're going to have to do it yourself. OR you're going to have to accept a different way of parsing inputs. AND you're going to have to validate your input regardless. Trust me. – Philip Sep 20 '11 at 20:25
show 5 more comments
feedback

1 Answer

up vote 4 down vote accepted

I think the confusion stems from a misunderstanding of long get opt. Essentially it will do partial string match only when you use the -- form. When you only use - it will fallback to standard parsing so -por 80 is matched as -p or 80 (as in, the option is -p and the argument is or). Try the same thing with --po and --por. As for help, try --he or--hel

link|improve this answer
Thanks it's more clear, so if i understand the only secure way to handle user input is to use something like strcmp() to validate user strings? – funnyCoder Sep 20 '11 at 20:35
1  
@funnyCoder there's another call getopt_long_only. check that out – Foo Bah Sep 20 '11 at 23:28
getopt_long_only does exactly what OP wants, I think... – R.. Sep 21 '11 at 4:37
Thanks guys, your help was great :) – funnyCoder Sep 21 '11 at 19:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.