stewa02 has asked for the wisdom of the Perl Monks concerning the following question:
I am currently writing my first XS-module (just a wrapper around the C math-library) with ok-ish success. The biggest issue is the documentation that is quite hard to understand and/or is incomplete.
I have successfully written a constructor in XS and implemented some functions out of the library as method calls. That works fine.
Now I want to implement a procedural interface, too. For this reason I need to know if its a method call or not. If its a method call the number to compute with the function is stored in the instance, if its a procedural call to a function its a number given as the first argument. This is the current code for the cosine-function:
Thanks in advance!double cos(...) CODE: SV *arg = newSVsv(ST(0)); if (sv_isobject(arg)) { HV *self_hv = MUTABLE_HV(SvRV(arg)); SV **callback_ptr = hv_fetchs(self_hv, "Number", 0); SV *zahl = *callback_ptr; } else { SV *zahl = newSVsv(arg); } double x = SvNV(zahl); RETVAL = cos(x); OUTPUT: RETVAL
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Procedural and object oriented interface in Perl/XS (minimize XS)
by tye (Sage) on Oct 23, 2014 at 13:47 UTC | |
|
Re: Procedural and object oriented interface in Perl/XS
by dave_the_m (Monsignor) on Oct 23, 2014 at 12:23 UTC | |
by stewa02 (Novice) on Oct 23, 2014 at 13:14 UTC | |
by dave_the_m (Monsignor) on Oct 23, 2014 at 13:47 UTC | |
|
Re: Procedural and object oriented interface in Perl/XS
by syphilis (Archbishop) on Oct 24, 2014 at 04:30 UTC | |
by stewa02 (Novice) on Oct 24, 2014 at 05:49 UTC |