boost::shared_ptr - NULL

C

Christopher

If a method is declared to return a type boost::shared_ptr<sometype>,
how can the method be changed to do the equivalent of returning NULL
when it was declared to return a raw pointer?
 
A

Alf P. Steinbach

* Christopher:
If a method is declared to return a type boost::shared_ptr<sometype>,
how can the method be changed to do the equivalent of returning NULL
when it was declared to return a raw pointer?

Return boost::shared_ptr<sometype>().

Hm.

I'm amazed about some of the questions here. Please read the manual
before posting. Or at least, /glance/ at it.


Cheers, & hth.,

- Alf
 
C

Christopher

* Christopher:


Return boost::shared_ptr<sometype>().

Hm.

I'm amazed about some of the questions here. Please read the manual
before posting. Or at least, /glance/ at it.

Cheers, & hth.,

- Alf

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?

Are you referring to the boost manual?
http://www.boost.org/libs/smart_ptr/scoped_ptr.htm

I did and all I see is a reset function which sets the internal
pointer to NULL, but it doesn't say how to check if it is NULL, and it
says that behavior is undefined if you dereference it while the
internal pointer is NULL.

I've got a method in a class that allocates an object of a different
type and it has been deemed "unsafe" to return a raw pointer to it.
However, if the allocation or preliminary steps before allocation
fail, I want to return NULL.
 
A

Alf P. Steinbach

* Christopher:

Looks like it, yes.

Btw., please don't quote signatures (corrected).

I did and all I see is a reset function which sets the internal
pointer to NULL, but it doesn't say how to check if it is NULL, and it
says that behavior is undefined if you dereference it while the
internal pointer is NULL.

I've got a method in a class that allocates an object of a different
type and it has been deemed "unsafe" to return a raw pointer to it.
However, if the allocation or preliminary steps before allocation
fail, I want to return NULL.

Perhaps take a second glance at the docs.


Cheers, & hth.,

- Alf
 
D

David Harmon

On Sat, 1 Dec 2007 11:36:51 -0800 (PST) in comp.lang.c++,
Christopher said:
Are you referring to the boost manual?
http://www.boost.org/libs/smart_ptr/scoped_ptr.htm

I did and all I see is a reset function which sets the internal
pointer to NULL, but it doesn't say how to check if it is NULL,

