active questions tagged boost - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T08:59:31Z http://stackoverflow.com/feeds/tag/boost http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1816790/sun-c-compilers-and-boost 0 Sun C++ Compilers and Boost Vainstah 2009-11-29T21:09:32Z 2009-11-29T21:09:32Z <p>I am currently developing on OpenSolaris 2009-06. The Boost::MPL Documentation seems to suggest that sun compilers are <a href="http://www.boost.org/doc/libs/1%5F41%5F0/libs/mpl/doc/tutorial/portability.htm" rel="nofollow">not supported</a> (the document was last updated in 2004 ). Boost's top level documentation seems to suggest that the sun compilers 5.10 onwards are supported -- I guess this is a general level of support or does this include MPL ?. Does anyone have any details on the state of the C++ conformance of the sun 5.10 compilers ? </p> <p>I could always compile using GCC.</p> http://stackoverflow.com/questions/1815075/problem-with-iterators-for-stdlist-of-boostsharedptr 1 Problem with iterators for std::list of boost::shared_ptr tusbar 2009-11-29T09:14:15Z 2009-11-29T09:21:01Z <p>Hi,</p> <p>I'm having a problem with the following code:</p> <pre><code>#include &lt;list&gt; #include &lt;boost/shared_ptr.hpp&gt; #include "Protocol/IMessage.hpp" template &lt;typename HeaderType&gt; class Connection { public: typedef IMessage&lt;HeaderType&gt; MessageType; typedef boost::shared_ptr&lt;MessageType&gt; MessagePointer; template &lt;typename Handler&gt; void FlushMessageQueue(Handler handler) { std::list&lt;MessagePointer&gt;::iterator ib = message_queue_.begin(); // line 69 std::list&lt;MessagePointer&gt;::iterator ie = message_queue_.end(); for (; ib != ie; ++ib) { AsyncWrite(*ib, handler); } } private: std::list&lt;MessagePointer&gt; message_queue_; }; </code></pre> <p>gcc (4.2.1) tells me:</p> <pre><code>include/Network/Connection.hpp: In member function 'void Network::Connection&lt;MT&gt;::FlushMessageQueue(Handler)': include/Network/Connection.hpp:69: error: expected `;' before 'ib' </code></pre> <p>I wonder why I can't create an iterator for a list of MessagePointer's.</p> <p>Any ideas?</p> <p>Thank you.</p> <p>-- tusbar</p> http://stackoverflow.com/questions/1814548/boostsystem-category-defined-but-not-used 0 boost::system::(...)_category defined but not used Person 2009-11-29T03:26:27Z 2009-11-29T04:22:26Z <p>I'm currently getting compiler warnings that resemble the warning I gave in the question title. Warnings such as....</p> <p><code>warning: 'boost::system::generic_category' defined but not used</code></p> <p><code>warning: 'boost::system::posix_category' defined but not used</code></p> <p><code>warning: 'boost::system::errno_ecat' defined but not used</code></p> <p><code>warning: 'boost::system::native_ecat' defined but not used</code></p> <p>As far as I know the program isn't being affected in any way. However, I don't like warnings hanging around, but I have no idea what these warnings are trying to tell me besides that something defined and related to boost is hanging around somewhere not being used. However, everything that I've defined, I've used. The boost libraries I'm using are the random library and the filesystem library.</p> <p>When I check the source of the warning it brings up Boost's error_category.hpp file and highlights some <code>static const</code>s that are commented as either "predefined error categories" or "deprecated synonyms". Maybe the problem has something to do with my error handling (or lack of) when using the library?</p> <p>Can anyone give some insight regarding why these warnings are popping up? Am I completely missing something? </p> <p>P.S. Warnings are at max level.</p> http://stackoverflow.com/questions/1605640/using-sharedptr-in-dll-interfaces 6 Using shared_ptr in dll-interfaces. Alexey Malistov 2009-10-22T07:56:55Z 2009-11-28T17:23:01Z <p>I have an abstract class in my dll.</p> <pre><code>class IBase { protected: virtual ~IBase() = 0; public: virtual void f() = 0; }; </code></pre> <p>I want to get <code>IBase</code> in my exe-file which loads dll. First way is to create following function</p> <pre><code>IBase * CreateInterface(); </code></pre> <p>and to add the virtual function <code>Release()</code> in <code>IBase</code>.</p> <p>Second way is to create another function</p> <pre><code>boost::shared_ptr&lt;IBase&gt; CreateInterface(); </code></pre> <p>and no <code>Release()</code> function is needed.</p> <p><strong>Questions.</strong></p> <p>1) Is it true that the destructor and memory deallocation is called in the dll (not in exe-file) in <em>the second case</em>?</p> <p>2) Does <em>the second case</em> work well if exe-file and dll was compiled with different compilers (or different settings).</p> http://stackoverflow.com/questions/1810372/c-serialization-library-that-supports-partial-serialization 0 C++ serialization library that supports partial serialization? Joseph Garvin 2009-11-27T19:38:22Z 2009-11-28T13:55:43Z <p>Are there any good existing C++ serialization libraries that support partial serialization? By partial serialization I mean that I might want to say, save the values of 3 specific members, and later be able to apply that saved copy to a different instance, only updating those 3 members and leaving the others intact. This would be useful for example for sending data over the network -- I have some object on a client and a server, and when a member changes on the server I want to send a message to the client containing the updated value for that member and that member only, I don't want to send a copy of the whole object over the wire. boost::serialization at a glance looks like it only supports all or nothing.</p> http://stackoverflow.com/questions/1804514/how-to-accept-empty-value-in-boostprogramoptions 0 How to accept empty value in boost::program_options Oleksii Novikov 2009-11-26T16:01:33Z 2009-11-27T17:04:56Z <p>I'm using boost::program_options library to process command line params. I need to accept a file name via -r option, in case if it is empty (-r given without params) I need to use stdin.</p> <pre><code>desc.add_options() ("replay,r", boost::program_options::value&lt;std::string&gt;(), "bla bla bla") </code></pre> <p>In this case boost wouldn't accept -r without params and throw an exception. default_value () option does not work as well as it would make library return value even if user didn't give -r option.</p> <p>Any ideas how to work around?</p> http://stackoverflow.com/questions/1805445/boost-lib-linker-error-visual-c 1 Boost lib linker error Visual C++ Parappa 2009-11-26T20:04:33Z 2009-11-26T22:06:56Z <p>I downloaded the source for <a href="http://www.launchy.net/" rel="nofollow">Launchy</a> and am trying to build it in Visual Studio 2005. The Launchy project is built using VC7 so I had to update the project files to VC8 and that process seemed to go well. However, Launchy also uses the <a href="http://www.boost.org/" rel="nofollow">Boost</a> 1.33.1 libs and what I have built are the Boost 1.41.0 libs (props to Boost for making the more recent libs much easier to build), so I also updated the project to point to my new Boost libs install. Now I get the following linker error:</p> <pre><code>fatal error LNK1104: cannot open file 'libboost_regex-vc80-mt-sgd-1_41.lib' </code></pre> <p>I had a look in the Boost lib directory and the closest match that I could find is...</p> <pre><code>libboost_regex-vc80-mt-gd-1_41.lib </code></pre> <p>Notice the missing 's'. I don't understand what the difference in libs is, and whether Visual Studio is looking for the wrong thing or my Boost build process failed to build the right libs. Can anybody point me in the right direction?</p> <p>As an experiment, I made a copy of the regex lib that I have and renamed it to what the linker is looking for. That gives me a long list of linker errors about symbols already being defined in msvcrtd.lib, such as the following:</p> <pre><code>error LNK2005: "private: __thiscall type_info::type_info(class type_info const &amp;)" (??0type_info@@AAE@ABV0@@Z) already defined in libcmtd.lib(typinfo.obj) </code></pre> <p>I will try to build the Boost 1.33.1 libs and point my Launchy project file at that instead. But I'd still like to know what is wrong with my Boost 1.41.0 libs.</p> <p><strong>Edit</strong>: I found a reference <a href="http://www.boost.org/doc/libs/1%5F41%5F0/more/getting%5Fstarted/windows.html" rel="nofollow">in the Boost docs</a> to what the 's' libs are:</p> <blockquote> <p>Use this library when linking statically to the C++ standard library and compiler runtime support libraries.</p> </blockquote> <p>So it looks like the 's' libs are the right ones. Now I just have to figure out how to build them.</p> <p><strong>Solution</strong>: I was able to build the missing boost libs with the following command-line.</p> <pre><code>bjam --build-type=complete msvc stage </code></pre> <p>I ran that after already running boostrap.bat in the dir where boost lives.</p> http://stackoverflow.com/questions/1804734/file-search-in-c 0 file search in c++ mars 2009-11-26T16:46:30Z 2009-11-26T17:15:23Z <p>hey</p> <p>I just started learning c++ and am currently using codeblocks. i wanna write an application that can search for files in directory including it's subdirs, but i cant seem to find any good examples for this and i've read somewhere that this is only possible trough a library like boost.</p> <ol> <li>is this true?</li> <li>any examples for doing it without library?</li> </ol> <p>thanks in advance</p> http://stackoverflow.com/questions/1801251/modifying-contents-of-vector-in-boostforeach 0 Modifying contents of vector in BOOST_FOREACH Jamie Cook 2009-11-26T02:30:49Z 2009-11-26T17:15:03Z <p>This is a question that goes to how BOOST_FOREACH checks it's loop termination</p> <pre><code>cout &lt;&lt; "Testing BOOST_FOREACH" &lt;&lt; endl; vector&lt;int&gt; numbers; numbers.reserve(8); numbers.push_back(1); numbers.push_back(2); numbers.push_back(3); cout &lt;&lt; "capacity = " &lt;&lt; numbers.capacity() &lt;&lt; endl; BOOST_FOREACH(int elem, numbers) { cout &lt;&lt; elem &lt;&lt; endl; if (elem == 2) numbers.push_back(4); } cout &lt;&lt; "capacity = " &lt;&lt; numbers.capacity() &lt;&lt; endl; </code></pre> <p>gives the output</p> <pre><code>Testing BOOST_FOREACH capacity = 8 1 2 3 capacity = 8 </code></pre> <p>But what about the number 4 which was inserted half way through the loop? If I change the type to a list the newly inserted number will be iterated over. The vector push_back operation will invalidate any pointers IF a reallocation is required, however that is not happening in this example. So the question I guess is why does the end() iterator appear to only be evaluated once (before the loop) when using vector but has a more dynamic evaluation when using a list?</p> http://stackoverflow.com/questions/1737668/how-do-i-integrate-boost-into-a-visual-c-project 2 How do I integrate Boost into a Visual C++ project? meds 2009-11-15T14:38:46Z 2009-11-26T14:38:10Z <p>Hi all,</p> <p>I'm trying to link up some of the boost stuff with a visual C++ project of mine and am not sure what the best way to do this is, I'm specifically interested in the singleton class.</p> http://stackoverflow.com/questions/1802428/c-design-guidance-for-generic-image-processing-library 0 C# Design guidance for generic image processing library. Charles 2009-11-26T09:00:51Z 2009-11-26T09:19:13Z <p>Hi all,</p> <p>In any image processing library there is always the issue of having to provide an implementation of every single algorithm for every single image format (color space, channels, bit depth, mem layout, etc). One very elegant solution to the problem is Boost GIL. Through the power of C++, and a great design, all of these issues are abstracted away and you can write a single algorithm that will work on any type of image.</p> <p>I wanted to create something similar in C#, but many of the necessary constructs such as templates and certain operator overloads (like unary *) are missing. I'm willing to accept that what I can create will not be nearly as robust and elegant as GIL, but to the extent possible I would like to model the concepts. Ultimately, abstracting image differences and writing generic processing algorithms would be the aim.</p> <p>With what there is available in C#, generics, lambdas, even dynamic IL /cringe, what do people think some possible approaches would be to designing the library?</p> http://stackoverflow.com/questions/1801880/selection-between-ace-boost-for-learning 1 Selection between ACE & Boost for learning markkhansofts 2009-11-26T06:28:25Z 2009-11-26T06:58:39Z <p>Hi everyone, I am an intermediate c++ programmer and done some work using ACE, now I want to learn one of those Libraries thoroughly to progress in to my career. That why I need your kind help to make a decision, that what should I learn first. And also please consider my destinations are to be an expert network programmer and Protocol designer. Thanks for your time and kind answers in advance.</p> http://stackoverflow.com/questions/1799734/anyone-uses-boostmultiindex-as-a-one-table-database 2 Anyone uses boost::multiindex as a one-table database? ccfenix 2009-11-25T20:28:27Z 2009-11-25T21:21:25Z <p>I need to maintain a 200 entries, 12 column table at extremely high speed, can I simply use boost multiindex to cutoff the sql overhead?</p> <p>Has anyone ever tried to do this? What are the cons and pros of such a solution?</p> <p>thanks</p> http://stackoverflow.com/questions/1795658/looping-over-the-non-zero-elements-of-a-ublas-sparse-matrix 0 Looping over the non-zero elements of a uBlas sparse matrix. Dzhelil Rufat 2009-11-25T09:18:51Z 2009-11-25T09:37:04Z <p>I have the following sparse matrix that contains <code>O(N)</code> elements</p> <pre><code>boost::numeric::ublas::compressed_matrix&lt;int&gt; adjacency (N, N); </code></pre> <p>I could write a brute force double loop to go over all the entries in <code>O(N^2)</code> time like below, but this is going to be too slow. </p> <pre><code>for(int i=0; i&lt;N; ++i) for(int j=0; j&lt;N; ++j) std::cout &lt;&lt; adjacency(i,j) std::endl; </code></pre> <p>How can I loop over only the non-zero entries in <code>O(N)</code> time? For each non-zero element I would like to have access to its value, and the indexes <code>i,j</code>.</p> http://stackoverflow.com/questions/1795013/c-how-to-use-stdlessint-with-boostbind-and-boostlambda 0 C++: how to use std::less<int> with boost::bind and boost::lambda? kastauyra 2009-11-25T06:24:14Z 2009-11-25T06:35:06Z <p>I am trying to lean boost::bind, boost::lambda libraries and how they can be used with STL algorithms. Suppose I have vector of int-string pairs which is sorted by int key. Then a place to insert a new pair while keeping the vector sorted can be found as follows:</p> <pre><code>std::vector&lt;std::pair&lt;int, string&gt; &gt; entries; ... int k = ...; // Let's ignore std::lower_bound return value for now std::lower_bound (entries.begin(), entries.end(), k, boost::bind (&amp;std::pair&lt;int, string&gt;::first, _1) &lt; k) </code></pre> <p>Now I would like to replace <code>operator&lt;</code> with a function object (of type <code>std::less&lt;int&gt;</code> in this example):</p> <pre><code>std::less&lt;int&gt; comparator; </code></pre> <p>How do I change the code above so it works? I cannot just do</p> <pre><code>std::lower_bound (entries.begin(), entries.end(), k, comparator (boost::bind (&amp;std::pair&lt;int, string&gt;::first, _1), k)) </code></pre> <p>because <code>std::less&lt;int&gt;::operator()</code> does not accept whatever is the return type of <code>boost::bind</code>. What am I missing here? TIA</p> http://stackoverflow.com/questions/652193/serialize-and-send-a-data-structure-using-boost 2 Serialize and send a data structure using Boost? Runcible 2009-03-16T21:19:53Z 2009-11-25T05:27:45Z <p>I have a data structure that looks like this:</p> <pre> typedef struct { unsigned short m_short1; unsigned short m_short2; unsigned char m_character; } MyDataType; </pre> <p>I want to use boost::serialization to serialize this data structure, then use boost::asio to transmit it via TCP/IP, then have another application receive the data and de-serialize it using the same boost libraries.</p> <p><A HREF="http://www.boost.org/doc/libs/1_38_0/libs/serialization/doc/tutorial.html" rel="nofollow">I'm trying to following boost::serialization tutorial</A>, (<A HREF="http://stackoverflow.com/questions/523872/how-do-you-serialize-an-object-in-c" rel="nofollow">as some other SO questions have suggested</A>) but the example is specifically for writing/reading to a file, not to a socket using boost::asio.</p> <p>I'm pretty sure I've got the right tools for the job -- I just need help making them work together. Writing to a socket can't be that different from writing to a file, right?</p> <p>Any suggestions are very much appreciated. Thanks!</p> http://stackoverflow.com/questions/1117066/installing-c-boost-on-mac-osx-leopard-port-fails 2 installing c++ boost on mac osx leopard -- port fails Yoav 2009-07-12T22:10:51Z 2009-11-24T17:40:14Z <p>I'm not much of a c++ programmer, just an end-user trying to install an existing project from source. One of the project dependencies is the boost library. When I tried to install boost on my osx 10.5.7 using "sudo port install boost", I got the following error message:</p> <pre><code>---&gt; Building boost with target all Error: Target org.macports.build returned: shell command " cd "/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_devel_boost/work/boost_1_35_0" &amp;&amp; gmake all " returned error 2 Command output: Makefile:2: *** missing separator. Stop. Error: Status 1 encountered during processing. </code></pre> <p>help?</p> <p><strong>EDIT</strong>: I suspect something is wrong with my system, though I am not sure what -- it's just a plain osx installation + the xcode CD that came with it, nothing fancy. [things are just so much easier on this front on linux!)</p> <p>I did "sudo port selfupdate" and "sudo port upgrade outdated" as suggested in an answer, and the second one ran about all night, then failed with many errors, the last few are:</p> <pre> Error: The following dependencies failed to build: db46 Error: Unable to upgrade port: 1 ---> Extracting tiff On Mac OS X 10.5, tiff 3.8.2 requires Xcode 3.1 or later but you have Xcode 3.0. Error: Target org.macports.extract returned: incompatible Xcode version Error: Unable to upgrade port: 1 ---> Activating xorg-renderproto @0.9.3_0 Error: Target org.macports.activate returned: Image error: /opt/local/include/X11/extensions/render.h is being used by the active render port. Please deactivate this port first, or use 'port -f activate xorg-renderproto' to force the activation. Error: The following dependencies failed to build: xorg-renderproto Error: Unable to upgrade port: 1 </pre> http://stackoverflow.com/questions/1787631/boost-serialization-compile-errors-terribly-confused 0 Boost Serialization Compile Errors, terribly confused uberjumper 2009-11-24T03:42:10Z 2009-11-24T15:13:41Z <p>Okay so basically :</p> <p>i have this simple example:</p> <p>main.cpp</p> <pre><code>using namespace VHGO::Resource; std::list&lt;BaseTable*&gt; tableList; BigTable* bt1 = new BigTable(); HRESULT hr = S_OK; hr = bt1-&gt;Add(L"TEXTURE", L"..\\Data\\ground.png"); tableList.push_back(bt1); std::wofstream ofs3(L"VHGOSatData.bif"); boost::archive::xml_woarchive outArch3(ofs3); outArch3 &amp; BOOST_SERIALIZATION_NVP(tableList); </code></pre> <p>And my serialization classes</p> <pre><code>namespace VHGO { typedef std::wstring String; typedef std::map&lt;VHGO::String, VHGO::String&gt; PropertyMap; namespace Resource { class BaseTable { friend class boost::serialization::access; friend std::wostream&amp; operator&lt;&lt;(std::wostream&amp; os, const BaseTable&amp; b ); private: template&lt;class Archive&gt; void save(Archive&amp; ar, const unsigned int version) const {} template&lt;class Archive&gt; void load(Archive&amp; ar, const unsigned int version) {} public: BaseTable() { } //for boost virtual ~BaseTable() { } virtual HRESULT Add(__in const VHGO::String&amp;, __in const VHGO::String&amp;) = 0; virtual HRESULT Remove(__in const VHGO::String&amp;) = 0; virtual HRESULT Get(__in const VHGO::String&amp;, __out VHGO::String&amp;) = 0; }; std::wostream&amp; operator&lt;&lt;(std::wostream&amp; os, const BaseTable&amp; b ) { UNREFERENCED_PARAMETER(b); return os; } ////////////////////////////////////////////////////////////////////////////////////////// class BigTable : public BaseTable { friend class boost::serialization::access; private: VHGO::PropertyMap m_Values; template&lt;class Archive&gt; void serialize(Archive&amp; ar, const unsigned int version) { boost::serialization::split_member(ar, *this, version); } template&lt;class Archive&gt; void save(Archive&amp; ar, const unsigned int version) const { UNREFERENCED_PARAMETER(version); ar &lt;&lt; boost::serialization::base_object&lt;const VHGO::Resource::BaseTable&gt;(*this); ar &lt;&lt; boost::serialization::make_nvp("bigtable", m_Values); } template&lt;class Archive&gt; void load(Archive&amp; ar, const unsigned int version) { UNREFERENCED_PARAMETER(version); ar &gt;&gt; boost::serialization::base_object&lt;BaseTable&gt;(*this); ar &gt;&gt; boost::serialization::make_nvp("bigtable", m_Values); } // BOOST_SERIALIZATION_SPLIT_MEMBER() public: BigTable(__in const VHGO::PropertyMap&amp; propMap) : m_Values(propMap) { } BigTable() { } virtual ~BigTable() { } HRESULT Add(__in const VHGO::String&amp; propKey, __in const VHGO::String&amp; propValue) { //itadds return S_OK; } HRESULT Remove(__in const VHGO::String&amp; propKey) { /*insertchecking*/ return S_OK; } HRESULT Get(__in const VHGO::String&amp; key, __out VHGO::String&amp; aValue) { aValue = m_Values[key]; return S_OK; } VHGO::PropertyMap GetPropertyMap() { return m_Values; } }; </code></pre> <p>What is the cause of this, ive gone through the documents, and i can make boost's examples work fine. But i cannot make this work. Ive searched around, several times and found mixed results. But i am pretty much in the dark,.</p> <p>The compile error is this:</p> <pre><code>Error 1 error C2664: 'boost::mpl::assertion_failed' : cannot convert parameter 1 from 'boost::mpl::failed ************boost::serialization::is_wrapper&lt;T&gt;::* ***********' to 'boost::mpl::assert&lt;false&gt;::type' </code></pre> <p>im using VC9.0, and using boost 1.41.</p> <p>Does anyone have any ideas?</p> <p><em>EDIT</em></p> <p>Added the wrapper as suggested</p> <p>namespace boost { namespace serialization { template&lt;> struct is_wrapper : mpl::true_ {}; } // namespace serialization } // namespace boost</p> <p>Still leads to the following error</p> <pre><code>1&gt;d:\wrkspace\Sources\External\boost\boost/archive/basic_xml_oarchive.hpp(87) : error C2664: 'boost::mpl::assertion_failed' : cannot convert parameter 1 from 'boost::mpl::failed ************boost::serialization::is_wrapper&lt;T&gt;::* ***********' to 'boost::mpl::assert&lt;false&gt;::type' 1&gt; with 1&gt; [ 1&gt; T=const std::list&lt;VHGO::Resource::BaseTable *&gt; 1&gt; ] 1&gt; No constructor could take the source type, or constructor overload resolution was ambiguous 1&gt; d:\wrkspace\Sources\External\boost\boost/archive/detail/interface_oarchive.hpp(64) : see reference to function template instantiation 'void boost::archive::basic_xml_oarchive&lt;Archive&gt;::save_override&lt;T&gt;(T &amp;,int)' being compiled 1&gt; with 1&gt; [ 1&gt; Archive=boost::archive::xml_woarchive, 1&gt; T=std::list&lt;VHGO::Resource::BaseTable *&gt; 1&gt; ] </code></pre> <p><em>EDIT 2</em></p> <p>I caved and tried this on gcc, and it works fine. Sadily, i absolutely need it to work on VS2008 which is the standard at work.</p> http://stackoverflow.com/questions/1790291/using-boost-on-windows-visual-studio 4 Using Boost on Windows (Visual Studio) Edan Maor 2009-11-24T14:06:58Z 2009-11-24T14:45:38Z <p>I want to get started using Boost. I'm programming a C++ program in Visual Studio (obviously on a Windows machine).</p> <p>Boost's <a href="http://www.boost.org/doc/libs/1%5F41%5F0/more/getting%5Fstarted/windows.html#id2" rel="nofollow">Getting Started Guide</a> says:</p> <blockquote> <p>The easiest way to get a copy of Boost is to <strong>use an installer.</strong> The Boost website version of this Getting Started guide will have undated information on installers as they become available, or see Boost downloads or the installer provided by BoostPro Computing. <strong>We especially recommend using an installer if you use Microsoft Visual Studio</strong>, because the installer can download and install precompiled library binaries, saving you the trouble of building them yourself.</p> </blockquote> <p>I'm a little unsure if I want to follow this advice, or just download and build everything myself. Potential problems that I see with an installer are:</p> <ol> <li>Things are no longer self-contained (i.e. every team member has to install Boost, then configure Visual Studio to recognize it).</li> <li>I can't keep Boost under source control (I would ideally like it to be soure files in my source control like everything else). (<strong>Edit</strong>: Judging by the comments, it looks like boost is kinda large (as in 5 GB!), so obviously I'd need to keep only parts of it under source control).</li> </ol> <p>So my question is, am I just being paranoid and should go the installer route, or am I correct and should build it myself? If anyone has any experience working with Boost and Visual Studio, I'd appreciate if they could share their views on this (and if it should be to build it myself, any tips would also be appreciated, for example should I only copy every file that I actually use? etc.).</p> <p><strong>Note:</strong></p> <p>A few similar questions on StackOverflow, but which didn't ask this explicitly, make me think that I shouldn't use the installer, which is why I'm asking it explicitly here. For reference, these are the questions:</p> <ol> <li><a href="http://stackoverflow.com/questions/1335040/boost-linking-visual-studio-version-control">Boost linking, Visual Studio &amp; version control</a></li> <li><a href="http://stackoverflow.com/questions/145828/including-relevant-boost-libraries-with-c-source-using-visual-studio">Including Relevant Boost Libraries with C++ Source (Using Visual Studio)</a></li> </ol> http://stackoverflow.com/questions/1633730/mocking-using-boostsharedptr-and-amop 0 Mocking using boost::shared_ptr and AMOP Edison Gustavo Muenz 2009-10-27T21:13:44Z 2009-11-24T09:00:03Z <p>Hi, I'm trying to write mocks using <a href="http://code.google.com/p/amop/" rel="nofollow">amop</a>. I'm using Visual Studio 2008.</p> <p>I have this interface class:</p> <pre><code>struct Interface { virtual void Activate() = 0; }; </code></pre> <p>and this other class which receives pointers to this <code>Interface</code>, like this:</p> <pre><code>struct UserOfInterface { void execute(Interface* iface) { iface-&gt;Activate(); } }; </code></pre> <p>So I try to write some testing code like this:</p> <pre><code>amop::TMockObject&lt;Interface&gt; mock; mock.Method(&amp;Interface::Activate).Count(1); UserOfInterface user; user.execute((Interface*)mock); mock.Verifiy(); </code></pre> <p>It works! So far so good, but what I really want is a boost::shared_ptr in the execute() method, so I write this:</p> <pre><code>struct UserOfInterface { void execute(boost::shared_ptr&lt;Interface&gt; iface) { iface-&gt;Activate(); } }; </code></pre> <p>How should the test code be now? I tried some things, like:</p> <pre><code>amop::TMockObject&lt;Interface&gt; mock; mock.Method(&amp;Interface::Activate).Count(1); UserOfInterface user; boost::shared_ptr&lt;Interface&gt; mockAsPtr((Interface*)mock); user.execute(mockAsPtr); mock.Verifiy(); </code></pre> <p>It compiles, but obviously crashes, since at the end of the scope the variable 'mock' gets double destroyed (because of the stack variable 'mock' and the shared_ptr).</p> <p>I also tried to create the 'mock' variable on the heap:</p> <pre><code>amop::TMockObject&lt;Interface&gt;* mock(new amop::TMockObject&lt;Interface&gt;); mock-&gt;Method(&amp;Interface::Activate).Count(1); UserOfInterface user; boost::shared_ptr&lt;Interface&gt; mockAsPtr((Interface*)*mock); user.execute(mockAsPtr); mock-&gt;Verifiy(); </code></pre> <p>But it doesn't work, somehow it enters an infinite loop, before I had a problem with boost not finding the destructor for the mocked object when the shared_ptr tried to delete the object.</p> <p>Has anyone used <a href="http://code.google.com/p/amop/" rel="nofollow">amop</a> with boost::shared_ptr successfully?</p> http://stackoverflow.com/questions/1780256/boostrandom-and-enumerated-types 1 Boost::Random and Enumerated Types Person 2009-11-22T22:31:19Z 2009-11-23T01:36:38Z <p>Right now I'm generating a random enumerator using boost's random library. Basically I'm using an implicit conversion to specify the random generator's distribution, getting a random number, and then casting that back to the enumerated type.</p> <p>Ex: (minColor and maxColor are parameters of the enumerated type)</p> <pre><code>boost::mt19937 randGen(std::time(0)); boost::uniform_int&lt;&gt; dist(minColor, maxColor); boost::variate_generator&lt; boost::mt19937&amp;, boost::uniform_int&lt;&gt; &gt; GetRand(randGen, dist); return static_cast&lt;Common::Color&gt; (GetRand()); </code></pre> <p>I'm curious whether boost's library supports anything like creating a distribution for an enumerated type, and thus returns a randomly selected enumerator. Something like...</p> <pre><code>boost::uniform&lt;Common::Color&gt; dist(minColor, maxColor); </code></pre> http://stackoverflow.com/questions/1780003/import-error-on-boost-python-hello-program 2 Import Error on boost python hello program unknown (yahoo) 2009-11-22T21:06:59Z 2009-11-22T21:26:46Z <p>Hello World Code</p> <pre><code>#include &lt;boost/python.hpp&gt; using namespace boost::python; struct World{ void set(std::string msg) { this-&gt;msg = msg; } std::string greet() { return msg; } std::string msg; }; BOOST_PYTHON_MODULE(hello) { class_&lt;World&gt;("World") .def("greet", &amp;World::greet) .def("set", &amp;World::set) ; } </code></pre> <p>Compile and build ok</p> <pre><code>~/boost$ g++ -fPIC -I/usr/include/python2.6 -c hello.cpp ~/boost$ g++ -shared hello.o -o hello.so </code></pre> <p>But when import from python side, got error.</p> <pre><code>&gt;&gt;&gt; import hello.so Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; ImportError: ./hello.so: undefined symbol: _ZNK5boost6python7objects21py_function_impl_base9max_arityEv &gt;&gt;&gt; </code></pre> <p>Can anybody help me? Thanks in advance.</p> http://stackoverflow.com/questions/1778990/boostasio-asyncwait-handler-signature 0 Boost::asio async_wait handler signature navigator 2009-11-22T15:15:11Z 2009-11-22T15:19:12Z <p>Hi,</p> <p>I am going through the boost::asio examples. I am looking at <a href="http://www.boost.org/doc/libs/1%5F38%5F0/doc/html/boost%5Fasio/tutorial/tuttimer4.html" rel="nofollow">Example 4</a></p> <p>What is confusing is that, the WaitHandler in this example has the signature </p> <blockquote> <p>void print (this) </p> </blockquote> <p>But the async_wait call expects a handler whose </p> <blockquote> <p>function signature of the handler must be:</p> <p>void handler( const boost::system::error_code&amp; error // Result of operation. );</p> </blockquote> <p><a href="http://www.boost.org/doc/libs/1%5F40%5F0/doc/html/boost%5Fasio/reference/basic%5Fdeadline%5Ftimer/async%5Fwait.html" rel="nofollow">Source: Boost documentation</a></p> <p>Since the parameter type is part of a function's signature, why in the example above, async_wait accepts a handler whose parameter is not of type boost::system::error_code?</p> <p>THanks.</p> http://stackoverflow.com/questions/1778191/base-class-pointer-to-hold-boost-enum 1 Base Class Pointer to Hold Boost Enum Yan Cheng Cheok 2009-11-22T08:27:28Z 2009-11-22T10:22:31Z <p>Currently, I am using a type-safe enum class from Boost Vault :</p> <p><a href="http://stackoverflow.com/questions/217549/which-typesafe-enum-in-c-are-you-using">http://stackoverflow.com/questions/217549/which-typesafe-enum-in-c-are-you-using</a></p> <p>I found it is difficult to have a parent class pointer to refer to all enum class, due to Boost::enum is a template class : <code>boost::detail::enum_base&lt;T&gt;</code></p> <p>I am using <code>void fun(const boost::any&amp; any)</code>, to accept any enum class. However, I need to cast them to an enum class before I perform iteration. I cannot cast to a base class <code>boost::detail::enum_base&lt;T&gt;</code>, as I do not have information on what T will be.</p> <p>Any suggestion on how to solve this?</p> <p><strong>One of the requirement is that, the function argument must be in boost::any.</strong></p> <pre><code>#include &lt;iostream&gt; #include &lt;boost/any.hpp&gt; #include "boost/enum.hpp" // this macro BOOST_ENUM(boolean, (True) (False) ) // expands to this enum model namespace expanded { class boolean : public boost::detail::enum_base&lt;boolean&gt; { public: enum domain { False, True, }; BOOST_STATIC_CONSTANT(index_type, size = 2); public: boolean() {} boolean(domain index) : boost::detail::enum_base&lt;boolean&gt;(index) {} typedef boost::optional&lt;boolean&gt; optional; static optional get_by_name(const char* str) { if(strcmp(str, "False") == 0) return optional(False); if(strcmp(str, "True") == 0) return optional(True); return optional(); } private: friend class boost::detail::enum_base&lt;boolean&gt;; static const char* names(domain index) { BOOST_ASSERT(static_cast&lt;index_type&gt;(index) &lt; size); switch(index) { case False: return "False"; case True: return "True"; default: return ""; } } }; } BOOST_ENUM(boolean2, (True2) (False2) ) /* I want to have a function to accept any enum class. How? */ void fun(const boost::any&amp; any) { /* How about boolean2 enum? How can I have a common pointer to point to enum class? */ const boolean* d = boost::any_cast&lt;boolean *&gt;(any); /* I want to use unofficial boost::enum, because it allows me to iterate through enum's members. */ for (boolean::const_iterator iterator = d-&gt;begin(); iterator != d-&gt;end(); iterator++) { boolean x = *iterator; std::cout&lt;&lt; "Iterate through enum : "&lt;&lt; x&lt;&lt; std::endl; } } int main() { boolean b = boolean::True; boolean2 b2 = boolean2::True2; /* Assume until this stage, during runtime, I have no clue b is either boolean or boolean2. */ fun(&amp;b); /* * Runtime error occur here. * throw enable_current_exception(enable_error_info(e)); */ fun(&amp;b2); getchar(); } </code></pre> http://stackoverflow.com/questions/1753469/how-to-hook-up-boost-serialization-iostreams-to-serialize-gzip-an-object-to-s 2 How to hook up Boost serialization & iostreams to serialize & gzip an object to string? cce 2009-11-18T03:35:07Z 2009-11-22T00:58:20Z <p>Hi all; I've been using the Boost serialization library, which is actually pretty nice, and lets me make simple wrappers to save my serializable objects to strings, like so:</p> <pre><code>template &lt;class T&gt; inline std::string saveString(const T &amp; o) { std::ostringstream oss; boost::archive::binary_oarchive oa(oss); oa &lt;&lt; o; return oss.str(); } template &lt;class T&gt; inline void saveFile(const T &amp; o, const char* fname) { std::ofstream ofs(fname, std::ios::out|std::ios::binary|std::ios::trunc); boost::archive::binary_oarchive oa(ofs); oa &lt;&lt; o; } template &lt;class T&gt; inline void loadFile(T &amp; o, const char* fname) { std::ifstream ifs(fname, std::ios::in|std::ios::binary); assert(ifs.good()); // XXX catch if file not found boost::archive::binary_iarchive ia(ifs); ia &gt;&gt; o; } </code></pre> <p>The thing is, I just found the need to compress my serialized data, too, so I'm looking at doing that with the filters in boost::iostreams. I figured out how to do it successfully with files:</p> <pre><code>template &lt;class T&gt; inline void saveGZFile(const T &amp; o, const char* fname) { std::ofstream ofs(fname, std::ios::out|std::ios::binary|std::ios::trunc); boost::iostreams::filtering_streambuf&lt;boost::iostreams::output&gt; out; out.push(boost::iostreams::gzip_compressor()); out.push(ofs); boost::archive::binary_oarchive oa(out); oa &lt;&lt; o; } template &lt;class T&gt; inline void loadGZFile(T &amp; o, const char* fname) { std::ifstream ifs(fname, std::ios::in|std::ios::binary); assert(ifs.good()); // XXX catch if file not found boost::iostreams::filtering_streambuf&lt;boost::iostreams::input&gt; in; in.push(boost::iostreams::gzip_decompressor()); in.push(ifs); boost::archive::binary_iarchive ia(in); ia &gt;&gt; o; } </code></pre> <p>But can't figure out how to save correctly to a compressed string. The problem is that I'm not flushing the chain of filters, but I've tried popping and syncing and nothing seems to work. Here's my broken code:</p> <pre><code>template &lt;class T&gt; inline std::string saveGZString(const T &amp; o) { std::ostringstream oss; boost::iostreams::filtering_streambuf&lt;boost::iostreams::output&gt; out; out.push(boost::iostreams::gzip_compressor()); out.push(oss); boost::archive::binary_oarchive oa(out); oa &lt;&lt; o; // XXX out.pop() twice? out.strict_sync()?? oss.flush()?? return oss.str(); } </code></pre> <p>As a result some data gets stuck in the stream buffer somewhere, and I always end up with a a few complete blocks (16K or 32K) of compressed data when I know it should be 43K or so given the (valid) output I get from using my saveGZFile method. Apparently hooking up the ofstream closes and flushes properly, but hooking up the ostringstream doesn't.</p> <p>Any help? (This is my first stackoverflow question — help me, guys, you're my only hope!)</p> http://stackoverflow.com/questions/1772400/boost-split-compile-issue 0 boost split compile issue Pradyot 2009-11-20T18:29:54Z 2009-11-21T09:37:05Z <p>I have the following code snippet. I am compiling using the sun studio 12 compiler and have tried boost 1.33 and 1.39</p> <pre><code>#include &lt;boost/algorithm/string.hpp&gt; #include &lt;string&gt; #include &lt;vector&gt; using namespace boost; using namespace std; int main(int argc, char* argv[]) { string exbyte = "0x2430"; string exbytes = "0x2430,2430"; typedef vector&lt; string &gt; SplitVec; SplitVec res1 ; split(res1 , exbyte, is_any_of(",") ); return 0 } </code></pre> <p>I get the following compile error: "/bb/source/boost/boost_1_39_0/boost/algorithm/string/iter_find.hpp", line 175: Error, nomatchoverin: Could not find a match for std::vector::vector(boost::transform_iterator, boost::algorithm::split_iterator, boost::use_default, boost::use_default>, boost::transform_iterator, boost::algorithm::split_iterator, boost::use_default, boost::use_default>) needed in boost::algorithm::iter_split, std::string, boost::algorithm::detail::token_finderF>>(std::vector&amp;, std::string &amp;, boost::algorithm::detail::token_finderF>)</p> <p>If anybody has thoughts on this that would be awesome. Since I am cotemplateing strtok(only kidding) </p> http://stackoverflow.com/questions/1774685/boost-linker-errors-regular-expressions-c 0 boost linker errors -regular expressions - c++ Dr Deo 2009-11-21T06:12:50Z 2009-11-21T06:27:20Z <p>hi am trying to compile a simple program in boost library but i keep getting linker errors </p> <pre><code>#include &lt;iostream&gt; #include &lt;string&gt; #include &lt;boost\regex.hpp&gt; // Boost.Regex lib using namespace std; int main( ) { std::string s, sre; boost::regex re; while(true) { cout &lt;&lt; "Expression: "; cin &gt;&gt; sre; if (sre == "quit") { break; } cout &lt;&lt; "String: "; cin &gt;&gt; s; try { // Set up the regular expression for case-insensitivity re.assign(sre, boost::regex_constants::icase); } catch (boost::regex_error&amp; e) { cout &lt;&lt; sre &lt;&lt; " is not a valid regular expression: \"" &lt;&lt; e.what() &lt;&lt; "\"" &lt;&lt; endl; continue; } if (boost::regex_match(s, re)) { cout &lt;&lt; re &lt;&lt; " matches " &lt;&lt; s &lt;&lt; endl; } } } </code></pre> <p>but i keep getting linker errors </p> <pre><code> [Linker error] undefined reference to `boost::basic_regex&lt;char, boost::regex_traits&lt;char, boost::cpp_regex_traits&lt;char&gt; &gt; &gt;::do_assign(char const*, char const*, unsigned int)' </code></pre> <p>How can i solve this?<br> Ps: am using <strong>devcpp ide</strong> and i installed boost from <strong>www.devpaks.org</strong></p> http://stackoverflow.com/questions/1768991/cross-platform-unicode-path-handling 3 Cross platform unicode path handling Anacrolix 2009-11-20T08:06:05Z 2009-11-20T20:35:25Z <p>I'm using <code>boost::filesystem</code> for cross-platform path manipulation, but this breaks down when calls need to be made down into interfaces I don't control that won't accept UTF-8. For example when using the Windows API, I need to convert to UTF-16, and then call the wide-string version of whatever function I was about to call, and then convert any output back to UTF-8.</p> <p>While the <code>wpath</code>, and other <code>w*</code> forms of many of the boost::filesystem functions help keep sanity, are there any suggestions for how best to handle this conversion to wide-string forms where needed, while maintaining consistency in my own code?</p> http://stackoverflow.com/questions/1768943/building-boost-on-linux-library-names 1 Building Boost on Linux - library names Andy Faibishenko 2009-11-20T07:46:44Z 2009-11-20T20:25:13Z <p>I am trying to build an application which depends on <a href="http://en.wikipedia.org/wiki/Boost%5FC%2B%2B%5FLibraries" rel="nofollow">Boost</a>. So I downloaded Boost 1_41_0 to my Linux box and followed the instructions found on the Boost site for Unix variants, <a href="http://www.boost.org/doc/libs/1%5F41%5F0/more/getting%5Fstarted/unix-variants.html" rel="nofollow">http://www.boost.org/doc/libs/1%5F41%5F0/more/getting%5Fstarted/unix-variants.html</a>.</p> <p>They basically suggest that I run ./bjam install, which I did. The build completed successfully. However, the library names don't seem to match the Boost naming convention described both in the documentation above, and what is specified in the makefile of the application I am trying to build. </p> <p>I noticed that there are a bunch of options that I can specify to bjam and I tried to play with those, but no matter what happens I can't seem to get it quite right. My understanding is that the libraries should go into the $BOOST_ROOT/lib directory. This is where the libraries show up, but named:</p> <pre><code>libboost_thread.a libboost_thread.so libboost_thread.so.1.41.0 </code></pre> <p>I'd expect them to be named libboost_thread-gcc41-mt-d-1_41_0 or something similar.</p> <p>I did try ./bjam --build-type=complete --layout=tagged and I see:</p> <pre><code>libboost_thread.a libboost_thread-mt.a libboost_thread-mt-d.a libboost_thread-mt-d.so libboost_thread-mt-d.so.1.41.0 libboost_thread-mt-s.a libboost_thread-mt-sd.a libboost_thread-mt.so libboost_thread-mt.so.1.41.0 libboost_thread.so libboost_thread.so.1.41.0 </code></pre> <p>So, I am not sure if I should just make stage my -L directory? Is there any documentation which describe this in more detail?</p> http://stackoverflow.com/questions/270542/testing-for-assert-in-the-boost-test-framework 3 Testing for assert in the Boost Test framework Rob 2008-11-06T22:18:52Z 2009-11-20T19:50:50Z <p>I use the Boost Test framework to unit test my C++ code and wondered if it is possible to test if a function will assert? Yes, sounds a bit strange but bear with me! Many of my functions check the input parameters upon entry, asserting if they are invalid, and it would be useful to test for this. For example:</p> <pre><code>void MyFunction(int param) { assert(param &gt; 0); // param cannot be less than 1 ... } </code></pre> <p>I would like to be able to do something like this:</p> <pre><code>BOOST_CHECK_ASSERT(MyFunction(0), true); BOOST_CHECK_ASSERT(MyFunction(-1), true); BOOST_CHECK_ASSERT(MyFunction(1), false); ... </code></pre> <p>You can check for exceptions being thrown using Boost Test so I wondered if there was some assert magic too...</p>