I have found that the easiest way to build my program argument list is as a vector of strings. However, execv expects an array of chars for the second argument. What's the easiest way to get it to accept of vector of strings?
execv()
accepts only an array of string pointers. There is no way to get it to accept anything else. It is a standard interface, callable from every hosted language, not just C++.
I have tested compiling this:
std::vector<string> vector;
const char *programname = "abc";
const char **argv = new const char* [vector.size()+2]; // extra room for program name and sentinel
argv [0] = programname; // by convention, argv[0] is program name
for (int j = 0; j < vector.size()+1; ++j) // copy args
argv [j+1] = vector[j] .c_str();
argv [vector.size()+1] = NULL; // end of arguments sentinel is NULL
execv (programname, (char **)argv);
argv[0] = programname
. It says test.cpp:10: error: expected constructor, destructor, or type conversion before ‘=’ token
–
Buddhi unistd.h
, string
, and vector
and using namespace std;
. –
Student int main(void) {
... return 0;}
so it would compile and link. –
Student execv
legit? The documentation expects an array of constant pointers to modifiable characters, the cast removes that cast and allows execv
modifying memory that is marked as const
... not that there would be any reason for execv
to modify the data but... –
Manymanya argv
using delete
? Where can we do that? –
Maunder execv
works (without error), the process is overwritten, so no. If execv
fails, then maybe delete
would be needed. –
Student const char **argv
with std::vector<const char*>
, and then call execv()
with argv.data()
. –
Hamlin Yes, it can be done pretty cleanly by taking advantage of the internal array that vector
s use. Best to not use C++ strings in the vector, and const_cast
string literals and string.c_str()
's to char*
.
This will work, since the standard guarantees its elements are stored contiguously (see https://mcmap.net/q/79974/-how-to-convert-vector-to-array)
#include <unistd.h>
#include <vector>
using std::vector;
int main() {
vector<const char*> command;
// do a push_back for the command, then each of the arguments
command.push_back("echo");
command.push_back("testing");
command.push_back("1");
command.push_back("2");
command.push_back("3");
// push NULL to the end of the vector (execvp expects NULL as last element)
command.push_back(NULL);
// pass the vector's internal array to execvp
execvp(command[0], const_cast<char* const*>(command.data()));
return 1;
}
Code adapted from: How to pass a vector to execvp
Do a const_cast
to avoid the "deprecated conversion from string constant to 'char*'". String literals are implemented as const char*
in C++. const_cast
is the safest form of cast here, as it only removes the const
and does not do any other funny business. execvp()
will not edit the values anyway.
If you want to avoid all casts, you have to complicate this code by copying all the values to char*
types not really worth it.
Although if the number of arguments you want to pass to execv
/execl
is known, it's easier to write this in C.
vector<const char*>
instead, then you can get rid of all the const_cast
s. –
Hamlin The prototype for execv
is:
int execv(const char *path, char *const argv[]);
That means the argument list is an array of pointers to null-terminated c strings.
You have vector<string>
. Find out the size of that vector and make an array of pointers to char. Then loop through the vector and for each string
in the vector set the corresponding element of the array to point to it.
std::string
stores it's data typically without the null-terminator. You'd have to use std::string::c_str()
or include the null-terminator in each string in the vector manuall, prior to calling execv()
. –
Francium std::string
stores it's data typically without the null-terminator" - since C++11, std::string
is required to store a null terminator in its data buffer. But even before C++11, most implementations did that anyway, to keep c_str()
simple. –
Hamlin You can't change the how execv works (not easily anyway), but you could overload the function name with one that works the way you want it to:
int execv(const string& path, const vector<string>& argv) {
vector<const char*> av;
for (const string& a : argv) {
av.push_back(a.c_str());
av.push_back(0);
return execv(path.c_str(), &av[0]);
}
Of course, this may cause some confusion. You would be better off giving it a name other than execv().
NB: I just typed this in off the top of my head. It may not work. It may not even compile ;-)
&argv[0]
from const char** to char* const* –
Stallings I stumbled over the same problem a while ago.
I ended up building the argument list in a std::basic_string<char const*>
. Then I called the c_str()
method and did a const_cast<char* const*>
on the result to obtain the list in a format that execv
accepts.
For composed arguments, I new
ed strings (ordinary strings made of ordinary chars ;) ), took their c_str()
and let them leak.
The const_cast
is necessary to remove an additional const
as the c_str()
method of the given string type returns a char const* const*
iirc. Typing this, I think I could have used std::basic_string<char*>
but I guess I had a reason...
I am well aware that the const
-casting and memory leaking looks a bit rude and is indeed bad practise, but since execv
replaces the whole process it won't matter anyway.
Here's what I ended up doing:
std::vector<std::string>
to grab all the arguments I need.- Creating
std::vector<const char *>
right beforeexecv()
, reserving enough space in it for all the arguments. - Converting the second vector using
std::transform()
. - Feeding it to
execv()
usingconst_cast<char* const*>(vec.data())
.
Transform pass:
std::transform(stringsVec.cbegin(), stringsVec.cend(), charsVec.begin(),
[](const std::string &arg)
{
return arg.c_str();
});
This is basically a combination of @ericcurtin's and @Ferruccio's answers.
© 2022 - 2024 — McMap. All rights reserved.