A language extension for Perl that can wrap a C library to make it a Perl library.
0
votes
0answers
40 views
How to generate an empty method? [duplicate]
I have xsd file with elements, I generate java-classes from them. I have getters and setters for elements in these classes. Is it possible to add some text in the xsd-file, to just have an empty void ...
7
votes
1answer
79 views
Making an old library work with Perl XS and PerlIO
I am rather an XS beginner and I am looking into changing an existing XS module which uses a 15+ year old underlying C library heavily (in fact the module is basically just glue to this library). The ...
0
votes
0answers
19 views
XSD Schema with WCF Service
I have one complexType with few elements in it and I have 2 object I need to write in XML using this complexType.
Example:
This is complex Type
<xs:complexType name="Person">
...
5
votes
1answer
68 views
How do I build 32-bit XS modules for a 32-bit custom Perl on a 64-bit CentOS system?
I have a 64-bit CentOS 6 system running a custom-built version of Perl 5.12.5, that is build for 32-bits. (Alas, this is because we are using the same RPMs for 32-bit and 64-bit systems.)
When I ...
1
vote
0answers
40 views
Inline::CPP/Inline::C - debug code
I'm trying to use some proprietary C++ code in a Perl module.
I have seen it is easy to debug if something goes wrong at compiling time by just enabling the BUILD_NOISY flag.
In my case the problem ...
7
votes
2answers
169 views
What is RMAGICAL?
I'm trying to understand some XS code that I inherited. I've been trying to add comments to a section that invokes Perl magic stuff, but I can't find any documentation to help me understand this line:
...
3
votes
3answers
46 views
Testing an XS module that uses Dist::Zilla
I'm working on a Perl module that has a lot of XS code and also uses Dist::Zilla to manage packaging. What's the best way to test things efficiently? I know about dzil test, but that's pretty slow ...
6
votes
1answer
108 views
From Perl XS code, how do I recursively call myself?
I have a complex encoding function in Pure Perl which I am converting to XS in the hope of gaining a performance boost.
The function I am converting to XS needs to recursively call itself. I can see ...
0
votes
0answers
62 views
XS-Module confusion between char * and char[N]
today i tried to create my first Perl-Module with some C-Bindings. But i ran into some troubles with typedefs and array-notation vs. stright pointers (at least thats what i think, where the trouble ...
7
votes
1answer
119 views
Support autovivified filehandle as arguments to Perl XS routine
Question
How can I support autovivified filehandle arguments in an XS function?
I'm XS-wrapping a C function which returns a file descriptor, and I'd like to present that file descriptor as a perl ...
1
vote
2answers
86 views
How do I use tied filehandles from Perl XS code?
The following minimal example defines a wrapper around PerlIO_write:
MODULE = My::FH PACKAGE = My::FH
INCLUDE: const-xs.inc
int
write_fh (SV* fh, SV* str)
CODE:
STRLEN len
char* buf = ...
3
votes
1answer
114 views
leak while blessing an empty reference inside the XS code
I am trying to do a XS equivalent of this:
package RefTestPP;
use strict;
use warnings;
sub new {
my ($class, $self) = (@_, {});
return bless $self, $class;
}
1;
This kind of constructor ...
1
vote
1answer
86 views
perlembed/perlcall example unbounded memory growth - valgrind says no leaks possible
all. I've been banging my head up against this one for a while... I'm trying to put together an example of basically perlembed + perlcall and more or less "borrowed" it from evpsgi. The problem is ...
6
votes
2answers
167 views
Why is this XS code that returns a PerlIO* leaky?
I am trying to write some XS code that exposes pieces a library to
Perl code as a stream interface that can be written to. The
get_stream function below is supposed to be a constructor that
prepares ...
5
votes
0answers
382 views
Perl 5.16.0 - Sample C program working but existing multi-thread C++ program is aborting in Perl_sv_upgrade
Perl 5.16.0 - Sample C program is working but the existing multi-thread program is aborting in Perl_sv_upgrade. multi-thread program works fine with Perl 5.8.8
The same code works on Linux and Solaris ...
2
votes
1answer
70 views
Ho to work with pseudo-filehandles in Perl XS code?
I am trying to write XS glue code for a serialization/deserialization library that is able to work with anything that provides a write(ctx, buffer, count)/read(ctx, buffer, count) interface. I'd like ...
0
votes
2answers
275 views
Linker dependencies when mixing static and shared libraries
I have a following question about linking on Linux:
Suppose I have a class Foo that uses Qt. To build this class I'd have to use qmake to generate Makefile.
Later on I want to use this class Foo for ...
6
votes
2answers
269 views
C++ calling perl code - eval_sv not passing arguments to script
I have the below sample program which pushes the arguments to Perl stack and then calls "eval_sv". The sample perl statements get executed but i'm not able to retrieve the variables passed from C++ as ...
0
votes
1answer
81 views
Using recursive xsl files
I have been developing two xsl (say for example A and B) files. A.xsl is dependent on B.xsl. And in B.xsl file, I was hard-coding some elements and after that it should depend on A.xsl. Is there ...
0
votes
1answer
297 views
How can i show a table in a tooltip:XSL
I have a the below tags in xml file:
<more_details>
<source>192.168.1.1</source>
<destination>10.10.10.10</destination>
...
10
votes
2answers
193 views
How to introspect regexes in the Perl API
I'm working on some code that needs to serialize Perl regexes, including any regex flags. Only a subset of flags are supported, so I need to detect when unsupported flags like /u are in the regex ...
3
votes
1answer
129 views
Perl XS and C++ passing pointer to buffer
I know almost no C++ so that's not helping, and my XS isn't much better. I'm creating an XS interface for a C++ library and I have almost all my methods working except one.
The method in Perl should ...
5
votes
2answers
260 views
How to manually install XS modules?
Correct me if i'm wrong, but XS and Dynaloader based modules are those who use C/C++ shared objects (.so) and which are not PP (Pure Perl)?
Now assuming I have a machine, which does not have ...
1
vote
1answer
146 views
How to tell MakeMaker to build XS files in a subdirectory?
I've got a largish project to which I've just added some XS code, and I'd like to keep the top-level directory as clean as possible. I want to put the XS file and typemap et al. into a subdirectory, ...
0
votes
1answer
254 views
Changing character encoding for embedded Vaadin application
I need to embed Vaadin app in a third party web page.
Web server and application server are in different domains.
Due to the nature of the application, using iframe is not an option. So I used ...
1
vote
2answers
349 views
How to get threads->tid() value in XS code?
I need to get current perl thread id in a C function inside *.XS part of a perl module.
In pure perl (*.pm part) I would simply do:
$id = threads->tid();
But what is a recommended way to get ...
4
votes
2answers
102 views
Determing line number and file name of the perl file from within C++
I am working with Perl embedded in our application. We have installed quite a few C++ functions that are called from within Perl. One of them is a logging function. I would like to add the file ...
3
votes
1answer
183 views
Perl XSPP - multiple definition of std::string
I'm attempting to expose some of the Google URL Library functionality as a perl module. Based on some posts here and elsewhere, it looks like XSPP might be a good place to start. Here's what I've ...
1
vote
2answers
193 views
How do I compile an XS module from CPAN manually?
I just downloaded an XS module from CPAN, but want to compile it by hand, not using cpan. Running perl Makefile.PL and make creates .c, .o, .xs and .bs files, but I don't see any .pm to put in my ...
1
vote
2answers
74 views
perl build module with c source from other module
I am working on a module that I would like to have two backends, a Module(::PerlArray) and Module::PDL (which can will depend on Module). Both need access to a functions.c/.h file for building. This ...
4
votes
2answers
303 views
Returning a Perl hash with XS (Error: 'void' not in typemap)
I'm trying to add a call to the Perl bindings for Augeas (Config::Augeas). I would like this new call to return a Perl hash. I wrote this:
void ...
10
votes
2answers
364 views
Perl XS and Inline::C
What's the difference between using XS and the Inline::C module? This was mentioned by someone in this question and has made me curious.
0
votes
1answer
116 views
how to alleviate local::lib troubles after system/perl upgrade?
our system admin recently upgraded my OS and perl (to 5.12.3). when I load up the local::lib environment variables, it appears to break anything that depends on xs:
demianshell~> perl -e 'use ...
2
votes
1answer
263 views
Printing to stdout from a Perl XS extension
I recently started playing around with writing Perl (v5.8.8) extensions using XS. One of the methods I am writing collects a bunch of data and splats it to the client. I want to write some unit tests ...
1
vote
2answers
423 views
Accessing value stored in a perl object (blessed hash) from XS
I have a perl object (blessed reference to hash) like this.
sub funcname {
#some code
}
my $o = My::Class->new();
$o->{internal_data} = \&funcname; #I know it is not nice
At other ...
4
votes
1answer
98 views
How do I assign an CV to a package with a list of opcodes?
I have been playing with the new parse_block feature in bleadperl,
I can parse several statements into a listop, which would generate the tree below:
LISTOP (0x1002a00c0) leave [1]
OP ...
3
votes
2answers
451 views
How to use PERL XS to call a C++ function that takes in a STL Vector
I have been using PerlXS to write a perl wrapper around a C++ Object. Usually my fcn takes in a string/int etc and I can just make them with no problem. I just write code like this in the .xs file
...
5
votes
3answers
742 views
How can I build a Perl hash in C code?
I wish to embed a C code in Perl. In this C code I want to read a huge file into memory, make some changes and build a hash (a custom one). I wish to make this hash accessible from my Perl code. Is it ...
2
votes
1answer
140 views
Should be there newSVuv intead newSVnv in perlxstut?
I'm just going through perlxstut and I found there newSVnv in EXAMPLE 5 and EXAMPLE 6 but I think that newSVuv should be more appropriate. Curiously newSVnv works too. What's going on?
6
votes
3answers
221 views
Stopping Perl XS modules from silently falling back to pure-perl
It seems some (many?) modules on CPAN are partly implemented in C using XS, and can fall back to a pure-perl implementation if necessary. While this is smart, it can obviously hurt performance, and I ...
4
votes
1answer
250 views
How can Perl's XSUB die?
I have written a Perl XS wrapper for a C library consisting of about ~80
functions. Right now my general strategy is to substitute the error from a C
function with PL_sv_undef and the calling Perl ...
14
votes
3answers
284 views
How can I create a qr// in Perl 5.12 from C?
This has been working for me in 5.8 and 5.10, but in 5.12 my code creates this weird non-qr object:
# running "print Dumper($regex)"
$VAR1 = bless( do{\(my $o = '')}, 'Regexp' );
Whereas printing a ...
5
votes
3answers
459 views
How do I conditionally compile C code snippets to my Perl module?
I have a module that will target several different operating systems
and configurations. Sometimes, some C code can make this module's task
a little easier, so I have some C functions that I would ...
5
votes
3answers
215 views
What does the DumpXS in Perl's Data::Dumper do?
I have gone through the source code of Data::Dumper. In this package I didn't understand what's going on with DumpXS. What is the use of this DumpXS?
I have searched about this and I read that, it is ...
5
votes
2answers
428 views
Registering multiple Perl sub references for a C library in XS
Both perlcall (in the "Strategies for storing Callback Context Information" section) and Extending and Embedding Perl (in the "Callback" section) lists 3 different ways to handle calling Perl sub ...
5
votes
4answers
512 views
Creating Threaded callbacks in XS
EDIT: I have created a ticket for this which has data on an alternative to this way of doing things.
I have updated the code in an attempt to use MY_CXT's callback as gcxt was not storing across ...
6
votes
2answers
1k views
How can I pass an array to a C function in Perl XS?
How can I pass Perl array by reference to C XS module?
my @array = ( 1..20 );
XSTEST::test_array_passing(\@array);
What do I do in XS so it sees the array?
1
vote
2answers
243 views
Why can't my Perl object find its skip() method, even though I can call it as a subroutine?
I'm working on a Perl module and whenever I call the skip() method I wrote in the following way:
$cursor->skip(4);
I get:
Undefined subroutine &MyModule::Cursor::skip called at t/tester.pl ...
3
votes
1answer
115 views
In XS, how do I get a variables address from its name?
In XS, how do I turn a string that holds a variable name into its address, I want to do something like the following perl code:
our $var = 1;
print ${$main::{var}};
2
votes
3answers
310 views
How can I use a C linked list from Perl XS?
I writing programing with Perl and XS. I need to display and do some operations that use a linked list from C. How can I accomplish that?