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.52 by root, Fri Jan 26 22:06:30 2007 UTC vs.
Revision 1.67 by root, Sun May 27 23:14:37 2007 UTC

2// cfperl.h perl interface 2// cfperl.h perl interface
3// 3//
4#ifndef CFPERL_H__ 4#ifndef CFPERL_H__
5#define CFPERL_H__ 5#define CFPERL_H__
6 6
7#include <cstdarg>
7#include <cstdio> 8#include <cstdio>
9#include <bitset>
8 10
9using namespace std; 11using namespace std;
10 12
11#include <EXTERN.h> 13#include <EXTERN.h>
12#include <perl.h> 14#include <perl.h>
61////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 63//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
62 64
63void cfperl_init (); 65void cfperl_init ();
64void cfperl_main (); 66void cfperl_main ();
65void cfperl_emergency_save (); 67void cfperl_emergency_save ();
68void cfperl_cleanup (int make_core);
69void cfperl_make_book (object *book, int level);
66 70
67////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 71//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
68 72
69// virtual server time, excluding time jumps and lag 73// virtual server time, excluding time jumps and lag
70extern double runtime; 74extern double runtime;
86# define def(klass,name) EVENT_ ## klass ## _ ## name, 90# define def(klass,name) EVENT_ ## klass ## _ ## name,
87# include "eventinc.h" 91# include "eventinc.h"
88# undef def 92# undef def
89 NUM_EVENT_TYPES 93 NUM_EVENT_TYPES
90}; 94};
95
96// in which global events or per-type events are we interested
97extern bitset<NUM_EVENT_TYPES> ev_want_event;
98extern bitset<NUM_TYPES> ev_want_type;
91 99
92#define ARG_AV(o) DT_AV , static_cast<AV *> (o) 100#define ARG_AV(o) DT_AV , static_cast<AV *> (o)
93#define ARG_INT(v) DT_INT , static_cast<int> (v) 101#define ARG_INT(v) DT_INT , static_cast<int> (v)
94#define ARG_INT64(v) DT_INT64 , static_cast<sint64> (v) 102#define ARG_INT64(v) DT_INT64 , static_cast<sint64> (v)
95#define ARG_DOUBLE(v) DT_DOUBLE, static_cast<double> (v) 103#define ARG_DOUBLE(v) DT_DOUBLE, static_cast<double> (v)
102#define ARG_CLIENT(o) DT_CLIENT, (void *)(static_cast<client *> (o)) 110#define ARG_CLIENT(o) DT_CLIENT, (void *)(static_cast<client *> (o))
103#define ARG_PARTY(o) DT_PARTY , (void *)(static_cast<party *> (o)) 111#define ARG_PARTY(o) DT_PARTY , (void *)(static_cast<party *> (o))
104#define ARG_REGION(o) DT_REGION, (void *)(static_cast<region *> (o)) 112#define ARG_REGION(o) DT_REGION, (void *)(static_cast<region *> (o))
105 113
106// the ", ## __VA_ARGS" is, unfortunately, a gnu-cpp extension 114// the ", ## __VA_ARGS" is, unfortunately, a gnu-cpp extension
107 115#define INVOKE(obj,event, ...) (expect_false ((obj)->should_invoke (event)) ? (obj)->invoke (event, ## __VA_ARGS__, DT_END) : 0)
108// all these return true when the normal event processing should be skipped (if any)
109#define INVOKE_GLOBAL(event, ...) gbl_ev.invoke (EVENT_ ## GLOBAL ## _ ## event, ## __VA_ARGS__, DT_END) 116#define INVOKE_GLOBAL(event, ...) INVOKE (&gbl_ev, EVENT_ ## GLOBAL ## _ ## event, ## __VA_ARGS__)
110#define INVOKE_ATTACHABLE(event, obj, ...) (obj)->invoke (EVENT_ ## ATTACHABLE ## _ ## event, ## __VA_ARGS__, DT_END) 117#define INVOKE_ATTACHABLE(event, obj, ...) INVOKE (obj , EVENT_ ## ATTACHABLE ## _ ## event, ## __VA_ARGS__)
111#define INVOKE_OBJECT(event, obj, ...) (obj)->invoke (EVENT_ ## OBJECT ## _ ## event, ## __VA_ARGS__, DT_END) 118#define INVOKE_OBJECT(event, obj, ...) INVOKE (obj , EVENT_ ## OBJECT ## _ ## event, ## __VA_ARGS__)
112#define INVOKE_CLIENT(event, obj, ...) (obj)->invoke (EVENT_ ## CLIENT ## _ ## event, ## __VA_ARGS__, DT_END) 119#define INVOKE_CLIENT(event, obj, ...) INVOKE (obj , EVENT_ ## CLIENT ## _ ## event, ## __VA_ARGS__)
113#define INVOKE_PLAYER(event, obj, ...) (obj)->invoke (EVENT_ ## PLAYER ## _ ## event, ## __VA_ARGS__, DT_END) 120#define INVOKE_PLAYER(event, obj, ...) INVOKE (obj , EVENT_ ## PLAYER ## _ ## event, ## __VA_ARGS__)
114#define INVOKE_MAP(event, obj, ...) (obj)->invoke (EVENT_ ## MAP ## _ ## event, ## __VA_ARGS__, DT_END) 121#define INVOKE_MAP(event, obj, ...) INVOKE (obj , EVENT_ ## MAP ## _ ## event, ## __VA_ARGS__)
115 122
116//TODO should index into @result 123//TODO should index into @result
117#define RESULT(idx,type) cfperl_result_ ## type (idx) 124#define RESULT(idx,type) cfperl_result_ ## type (idx)
118#define RESULT_DOUBLE(idx) RESULT(idx, DOUBLE) 125#define RESULT_DOUBLE(idx) RESULT(idx, DOUBLE)
119#define RESULT_INT(idx) RESULT(idx, INT) 126#define RESULT_INT(idx) RESULT(idx, INT)
130 137
131 static unordered_vector<attachable *> mortals; 138 static unordered_vector<attachable *> mortals;
132 MTH static void check_mortals (); 139 MTH static void check_mortals ();
133 140
134 enum { 141 enum {
135 F_DESTROYED = 0x01, 142 F_DESTROYED = 0x01,
143 F_DEBUG_TRACE = 0x02,
136 }; 144 };
137 145
138 // object is delete'd after the refcount reaches 0 146 // object is delete'd after the refcount reaches 0
147 int ACC (RW, flags);
139 mutable int ACC (RW, refcnt); 148 mutable int ACC (RW, refcnt);
140 int ACC (RW, flags);
141 149
142 MTH void refcnt_inc () const { ++refcnt; } 150 MTH void refcnt_inc () const { ++refcnt; }
143 MTH void refcnt_dec () const { --refcnt; } 151 MTH void refcnt_dec () const { --refcnt; }
144 152
145 MTH int refcnt_cnt () const; 153 MTH int refcnt_cnt () const;
181 189
182 virtual ~attachable (); 190 virtual ~attachable ();
183 191
184 attachable &operator =(const attachable &src); 192 attachable &operator =(const attachable &src);
185 193
194 // used to _quickly_ device wether to shortcut the evaluation
195 bool should_invoke (event_type event)
196 {
197 return ev_want_event [event] || cb;
198 }
199
186 bool invoke (event_type event, ...); 200 bool invoke (event_type event, ...);
201
187 MTH void instantiate (); 202 MTH void instantiate ();
188 void reattach (); 203 void reattach ();
189 204
190protected: 205protected:
191 // do the real refcount checking work 206 // do the real refcount checking work
203 218
204extern struct global gbl_ev; 219extern struct global gbl_ev;
205 220
206////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 221//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
207 222
208struct object_freezer : dynbuf 223struct object_freezer : dynbuf_text
209{ 224{
210 AV *av; 225 AV *av;
211 226
212 object_freezer (); 227 object_freezer ();
213 ~object_freezer (); 228 ~object_freezer ();
217 // used only for user-defined key-value pairs 232 // used only for user-defined key-value pairs
218 void put (const shstr &k, const shstr &v) 233 void put (const shstr &k, const shstr &v)
219 { 234 {
220 add (k); 235 add (k);
221 236
222 if (v) 237 if (expect_true (v))
223 add (' '), add (v); 238 add (' '), add (v);
224 239
225 add ('\n'); 240 add ('\n');
226 } 241 }
227 242
242 257
243 char *p = (char *)alloc (klen + vlen + 1); 258 char *p = (char *)alloc (klen + vlen + 1);
244 259
245 memcpy (p, keyword_str [k], klen); p += klen; 260 memcpy (p, keyword_str [k], klen); p += klen;
246 261
247 if (v) 262 if (expect_true (v))
248 { 263 {
249 *p++ = ' '; vlen--; 264 *p++ = ' '; vlen--;
250 memcpy (p, v, vlen); p += vlen; 265 memcpy (p, v, vlen); p += vlen;
251 } 266 }
252 267
290 305
291 void put (keyword kbeg, keyword kend, const shstr &v) 306 void put (keyword kbeg, keyword kend, const shstr &v)
292 { 307 {
293 add (keyword_str [kbeg], keyword_len [kbeg]); add ('\n'); 308 add (keyword_str [kbeg], keyword_len [kbeg]); add ('\n');
294 309
295 if (v) 310 if (expect_true (v))
296 { 311 {
297 add (v); 312 add (v);
298 add ('\n'); 313 add ('\n');
299 } 314 }
300 315
314 void put (keyword k, unsigned long long v) { put_(k, (sint64)v); } 329 void put (keyword k, unsigned long long v) { put_(k, (sint64)v); }
315 330
316 template<typename T> 331 template<typename T>
317 void put (keyword k, const T *v) 332 void put (keyword k, const T *v)
318 { 333 {
319 if (v) 334 if (expect_true (v))
320 put (k, v->name); 335 put (k, v->name);
321 else 336 else
322 put (k, (const char *)0); 337 put (k, (const char *)0);
323 } 338 }
324 339
332 char *as_string (); // like strdup 347 char *as_string (); // like strdup
333 348
334 operator bool () { return !!av; } 349 operator bool () { return !!av; }
335}; 350};
336 351
337// compatibility support, should be removed when no longer needed
338int fprintf (object_freezer &freezer, const char *format, ...);
339int fputs (const char *s, object_freezer &freezer);
340
341struct object_thawer 352struct object_thawer
342{ 353{
354 char *line; // current beginning of line
343 SV *text; // text part 355 SV *text; // text part
344 AV *av; // perl part 356 AV *av; // perl part
345 char *line; // current beginning of line 357 int linenum;
346 char *last_keyword, *last_value; 358 keyword kw;
359 char *kw_str; // the keyword parsed, as string
360 char *value; // the value, or 0 if no value
361 char *value_nn; // the value, or the empty string if no value
347 const char *name; 362 const char *name;
348 363
349 operator bool () { return !!text; } 364 operator bool () { return !!text; }
350 365
351 object_thawer (const char *path = 0); 366 object_thawer (const char *path = 0);
352 object_thawer (const char *data, AV *perlav); 367 object_thawer (const char *data, AV *perlav);
353 ~object_thawer (); 368 ~object_thawer ();
354 369
355 void get (attachable *obj, int oid); 370 void get (attachable *obj, int oid);
356 371
357 keyword get_kv (); // also parse value for later use 372 // parse next line
358 void skip_kv (keyword kw); 373 void next ();
374 // skip the current key-value (usually fetch next line, for
375 // multiline-fields, skips untilt he corresponding end-kw
376 void skip ();
359 377
378 //TODO: remove, deprecated
379 keyword get_kv ()
380 {
381 next ();
382 return kw;
383 }
384
360 const char *get_str () { return last_value; } // may be 0 385 char *get_str () { return value; } // may be 0
361
362 void get (shstr &sh) const;
363 void get_ornull (shstr &sh) const { sh = last_value; }
364 void get_ml (keyword kend, shstr &sh); 386 void get_ml (keyword kend, shstr &sh);
365 387
388 void get_ornull (shstr &sh) const { sh = value; }
389 void get (shstr &sh) const { sh = value; } // might want to check for non-null here
390
391 bool get_bool () const { return *value_nn == '1'; }
366 sint32 get_sint32 () const; 392 sint32 get_sint32 () const;
367 sint64 get_sint64 () const; 393 sint64 get_sint64 () const { return atoll (value_nn); }
368 double get_double () const; 394 double get_double () const { return atof (value_nn); }
369 395
370 void get (float &v) { v = get_double (); } 396 void get (float &v) { v = get_double (); }
371 void get (double &v) { v = get_double (); } 397 void get (double &v) { v = get_double (); }
372 398
373 void get (bool &i) { i = get_sint32 (); } 399 void get (bool &i) { i = get_bool (); }
374 void get (sint8 &i) { i = get_sint32 (); } 400 void get (sint8 &i) { i = get_sint32 (); }
375 void get (uint8 &i) { i = get_sint32 (); } 401 void get (uint8 &i) { i = get_sint32 (); }
376 void get (sint16 &i) { i = get_sint32 (); } 402 void get (sint16 &i) { i = get_sint32 (); }
377 void get (uint16 &i) { i = get_sint32 (); } 403 void get (uint16 &i) { i = get_sint32 (); }
378 void get (sint32 &i) { i = get_sint32 (); } 404 void get (sint32 &i) { i = get_sint32 (); }
379 405
380 void get (uint32 &i) { i = get_sint64 (); } 406 void get (uint32 &i) { i = get_sint64 (); }
381 void get (sint64 &i) { i = get_sint64 (); } 407 void get (sint64 &i) { i = get_sint64 (); }
382};
383 408
409 bool parse_error (const char *type = 0, const char *name = 0, bool skip = true);
410};
411
412//TODO: remove
384char *fgets (char *s, int n, object_thawer &thawer); 413char *fgets (char *s, int n, object_thawer &thawer);
385 414
386////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 415//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
387 416
388struct coroapi { 417struct coroapi {
389 static struct CoroAPI *GCoroAPI; 418 static struct CoroAPI *GCoroAPI;
390 419
391 static int nready () { return CORO_NREADY; } 420 static int nready () { return CORO_NREADY; }
392 static int cede () { return CORO_CEDE ; } 421 static int cede () { return CORO_CEDE ; }
393 422
423 static double (*time)();
424 static double next_cede;
394 static int cede_counter; 425 static int cede_counter;
395 426
427 static void do_cede_every ();
428 static void do_cede_to_tick ();
429 static void do_cede_to_tick_every ();
430
396 static void cede_every (int count) 431 static void cede_every (int count)
397 { 432 {
398 if (++cede_counter >= count) 433 if (expect_false (++cede_counter >= count))
399 { 434 do_cede_every ();
400 cede_counter = 0;
401
402 if (coroapi::nready ())
403 coroapi::cede ();
404 }
405 } 435 }
436
437 static void cede_to_tick ()
438 {
439 if (expect_false (time () >= next_cede))
440 do_cede_to_tick ();
441 }
442
443 static void cede_to_tick_every (int count)
444 {
445 if (expect_false (++cede_counter >= count))
446 cede_to_tick ();
447 }
448
449 static void wait_for_tick ();
450 static void wait_for_tick_begin ();
406}; 451};
407 452
408struct watcher_base 453struct watcher_base
409{ 454{
410 static struct EventAPI *GEventAPI; 455 static struct EventAPI *GEventAPI;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines