vote up 2 vote down star
1

I am taking a C++ programming class right now on GIS Programming. I am really starting to get alot of headaches from dealing with proper memory management. Considering at any time there is often 8-10 classes each holding a pointer to a 3D matrix or something else very large. Now our class already raised the issue of the prof allowing us to use Boost, or atleast the C++ Feature Pack for 2008(for TR1). He refused but said if we wanted to we can find add a few third party cpp/hpp files. I already tried looking at getting shared_ptr out of boost but that is more of a headache than its worth.

So is there any sort of free shared_ptr implementation out there?

flag

try asking him if you can use <tr1\memory> since it is part of gcc and then optionally include that in / swap out the vc feature pack. the other pointers are good too, either using Loki or extracting it from boost. you shouldn't have to worry about this. – Rick Oct 3 at 2:16
Why not get you to write in C, so you really get a good lesson in how to torture yourself for no reason? – Earwicker Oct 3 at 8:40

6 Answers

vote up 10 vote down check

Use boost's bcp tool. It will let you extract certain functionality from the boost libraries.

bcp shared_ptr /boost_shared_ptr

will extract shared_ptr and it's dependencies to that directory.

link|flag
worked amazingly thanks. – uberjumper Oct 4 at 18:11
vote up 0 vote down

Do you really need shared ownership that much?

You can often get by with just a simple ad hoc RAII class, taking exclusive ownership of an object.

Memory management without RAII is a pain, but you an get RAII without shared_ptr.

link|flag
vote up 0 vote down
#include <tr1/memory> // this is contained in STL.
std::tr1::shared_ptr<A> a = new A;

ow, just saw your professor doesnt allow you to use TR1. tough luck.

link|flag
vote up 0 vote down

While it would be a terrible idea for a production solution, it wouldn't be too hard to roll your own for a class, if you didn't try to be as cross compiler, flexible and thread safe as boost's:

template <typename contained>
class my_shared_ptr {
public:
   my_shared_ptr() : ptr_(NULL), ref_count_(NULL) { }

   my_shared_ptr(contained * p)
     : ptr_(p), ref_count_(p ? new int : NULL)
   { inc_ref(); }

   my_shared_ptr(const my_shared_ptr& rhs)
     : ptr_(rhs.p), ref_count_(rhs.ref_count_)
   { inc_ref(); }

   ~my_shared_ptr() {
     if(ref_count_ && 0 == dec_ref()) { delete ptr_; delete ref_count_; }
   }
   contained * get() { return ptr_; }
   const contained * get() const { return ptr_; }

   void swap(my_shared_ptr& rhs) // throw()
   {
      std::swap(p, rhs.p);
      std::swap(ref_count_, rhs.ref_count_);
   }

   my_shared_ptr& operator=(const my_shared_ptr& rhs) {
        my_shared_ptr tmp(rhs);
        this->swap(tmp);
        return *this;
   }

   // operator->, operator*, operator void*, use_count
private:
   void inc_ref() {
      if(ref_count_) { ++(*ref_count_); }
   }

   int  dec_ref() {
      return --(*ref_count_);
   }

   contained * ptr_;
   int * ref_count_;
};
link|flag
some adjustments in your code : my_shared_ptr(const my_shared_ptr& rhs) : ptr_(rhs.ptr_), ref_count_(rhs.ref_count_) { inc_ref(); } and : my_shared_ptr(contained * p) : ptr_(p), ref_count_(p ? new int(0) : NULL) { inc_ref(); } – lsalamon Oct 16 at 13:39
vote up 3 vote down

Give Lokis ref-counted smart pointer a shot - as far as i recall its less coupled then boosts headers.

link|flag
vote up 2 vote down

Preprocess boost header that contains the definition of shared_ptr. Write it to a single .hpp file. This way you'll get boost shared_ptr and all its dependencies in one header file, without the need for full installation of boost.

shared_ptr does not need any shared library to be linked to your code, it is a header-only library... so this should work.

link|flag

Your Answer

Get an OpenID
or

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