How about
if (retvalue == boost::shared_ptr<sometype>()) {

Think!
and it
says that behavior is undefined if you dereference it while the
internal pointer is NULL.

Yes, don't do that.
 
J

James Kanze

On Sat, 1 Dec 2007 11:36:51 -0800 (PST) in comp.lang.c++,
How about
if (retvalue == boost::shared_ptr<sometype>()) {

How about:
if ( retvalue == NULL ) { ... }

I've not looked at boost::shared_ptr in this regard, but all of
the intelligent pointers I've written accept it.

In practice, if I think there's the slightest chance of using
intelligent pointers, I'll write something like:

template< typename T >
bool
isValid( T const* p )
{
return p != NULL ;
}

and use it. Adding the necessary overloads for the intelligent
pointers as needed. (This allows easily switching back, when
you realize that the smart pointer doesn't work.) But as I
said, a correctly designed intelligent pointer should support
all of the idioms a raw pointer does: "if( ptr == NULL )", and
even "if ( ptr )" (although I've never seen a coding guideline
that would allow use of the latter).

And if worse comes to worse, there's always:
if ( ptr.get() == NULL ) ...
 
C

Christopher Pisz

On Sat, 1 Dec 2007 11:36:51 -0800 (PST) in comp.lang.c++,
How about
if (retvalue == boost::shared_ptr<sometype>()) {

How about:
if ( retvalue == NULL ) { ... }

I've not looked at boost::shared_ptr in this regard, but all of
the intelligent pointers I've written accept it.

In practice, if I think there's the slightest chance of using
intelligent pointers, I'll write something like:

template< typename T >
bool
isValid( T const* p )
{
return p != NULL ;
}

and use it. Adding the necessary overloads for the intelligent
pointers as needed. (This allows easily switching back, when
you realize that the smart pointer doesn't work.) But as I
said, a correctly designed intelligent pointer should support
all of the idioms a raw pointer does: "if( ptr == NULL )", and
even "if ( ptr )" (although I've never seen a coding guideline
that would allow use of the latter).

And if worse comes to worse, there's always:
if ( ptr.get() == NULL ) ...


Yes, I tryed if( retval == NULL ) and it would not compile. However, the
get method does work. I've got it now, I just don't like it much over using
raw pointers. I've always been of the opinion that, if I make a method that
allocates something, I just document it and count on the caller to know what
to do. I don't think I like trying to idiot proof things, because I am just
introducing more nuiances. If I've never used these smart pointers and don't
know how, I suspect the callers of my methods won't either. I really doubt
they will take the time to learn how the shared_ptr works, what can and
can't be done with it etc., no matter how much I do or don't. Ah well.
 
G

Greg Herlihy

On Sat, 1 Dec 2007 11:36:51 -0800 (PST) in comp.lang.c++,



How about
if (retvalue == boost::shared_ptr<sometype>()) {

How about the more succinct:

if (not retval) {

or, alternately:

if (retval == false) {

Greg
 
M

Michael DOUBEZ

James Kanze a écrit :
How about:
if ( retvalue == NULL ) { ... }

I've not looked at boost::shared_ptr in this regard, but all of
the intelligent pointers I've written accept it.

Boost share_ptr doesn't provide a operator==(smart_ptr<T>& smart,T*ptr).

I could not find the exact reason in the original proposal but I guess
it is an efficiency matter: it would be equivalent to
'(smart.use_count()?smart.ptr:NULL) == ptr' when the intended operations
in the case ptr=NULL would have been '(use_count()==0) ||
(smart.ptr==NULL)'.
In practice, if I think there's the slightest chance of using
intelligent pointers, I'll write something like:

template< typename T >
bool
isValid( T const* p )
{
return p != NULL ;
}

and use it. Adding the necessary overloads for the intelligent
pointers as needed. (This allows easily switching back, when
you realize that the smart pointer doesn't work.) But as I
said, a correctly designed intelligent pointer should support
all of the idioms a raw pointer does: "if( ptr == NULL )", and
even "if ( ptr )" (although I've never seen a coding guideline
that would allow use of the latter).

And if worse comes to worse, there's always:
if ( ptr.get() == NULL ) ...

But smart-ptr does provide conversion to unspecified-bool-type.

The doc is quite explicit:

*conversions*

operator unspecified-bool-type () const; // never throws

Returns: an unspecified value that, when used in boolean contexts,
is equivalent to get() != 0.

Throws: nothing.

Notes: This conversion operator allows shared_ptr objects to be
used in boolean contexts, like if (p && p->valid()) {}. The actual
target type is typically a pointer to a member function, avoiding many
of the implicit conversion pitfalls.

[The conversion to bool is not merely syntactic sugar. It allows
shared_ptrs to be declared in conditions when using dynamic_pointer_cast
or weak_ptr::lock.]

Michael
 
J

James Kanze

James Kanze a écrit :
Boost share_ptr doesn't provide a operator==(smart_ptr<T>& smart,T*ptr).

I'm not sure that that's what is wanted. In my own smart
pointers, I use something like:

template< typename T >
class SmartPtr
{
struct Hidden {} ;
public:
// ...
friend operator==( SmartPtr< T > const&, Hidden const* ) ;
friend operator!=( Hidden const*, SmartPtr< T > const& ) ;
// ...
} ;

Null pointer constants convert to Hidden const*, but the user
can't get one any other way.
I could not find the exact reason in the original proposal but I guess
it is an efficiency matter: it would be equivalent to
'(smart.use_count()?smart.ptr:NULL) == ptr' when the intended operations
in the case ptr=NULL would have been '(use_count()==0) ||
(smart.ptr==NULL)'.

I can't really believe that the difference in efficiency would
make a difference here.
But smart-ptr does provide conversion to unspecified-bool-type.

Yes. But this forces you do use something like:

if( ptr ) ...

Gratuous obfuscation, and forbidden by all of the coding
guidelines I've seen. (Never the less, I'd support it as well.
Because raw pointers do.)

Of course, from a QoI point of view, you wouldn't use bool, but
"Hidden const*", to avoid any chance of mis-use.
 
M

Michael DOUBEZ

James Kanze a écrit :
I'm not sure that that's what is wanted. In my own smart
pointers, I use something like:

template< typename T >
class SmartPtr
{
struct Hidden {} ;
public:
// ...
friend operator==( SmartPtr< T > const&, Hidden const* ) ;
friend operator!=( Hidden const*, SmartPtr< T > const& ) ;
// ...
} ;

Null pointer constants convert to Hidden const*, but the user
can't get one any other way.

Yes. Unless T is void but I guess it doesn't happen often.


Michael
 
A

Abhishek Padmanabh

Yes. But this forces you do use something like:

if( ptr ) ...

Gratuous obfuscation, and forbidden by all of the coding
guidelines I've seen. (Never the less, I'd support it as well.
Because raw pointers do.)

Of course, from a QoI point of view, you wouldn't use bool, but
"Hidden const*", to avoid any chance of mis-use.

Why is it a forbidden guideline? What possible mis-use can this be?
 
M

Michael DOUBEZ

Abhishek Padmanabh a écrit :
Why is it a forbidden guideline? What possible mis-use can this be?

The misuse can come from implicit conversion.
In the case of smart pointer, if the implicit conversion was bool:
shared_ptr<Foo> bar;
int f=bar;

This would not be detected by the compiler because bar is implicitely
converter to bool which is promoted to int. The usual solution is to use
a pointer on member function, it is pretty safe.

Now concerning the guidelines, I always use the ==NULL notation because
the notation is more easier for me to read and it indicates me it is a
pointer that is compared. There may be other issues.

Michael
 
J

James Kanze

James Kanze a écrit :
Yes. Unless T is void but I guess it doesn't happen often.

Good point. That might be an issue for the Boost pointers. My
own reference counted pointers were invasive, and required the
pointed to object to derive from a specific base class. Which,
of course, void doesn't.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,009
Latest member
GidgetGamb

Latest Threads

Top