ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/cfperl.h
(Generate patch)

Comparing deliantra/server/include/cfperl.h (file contents):
Revision 1.117 by root, Fri Apr 2 03:41:24 2010 UTC vs.
Revision 1.120 by root, Mon Apr 12 05:22:38 2010 UTC

24// cfperl.h perl interface 24// cfperl.h perl interface
25// 25//
26#ifndef CFPERL_H__ 26#ifndef CFPERL_H__
27#define CFPERL_H__ 27#define CFPERL_H__
28 28
29#include <cstdarg>
30#include <cstdio>
31#include <bitset>
32
33using namespace std; 29using namespace std;
34 30
35#include <EXTERN.h> 31#include <EXTERN.h>
36#include <perl.h> 32#include <perl.h>
37#include <XSUB.h> 33#include <XSUB.h>
85 LOG (llevError, "runtime error in %s: %s", __func__, SvPVutf8_nolen (ERRSV)); 81 LOG (llevError, "runtime error in %s: %s", __func__, SvPVutf8_nolen (ERRSV));
86 82
87inline int call_pvsv (const char *ob, I32 flags) { return call_pv (ob, flags); } 83inline int call_pvsv (const char *ob, I32 flags) { return call_pv (ob, flags); }
88inline int call_pvsv (SV *ob, I32 flags) { return call_sv (ob, flags); } 84inline int call_pvsv (SV *ob, I32 flags) { return call_sv (ob, flags); }
89 85
86// TODO: temporarily enabled pushstack/popstack for all calls from the core, to maybe fix object memleak?
87#define CALL_PUSH PUSHSTACKi (PERLSI_UNKNOWN)
88#define CALL_POP PUTBACK; POPSTACK; SPAGAIN
90#define CALL_BEGIN(args) dSP; ENTER; SAVETMPS; PUSHMARK (SP); EXTEND (SP, args) 89#define CALL_BEGIN(args) dSP; CALL_PUSH; ENTER; SAVETMPS; PUSHMARK (SP); EXTEND (SP, args)
91#define CALL_ARG_SV(sv) PUSHs (sv_2mortal (sv)) // separate because no refcount inc 90#define CALL_ARG_SV(sv) PUSHs (sv_2mortal (sv)) // separate because no refcount inc
92#define CALL_ARG(expr) PUSHs (sv_2mortal (to_sv (expr))) 91#define CALL_ARG(expr) PUSHs (sv_2mortal (to_sv (expr)))
93#define CALL_CALL(name, flags) PUTBACK; int count = call_pvsv (name, (flags) | G_EVAL); SPAGAIN; 92#define CALL_CALL(name, flags) PUTBACK; int count = call_pvsv (name, (flags) | G_EVAL); SPAGAIN;
94#define CALL_END PUTBACK; CHECK_ERROR; FREETMPS; LEAVE 93#define CALL_END PUTBACK; CHECK_ERROR; FREETMPS; LEAVE; CALL_POP
95 94
96////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 95//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
97 96
98void cfperl_init (); 97void cfperl_init ();
99void cfperl_main (); 98void cfperl_main ();
214 MTH void destroy (); 213 MTH void destroy ();
215 214
216 // return wether an object was destroyed already 215 // return wether an object was destroyed already
217 MTH bool destroyed () const { return attachable_flags & F_DESTROYED; } 216 MTH bool destroyed () const { return attachable_flags & F_DESTROYED; }
218 217
218 // destruct and free the memory for this object
219 virtual void do_delete ();
220
219 virtual void gather_callbacks (AV *&callbacks, event_type event) const; 221 virtual void gather_callbacks (AV *&callbacks, event_type event) const;
220 222
221#if 0 223#if 0
222private: 224private:
223 static refcounted *rc_first; 225 static refcounted *rc_first;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines