Tagged Questions
The xs tag has no wiki summary.
11
votes
4answers
355 views
Why are List and String identifiers named “xs” (in Scala and other languages)?
A lot of sample Scala code contains Strings and Collections named "xs"
Why xs? Anything to do with the xs: used in XML (for Schema?)
Examples:
var xs = List(1,2,3)
val xs = "abc"
11
votes
3answers
201 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 ...
8
votes
2answers
137 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.
6
votes
3answers
149 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 ...
6
votes
3answers
706 views
How can I use a C++ class from Perl?
I have a set of classes written in C++. What would be best way to call them from a Perl script? Thanks.
5
votes
3answers
366 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 ...
5
votes
2answers
726 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?
4
votes
2answers
57 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 ...
4
votes
1answer
81 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 ...
4
votes
3answers
363 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 ...
4
votes
3answers
115 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 ...
4
votes
2answers
268 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 ...
4
votes
4answers
305 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 ...
3
votes
1answer
61 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 ...
3
votes
2answers
92 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 ...
3
votes
2answers
252 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
...
3
votes
1answer
130 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 ...
3
votes
1answer
88 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
1answer
104 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 ...
2
votes
1answer
85 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?
1
vote
2answers
62 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
36 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 ...
1
vote
2answers
107 views
XSD (XML schema): Element must have one more more children
Let's say I have an XML element like this, and I'm trying to write the XSD for this element:
<foo name="bar">
...
</foo>
The rules for this element are:
Its name is "foo"
It has ...
1
vote
2answers
139 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 ...
1
vote
2answers
195 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 ...
1
vote
3answers
265 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?
0
votes
2answers
35 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 ...
0
votes
1answer
53 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 ...
0
votes
0answers
79 views
xs vs xsd types
I have an xs:gmonth type that I am working on, so I was looking around to see the valid format for it and I came across 2 definitions:
xsd:gmonth which accept the format --MM,
xs:gmonth which accept ...
0
votes
1answer
212 views
Getting long string out of xml file to DB using SSIS problem. xs:string seems to be too short
I have an XML file with data on it that i try using SSIS to transfer into DB.
My problem is that some of the fields have long text in them.
In the DB i set them to be ntext so no poblem.
BUT the SSIS ...