1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
/* $Id: Devel.xs 20 2011-10-11 02:05:01Z jo $
*
* This is free software, you may use it and distribute it under the same terms as
* Perl itself.
*
* Copyright 2011 Joachim Zobel
*
* This module gives external access to the functions needed to create
* and use XML::LibXML::Nodes from C functions. These functions are made
* accessible from Perl to have cleaner dependencies.
* The idea is to pass xmlNode * pointers (as typemapped void *) to and
* from Perl and call the functions that turns them to and from
* XML::LibXML::Nodes there.
*
* Be aware that using this module gives you the ability to easily create
* segfaults and memory leaks.
*/
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include "ppport.h"
#include <stdlib.h>
/* XML::LibXML stuff */
#include <libxml/xmlmemory.h>
#include "perl-libxml-mm.h"
#undef NDEBUG
#include <assert.h>
static void * xmlMemMallocAtomic(size_t size)
{
return xmlMallocAtomicLoc(size, "none", 0);
}
static int debug_memory()
{
return xmlGcMemSetup( xmlMemFree,
xmlMemMalloc,
xmlMemMallocAtomic,
xmlMemRealloc,
xmlMemStrdup);
}
MODULE = XML::LibXML::Devel PACKAGE = XML::LibXML::Devel
PROTOTYPES: DISABLE
BOOT:
if (getenv("DEBUG_MEMORY")) {
debug_memory();
}
SV*
node_to_perl( n, o = NULL )
void * n
void * o
PREINIT:
xmlNode *node = n;
xmlNode *owner = o;
CODE:
RETVAL = PmmNodeToSv(node , owner?owner->_private:NULL );
OUTPUT:
RETVAL
void *
node_from_perl( sv )
SV *sv
PREINIT:
xmlNode *n = PmmSvNodeExt(sv, 0);
CODE:
RETVAL = n;
OUTPUT:
RETVAL
void
refcnt_inc( n )
void *n
PREINIT:
xmlNode *node = n;
CODE:
PmmREFCNT_inc(((ProxyNode *)(node->_private)));
int
refcnt_dec( n )
void *n
PREINIT:
xmlNode *node = n;
CODE:
RETVAL = PmmREFCNT_dec(((ProxyNode *)(node->_private)));
OUTPUT:
RETVAL
int
refcnt( n )
void *n
PREINIT:
xmlNode *node = n;
CODE:
RETVAL = PmmREFCNT(((ProxyNode *)(node->_private)));
OUTPUT:
RETVAL
int
fix_owner( n, p )
void * n
void * p
PREINIT:
xmlNode *node = n;
xmlNode *parent = p;
CODE:
RETVAL = PmmFixOwner(node->_private , parent->_private);
OUTPUT:
RETVAL
int
mem_used()
CODE:
RETVAL = xmlMemUsed();
OUTPUT:
RETVAL
|