User Nicola Bonelli - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T06:49:38Zhttp://stackoverflow.com/feeds/user/19630http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/276188/variadic-templates3Variadic templatesNicola Bonelli2008-11-09T17:46:03Z2009-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-code2Writing Multithreaded Exception-Safe CodeNicola Bonelli2008-11-30T16:55:33Z2009-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-overloading1tr1::mem_fn and tr1::bind: on const-correctness and overloadingNicola Bonelli2008-11-21T21:52:48Z2008-11-30T07:32:36Z
<p>What's wrong with the following snippet ?</p>
<pre><code>#include <tr1/functional>
#include <functional>
#include <iostream>
using namespace std::tr1::placeholders;
struct abc
{
typedef void result_type;
void hello(int)
{ std::cout << __PRETTY_FUNCTION__ << std::endl; }
void hello(int) const
{ std::cout << __PRETTY_FUNCTION__ << std::endl; }
abc()
{}
};
int
main(int argc, char *argv[])
{
const abc x;
int a = 1;
std::tr1::bind(&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<></code> and <code>tr1::bind<></code> and it comes out the following error:</p>
<pre><code>no matching function for call to ‘bind(<unresolved overloaded function type>,...
</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 << __PRETTY_FUNCTION__ << std::endl; }
void operator()(int) const
{ std::cout << __PRETTY_FUNCTION__ << 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#3111080Answer by Nicola Bonelli for Safely checking the type of a variableNicola Bonelli2008-11-22T08:56:32Z2008-11-27T21:19:12Z<p><code>dynamic_cast<></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<></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#3136720Answer by Nicola Bonelli for stack and queue... Nicola Bonelli2008-11-24T08:34:56Z2008-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#3137651Answer by Nicola Bonelli for What is the best method to ping in c++ under linux ?Nicola Bonelli2008-11-24T09:45:56Z2008-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#3123622Answer by Nicola Bonelli for Probabilistic file verification -- algorithm or libraries? Nicola Bonelli2008-11-23T10:25:19Z2008-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#3111690Answer by Nicola Bonelli for tr1::mem_fn and tr1::bind: on const-correctness and overloadingNicola Bonelli2008-11-22T10:07:03Z2008-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< void(abc::*)(int) const >(&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<></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#3085074Answer by Nicola Bonelli for C++ Smart Pointer performanceNicola Bonelli2008-11-21T11:38:02Z2008-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<></code> in place of a raw pointer:</p>
<pre><code>#include <iostream>
#include <tr1/memory>
int main()
{
#ifdef USE_SHARED_PTR
std::tr1::shared_ptr<volatile int> i(new int(1));
#else
volatile int * i = new int(1);
#endif
long long int h = 0;
for(long long int j=0;j < 10000000000LL; j++)
{
h += *i;
}
std::cout << h << std::endl;
return 0;
}
</code></pre>
http://stackoverflow.com/questions/274375/intercepting-traffic-to-memcached-for-statistics-analysis/274722#2747220Answer by Nicola Bonelli for Intercepting traffic to memcached for statistics/analysisNicola Bonelli2008-11-08T13:32:54Z2008-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-arguments4tr1::mem_fn and members with default arguments...Nicola Bonelli2008-11-16T19:25:24Z2008-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(&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(&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<void (Class::*)(int)>) (Class&)’
/usr/include/c++/4.3/tr1_impl/functional:551: note: candidates are: _Res std::tr1::_Mem_fn<_Res (_Class::*)(_ArgTypes ...)>::operator()(_Class&, _ArgTypes ...) const [with _Res = void, _Class = Class, _ArgTypes = int]
/usr/include/c++/4.3/tr1_impl/functional:556: note: _Res std::tr1::_Mem_fn<_Res (_Class::*)(_ArgTypes ...)>::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#2925140Answer by Nicola Bonelli for Stack Overflow Exploit in CNicola Bonelli2008-11-15T13:06:06Z2008-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#2924381Answer by Nicola Bonelli for How to set a timeout on blocking sockets in boost asio?Nicola Bonelli2008-11-15T11:34:43Z2008-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#2923904Answer by Nicola Bonelli for Is the return type part of the function signature?Nicola Bonelli2008-11-15T10:29:10Z2008-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 <typename T>
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<int>(0);
foo<char>(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<class T> int foo(T)
{}
template<class T> bool foo(T)
{}
// at the instantiation point it is necessary to specify the cast
// in order not to face ambiguous overload
((int(*)(char))foo<char>)('a');
</code></pre>
http://stackoverflow.com/questions/291611/project-explorer-mini-buf-expl-use-in-vim/292432#2924322Answer by Nicola Bonelli for Project Explorer ,Mini buf expl Use in VIMNicola Bonelli2008-11-15T11:26:26Z2008-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=<F12>
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 >= 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 <buffer> <leader><space> :w<cr>:!gcc %<cr> -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 <buffer> <leader><space> :w<cr>:!g++ %<cr> -I . -Wall
autocmd FileType cpp map <C-]> :exe "tj /.*" . expand("<cword>") . "$" <cr>
endif
" tab code completition with SuperTab
"
if version >= 700
let g:SuperTabDefaultCompletionType = "<C-X><C-P>"
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=&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 "&);"
execute "normal! o" . classname . " & operator=(const " . classname "&);"
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 "&)"
execute "normal! o{ /* implementation */ }"
execute "normal! o"
execute "normal! o" . classname . " & operator=(const " . classname "& value)"
execute "normal! o{ /* implementation: " . classname . " tmp(value); swap(value); */"
execute "normal! oreturn *this;"
execute "normal! o}"
execute "normal! o"
execute "normal! o" . classname . " & operator@=(const " . classname . " &)"
execute "normal! o{ /* implementation */"
execute "normal! oreturn *this;"
execute "normal! o}"
execute "normal! o"
execute "normal! ofriend const " . classname . " operator@(" . classname . " lhs, const " . classname . " &rhs)"
execute "normal! o{ return lhs@=rhs; }"
execute "normal! o"
execute "normal! o" . classname . " & operator++()"
execute "normal! o{ /* implementation*/"
execute "normal! oreturn *this;"
execute "normal! o}"
execute "normal! o"
execute "normal! o" . classname . " & 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 <SID>insert_gates()
" abbreviate...
"
iab intmain int<cr>main(int argc, char *argv[])<cr>{<cr>return 0;<cr>}<cr>
iab #i #include <><Left>
iab #d #define
iab __P __PRETTY_FUNCTION__
iab __F __FUNCTION__
" set mapleader
"
let mapleader = ","
" keyboard mappig
"
map <F1> :call <SID>insert_gates() <cr>
map <F2> :call <SID>insert_namespace() <cr>
map <F3> :call <SID>insert_class() <cr>
map <F4> :call <SID>insert_value_class() <cr>
map <F5> :call SwitchSpaceMode() <cr>
map <F7> :make<cr>
map <F8> :call SwitchErrMode() <cr>
map <F9> :call UpdateTags() <cr>
map <F10> :call UpdateExtraTags() <cr>
map <F11> :call <SID>DiffWithSaved() <cr>
map <leader>e :e ~/.vimrc<cr> " edit vimrc
map <leader>u :source ~/.vimrc<cr> " update vimrc
map <tab> :tabnext<cr>
map <S-tab> :tabprevious<cr>
" 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#2923560Answer by Nicola Bonelli for c++ dynamic_cast error handlingNicola Bonelli2008-11-15T09:50:11Z2008-11-15T11:11:39Z<p>Yes and no.</p>
<p><code>boost::polymorphic_downcast<></code> is surely a good option to handle errors of <code>dynamic_cast<></code> during the debug phase. However it's worth to mention that <code>polymorphic_downcast<></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<></code> should be used in place of it.</p>
<p>However a sequence of: </p>
<pre><code>if (T1* t1 = dynamic_cast<T1*>(o))
{ }
if (T2* t2 = dynamic_cast<T2*>(o))
{ }
if (T3* t3 = dynamic_cast<T3*>(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#2885621Answer by Nicola Bonelli for Forcing something to be destructed last in C++Nicola Bonelli2008-11-13T22:26:03Z2008-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#2760770Answer by Nicola Bonelli for Better way to implement count_permutations?Nicola Bonelli2008-11-09T16:31:06Z2008-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 <= 1) return 1;
temp = number * factorial(number - 1);
return temp;
}
template<class Ret, class Iter>
Ret count_permutations(Iter first, Iter end)
{
std::map<typename Iter::value_type, int> counter;
Iter it = first;
for( ; it != end; ++it) {
counter[*it]++;
}
int n = 0;
typename std::map<typename Iter::value_type, int>::iterator mi = counter.begin();
for(; mi != counter.end() ; mi++)
if ( mi->second > 1 )
n += factorial(mi->second);
return factorial(std::distance(first,end))/n;
}
</code></pre>
http://stackoverflow.com/questions/262211/are-stdstreams-already-movable3Are std::streams already movable?Nicola Bonelli2008-11-04T15:55:26Z2008-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#2634351Answer by Nicola Bonelli for Are std::streams already movable?Nicola Bonelli2008-11-04T21:03:12Z2008-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 &&)
{}
private:
noncopyable(const noncopyable &);
noncopyable &operator=(const noncopyable &);
};
</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#27581111Answer by Nicola Bonelli for Is it more efficient to return a const referenceNicola Bonelli2008-11-09T10:33:20Z2008-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<<</code>:</p>
<pre><code>std::ostream & operator<<(std::ostream &out, const object &obj)
{
out << 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 [&&] 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 && 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#2759082Answer by Nicola Bonelli for How to overcome GCC restriction "could not convert template argument '0' to 'Foo*'"?Nicola Bonelli2008-11-09T13:23:08Z2008-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#2737492Answer by Nicola Bonelli for Singleton DestructorsNicola Bonelli2008-11-07T21:48:10Z2008-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#2734080Answer by Nicola Bonelli for Most memory efficient way for searching within a string in CNicola Bonelli2008-11-07T19:49:29Z2008-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#2748080Answer by Nicola Bonelli for How to make weak linking work with GCC?Nicola Bonelli2008-11-08T15:05:39Z2008-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#2614422Answer by Nicola Bonelli for "Functionoids"?Nicola Bonelli2008-11-04T10:25:24Z2008-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#2746571Answer by Nicola Bonelli for What makes a pthread defunct ?Nicola Bonelli2008-11-08T12:08:01Z2008-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#2519010Answer by Nicola Bonelli for a struct doesn't belong in an object oriented program ...Nicola Bonelli2008-10-30T21:53:37Z2008-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#2733430Answer by Nicola Bonelli for How to precompute array of values?Nicola Bonelli2008-11-07T19:33:43Z2008-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#2699731Answer by Nicola Bonelli for string to char* marshalingNicola Bonelli2008-11-06T19:36:02Z2008-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->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#312766Comment by Nicola Bonelli on Providing an iterator for the first element of a container of pairsNicola Bonelli2008-11-23T18:04:16Z2008-11-23T18:04:16Z+1: too late to answer....http://stackoverflow.com/questions/311102/safely-checking-the-type-of-a-variable/311189#311189Comment by Nicola Bonelli on Safely checking the type of a variableNicola Bonelli2008-11-22T11:55:03Z2008-11-22T11:55:03ZIndeed 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#311189Comment by Nicola Bonelli on Safely checking the type of a variableNicola Bonelli2008-11-22T11:46:07Z2008-11-22T11:46:07ZI mean in a safe manner, like the dynamic_cast<> 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<> to guess the type of the object referenced.http://stackoverflow.com/questions/311102/safely-checking-the-type-of-a-variable/311189#311189Comment by Nicola Bonelli on Safely checking the type of a variableNicola Bonelli2008-11-22T11:32:47Z2008-11-22T11:32:47ZThis 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#310364Comment by Nicola Bonelli on tr1::mem_fn and tr1::bind: on const-correctness and overloadingNicola Bonelli2008-11-21T22:20:21Z2008-11-21T22:20:21Zstd::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#310364Comment by Nicola Bonelli on tr1::mem_fn and tr1::bind: on const-correctness and overloadingNicola Bonelli2008-11-21T22:08:14Z2008-11-21T22:08:14Zshouldn'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#308661Comment by Nicola Bonelli on C++ Smart Pointer performanceNicola Bonelli2008-11-21T14:16:02Z2008-11-21T14:16:02ZExcellent answer :-)http://stackoverflow.com/questions/291871/how-to-set-a-timeout-on-blocking-sockets-in-boost-asio/292438#292438Comment by Nicola Bonelli on How to set a timeout on blocking sockets in boost asio?Nicola Bonelli2008-11-17T11:04:48Z2008-11-17T11:04:48ZBoost are good but not perfect :-)http://stackoverflow.com/questions/290038/is-the-return-type-part-of-the-function-signature/292390#292390Comment by Nicola Bonelli on Is the return type part of the function signature?Nicola Bonelli2008-11-15T12:15:22Z2008-11-15T12:15:22ZI updated it with your example as well :-)http://stackoverflow.com/questions/290038/is-the-return-type-part-of-the-function-signature/292390#292390Comment by Nicola Bonelli on Is the return type part of the function signature?Nicola Bonelli2008-11-15T12:06:37Z2008-11-15T12:06:37Zyou 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#292390Comment by Nicola Bonelli on Is the return type part of the function signature?Nicola Bonelli2008-11-15T11:40:28Z2008-11-15T11:40:28ZIf 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#292207Comment by Nicola Bonelli on Is there any reason not to make a member function virtual?Nicola Bonelli2008-11-15T08:46:11Z2008-11-15T08:46:11ZNVI just states that virtual functions should be protected.http://stackoverflow.com/questions/288217/forcing-something-to-be-destructed-last-in-c/288421#288421Comment by Nicola Bonelli on Forcing something to be destructed last in C++Nicola Bonelli2008-11-13T22:45:14Z2008-11-13T22:45:14ZPhoenix singletons for instance...http://stackoverflow.com/questions/285710/what-techniques-can-you-use-to-profile-your-code/285946#285946Comment by Nicola Bonelli on What techniques can you use to profile your code...Nicola Bonelli2008-11-13T20:01:11Z2008-11-13T20:01:11ZI 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#201631Comment by Nicola Bonelli on Factorial Algorithms in different languagesNicola Bonelli2008-11-13T19:46:34Z2008-11-13T19:46:34Z+1: very funny :-)