User Nicola Bonelli - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T06:49:38Z http://stackoverflow.com/feeds/user/19630 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/276188/variadic-templates 3 Variadic templates Nicola Bonelli 2008-11-09T17:46:03Z 2009-02-12T04:40:27Z <p>C++0x will allow template to take an arbitrary number of arguments. What is the best use of this feature other than implementing tuples ?</p> http://stackoverflow.com/questions/329061/writing-multithreaded-exception-safe-code 2 Writing Multithreaded Exception-Safe Code Nicola Bonelli 2008-11-30T16:55:33Z 2009-01-29T21:07:26Z <p>What are the tensions between multithreading and exception-safety in C++? Are there good guidelines to follow? Does a thread terminate because of an uncaught exception?</p> http://stackoverflow.com/questions/310333/tr1memfn-and-tr1bind-on-const-correctness-and-overloading 1 tr1::mem_fn and tr1::bind: on const-correctness and overloading Nicola Bonelli 2008-11-21T21:52:48Z 2008-11-30T07:32:36Z <p>What's wrong with the following snippet ?</p> <pre><code>#include &lt;tr1/functional&gt; #include &lt;functional&gt; #include &lt;iostream&gt; using namespace std::tr1::placeholders; struct abc { typedef void result_type; void hello(int) { std::cout &lt;&lt; __PRETTY_FUNCTION__ &lt;&lt; std::endl; } void hello(int) const { std::cout &lt;&lt; __PRETTY_FUNCTION__ &lt;&lt; std::endl; } abc() {} }; int main(int argc, char *argv[]) { const abc x; int a = 1; std::tr1::bind(&amp;abc::hello, x , _1)(a); return 0; } </code></pre> <p>Trying to compile it with g++-4.3, it seems that <em>cv</em>-qualifier overloaded functions confuse both <code>tr1::mem_fn&lt;&gt;</code> and <code>tr1::bind&lt;&gt;</code> and it comes out the following error:</p> <pre><code>no matching function for call to ‘bind(&lt;unresolved overloaded function type&gt;,... </code></pre> <p>Instead the following snippet compiles but seems to break the <strong>const-correctness</strong>:</p> <pre><code>struct abc { typedef void result_type; void operator()(int) { std::cout &lt;&lt; __PRETTY_FUNCTION__ &lt;&lt; std::endl; } void operator()(int) const { std::cout &lt;&lt; __PRETTY_FUNCTION__ &lt;&lt; std::endl; } abc() {} }; ... const abc x; int a = 1; std::tr1::bind( x , _1)(a); </code></pre> <p>Any clue?</p> http://stackoverflow.com/questions/311102/safely-checking-the-type-of-a-variable/311108#311108 0 Answer by Nicola Bonelli for Safely checking the type of a variable Nicola Bonelli 2008-11-22T08:56:32Z 2008-11-27T21:19:12Z <p><code>dynamic_cast&lt;&gt;</code> is a cast intended to be used only on <em>convertible</em> types (in the polymorphic sense). Forcing the cast of a <code>pointer</code> to a <code>long</code> (litb correctly suggests the static_assert to ensure the compatibility of the size) all the information about the <strong>type of the pointer</strong> are lost. There's no way to implement a <code>safe_reinterpret_cast&lt;&gt;</code> to obtain the pointer back: both value and type.</p> <p>To clarify what I mean:</p> <pre><code>struct a_kind {}; struct b_kind {}; void function(long ptr) {} int main(int argc, char *argv[]) { a_kind * ptr1 = new a_kind; b_kind * ptr2 = new b_kind; function( (long)ptr1 ); function( (long)ptr2 ); return 0; } </code></pre> <p>There's no way for <code>function()</code> to determine the kind of pointer passed and "down" cast it to the proper type, unless either: </p> <ul> <li>the long is wrapped by an object with some information of the type.</li> <li>the type itself is encoded in the referenced object. </li> </ul> <p>Both the solutions are ugly and should be avoided, since are RTTI surrogates.</p> http://stackoverflow.com/questions/313655/stack-and-queue/313672#313672 0 Answer by Nicola Bonelli for stack and queue... Nicola Bonelli 2008-11-24T08:34:56Z 2008-11-24T10:56:48Z <p>In the book <em>"The C++ Standard Library - A Tutorial and Reference"</em> (Josuttis) there's a stack implementation based on deque.</p> <p>Ok, here's the code: <a href="http://www.josuttis.com/libbook/cont/Stack.hpp.html" rel="nofollow">http://www.josuttis.com/libbook/cont/Stack.hpp.html</a>.</p> http://stackoverflow.com/questions/313712/what-is-the-best-method-to-ping-in-c-under-linux/313765#313765 1 Answer by Nicola Bonelli for What is the best method to ping in c++ under linux ? Nicola Bonelli 2008-11-24T09:45:56Z 2008-11-24T09:45:56Z <p>From the educational point of view invoking an external binary is very <strong>inadvisable</strong>. Especially for a simple task such as sending an ICMP echo request, you should learn a bit of socket. </p> http://stackoverflow.com/questions/312175/probabilistic-file-verification-algorithm-or-libraries/312362#312362 2 Answer by Nicola Bonelli for Probabilistic file verification -- algorithm or libraries? Nicola Bonelli 2008-11-23T10:25:19Z 2008-11-23T10:25:19Z <p>Transfers take place over USB2, right? Therefore you should know that:</p> <ul> <li>USB communication are in form of packets, with a payload up to 1024 bytes for high-speed transfers and a 16-bit CRC.</li> <li>Each packet is acknowledged and potentially retransmitted.</li> </ul> <p>You have to take into account these information to deploy an algorithm that add some warrantees over those provided by CRC, otherwise it would be futile. If I remember well a 16-bit CRC can detects any single error bursts not longer than 16 bit and a fraction of those longer. </p> <p>You can start from wikipedia: <a href="http://en.wikipedia.org/wiki/USB2" rel="nofollow">http://en.wikipedia.org/wiki/USB2</a> and <a href="http://en.wikipedia.org/wiki/Cyclic_redundancy_check" rel="nofollow">http://en.wikipedia.org/wiki/Cyclic_redundancy_check</a>.</p> http://stackoverflow.com/questions/310333/tr1memfn-and-tr1bind-on-const-correctness-and-overloading/311169#311169 0 Answer by Nicola Bonelli for tr1::mem_fn and tr1::bind: on const-correctness and overloading Nicola Bonelli 2008-11-22T10:07:03Z 2008-11-22T10:07:03Z <p>As John suggested, the problems arisen in those snippets are the following:</p> <ol> <li>When passing a <em>member-function-pointer</em> it's necessary to specify its signature (if overloaded)</li> <li><code>bind()</code> are passed arguments by value.</li> </ol> <p>The first problem is solved by casting the member function pointer provided to bind:</p> <pre><code> std::tr1::bind(static_cast&lt; void(abc::*)(int) const &gt;(&amp;abc::hello), x, _1)(a); </code></pre> <p>The second can be solved by passing the callable object by address (as John suggested), or by means of TR1 <code>reference_wrapper&lt;&gt;</code> -- otherwise it will be passed by value, making the <em>const-correctness breaking hallucination</em>.</p> <p>Given x a callable object:</p> <pre><code>std::tr1::bind( std::tr1::ref(x) , _1)(a); </code></pre> <p><code>bind()</code> will forward <code>a</code> to the proper <code>operator()</code> in accordance to the x <strong>constness</strong>.</p> http://stackoverflow.com/questions/308477/c-smart-pointer-performance/308507#308507 4 Answer by Nicola Bonelli for C++ Smart Pointer performance Nicola Bonelli 2008-11-21T11:38:02Z 2008-11-21T20:02:18Z <p>Boost provide different smart pointers. Generally both the memory occupation, which varies in accordance to the kind of smart pointer, and the performance should not be an issue. For a performance comparison you can check this <a href="http://www.boost.org/doc/libs/1_37_0/libs/smart_ptr/smarttests.htm" rel="nofollow">http://www.boost.org/doc/libs/1_37_0/libs/smart_ptr/smarttests.htm</a>.</p> <p>As you can see only construction, copy and destruction are taken into account for the performance comparison, which means that dereferencing a smart pointer has supposedly the same cost as that of a raw pointer.</p> <p>The following snippet demonstrates that there's no performance loss by using a <code>shared_ptr&lt;&gt;</code> in place of a raw pointer:</p> <pre><code>#include &lt;iostream&gt; #include &lt;tr1/memory&gt; int main() { #ifdef USE_SHARED_PTR std::tr1::shared_ptr&lt;volatile int&gt; i(new int(1)); #else volatile int * i = new int(1); #endif long long int h = 0; for(long long int j=0;j &lt; 10000000000LL; j++) { h += *i; } std::cout &lt;&lt; h &lt;&lt; std::endl; return 0; } </code></pre> http://stackoverflow.com/questions/274375/intercepting-traffic-to-memcached-for-statistics-analysis/274722#274722 0 Answer by Nicola Bonelli for Intercepting traffic to memcached for statistics/analysis Nicola Bonelli 2008-11-08T13:32:54Z 2008-11-18T12:28:06Z <p>iptables provides <strong>libipq</strong>, a userspace packet queuing library. From the manpage:</p> <blockquote> <p>Netfilter provides a mechanism for passing packets out of the stack for queueing to userspace, then receiving these packets back into the kernel with a verdict specifying what to do with the packets (such as ACCEPT or DROP). These packets may also be modified in userspace prior to reinjection back into the kernel.</p> </blockquote> <p>By setting up tailored <strong>iptables</strong> rules that forward packets to libipq, in addition to specifying the verdict for them, it's possible to do packet inspection for statistics analysis.</p> <p>Another viable option is manually sniff packets by means of libpcap or PF_PACKET socket with the socket-filter support.</p> http://stackoverflow.com/questions/294261/tr1memfn-and-members-with-default-arguments 4 tr1::mem_fn and members with default arguments... Nicola Bonelli 2008-11-16T19:25:24Z 2008-11-16T21:14:21Z <p>I have class with a member function that takes a default argument.</p> <pre><code>struct Class { void member(int n = 0) {} }; </code></pre> <p>By means of std::tr1::mem_fn I can invoke it:</p> <pre><code>Class object; std::tr1::mem_fn(&amp;Class::member)(object,10); </code></pre> <p>That said, if I want to invoke the <em>callable</em> member on the object with the default argument, what's the correct syntax?</p> <pre><code>std::tr1::mem_fn(&amp;Class::member)(object); // This does not work </code></pre> <p>g++ complains with the following error:</p> <pre><code>test.cc:17: error: no match for call to ‘(std::tr1::_Mem_fn&lt;void (Class::*)(int)&gt;) (Class&amp;)’ /usr/include/c++/4.3/tr1_impl/functional:551: note: candidates are: _Res std::tr1::_Mem_fn&lt;_Res (_Class::*)(_ArgTypes ...)&gt;::operator()(_Class&amp;, _ArgTypes ...) const [with _Res = void, _Class = Class, _ArgTypes = int] /usr/include/c++/4.3/tr1_impl/functional:556: note: _Res std::tr1::_Mem_fn&lt;_Res (_Class::*)(_ArgTypes ...)&gt;::operator()(_Class*, _ArgTypes ...) const [with _Res = void, _Class = Class, _ArgTypes = int] </code></pre> <p>Still, the I have the same problem when Class::member is overloaded by members that takes different arguments...</p> http://stackoverflow.com/questions/286090/stack-overflow-exploit-in-c/292514#292514 0 Answer by Nicola Bonelli for Stack Overflow Exploit in C Nicola Bonelli 2008-11-15T13:06:06Z 2008-11-15T13:21:56Z <p>You need to manipulate the stack-frame of the caller (<code>main()</code>), and arrange it in such a way that returning to <code>shell_call()</code> from the epilog of the overflowed <code>victim_func()</code> the latter could find a settled stack as it was been called by the main. </p> <p>In doing so you probably have to mangle the frame-pointer in the stackframe of the victim, that will be restored in %ebp by means of <code>leave</code>.</p> http://stackoverflow.com/questions/291871/how-to-set-a-timeout-on-blocking-sockets-in-boost-asio/292438#292438 1 Answer by Nicola Bonelli for How to set a timeout on blocking sockets in boost asio? Nicola Bonelli 2008-11-15T11:34:43Z 2008-11-15T12:31:21Z <p>Under Linux/BSD the timeout on I/O operations on sockets is directly supported by the operating system. The option can be enabled via <code>setsocktopt()</code>. I don't know if <code>boost::asio</code> provides a method for setting it or exposes the socket scriptor to allow you to directly set it -- the latter case is not really portable. </p> <p>For a sake of completeness here's the description from the man page:</p> <blockquote> <p><strong>SO_RCVTIMEO</strong> and <strong>SO_SNDTIMEO</strong></p> <pre><code> Specify the receiving or sending timeouts until reporting an error. The argument is a struct timeval. If an input or output function blocks for this period of time, and data has been sent or received, the return value of that function will be the amount of data transferred; if no data has been transferred and the timeout has been reached then -1 is returned with errno set to EAGAIN or EWOULDBLOCK just as if the socket was specified to be non-blocking. If the timeout is set to zero (the default) then the operation will never timeout. Timeouts only have effect for system calls that perform socket I/O (e.g., read(2), recvmsg(2), send(2), sendmsg(2)); timeouts have no effect for select(2), poll(2), epoll_wait(2), etc. </code></pre> </blockquote> http://stackoverflow.com/questions/290038/is-the-return-type-part-of-the-function-signature/292390#292390 4 Answer by Nicola Bonelli for Is the return type part of the function signature? Nicola Bonelli 2008-11-15T10:29:10Z 2008-11-15T12:14:34Z <p>It depends if the function is a <em>function template</em> or not. </p> <p>In <strong>C++ Templates -- the complete guides</strong>, Jusuttis provides a different definition of that given in the C++ standard, but with equivalent consequences:</p> <p>We define the signature of a function as the the following information:</p> <ol> <li>The <em>unqualified name</em> of the function</li> <li>The <em>class</em> or <em>namespace</em> scope of that name, and if the name has internal linkage, the translation unit in which the name is declared</li> <li>The <code>const</code>, <code>volatile</code>, or <code>const volatile</code> qualification of the function</li> <li>The <em>types</em> of the function parameters</li> <li><strong>its return <em>type</em>, if the function is generated from a function template</strong></li> <li>The <em>template parameters</em> and the <em>template arguments</em>, if the function is generated from a function template</li> </ol> <p>As <strong>litb</strong> suggested, it's worth to clarify why the return type is part of the signature of a template function. </p> <blockquote> <p>Functions can coexist in a program if they have distinct signatures.</p> </blockquote> <p>. That said, if the return type is a template parameter:</p> <pre><code>template &lt;typename T&gt; T foo(int a) {return T();} </code></pre> <p>it's possibile to instantiate two function which differ only in the return type:</p> <pre><code>foo&lt;int&gt;(0); foo&lt;char&gt;(0); </code></pre> <p>Not only: as rightly reported by <strong>litb</strong>, it is also possible to overload two template functions, which differ only in the return type, even if the return type is not a dependent name. Here's his example:</p> <pre><code>template&lt;class T&gt; int foo(T) {} template&lt;class T&gt; bool foo(T) {} // at the instantiation point it is necessary to specify the cast // in order not to face ambiguous overload ((int(*)(char))foo&lt;char&gt;)('a'); </code></pre> http://stackoverflow.com/questions/291611/project-explorer-mini-buf-expl-use-in-vim/292432#292432 2 Answer by Nicola Bonelli for Project Explorer ,Mini buf expl Use in VIM Nicola Bonelli 2008-11-15T11:26:26Z 2008-11-15T11:26:26Z <p>I regulary code C++ with <strong>vim</strong> and <strong>ctags</strong>. Here's my dot.vimrc:</p> <pre><code>set backspace=indent,eol,start set completeopt=preview,menu set nocompatible set nofoldenable set novisualbell set expandtab set foldlevel=0 set autowrite set hlsearch set showcmd set showmode set wildmenu set pastetoggle=&lt;F12&gt; set history=500 set mouse=a set ruler set cino=l1g0t0p0i0+0:0(0{0 "set ignorecase set incsearch set magic set t_Co=256 " omnicppcomplete " let OmniCpp_GlobalScopeSearch = 1 let OmniCpp_NamespaceSearch = 2 let OmniCpp_DisplayMode = 1 let OmniCpp_ShowScopeInAbbr = 0 let OmniCpp_ShowPrototypeInAbbr = 1 let OmniCpp_ShowAccess = 1 let OmniCpp_MayCompleteDot = 1 let OmniCpp_MayCompleteArrow = 1 let OmniCpp_MayCompleteScope = 0 let OmniCpp_SelectFirstItem = 0 let OmniCpp_LocalSearchDecl = 0 let OmniCpp_DefaultNamespaces = ['std', '_GLIBCXX_STD', 'tr1', '__gnu_cxx', 'generic', 'more'] " other features " if v:version &gt;= 600 filetype plugin on filetype indent on else filetype on endif if has("syntax") syntax on endif " automatic commands " if has("autocmd") autocmd BufEnter * set cindent comments="" autocmd FileType make set noexpandtab shiftwidth=8 autocmd FileType c map &lt;buffer&gt; &lt;leader&gt;&lt;space&gt; :w&lt;cr&gt;:!gcc %&lt;cr&gt; -I . -Wall autocmd FileType c call UserSpaceMode() | set shiftwidth=4 ts=4 iskeyword=a-z,A-Z,48-57,_ autocmd FileType cpp call UserSpaceMode() | set shiftwidth=4 ts=4 iskeyword=a-z,A-Z,48-57,_,: autocmd FileType cpp map &lt;buffer&gt; &lt;leader&gt;&lt;space&gt; :w&lt;cr&gt;:!g++ %&lt;cr&gt; -I . -Wall autocmd FileType cpp map &lt;C-]&gt; :exe "tj /.*" . expand("&lt;cword&gt;") . "$" &lt;cr&gt; endif " tab code completition with SuperTab " if version &gt;= 700 let g:SuperTabDefaultCompletionType = "&lt;C-X&gt;&lt;C-P&gt;" highlight clear highlight Pmenu ctermfg=0 ctermbg=2 gui=NONE highlight PmenuSel ctermfg=0 ctermbg=7 gui=NONE highlight PmenuSbar ctermfg=7 ctermbg=0 gui=NONE highlight PmenuThumb ctermfg=0 ctermbg=7 gui=NONE if has("gui_running") colorscheme inkpot else colorscheme default endif endif " ctags options " let my_err_counter = 0 let my_space_counter = 1 let my_extra_path = [ '/usr/include/c++/4.3/' ] let my_ctags_options = [ '--languages=C,C++', '--c++-kinds=+p', \'--fields=+iaS', '--extra=+q', '-I __THROW,__NTH,__wur,__warnattr, \__nonnull,__attribute_malloc__,__attribute_pure__,__attribute_used__, \__attribute_noinline__,__attribute_deprecated__,__attribute_format_arg__, \__attribute_format_strfmon__,__attribute_warn_unused_result__,__always_inline, \__extern_inline,__extension__,__restrict' ] " ctags funtions " function! UpdateExtraTags() execute ":!ctags " . join(g:my_ctags_options,' ') . " -V -R -f ~/.vim/extratags " . join(g:my_extra_path, ' ') echohl StatusLine | echo "Extra tags updated" | echohl None endfunction function! UpdateTags() execute ":!ctags -V -R " . join(g:my_ctags_options, ' ') echohl StatusLine | echo "C/C++ tag updated" | echohl None endfunction " user/kernel-space tags switcher " function! UserSpaceMode() set tags=tags,~/.vim/extratags endfunction function! KernelSpaceMode() set tags=tags,/usr/src/linux/tags endfunction function! SwitchSpaceMode() let g:my_space_counter+=1 if (g:my_space_counter%2) call UserSpaceMode() echohl StatusLine | echo "userspace-tags mode" | echohl None else call KernelSpaceMode() echohl StatusLine | echo "kernelspace-tags mode" | echohl None endif endfunction function! SwitchErrMode() let g:my_err_counter+=1 if (g:my_err_counter%2) copen else cclose endif endfunction " diff the current buffer with its unmodified version in the filesystem " function! s:DiffWithSaved() let filetype=&amp;ft diffthis vnew | r # | normal! 1Gdd diffthis exe "setlocal bt=nofile bh=wipe nobl noswf ro ft=" . filetype endfunction com! DiffSaved call s:DiffWithSaved() " insert c/c++ gates " function! s:insert_gates() let gatename = "_" . substitute(toupper(expand("%:t")), "[\\.-]", "_", "g") . "_" execute "normal! ggI#ifndef " . gatename execute "normal! o#define " . gatename . " " execute "normal! Go#endif /* " . gatename . " */" normal! kk endfunction " insert namepsace c++ " function! s:insert_namespace() call inputsave() let ns = inputdialog("namespace? ") call inputrestore() execute "normal! Anamespace " . ns . " { " execute "normal! o} // namespace " . ns normal! kk endfunction " insert c++ class " function! s:insert_class() call inputsave() let classname = inputdialog("ClassName? ") call inputrestore() execute "normal! iclass " . classname execute "normal! o{ " execute "normal! opublic:" execute "normal! o" . classname . "()" execute "normal! o{}" execute "normal! o" execute "normal! o~" . classname . "()" execute "normal! o{}" execute "normal! o" execute "normal! oprivate:" execute "normal! o" execute "normal! o// non-copyable idiom" execute "normal! o" . classname . "(const " . classname "&amp;);" execute "normal! o" . classname . " &amp; operator=(const " . classname "&amp;);" execute "normal! o" execute "normal! o};" endfunction " insert c++ value class " function! s:insert_value_class() call inputsave() let classname = inputdialog("ValueClassName? ") call inputrestore() execute "normal! iclass " . classname execute "normal! o{ " execute "normal! opublic:" execute "normal! o" . classname . "()" execute "normal! o{ /* implementation */ }" execute "normal! o" execute "normal! o~" . classname . "()" execute "normal! o{ /* implementation */ }" execute "normal! o" execute "normal! o" . classname . "(const " . classname "&amp;)" execute "normal! o{ /* implementation */ }" execute "normal! o" execute "normal! o" . classname . " &amp; operator=(const " . classname "&amp; value)" execute "normal! o{ /* implementation: " . classname . " tmp(value); swap(value); */" execute "normal! oreturn *this;" execute "normal! o}" execute "normal! o" execute "normal! o" . classname . " &amp; operator@=(const " . classname . " &amp;)" execute "normal! o{ /* implementation */" execute "normal! oreturn *this;" execute "normal! o}" execute "normal! o" execute "normal! ofriend const " . classname . " operator@(" . classname . " lhs, const " . classname . " &amp;rhs)" execute "normal! o{ return lhs@=rhs; }" execute "normal! o" execute "normal! o" . classname . " &amp; operator++()" execute "normal! o{ /* implementation*/" execute "normal! oreturn *this;" execute "normal! o}" execute "normal! o" execute "normal! o" . classname . " &amp; operator++(int)" execute "normal! o{" execute "normal! o" . classname . " tmp(*this);" execute "normal! o++(*this);" execute "normal! oreturn tmp;" execute "normal! o}" execute "normal! o" execute "normal! oprivate:" execute "normal! o" execute "normal! o};" endfunction "autocmd BufNewFile *.{h,hpp} call &lt;SID&gt;insert_gates() " abbreviate... " iab intmain int&lt;cr&gt;main(int argc, char *argv[])&lt;cr&gt;{&lt;cr&gt;return 0;&lt;cr&gt;}&lt;cr&gt; iab #i #include &lt;&gt;&lt;Left&gt; iab #d #define iab __P __PRETTY_FUNCTION__ iab __F __FUNCTION__ " set mapleader " let mapleader = "," " keyboard mappig " map &lt;F1&gt; :call &lt;SID&gt;insert_gates() &lt;cr&gt; map &lt;F2&gt; :call &lt;SID&gt;insert_namespace() &lt;cr&gt; map &lt;F3&gt; :call &lt;SID&gt;insert_class() &lt;cr&gt; map &lt;F4&gt; :call &lt;SID&gt;insert_value_class() &lt;cr&gt; map &lt;F5&gt; :call SwitchSpaceMode() &lt;cr&gt; map &lt;F7&gt; :make&lt;cr&gt; map &lt;F8&gt; :call SwitchErrMode() &lt;cr&gt; map &lt;F9&gt; :call UpdateTags() &lt;cr&gt; map &lt;F10&gt; :call UpdateExtraTags() &lt;cr&gt; map &lt;F11&gt; :call &lt;SID&gt;DiffWithSaved() &lt;cr&gt; map &lt;leader&gt;e :e ~/.vimrc&lt;cr&gt; " edit vimrc map &lt;leader&gt;u :source ~/.vimrc&lt;cr&gt; " update vimrc map &lt;tab&gt; :tabnext&lt;cr&gt; map &lt;S-tab&gt; :tabprevious&lt;cr&gt; " plugins " runtime! ftplugin/man.vim runtime! ftplugin/gzip.vim runtime! ftplugin/taglist.vim </code></pre> <p>Happy coding! :-)</p> http://stackoverflow.com/questions/246293/c-dynamiccast-error-handling/292356#292356 0 Answer by Nicola Bonelli for c++ dynamic_cast error handling Nicola Bonelli 2008-11-15T09:50:11Z 2008-11-15T11:11:39Z <p>Yes and no.</p> <p><code>boost::polymorphic_downcast&lt;&gt;</code> is surely a good option to handle errors of <code>dynamic_cast&lt;&gt;</code> during the debug phase. However it's worth to mention that <code>polymorphic_downcast&lt;&gt;</code> should be used only when <em>it's possible to predict the polymorphic type passed at compile time</em>, otherwise the <code>dynamic_cast&lt;&gt;</code> should be used in place of it.</p> <p>However a sequence of: </p> <pre><code>if (T1* t1 = dynamic_cast&lt;T1*&gt;(o)) { } if (T2* t2 = dynamic_cast&lt;T2*&gt;(o)) { } if (T3* t3 = dynamic_cast&lt;T3*&gt;(o)) { } </code></pre> <p>denotes a very bad design that should be settle by <strong>polymorphism</strong> and <strong>virtual functions</strong>.</p> http://stackoverflow.com/questions/288217/forcing-something-to-be-destructed-last-in-c/288562#288562 1 Answer by Nicola Bonelli for Forcing something to be destructed last in C++ Nicola Bonelli 2008-11-13T22:26:03Z 2008-11-13T22:44:02Z <p>GNU gcc/g++ provides non portable attributes for types which are very useful. One of these attributes is <strong>init_priority</strong> that defines the order in which global objects are constructed and, as a consequence, the reverse order in which they get destructed. From the man:</p> <blockquote> <p>init_priority (PRIORITY)</p> <pre><code> In Standard C++, objects defined at namespace scope are guaranteed to be initialized in an order in strict accordance with that of their definitions _in a given translation unit_. No guarantee is made for initializations across translation units. However, GNU C++ allows users to control the order of initialization of objects defined at namespace scope with the init_priority attribute by specifying a relative PRIORITY, a constant integral expression currently bounded between 101 and 65535 inclusive. Lower numbers indicate a higher priority. In the following example, `A' would normally be created before `B', but the `init_priority' attribute has reversed that order: Some_Class A __attribute__ ((init_priority (2000))); Some_Class B __attribute__ ((init_priority (543))); Note that the particular values of PRIORITY do not matter; only their relative ordering. </code></pre> </blockquote> http://stackoverflow.com/questions/276066/better-way-to-implement-countpermutations/276077#276077 0 Answer by Nicola Bonelli for Better way to implement count_permutations? Nicola Bonelli 2008-11-09T16:31:06Z 2008-11-10T08:52:39Z <p>In math the function factorial !n represents the number of permutations of n elements. </p> <p>As Can Berg and Greg suggested, if there are repeated elements in a set, to take them into account, we must divide the factorial by the number of permutations of each indistinguishable group (groups composed of identical elements).</p> <p>The following implementation counts the number of permutations of the elements in the range [first, end). The range is not required to be sorted.</p> <pre><code>// generic factorial implementation... int factorial(int number) { int temp; if(number &lt;= 1) return 1; temp = number * factorial(number - 1); return temp; } template&lt;class Ret, class Iter&gt; Ret count_permutations(Iter first, Iter end) { std::map&lt;typename Iter::value_type, int&gt; counter; Iter it = first; for( ; it != end; ++it) { counter[*it]++; } int n = 0; typename std::map&lt;typename Iter::value_type, int&gt;::iterator mi = counter.begin(); for(; mi != counter.end() ; mi++) if ( mi-&gt;second &gt; 1 ) n += factorial(mi-&gt;second); return factorial(std::distance(first,end))/n; } </code></pre> http://stackoverflow.com/questions/262211/are-stdstreams-already-movable 3 Are std::streams already movable? Nicola Bonelli 2008-11-04T15:55:26Z 2008-11-09T13:42:19Z <p>GNU gcc 4.3 partially supports the upcoming c++0x standard: among the implemented features the rvalue reference. By means of the rvalue reference it should be possible to move a non-copyable object or return it from a function. </p> <p>Are std::streams already movable <strong>by means of rvalue reference</strong> or does the current library implementation lack something?</p> http://stackoverflow.com/questions/262211/are-stdstreams-already-movable/263435#263435 1 Answer by Nicola Bonelli for Are std::streams already movable? Nicola Bonelli 2008-11-04T21:03:12Z 2008-11-09T13:42:19Z <p>After a quick investigation it comes out that the <strong>rvalue reference</strong> support has not been added yet to streams. </p> <p>To return a non-copyable object from a function indeed it is sufficient to implement the <em>move constructor</em> as follows:</p> <pre><code>struct noncopyable { noncopyable() {} // move constructor noncopyable(noncopyable &amp;&amp;) {} private: noncopyable(const noncopyable &amp;); noncopyable &amp;operator=(const noncopyable &amp;); }; </code></pre> <p>Such constructor is supposed to transfer the ownership to the new object leaving the one being passed in a default state.</p> <p>That said, it is possible to return an object from a function in this way:</p> <pre><code>noncopyable factory() { noncopyable abc; return std::move(abc); } </code></pre> <p>While std::stream does not support move constructors it seems that STL containers shipped with gcc 4.3.2 do already support it.</p> http://stackoverflow.com/questions/275795/is-it-more-efficient-to-return-a-const-reference/275811#275811 11 Answer by Nicola Bonelli for Is it more efficient to return a const reference Nicola Bonelli 2008-11-09T10:33:20Z 2008-11-09T13:40:28Z <p>A function <strong>should never return</strong> a reference to a local object/variable since such objects go out of the scope and get destroyed when the function returns. </p> <p>Differently the function can return a const or non const reference to an object whose scope is not limited by the function context. Typical example is a custom <code>operator&lt;&lt;</code>:</p> <pre><code>std::ostream &amp; operator&lt;&lt;(std::ostream &amp;out, const object &amp;obj) { out &lt;&lt; obj.data(); return out; } </code></pre> <p>Unfortunately returning-by-value has its performance drawback. As Chris mentioned, returning an object by value involves the copy of a temporary object and its subsequent destruction. The copy takes place my means of either copy constructor or operator=. To avoid these inefficiency smart compilers may apply the RVO or the NRVO optimizations, but there are cases in which they can't -- multiple returns.</p> <p>The upcoming C++0x standard, partially available in gnu gcc-4.3, introduces the rvalue reference [&amp;&amp;] that can be used to distinguish a lvalue from a rvalue reference. By means of that it's possible to implement the <strong>move constructor</strong> useful to return an object partially avoiding the cost of copy constructor and the destructor of the temporary.</p> <p>The move constructor is basically what Andrei envisioned some years ago in the article <a href="http://www.ddj.com/database/184403855" rel="nofollow">http://www.ddj.com/database/184403855</a> suggested by Chris.</p> <p>A <em>move constructor</em> has the following signature:</p> <pre><code>// move constructor object(object &amp;&amp; obj) {} </code></pre> <p>and it's supposed to take the ownership of the internals of the passed object leaving the latter in a default state. By doing that copies of internals are avoided and the destruction of the temporary made easy. A typical function factory will then have the following form:</p> <pre><code>object factory() { object obj; return std::move(obj); } </code></pre> <p>The std::move() returns a rvalue reference from an object. Last but not least, move constructors allow the return-by-rvalue-reference of non-copyable objects.</p> http://stackoverflow.com/questions/275871/how-to-overcome-gcc-restriction-could-not-convert-template-argument-0-to-foo/275908#275908 2 Answer by Nicola Bonelli for How to overcome GCC restriction "could not convert template argument '0' to 'Foo*'"? Nicola Bonelli 2008-11-09T13:23:08Z 2008-11-09T13:23:08Z <p>It seems to be the same problem as passing a <em>string literal</em> as non-type template parameter: it's not allowed. A pointer to an object is allowed as template parameter if the object has <strong>external linkage</strong>: this to guarantee the uniqueness of the type.</p> http://stackoverflow.com/questions/273720/singleton-destructors/273749#273749 2 Answer by Nicola Bonelli for Singleton Destructors Nicola Bonelli 2008-11-07T21:48:10Z 2008-11-08T21:26:54Z <p>Any kind of allocation, except those in shared memories, are automatically cleaned up by the operating system when the process terminates. Therefore you should not have to explicitly call the singleton destructor. In other words <em>no leaks</em>...</p> <p>Furthermore a typical singleton implementation like the Meyers' Singleton is not only thread safe during the initialization on the first call but also guaranteed to graceful terminate when the application exits (the destructor is invoked). </p> <p>Anyway if the application is sent a unix signal (ie: <strong>SIGTERM</strong> or <strong>SIGHUP</strong>) the default behavior is to terminate the process without calling the destructors of static allocated objects (singletons). To overcome this issue for these signals it is possible to dispose a handler calling exit, or dispose exit be such handler -- <code>signal(SIGTERM,exit);</code> </p> http://stackoverflow.com/questions/213527/most-memory-efficient-way-for-searching-within-a-string-in-c/273408#273408 0 Answer by Nicola Bonelli for Most memory efficient way for searching within a string in C Nicola Bonelli 2008-11-07T19:49:29Z 2008-11-08T20:51:22Z <p>Depending on the kind of search and the boundary conditions there is a large number of different algorithms for searching a sub-string in a string. A <strong>large collection</strong> is available here: <a href="http://www-igm.univ-mlv.fr/~lecroq/string/index.html" rel="nofollow">http://www-igm.univ-mlv.fr/~lecroq/string/index.html</a></p> http://stackoverflow.com/questions/274753/how-to-make-weak-linking-work-with-gcc/274808#274808 0 Answer by Nicola Bonelli for How to make weak linking work with GCC? Nicola Bonelli 2008-11-08T15:05:39Z 2008-11-08T15:19:06Z <p>From the gcc doc manual:</p> <blockquote> <p>`weak'</p> <pre><code> The weak attribute causes the declaration to be emitted as a weak symbol rather than a global. This is primarily useful in defining library functions which can be overridden in user code, though it can also be used with non-function declarations. Weak symbols are supported for ELF targets, and also for a.out targets when using the GNU assembler and linker. </code></pre> </blockquote> <p>which means that an object is legitimated to overwrite a weak symbol (defined in another object/library) without getting errors at link time. What is unclear is whether you are linking the library with the <em>weak</em> symbol or not. It's seems that both you have not defined the symbol and the library is not properly linked.</p> http://stackoverflow.com/questions/258020/functionoids/261442#261442 2 Answer by Nicola Bonelli for "Functionoids"? Nicola Bonelli 2008-11-04T10:25:24Z 2008-11-08T13:48:52Z <p>My vote goes to tr1::function. </p> <p><em>Functors</em> or <em>functionoids</em> represent the base from which <code>tr1/boost::function</code> has evolved. The limit with common-interface functors is that they break the OO-paradigm since they represent different types and can only passed to template functions (unless you provide a base class from which they derive from).</p> <p>Indeed by means of the <em><a href="http://www.artima.com/cppsource/type_erasure2.html" rel="nofollow">type erasure technique</a></em> <code>tr1::function</code> overcomes this limit: They are best used to implement dynamic <em>strategy classes</em>.</p> http://stackoverflow.com/questions/132121/what-makes-a-pthread-defunct/274657#274657 1 Answer by Nicola Bonelli for What makes a pthread defunct ? Nicola Bonelli 2008-11-08T12:08:01Z 2008-11-08T12:08:01Z <p>You can either suspend the execution of the main process waiting for a signal, or don't detach the thread (using the default <strong>PHTREAD_CRATE_JOINABLE</strong>) waiting for its termination with a <code>pthread_join()</code>.</p> http://stackoverflow.com/questions/251885/a-struct-doesnt-belong-in-an-object-oriented-program/251901#251901 0 Answer by Nicola Bonelli for a struct doesn't belong in an object oriented program ... Nicola Bonelli 2008-10-30T21:53:37Z 2008-11-07T20:42:50Z <p>Formally, in C++ a struct is a class with the visibility of its members set to public by default. By tradition structs are used to group collection of homogeneous data that have no particular reasons for being accessed by specific methods. The public visibility of its members makes structs preferred to class to implement <em>policy classes</em> and <em>metafunctions</em>. </p> http://stackoverflow.com/questions/272607/how-to-precompute-array-of-values/273343#273343 0 Answer by Nicola Bonelli for How to precompute array of values? Nicola Bonelli 2008-11-07T19:33:43Z 2008-11-07T19:33:43Z <p>I agree with Lokkju. It is not possible to initialize the array by only means of template metaprogramming and macros in this case are very useful. Even Boost libraries make use of macros to implement repetitive statements. </p> <p>Examples of useful macros are available here: <a href="http://awgn.antifork.org/codes++/macro_template.h" rel="nofollow">http://awgn.antifork.org/codes++/macro_template.h</a></p> http://stackoverflow.com/questions/269932/string-to-char-marshaling/269973#269973 1 Answer by Nicola Bonelli for string to char* marshaling Nicola Bonelli 2008-11-06T19:36:02Z 2008-11-06T19:36:02Z <p>You are assigning the value of the passed parameter (strErrorMessage) instead of copying to that address the content of the buffer returned by Marshal::StringToHGlobalAnsi.</p> <p>A correct implementation should be:</p> <pre><code>void EndPointsMappingWrapper::GetLastError(char* strErrorMessage, int len) { char *str = (char*) Marshal::StringToHGlobalAnsi(_managedObject-&gt;GetLastError()).ToPointer(); strncpy(strErrorMessage,str,len); strErrorMessage[len-1] = '\0'; } </code></pre> <p>The length is the size of the buffer passed.</p> <p><code>strncpy()</code> will copy at the most <strong>len</strong> bytes. If there is no null byte among the first n bytes of the <strong>str</strong>, the destination string won't be null terminated. For that reason we force the '\0' in the last byte of the buffer.</p> http://stackoverflow.com/questions/312749/providing-an-iterator-for-the-first-element-of-a-container-of-pairs/312766#312766 Comment by Nicola Bonelli on Providing an iterator for the first element of a container of pairs Nicola Bonelli 2008-11-23T18:04:16Z 2008-11-23T18:04:16Z +1: too late to answer.... http://stackoverflow.com/questions/311102/safely-checking-the-type-of-a-variable/311189#311189 Comment by Nicola Bonelli on Safely checking the type of a variable Nicola Bonelli 2008-11-22T11:55:03Z 2008-11-22T11:55:03Z Indeed and I agree with you, but it seems that it's what he was trying to achieve... http://stackoverflow.com/questions/311102/safely-checking-the-type-of-a-variable/311189#311189 Comment by Nicola Bonelli on Safely checking the type of a variable Nicola Bonelli 2008-11-22T11:46:07Z 2008-11-22T11:46:07Z I mean in a safe manner, like the dynamic_cast&lt;&gt; does with convertible types. Let's say you have ptr_a * and ptr_b * and you convert both to long, there's no way for reinterpret_cast&lt;&gt; to guess the type of the object referenced. http://stackoverflow.com/questions/311102/safely-checking-the-type-of-a-variable/311189#311189 Comment by Nicola Bonelli on Safely checking the type of a variable Nicola Bonelli 2008-11-22T11:32:47Z 2008-11-22T11:32:47Z This static assert is obviously a necessary condition, but it's not sufficient. If he cast two different pointer to long there's not way to cast them back to the proper types. :-) http://stackoverflow.com/questions/310333/tr1memfn-and-tr1bind-on-const-correctness-and-overloading/310364#310364 Comment by Nicola Bonelli on tr1::mem_fn and tr1::bind: on const-correctness and overloading Nicola Bonelli 2008-11-21T22:20:21Z 2008-11-21T22:20:21Z std::tr1::bind(std::tr1::ref(x) , _1)(a); solves the clue as well :-) http://stackoverflow.com/questions/310333/tr1memfn-and-tr1bind-on-const-correctness-and-overloading/310364#310364 Comment by Nicola Bonelli on tr1::mem_fn and tr1::bind: on const-correctness and overloading Nicola Bonelli 2008-11-21T22:08:14Z 2008-11-21T22:08:14Z shouldn't bind be expected to evaluate the constness of the object passed as first argument, x in this case ? And what about the second snippet ? http://stackoverflow.com/questions/308477/c-smart-pointer-performance/308661#308661 Comment by Nicola Bonelli on C++ Smart Pointer performance Nicola Bonelli 2008-11-21T14:16:02Z 2008-11-21T14:16:02Z Excellent answer :-) http://stackoverflow.com/questions/291871/how-to-set-a-timeout-on-blocking-sockets-in-boost-asio/292438#292438 Comment by Nicola Bonelli on How to set a timeout on blocking sockets in boost asio? Nicola Bonelli 2008-11-17T11:04:48Z 2008-11-17T11:04:48Z Boost are good but not perfect :-) http://stackoverflow.com/questions/290038/is-the-return-type-part-of-the-function-signature/292390#292390 Comment by Nicola Bonelli on Is the return type part of the function signature? Nicola Bonelli 2008-11-15T12:15:22Z 2008-11-15T12:15:22Z I updated it with your example as well :-) http://stackoverflow.com/questions/290038/is-the-return-type-part-of-the-function-signature/292390#292390 Comment by Nicola Bonelli on Is the return type part of the function signature? Nicola Bonelli 2008-11-15T12:06:37Z 2008-11-15T12:06:37Z you are right it works with non dependent return type as well... http://stackoverflow.com/questions/290038/is-the-return-type-part-of-the-function-signature/292390#292390 Comment by Nicola Bonelli on Is the return type part of the function signature? Nicola Bonelli 2008-11-15T11:40:28Z 2008-11-15T11:40:28Z If you read this post carefully you can find the footnote in the second sentence :-) http://stackoverflow.com/questions/292124/is-there-any-reason-not-to-make-a-member-function-virtual/292207#292207 Comment by Nicola Bonelli on Is there any reason not to make a member function virtual? Nicola Bonelli 2008-11-15T08:46:11Z 2008-11-15T08:46:11Z NVI just states that virtual functions should be protected. http://stackoverflow.com/questions/288217/forcing-something-to-be-destructed-last-in-c/288421#288421 Comment by Nicola Bonelli on Forcing something to be destructed last in C++ Nicola Bonelli 2008-11-13T22:45:14Z 2008-11-13T22:45:14Z Phoenix singletons for instance... http://stackoverflow.com/questions/285710/what-techniques-can-you-use-to-profile-your-code/285946#285946 Comment by Nicola Bonelli on What techniques can you use to profile your code... Nicola Bonelli 2008-11-13T20:01:11Z 2008-11-13T20:01:11Z I agree with the 80/20 rule: the problem is that human beings are usually bad in guessing where bottlenecks are... yet the 20/80 rules can be applied :) http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/201631#201631 Comment by Nicola Bonelli on Factorial Algorithms in different languages Nicola Bonelli 2008-11-13T19:46:34Z 2008-11-13T19:46:34Z +1: very funny :-)