Smart pointer class implementing shared ownership

learn more… | top users | synonyms (2)

7
votes
3answers
273 views

Element of shared_array as shared_ptr?

If I have a boost::shared_array<T> (or a boost::shared_ptr<T[]>), is there a way to obtain a boost::shared_ptr<T> which shares with the array? So for example, I might want to write: ...
2
votes
2answers
162 views

What would provoke 'iterators are incompatible' when comparing iterators from one single vector?

I'm working on a UI. The base class for a UI component is UILayout, and the entire UI is a tree of UILayout objects, with the root being a UILayout representing the entire screen. In order to contain ...
1
vote
2answers
77 views

Identifying which Base Class shared_ptr has been passed into a Super Class shared_ptr vector

I am working on a C++ project, specifically implementing a shunting yard algorithm. I have a function that creates a vector of shared_ptr's of type super class, but the classes that are being pushed ...
1
vote
2answers
88 views

how to use mock object with smart pointer

I want to use mock object to test my class which uses shared_ptr pointer. It likes , struct MyInterface { // public functions }; class MyClass { public: MyClass ...
0
votes
2answers
76 views

c++ shared_ptr with std::function or double (*SOME_NAME)(double);

Q1) Given that we have typedef double (*function_t)(double); or typedef std::function<double(double)> function_t; how do we define std::shared_ptr<function_t> ptr_func = ??? for ...
0
votes
2answers
76 views

A different kind of shared ownership

The shared_ptr in C++ comes to solve a problem, multiple deletes when multiple objects take ownership of an object. It does so by making only the last delete happen. There is another flavor to that ...
4
votes
1answer
340 views

Wrapping boost::shared_ptr in PHP using SWIG

If I use SWIG to wrap this C++ function: boost::shared_ptr<Client> Client::create() { return boost::shared_ptr<Client>(new Client()); } And then call it in PHP: $client = ...
2
votes
1answer
366 views

Using smart pointers to manage buffers

I recently started to migrate many of my existing classes over to using smart pointers and I have a few questions about how to port some code that I think could benefit from the use of smart pointers ...
1
vote
1answer
69 views

Replacement of Poco::AutoPtr with boost

I am trying to replace Poco::AutoPtr with some alternative in boost. Here is what I have discovered so far: What I have: below classess are being used with Poco::AutoPtr. They need to implement ...
1
vote
1answer
134 views

C++ Boost library - passing Shared pointer to a function

Assuming shared pointer can be created as follows typedef boost::shared_ptr<Employee_t> srdpointer; srdpointer ptr((Employee_t*)malloc(sizeof(Employee_t)),std::ptr_fun(free)); I need to ...
1
vote
1answer
164 views

Is it possible to pass a boost shared_ptr from C++ to Python and back to C++

I have an object that is held in a shared_ptr in C++. The object is accessed through the python bindings from within python and passed to another bound C++ function that tries to keep hold of it. It ...
1
vote
1answer
185 views

How do I get std::weak_ptr<MyClass> from this pointer?

Here is the example: tempalate <class T> class MyClass : public T { public: MyClass(std::weak_ptr<MyClass> parent) { //--------------------------------------+ ...
1
vote
1answer
283 views

Accessing shared_ptr via thread local storage

I have a collection of information like this: std::list< boost::shared_ptr<DataEntry> > m_Entries; The list is accessed by multiple threads. The majority of the time the list is only ...
0
votes
1answer
34 views

passing properties of an object as a string

I have an unordered map that is supposed to check if a pen exists given the color, and the width of the pen. I'm currently trying to do a lookup by string. If it’s already in the map, that means I ...
0
votes
1answer
66 views

Passing out shared pointer to this from destructor

I have an object, BagOfThings, that stores a set of Things and a list of BagOfThingsListeners, which want to know when a Thing is added or removed from the BagOfThings they've been added to. Like ...
0
votes
1answer
100 views

Luabind: Can't return shared_ptr

I'm trying to return an std::shared_ptr from a method bound with Luabind, but it doesn't seem to recognize the type. Luabind code: module(lua) [ class_<Character, BaseEntity, ...
0
votes
1answer
35 views

Additional functions added to a class cause a segfault when class is created as a shared_ptr

This really has me stumped. We have a class with a dozen or so getters and setters defined, that take a mix of types (QString, int, bool) for the various member variables. I'm currently adding a new ...
0
votes
1answer
116 views

C++ Passing std::vector< boost::shared_ptr< foo > >

I am currently learning the basics of the STL and boost libraries and wanted some assistance. Let me first describe where I am at I want to construct a vector of shared_ptrs of say some class foo. ...
0
votes
1answer
316 views

Boost shared_ptr assert fails but the value is not NULL

in one of my applications I get an assert fail exception in the assert inside the boost shared_ptr dereference operator: T * operator-> () const // never throws { BOOST_ASSERT(px != 0); ...
0
votes
1answer
20 views

Determining shared pointer Type class Incomplete or complete and the reason of crash

A class constructor has the declaration like this... Class A: { public: A(int a, SharedPtr<class T>sp = SharedPtr<class T>()); ~A(); } Now from another class I am destroying this ...
0
votes
1answer
41 views

Is making shared_ptr as member correct Idea?

I want to make a member pointer as a shared_ptr, but I am not sure that the shared_ptr itself will be alive after the containing class destroyed. I tested the code below, but I am not sure that it ...
0
votes
1answer
37 views

Unsafe raw pointer from weak_ptr - safety guaranteed by context

I am storing a weak_ptr for avoiding circular structure, and I know that in some particular context the shared_ptr is still valid. Can I get the raw pointer from weak_ptr without casting to ...
0
votes
1answer
121 views

Using smart pointers correctly without leaks

I'm working on an architecture where I need to have an Entity in different list like that : Renderer -> List of Component (SpriteComponent) Collisioner -> List of Component (PhysicComponent) ...
0
votes
1answer
37 views

Class dynamic allocated members and copying/assign, how to avoid reallocation and copy?

Simple question, I dont want to allocate and copy heap allocated memory every time I need to copy an object with heap pointers, its silly, I can just point the pointer to the original heap, and assure ...
0
votes
1answer
271 views

premature deletion of pointer held by shared pointer

A class of mine has destructor like: virtual ~MergeMove() { mergeIndex1=-1; // for debugging mergeIndex2=-1; // for debugging } Another class contains a member of type ...
0
votes
1answer
193 views

c++ shared_ptr error with intel 12.1.3

With gcc 4.6.1 I use the following typedef typedef std::shared_ptr<A> A_Ptr; I included <memory> and compile it with -std=c++0x and all is fine. With intel 12.1.3 the same code also ...
0
votes
1answer
128 views

How to retrieve data from a std::list containing boost::shared_ptr

I need helping trying to retrieve data held in a std::list<boost::shared_ptr<boost::any>> I working on a Singleton Controller class with a private std::list. Client class(es) will be able ...
0
votes
1answer
167 views

C++ shared_ptr and reading from the class

I have a problem with simple reading from the file that shares file pointer between a few objects (It works for me with just simple istream, but not when I am using shared pointer of istream ...
0
votes
1answer
307 views

SWIG: python callback with function template and shared pointer as return value

I'm creating wrappers using SWIG for python for my software library and I have the following function: template<class PR> boost::shared_ptr<JobT<PR> > Client::WaitForJob() { ...
0
votes
1answer
770 views

return boost::shared_ptr question, why destructor got called 3 times

class Obj_A { public: ~Ojb_A() { cout << "calling Obj_A() destructor\n"; } void method1() { cout << "invoking Obj_A::method1()\n"; } }; class Obj_B { ...
-1
votes
1answer
70 views

specify a custom deleter for shared_ptr but meets error

I have searched in stackoverflow for how to specifiy a custom deleter for shared_ptr, and these are what I found: boost::shared_ptr<T> ptr( new T, std::mem_fun_ref(&T::deleteMe) ); ...
5
votes
0answers
246 views

Leaked Mock Objects when using GoogleMock together with Boost::Shared Pointers

For this special scenario, I am not able to get rid of the leaks. I get the message of Leaked Mock Objects when executing the test. The concrete Message: ClassElementFixture.h:102: ERROR: this mock ...
2
votes
0answers
65 views

Serialization of boost::shared_ptr through a custom archive

I'm trying to serialize a boost::shared_ptr to a custom archive. The main problem I'm facing is that the boost::serialization code for shared_ptr requires the archive to have both a 'reset' and an ...
1
vote
0answers
144 views

intrusive_ptr, shared_ptr performance tests

class X { public: std::string name; int age; long references; X(string n, int a) : references(0), name(n), age(a) {} }; inline void intrusive_ptr_add_ref(X* x){ ++x->references; } inline ...
1
vote
0answers
58 views

Dependency tracking in C++: List of all objects dependent on a single object

I need to develop a library where I need to track list of objects dependent on another object. Boost library provides some features like shared_ptr and intrusive_ptr which allow us to track ...
1
vote
0answers
15 views

how do i reconfigure Boost?

i am currently using boost shared memory api and need to write to /tmp instead of /var by disabling BOOST_INTERPROCESS_POSIX_SHARED_MEMORY_OBJECTS in interprocess/detail/workaround.hpp. I have undef ...
1
vote
0answers
400 views

How to reassign a boost shared_ptr

I have two Boost shared_ptr's shared_ptr<X> A(new X); shared_ptr<X> B(new X); And a 3rd pointer that initially points to the same X as A. shared_ptr<X> C = A; What is the ...
1
vote
0answers
445 views

using boost::make_shared to return boost::shared_ptr

(SEE UPDATE/SOLUTION BELOW) Here's my pseudo: boost::shared_ptr<AbstractBaseClass> SomeFactory::createMsg(...){ boost::shared_ptr<AbstractBaseClass> msgPtr; switch(...) { case ...
1
vote
0answers
965 views

boost serialization issue with shared_ptr to std containers

Hi I am using boost/1.41.0, and the following code give me compilation error when I try to deserialize a shared_ptr. The serialize part it compiled successfully. Can someone advise me if this is a bug ...
0
votes
0answers
69 views

initialized pointers are not passed through constructor

I have two classes server and Broker . server is a member in Broker and some of its members are initialized when Broker members are initialized. It is simple if you look at their constructors and some ...
0
votes
0answers
114 views

std::shared_ptr & boost::shared_ptr difference

I've the following code: // interface.h #ifndef INTERFACE_H #define INTERFACE_H #include <memory> class IInterface { public: virtual ~IInterface() = 0; virtual void ...
0
votes
0answers
26 views

template parameter of shared_ptr in dll exported class

I made some class which owns shared_ptr member like below. #include <memory> template<typename T> class a { T m; }; class b; // forward declare class __declspec(dllexport) test { ...
0
votes
0answers
21 views

Will gcc optimize weak_ptr.lock().get() to avoid refcount increment/decrement?

I have an object managed with shared_ptr; I also have weak_ptr associated with this shared_ptr; I know the pointer is not dangling. I would like to obtain the raw pointer as efficiently as possible. ...
0
votes
0answers
18 views

WSASend and Shared_PTR

I am trying to use Shared_PTR as shown. Its not working as expected. Anythoughts or am I trying something wrong ? struct IO_DATA : public OVERLAPPED auto pData = std::make_shared<IO_DATA>(); ...
0
votes
0answers
28 views

Access STL/Boost parts of application with Boost::Python

I have an application to which I'm adding Python extensions using Boost::Python. Previously I linked to the extension library statically and that worked as expected. But I want to build the Python ...
0
votes
0answers
122 views

luabind not making changes to pointer mingw

I have fixed the linker errors I had in this question, but now I am having another problem. I create my objects by calling createObject() in lua and that creates a boost::shared_ptr to a new object, ...
0
votes
0answers
238 views

Returning a vector of const from a vector of non-const

I have the following code that I'm writing for a Database class to read data from a file: typedef std::vector<char> CharVec; typedef std::vector<const char> ConstCharVec; typedef ...
0
votes
0answers
28 views

shared_ptr and find-pointer

We are customary using find-pointer idiom in our code class X { public: ... static X const* find(key); }; where find performs look up in some static table. Now ...
0
votes
0answers
334 views

Boost 1.48 shared_ptr member function as custom deallocator how boost bind shall be used in this case)?

I want to learn custom deallocators in boost shared pointers. I included: #include <string> #include <boost/shared_ptr.hpp> #include <boost/bind.hpp> created simple interface: ...
0
votes
0answers
197 views

Why does it look like boost::shared_ptr constructions are getting slower?

I have a problem with boost shared_ptr. The initialization time of the smart pointer in the cycle is increased after the first iteration. The first iteration takes 40 msec. Every other iteration ...

1 2