Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Searching in a set of shared_ptr<QString>

I have an object:

class Object {
public:
  boost::shared_ptr<QString> const& name() const {reutrn _name;}
private:
  boost::shared_ptr<QString> _name;
};

And a multi_index set

typedef
    boost::multi_index_container<
        Object,
        boost::multi_index::indexed_by<
            boost::multi_index::ordered_unique<
                boost::multi_index::const_mem_fun<
                    Object,
                    boost::shared_ptr<QString> const&,
                    & Object::name>,
                StringPointerLess> > >
    ObjectSet;

Now If I want to find something in the set and I have QString I need to make a copy of it to allocate in heap and create shared_ptr.

Is it possible to avoid this unnecessary copy operation, leaving the set as it is?

like image 714
user14416 Avatar asked Jan 18 '26 10:01

user14416


2 Answers

A simpler way: add the following member functions to your StringPointerLesscomparison predicate:

struct StringPointerLess{
  ...
  bool operator()(boost::shared_ptr<QString> const& x,const QString& y)const{
    return *x<y;
  }
  bool operator()(const QString& x,boost::shared_ptr<QString> const& y)const{
    return x<*y;
  }
  ...
};

and now you can lookup by simply providing the desired QString:

IteratorType find( MyContainerType const& container, QString const& key )
{
   return container.find( key );
}

The magic behind this is explained at the special lookup operations section in Boost.MultiIndex documentation.

like image 151
Joaquín M López Muñoz Avatar answered Jan 21 '26 02:01

Joaquín M López Muñoz


Yes, you still have to make a shared_ptr but you can use a custom-deleter that does not delete your object, and then pass it in as a pointer from the stack.

Of course one of your issues is that your shared_pointer is not to const, so if you have a const QString & you either have to duplicate it or const_cast. I will do the latter but leave it up to you what to do.

We don't want to do that everywhere we pass in a QString so let's write a function:

struct no_op_functor
{
 public:
   template< typename T > operator()( T* ) const
   {
   }
};

IteratorType find( MyContainerType const& container, QString const& key )
{
   boost::shared_ptr< QString > keyShared( const_cast<QString *>(&key), no_op_functor() );
   return container.find( keyShared );
}
like image 24
CashCow Avatar answered Jan 21 '26 02:01

CashCow



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!