vote up 6 vote down star

I'm writing a library which is to be dynamically loaded in C++.

I'd like to read argc and argv (for debugging reasons) from within my code, however I do not have access to the main function. Is there any way to retrieve the command line (both Windows and Linux solution would be nice).

Thanks, Dan

flag

60% accept rate

9 Answers

vote up 1 vote down check

This thread shows how to do it on Linux.

http://linux.derkeiler.com/Newsgroups/comp.os.linux.development.system/2005-07/0147.html

link|flag
vote up 9 vote down

There is the GetCommandLine() function in the Win32 API. On other platforms, you would have to save argc/argv somewhere (external variable?).

link|flag
vote up 10 vote down

On Linux the pseudo-file /proc/self/cmdline holds the command line for the process. Each argument is terminated with a 0 byte, and the final argument is followed by an additional 0 byte.

link|flag
vote up 4 vote down

May I suggest that this sounds like a weird situation. Are you writing a plugin or something? Perhaps you should not access argv/argc?

link|flag
I agree. If a library needs access to argv and argc, then the library probably could use a redesign. – Landon Oct 2 '08 at 0:26
GTK+ needs (or accepts, not sure) argc&argv for parsing, say, the --display parameter. It could be useful in this case, too; think "--debug". – aib Oct 2 '08 at 2:36
argv and argc are passed to GTK+ which is perfectly sensible. What I was referring to - and what DanJ is asking for - was a way for a library to access argv and argc. – Landon Oct 2 '08 at 3:10
vote up 3 vote down

In Windows you can use GetCommandLine() to get a pointer to the command line and then use CommandLineToArgvW() to convert that pointer to argv[] format. There is only a wide (Unicode) version available, though.

link|flag
vote up 0 vote down

Use getpid() and ps command.

int pid;

int fd;

char cmd[80];

pid = getpid();

sprintf(cmd, "ps %d", pid);

fd = popen(cmd, "r");

.... lines should be like

.... 1358 ./a.out abc def

link|flag
vote up 1 vote down

On windows you can access argc/argv via __argc and __argv. __wargv if you want the wide character version.

link|flag
vote up 1 vote down

On Windows, I use this type of thing to get the arguments:


#include <windows.h>
#include <string>
#include <vector>
#include <cwchar>
#include <cstdio>
#include <clocale>
using namespace std;

vector<wstring> getArgs() {
    int argc;
    wchar_t** argv = CommandLineToArgvW(GetCommandLineW(), &argc);
    vector<wstring> args;
    if (argv) {
        args.assign(argv, argv + argc);
        LocalFree(argv);
    }
    return args;
}

int main() {
    const vector<wstring> argv = getArgs();
    setlocale(LC_CTYPE, ".OCP");
    for (vector<wstring>::const_iterator i = argv.begin(); i != argv.end(); ++i) {
        wprintf(L"%s\n", i->c_str());
    }
}

Edit: A getArgs function like that is also useful for mingw as mingw doesn't support a wmain().

link|flag
vote up 0 vote down

Have you given any thought to using environment variables instead of the command line? Might be easier on the user depending on what kinds of applications the library will be used in, and you can use the standard getenv() function.

I think, in any case, if your library is going to use argc and argv, the program should be the one to pass them.

link|flag

Your Answer

Get an OpenID
or

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