Dynamically change allocation strategy in boost::vector and boost::matrix - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T09:13:00Z http://stackoverflow.com/feeds/question/727066 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/727066/dynamically-change-allocation-strategy-in-boostvector-and-boostmatrix 0 Dynamically change allocation strategy in boost::vector and boost::matrix Qubeuc 2009-04-07T18:38:47Z 2009-04-07T19:58:48Z <p>Hi,</p> <p>In my new project i am building a data management module.I want to give a simple template storage type to upper layers like </p> <pre><code>template&lt;typename T&gt; class Data { public: T getValue(); private: boost::numeric::ublas::matrix&lt;T&gt; data; } </code></pre> <p>My aim is, to change allocator of data with some different allocators like Boost.inter process allocator or Boost.pool allocator (Boost Ublas Matrix and vector classes takes allocator as a template parameter ).And give only a single class and Factory method to create appropriate allocator under cover.A virtual base class could be sweet but i couldn't handle how to use it with templates.What kind of design patterns or solutions do you offer?</p> <p>Edit:</p> <p>I will use boost.pool and boost.shared_memory_allocator.Briefly i want to have different classes with different allocation strategies.But my point is upper parts of program should have no knowledge about it.Real challenge for me is to collect different template classes with an identical base classes.</p> <p>Edit: For one who want to use matrix class with custom allocator.</p> <p>it is like this:</p> <pre><code> using boost::numeric::ublas; template&lt;typename T, class Allocator = boost::pool_allocator&lt;T&gt;&gt; class { public: matrix&lt;T, row_major, std::vector&lt;T,Allocator&gt;&gt; mData; } </code></pre> http://stackoverflow.com/questions/727066/dynamically-change-allocation-strategy-in-boostvector-and-boostmatrix/727087#727087 0 Answer by dirkgently for Dynamically change allocation strategy in boost::vector and boost::matrix dirkgently 2009-04-07T18:43:41Z 2009-04-07T18:43:41Z <p>Are you trying to swap allocators at compile time based on type? You'd need a <code>if-else</code> template and some allocator class (template) definitions.</p> <p>If you want runtime allocators, then it's easier: you'd put the base class (interface definition class) in the template and pass appropriate subclasses based on whatever condition you need to fulfill.</p> http://stackoverflow.com/questions/727066/dynamically-change-allocation-strategy-in-boostvector-and-boostmatrix/727240#727240 0 Answer by Iraimbilanja for Dynamically change allocation strategy in boost::vector and boost::matrix Iraimbilanja 2009-04-07T19:23:40Z 2009-04-07T19:28:40Z <p>It's not clear what you want, but as a shot in the dark, is the following helpful?</p> <pre><code>template&lt;typename T&gt; class IData { public: virtual T getValue() = 0; virtual ~IData() {} }; template&lt;typename T, typename Allocator=std::allocator&lt;T&gt; &gt; class Data : public IData&lt;T&gt; { public: virtual T getValue(); private: boost::numeric::ublas::matrix&lt;T, Allocator&gt; data; } </code></pre>