vote up 4 vote down star
1

Hi all,

I'm fairly new to C++ so this is probably somewhat of a beginner question. It regards the "proper" style for doing something I suspect to be rather common.

I'm writing a function that, in performing its duties, allocates memory on the heap for use by the caller. I'm curious about what a good prototype for this function should look like. Right now I've got:

int f(char** buffer);

To use it, I would write:

char* data;
int data_length = f(&data);
// ...
delete[] data;

However, the fact that I'm passing a pointer to a pointer tips me off that I'm probably doing this the wrong way.

Anyone care to enlighten me?

flag

12 Answers

vote up 5 vote down check

In C, that would have been more or less legal.

In C++, functions typically shouldn't do that. You should try to use RAII to guarantee memory doesn't get leaked.

And now you might say "how would it leak memory, I call delete[] just there!", but what if an exception is thrown at the // ... lines?

Depending on what exactly the functions are meant to do, you have several options to consider. One obvious one is to replace the array with a vector:

std::vector<char> f();

std::vector<char> data = f();
int data_length = data.size();
// ...
//delete[] data;

and now we no longer need to explicitly delete, because the vector is allocated on the stack, and its destructor is called when it goes out of scope.

I should mention, in response to comments, that the above implies a copy of the vector, which could potentially be expensive. Most compilers will, if the f function is not too complex, optimize that copy away so this will be fine. (and if the function isn't called too often, the overhead won't matter anyway). But if that doesn't happen, you could instead pass an empty array to the f function by reference, and have f store its data in that instead of returning a new vector.

If the performance of returning a copy is unacceptable, another alternative would be to decouple the choice of container entirely, and use iterators instead:

// definition of f
template <typename iter>
void f(iter out);

// use of f
std::vector<char> vec;
f(std::back_inserter(vec));

Now the usual iterator operations can be used (*out to reference or write to the current element, and ++out to move the iterator forward to the next element) -- and more importantly, all the standard algorithms will now work. You could use std::copy to copy the data to the iterator, for example. This is the approach usually chosen by the standard library (ie. it is a good idea;)) when a function has to return a sequence of data.

Another option would be to make your own object taking responsibility for the allocation/deallocation:

struct f { // simplified for the sake of example. In the real world, it should be given a proper copy constructor + assignment operator, or they should be made inaccessible to avoid copying the object
  f(){
    // do whatever the f function was originally meant to do here
    size = ???
    data = new char[size];
  }
  ~f() { delete[] data; }

int size;
char* data;
};

f data;
int data_length = data.size;
// ...
//delete[] data;

And again we no longer need to explicitly delete because the allocation is managed by an object on the stack. The latter is obviously more work, and there's more room for errors, so if the standard vector class (or other standard library components) do the job, prefer them. This example is only if you need something customized to your situation.

The general rule of thumb in C++ is that "if you're writing a delete or delete[] outside a RAII object, you're doing it wrong. If you're writing a new or `new[] outside a RAII object, you're doing it wrong, unless the result is immediately passed to a smart pointer"

link|flag
This is terrible advice, return the vector by copy? There is an unnecessary malloc and memcpy in your first snippet. I also think your 2nd example is an example of archaic C++ (i.e. pre-STL), one would not typically write it in this manner if one had a thorough knowledge of stl and boost. – polyglot Jul 23 at 14:24
The second example is basically a step back, saying we have no clue what the f function was meant to do, because the OP didn't describe that. So perhaps its responsibilities mean that it could be better implemented as its own object. Of course, if the job is simply "return a fixed-size buffer", then the second method is downright silly. But we don't know that, and I simply wanted to show a more general solution. As to returning th evector by value, most compilers implement RVO and NRVO. Although again, that may not work depending on the (unknown) complexity of the f function. – jalf Jul 23 at 14:26
If you were going to lug out the RVO/NVRO line you should have at least said! :):) – polyglot Jul 23 at 14:28
1  
@Joe: It depends. As you say, it's simpler to just return a copy, and simplicity is always nice. My rule of thumb is that there's no harm in it in simple cases. In more complex cases, a better solution might be to pass in an output iterator the function can write data to, completely detaching the function from the particular container used. Perhaps I should add an example of that. – jalf Jul 23 at 14:53
1  
@polyglot: As I said, 97% of these cases will add up to 1.327% of the system's overall performance. I haven't seen any statement of the OP regarding the size of the buffer, but if it indeed is that big, than this particular case might fall under the 3% where it matters. (A possible exception could be if this only happens once a week.) But in general I won't worry too much about such details until I've measured that they matter. Spending my time on the 97% that don't matter would prevent me from caring where it matters and would have driven me out of my job (and this industry) a decade ago. – sbi Jul 24 at 13:36
show 17 more comments
vote up 0 vote down

The proper style is probably not to use a char* but a std::vector or a std::string depending on what you are using char* for.

About the problem of passing a parameter to be modified, instead of passing a pointer, pass a reference. In your case:

int f(char*&);

and if you follow the first advice:

int f(std::string&);

or

int f(std::vector<char>&);
link|flag
vote up 3 vote down

Your function should not return a naked pointer to some memory. The pointer, after all, can be copied. Then you have the ownership problem: Who actually owns the memory and should delete it? You also have the problem that a naked pointer might point to a single object on the stack, on the heap, or to a static object. It could also point to an array at these places. Given that all you return is a pointer, how are users supposed to know?

What you should do instead is to return an object that manages its resource in an appropriate way. (Look up RAII.) Give the fact that the resource in this case is an array of char, either a std::string or a std::vector seem to be best:

int f(std::vector<char>& buffer);

std::vector<char> buffer;
int result = f(buffer);
link|flag
Shouldn't the vector be passed by pointer so it is clear to someone reading: int result = f(buffer); that buffer may be changed? – Joe Snikeris Jul 23 at 14:54
int f(std::vector<char>& buffer) indicates that buffer will change. int f(const std::vector<char>& buffer) would indicate that the buffer won't change in C++ land. I think this is a good answer fwiw – polyglot Jul 23 at 14:59
Presumably, f() is going to be declared elsewhere so you're not going to see it's prototype immediately before seeing its use. Most likely you're going to see it's use first and then wonder, is f(buffer) modifying buffer? Then you have to go look at the prototype. If I'm looking through a bunch of code and see f(&buffer) I can safely assume that buffer is going to be modified. – Joe Snikeris Jul 23 at 15:03
1  
@Joe: This gets often asked by people coming from C to C++. The C++ answer to this is: If you don't know whether f() takes it argument by copy/const reference (from the caller's POV pretty much the the same) or per non-const reference, you shouldn't be calling it. Also, picking the right name for the function should get this across, too. While we cannot stop you from doing it the C way (passing pointers), the C++ world is passing objects to be changed per non-const reference. – sbi Jul 23 at 18:59
1  
I would prefer the vector as a return value. The difference being that if you pass the vector by reference the signature can be either that of a in/out parameter or an out parameter. The signature is not clearly saying that there are no requirements on the passed in vector. How will the function behave when an empty/non-empty vector is being passed in? Will it clear previous memory or just append? When you return a vector, it is clear that the object does not exist before the function call, and as such it can only have that memory assigned inside the method. The interface is clearer. – dribeas Aug 5 at 9:50
show 7 more comments
vote up 0 vote down

If all f() does with the buffer is to return it (and its length), let it just return the length, and have the caller new it. If f() also does something with the buffer, then do as polyglot suggeted.

Of course, there may be a better design for the problem you want to solve, but for us to suggest anything would require that you provide more context.

link|flag
vote up 1 vote down

Use RAII (Resource Acquisition Is Initialization) design pattern.

http://en.wikipedia.org/wiki/RAII http://stackoverflow.com/questions/712639/please-help-us-non-c-developers-understand-what-raii-is

link|flag
vote up 0 vote down

Actually, the smart thing to do would be to put that pointer in a class. That way you have better control over its destruction, and the interface is much less confusing to the user.

class Cookie {
public:
   Cookie () : pointer (new char[100]) {};
   ~Cookie () {
      delete[] pointer;
   }
private:
   char * pointer;

   // Prevent copying. Otherwise we have to make these "smart" to prevent 
   // destruction issues.
   Cookie(const Cookie&);
   Cookie& operator=(const Cookie&);
};
link|flag
If you copy this object, it attempts to delete the same piece of memory twice. Urgh. – sbi Jul 23 at 14:13
Look again. I was in the process of adding that, sbi. :-) – T.E.D. Jul 23 at 14:14
Ah, in that case I'll remove my downvote. :) – sbi Jul 23 at 19:05
Dammit, the thing says it's too old to be changed. (Unless you edited it -- what you did! Sorry.) – sbi Jul 23 at 19:06
vote up 0 vote down

Provided that f does a new[] to match, it will work, but it's not very idiomatic.

Assuming that f fills in the data and is not just a malloc()-alike you would be better wrapping the allocation up as a std::vector<char>

void f(std::vector<char> &buffer)
{
    // compute length
    int len = ...

    std::vector<char> data(len);

    // fill in data
    ...

    buffer.swap(data);
}

EDIT -- remove the spurious * from the signature

link|flag
Why are you passing a pointer to a vector? – sbi Jul 23 at 14:11
Cut and paste failure -- should just be std::vector<char> & – Steve Gilham Jul 23 at 14:25
vote up -2 vote down

I guess you are trying to allocate a one dimensional array. If so, you don't need to pass a pointer to pointer.

int f(char* &buffer)

should be sufficient. And the usage scenario would be:

char* data;
int data_length = f(data);
// ...
delete[] data;
link|flag
This just copies the (in this case: random) original value of data into the function, but it won't change the pointer at the caller's side to the memory allocated inside the function. – sbi Jul 23 at 14:10
This won't work. f() will contain something like: buffer = new char[10]; This changes the local copy of buffer not the value of data. I believe data is still uninitialized. – Joe Snikeris Jul 23 at 14:10
How does that work? The memory allocated in the function f will get lost here. Try it. The problem arises from the fact that you are passing in a pointer (a 32 or 64-bit integer). A value is filled in ovre that passed in char*. However at the end of the stack frame that value is lost. By passing in a pointer to a pointer you are passing the address of this 32 or 64-bit integer value. That way when you fill it in and return you are still pointing at the area of memory that NOW contains the correct pointer. – Goz Jul 23 at 14:11
That is awful advice! I don't mean to be overtly mean but I lolled. – polyglot Jul 23 at 14:15
I guess i am tired from work. How did i do that simple mistake? I am really sorry and utterly ashamed. – erelender Jul 23 at 14:18
show 1 more comment
vote up 4 vote down

In 'proper' C++ you would return an object that contains the memory allocation somewhere inside of it. Something like a std::vector.

link|flag
vote up 1 vote down

Pass the pointer by reference...

int f(char* &buffer)

However you may wish to consider using reference counted pointers such as boost::shared_array to manage the memory if you are just starting this out.

e.g.

int f(boost::shared_array<char> &buffer)
link|flag
I think this is what I'm looking for. I'm going to think it over a bit more before deciding that this is the answer. – Joe Snikeris Jul 23 at 14:06
What's the advantage of the shared_array vs. std::vector? – sbi Jul 23 at 14:14
In practice, it calls delete [] ptr instead of delete ptr, which is needed in this case because the char* array needs to be deleted in this manner. – polyglot Jul 23 at 14:16
@polyglot: And std::vector wouldn't do this? – sbi Jul 23 at 14:18
std::vector<> heap allocates, but it copies by value which is a fundamental difference to a reference type. You can't store vectors in a map because of this reason without performance implications. The copy semantics are the fundamental difference. – polyglot Jul 23 at 14:21
show 6 more comments
vote up 0 vote down

Just return the pointer:

char * f() {
   return new char[100];
}

Having said that, you probably do not need to mess with explicit allocation like this - instead of arrays of char, use std::string or std::vector<char> instead.

link|flag
The caller won't know how big the buffer is. – Joe Snikeris Jul 23 at 14:00
In this case they will, because it is part of the specification of the function. In the general case, that is another reason for using strings or vectors, which carry their size around with them. – Neil Butterworth Jul 23 at 14:03
vote up 2 vote down

Why not do the same way as malloc() - void* malloc( size_t numberOfBytes )? This way the number of bytes is the input parameter and the allocated block address is the return value.

UPD: In comments you say that f() basically performs some action besides allocating memory. In this case using std::vector is a much better way.

void f( std::vector<char>& buffer )
{
    buffer.clear();
    // generate data and add it to the vector
}

the caller will just pass an allocated vector:

 std::vector buffer;
 f( buffer );
 //f.size() now will return the number of elements to work with
link|flag
Because only the callee knows what the size will be. – Joe Snikeris Jul 23 at 14:00
@Joe: And how would you want this logic to work? How much memory would you like to be allocated and who would need its size after that? – sharptooth Jul 23 at 14:01
The amount of memory to be allocated depends on what f() is doing. In this case, f() is taking a screenshot, so only f() knows how big the buffer needs to be. – Joe Snikeris Jul 23 at 14:04
1  
In the general sense, you are externalising the size of the buffer. The OP in the general does not have the buffer size as a parameter, so you are rewriting the specification of the question to make it fit the answer... – polyglot Jul 23 at 14:05
In this case you should just pass a std::vector by reference: void f( std::vector<char>& buffer ) f() will first clear the vector, then add data to it. The caller will call vector::size() method to determine the size. Simple and very clear. – sharptooth Jul 23 at 14:07
show 1 more comment

Your Answer

Get an OpenID
or

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