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.114 by root, Sat Jan 16 13:41:37 2010 UTC vs.
Revision 1.119 by root, Sun Apr 11 04:09:56 2010 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2005,2006,2007,2008,2009 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008,2009,2010 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * 5 *
6 * Deliantra is free software: you can redistribute it and/or modify it under 6 * Deliantra is free software: you can redistribute it and/or modify it under
7 * the terms of the Affero GNU General Public License as published by the 7 * the terms of the Affero GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your 8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version. 9 * option) any later version.
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 ();
254 set_key (key, value, 0); 253 set_key (key, value, 0);
255 } 254 }
256 255
257 attachable &operator =(const attachable &src); 256 attachable &operator =(const attachable &src);
258 257
259 // used to _quickly_ device wether to shortcut the evaluation 258 // used to _quickly_ decide wether to shortcut the evaluation
260 bool should_invoke (event_type event) 259 bool should_invoke (event_type event)
261 { 260 {
262 return ev_want_event [event] || cb; 261 return ev_want_event [event] || cb;
263 } 262 }
264 263
418 void put (const keyword_string k, const refptr<T> &v) 417 void put (const keyword_string k, const refptr<T> &v)
419 { 418 {
420 put (k, (T *)v); 419 put (k, (T *)v);
421 } 420 }
422 421
423 MTH bool save (const_utf8_string path); 422 MTH bool save (const_octet_string path);
424 utf8_string as_string (); // like strdup 423 utf8_string as_string (); // like strdup
425 424
426 operator bool () { return !!av; } 425 operator bool () { return !!av; }
427}; 426};
428 427

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines