|
|
| There's more than one way to do things | |
| PerlMonks |
Re^2: Can't create XSUBs for C functions with a same nameby davido (Bishop) |
| on Aug 23, 2012 at 21:00 UTC ( #989382=note: print w/ replies, xml ) | Need Help?? |
|
Let's say the user has two (or more) functions that are overloaded (C++ obviously), and that it's not trivial to implement them as a single variable-parameter function. Obviously XS can't deal with overloaded functions -- it's just too much a C++ thing. But there is another hope, and one that's often used when using Inline::C or Inline::CPP to interface with external libraries: Write a wrapper function. Another limitation of Inline::CPP is that you can't expose templates directly to Perl. As with function overloading, Perl XS would have no idea what to do with template definitions. And C++ wouldn't know how Perl intends to call the functions, and thus wouldn't be able to expand the templates at compile-time. But once again, simple wrappers can easily hide templates from Perl/XS. Ok, we're not dealing with templates here... just overloading. Either way the following will work. Write a wrapper that accepts a variable argument list, and then dispatches a call to the overloaded functions based on how many args are provided. It's a little cumbersome once you get more than a handful of variations to deal with, but I don't think people generally create more than a handful of overloads anyway (they just turn to templates, which is why I mentioned templates earlier). So here's a hybrid: The overloaded functions (which won't bind to Perl), and the wrapper (which will):
This same approach could be used to dispatch calls based on any function signature criteria; number of parameters, or data-types. Additionally, a similar approach works for dispatching to template-generated functions or classes. *(reliable): I think the last overload defined will bind via XS, but the others will be masked. It's not worth even trying to call directly. Dave
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||