I have working in large application which contain c and cpp. The all files saved as cpp extension but the code is written in c- style. I mean it is define structure rather than class allocate memory through malloc and realloc and calloc.In recent They have installed boost library So I am planning to use into my existing code base So I have some following question.
- Can I use std::shared_ptr with malloc and free.
- If yes, can anyone point out me sample code base?
- Will it impact any functionality if I create std::shared_ptr in my application and pass this pointer to another function, which uses malloc or calloc?
Or in other words:
How do I achieve the similar functionality with std::shared_ptr, for the following code:
void allocateBlocks(int **ptr, int *cnt)
{
*ptr = (int*)malloc(sizeof(int) * 10);
*cnt = 10;
/*do something*/
}
int main()
{
int *p = NULL;
int count = 0;
allocateBlocks(&p, &count);
/*do something*/
free(p);
}
We call some functions, which accept double pointer and fill the structure inside their application and use malloc. Can we assign those pointer to std::shared_ptr? For example:
typedef struct txn_s
{
int s;
int d;
int *e;
} txn_t;
typedef boost::shared_ptr<txn_t> tpointer;
tpointer((txn_t*)::malloc(sizeof(txn_t),::free));
Yes.
You need to provide a custom deleter, so that memory is released using
free
rather than the defaultdelete
. This can be a pointer to thefree
function itself:Remember that
malloc
andfree
only deal with raw memory, and you're responsible for correctly creating and destroying any non-trivial objects you might want to keep in that memory.I don't quite follow the question. You can use this
shared_ptr
interchangably with "normal" shared pointers, if that's what you're asking. Type erasure ensures that users of the pointers aren't affected by different types of deleter. As with any shared pointer, you have to be a bit careful if you extract the raw pointer withget()
; specifically, don't do anything that mightfree
it, since you've irrevocably assigned ownership to the shared pointer.I guess you mean something like:
UPDATE: I didn't spot the phrase "double pointer", by which I assume you mean the C-style use of a pointer to emulate a reference to emulate a return value; you can do that too:
It's fine to initialise the shared pointer with the result of
calloc
, or anything else that returns memory to be released usingfree
. You can't userealloc
, sinceshared_ptr
has taken ownership of the original pointer and won't release it without callingfree
.To use a
std::shared_pointer
withmalloc()
andfree()
you should specify a custom deleter. This should do itAs long as you do not pass around the result of
std::shared_ptr<T>::get()
, your pointer is safe.Edit: Added casting the result of
malloc()
toT*
.Yes.
shared_ptr
does not allocate memory itself. However, it does delete your object once reference count drops to zero. Since it usesdelete
by default and you cannot use it with objects allocated bymalloc
(or any other way), you have to use a custom deleter.It is not clear what are you asking here. If that function does not expect a shared pointer be passed, then extra care have to be taken. But it depends on what that function actually does.
Yes, you can use any pointer with
shared_ptr
.