ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/freezethaw.C
Revision: 1.13
Committed: Thu Mar 1 19:32:59 2007 UTC (17 years, 3 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.12: +4 -4 lines
Log Message:
ohne worte

File Contents

# User Rev Content
1 root 1.1 /*****************************************************************************/
2     /* CrossFire, A roguelike realtime multiplayer game */
3     /*****************************************************************************/
4    
5     /*
6     * This code is placed under the GNU General Public Licence (GPL)
7     *
8     * Copyright (C) 2006 by Marc Lehmann <crossfire@schmorp.de>
9     *
10     * This program is free software; you can redistribute it and/or modify
11     * it under the terms of the GNU General Public License as published by
12     * the Free Software Foundation; either version 2 of the License, or
13     * (at your option) any later version.
14     *
15     * This program is distributed in the hope that it will be useful,
16     * but WITHOUT ANY WARRANTY; without even the implied warranty of
17     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18     * GNU General Public License for more details.
19     *
20     * You should have received a copy of the GNU General Public License
21     * along with this program; if not, write to the Free Software
22     * Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23     */
24    
25 root 1.4 #include "global.h" // bug in cfperl.h, doesn't include interface_class stuff
26 root 1.1 #include "logger.h"
27     #include "cfperl.h"
28     #include "kw_hash.h"
29    
30     object_freezer::object_freezer ()
31     : dynbuf (128 * 1024, 64 * 1024)
32     {
33     av = newAV ();
34     }
35    
36     object_freezer::~object_freezer ()
37     {
38     SvREFCNT_dec (av);
39     }
40    
41 root 1.4 void
42     object_freezer::put (attachable *ext)
43 root 1.1 {
44     ext->optimise ();
45    
46     if (ext->self)
47     {
48     int idx = AvFILLp ((AV *)av) + 1;
49     av_store (av, idx, newRV_inc ((SV *)ext->self));
50    
51     add ((void *)"oid ", 4);
52     add ((sint32)idx);
53     add ('\n');
54     }
55     }
56    
57 root 1.4 bool
58     object_freezer::save (const char *path)
59 root 1.1 {
60     CALL_BEGIN (3);
61 root 1.4 CALL_ARG_SV (newSVpv (path, 0));
62 root 1.1 CALL_ARG_SV (newRV_noinc (newSVpvn ((char *)linearise (), size ())));
63     CALL_ARG_SV (newRV_inc ((SV *)av));
64     CALL_CALL ("cf::object_freezer_save", G_VOID | G_DISCARD);
65     CALL_END;
66 root 1.13
67     return 1;
68 root 1.1 }
69    
70 root 1.4 char *
71     object_freezer::as_string ()
72 root 1.1 {
73     CALL_BEGIN (2);
74     CALL_ARG_SV (newRV_noinc (newSVpvn ((char *)linearise (), size ())));
75     CALL_ARG_SV (newRV_inc ((SV *)av));
76     CALL_CALL ("cf::object_freezer_as_string", G_SCALAR);
77    
78     char *res = count > 0
79 root 1.3 ? strdup (SvPVX (POPs))
80 root 1.1 : strdup ("[fatal error]");
81    
82     CALL_END;
83    
84     return res;
85     }
86    
87 root 1.13 void
88 root 1.4 fprintf (object_freezer &freezer, const char *format, ...)
89 root 1.1 {
90     va_list ap;
91    
92     va_start (ap, format);
93    
94     int len = vsnprintf ((char *)freezer.force (1024), 1024, format, ap);
95    
96     if (len >= 0)
97     freezer.alloc (len);
98    
99     va_end (ap);
100     }
101    
102 pippijn 1.12 // XXX: function not returning an int
103 root 1.13 void
104 root 1.4 fputs (const char *s, object_freezer &freezer)
105 root 1.1 {
106     freezer.add (s);
107     }
108    
109     static const char thawer_eof[] = "\n\n\n\0\0\0";
110    
111 root 1.4 object_thawer::object_thawer (const char *path)
112     : name (strdup (path))
113 root 1.1 {
114     static const char eof[] = "\n\n\n\0\0\0";
115    
116 root 1.10 av = 0;
117     text = 0;
118     line = 0;
119 root 1.8 linenum = 0;
120 root 1.1
121 root 1.10 kw = KW_ERROR;
122     kw_str = 0;
123     value = 0;
124    
125 root 1.4 if (path)
126 root 1.1 {
127     CALL_BEGIN (1);
128 root 1.4 CALL_ARG_SV (newSVpv (path, 0));
129 root 1.1 CALL_CALL ("cf::object_thawer_load", G_ARRAY);
130    
131     if (count == 2)
132     {
133     // second value - perl objects
134     {
135     SV *sv = POPs;
136     if (SvROK (sv))
137     av = (AV *)SvREFCNT_inc (SvRV (sv));
138     }
139    
140     // first value - text part, pad with 3 zeroes
141     {
142     SV *sv = POPs;
143     STRLEN len;
144     char *sv_ = SvPVbyte (sv, len);
145     text = newSV (len + sizeof (eof));
146     SvCUR_set (text, len);
147     memcpy (SvPVX (text), sv_, len);
148     memcpy (SvEND (text), eof, sizeof (eof)); // just to be sure
149    
150     line = SvPVX (text);
151     }
152     }
153    
154     CALL_END;
155     }
156     }
157    
158     object_thawer::object_thawer (const char *data, AV *perlav)
159 root 1.4 : name (strdup ("(memory stream"))
160 root 1.1 {
161     av = perlav;
162     text = newSVpv (data, 0);
163     sv_catpv (text, thawer_eof);
164     line = SvPVbyte_nolen (text);
165     }
166    
167 root 1.4 void
168     object_thawer::get (attachable *obj, int oid)
169 root 1.1 {
170     if (!av || oid < 0) // this is actually an error of sorts
171     return;
172    
173     SV **svp = av_fetch ((AV *)av, oid, 0);
174    
175     if (!svp || !SvROK (*svp))
176     {
177     printf ("trying to thaw duplicate or never-issued oid %d, ignoring.\n", oid);
178     return;
179     }
180    
181     if (!SvROK (*svp))
182     {
183     LOG (llevError, "deserialised perl object is not an RV");
184     return;
185     }
186    
187     HV *hv = (HV *)SvRV (*svp);
188    
189     if (SvTYPE (hv) != SVt_PVHV)
190     {
191     LOG (llevError, "deserialised perl object is not a PVHV");
192     return;
193     }
194    
195     if (obj->self)
196     {
197     // the hard way(?)
198    
199 root 1.6 CALL_BEGIN (2);
200     CALL_ARG_SV (newRV_inc ((SV *)obj->self));
201     CALL_ARG_SV (newRV_inc ((SV *)hv));
202     PUTBACK;
203     call_method ("thawer_merge", G_DISCARD | G_EVAL);
204     SPAGAIN;
205     CALL_END;
206 root 1.1 }
207     else
208     {
209     // the easy way(?)
210    
211     obj->self = hv;
212     SvRV_set (*svp, &PL_sv_undef);
213    
214     sv_magicext ((SV *)obj->self, 0, PERL_MAGIC_ext, &attachable::vtbl, (char *)obj, 0);
215     }
216    
217     obj->reattach ();
218     }
219    
220     object_thawer::~object_thawer ()
221     {
222     if (text) SvREFCNT_dec (text);
223     if (av) SvREFCNT_dec (av);
224 root 1.4
225     free ((void *)name);
226 root 1.1 }
227    
228 root 1.8 //TODO: remove
229 root 1.4 char *
230     fgets (char *s, int n, object_thawer &thawer)
231 root 1.1 {
232     char *p = thawer.line;
233     char *q = s;
234    
235     if (!p)
236     return 0;
237    
238     while (--n)
239     {
240     if (!*p)
241     break;
242    
243     *q++ = *p;
244    
245     if (*p++ == '\n')
246 root 1.8 {
247     ++thawer.linenum;
248     break;
249     }
250 root 1.1 }
251    
252     *q = 0;
253     thawer.line = p;
254    
255     return s == q ? 0 : s;
256     }
257    
258 root 1.8 bool
259 root 1.10 object_thawer::parse_error (const char *type, const char *name, bool skip)
260 root 1.8 {
261     if (!type) type = "file section";
262     if (!name) name = "generic";
263    
264     switch (kw)
265     {
266     case KW_EOF:
267     LOG (llevError, "%s:%d end of file while reading %s '%s', aborting load.\n",
268     this->name, linenum, type, name);
269     return false;
270    
271     case KW_ERROR:
272 root 1.10 LOG (llevError, "%s:%d error while reading %s '%s', at '%s', aborting load.\n",
273 root 1.8 this->name, linenum,
274 root 1.10 type, name,
275     kw_str ? kw_str : "<file load>");
276 root 1.8 return false;
277    
278     default:
279 root 1.9 LOG (llevError, "%s:%d unexpected line (%s %s) while reading %s '%s', %s.\n",
280 root 1.8 this->name, linenum,
281 root 1.10 kw_str ? kw_str : "<null>",
282     value ? value : "<null>",
283 root 1.8 type, name,
284     skip ? "skipping line" : "aborting load");
285     return skip;
286     }
287     }
288    
289 root 1.10 void
290 root 1.11 object_thawer::next ()
291 root 1.1 {
292     if (!line)
293 root 1.10 {
294     kw = KW_ERROR;
295     return;
296     }
297 root 1.1
298     for (;;)
299     {
300     char *p = line;
301    
302     if (!*p)
303 root 1.10 {
304     kw = KW_EOF;
305     break;
306     }
307 root 1.1
308     // parse keyword
309     while (*p > ' ')
310     p++;
311    
312     int klen = p - line;
313    
314     if (*p++ != '\n')
315     {
316     // parse value
317     while (*(unsigned char *)p <= ' ' && *p != '\n') // skip 0x01 .. 0x20
318     ++p;
319    
320 root 1.10 value = p;
321 root 1.1
322     while (*p != '\n')
323     p++;
324    
325     *p++ = 0;
326     }
327     else
328 root 1.10 value = 0;
329 root 1.1
330 root 1.8 ++linenum;
331 root 1.1 line [klen] = 0;
332 root 1.10 keyword_idx *kw_idx = kw_lex::match (line, klen);
333 root 1.1
334 root 1.10 //printf ("KV %d<%s,%s>\n", kw ? kw->index : 0, line, value);//D
335 root 1.1
336 root 1.10 kw_str = line;
337 root 1.1 line = p;
338    
339 root 1.10 if (kw_idx)
340     {
341     kw = kw_idx->index;
342     break;
343     }
344     else if (!*kw_str || *kw_str == '#')
345 root 1.1 ; // empty/comment line
346     else
347 root 1.10 {
348     kw = KW_ERROR;
349     break;
350     }
351 root 1.1 }
352     }
353    
354 root 1.4 void
355 root 1.11 object_thawer::skip ()
356 root 1.1 {
357     shstr ml;
358    
359     switch (kw)
360     {
361     case KW_msg: get_ml (KW_endmsg , ml); break;
362     case KW_lore: get_ml (KW_endlore , ml); break;
363     case KW_maplore: get_ml (KW_endmaplore, ml); break;
364     }
365 root 1.10
366 root 1.11 next ();
367 root 1.1 }
368    
369 root 1.4 void
370     object_thawer::get (shstr &sh) const
371 root 1.1 {
372 root 1.10 if (value)
373     sh = value;
374 root 1.1 else
375     {
376     sh = "<value missing>";
377 root 1.10 LOG (llevError, "keyword \"%s\" requires value, substituting with <value missing>\n", kw_str);//TODO: add filename
378 root 1.1 }
379     }
380    
381 root 1.4 void
382     object_thawer::get_ml (keyword kend, shstr &sh)
383 root 1.1 {
384     char kw[128];
385    
386     int klen = keyword_len [kend];
387    
388     kw [0] = '\n';
389     memcpy (kw + 1, keyword_str [kend], klen);
390     kw [klen + 1] = '\n';
391     kw [klen + 2] = 0;
392    
393 root 1.8 ++linenum;
394    
395 root 1.1 // first test for completely empty msg... "endXXX\n"
396     if (!strncmp (line, kw + 1, klen + 1))
397     {
398     sh = 0;
399    
400     line += klen + 1;
401    
402     return;
403     }
404     else
405     {
406     // multi-line strings are delimited by "\nendXXX\n" or "endXXX\n" (NULL)
407    
408     char *end = strstr (line, kw);
409    
410     if (!end)
411     {
412     sh = 0;
413     return;
414     }
415    
416     *end = 0;
417     sh = line;
418    
419 root 1.8 // count line numbers
420     while (line < end)
421     linenum += *line++ == '\n';
422    
423     line += keyword_len [kend];
424 root 1.1
425     while (*line++ != '\n')
426     ;
427 root 1.8
428     ++linenum;
429 root 1.1 }
430     }
431    
432 root 1.4 sint32
433     object_thawer::get_sint32 () const
434 root 1.1 {
435 root 1.10 char *p = value;
436 root 1.1
437     if (!p)
438     return 0;
439    
440     sint32 val = 0;
441     bool negate;
442    
443     if (*p == '-')
444     {
445     negate = true;
446     ++p;
447     }
448     else
449     negate = false;
450    
451     do
452     {
453     val *= 10;
454     val += *p++ - '0';
455     }
456     while (*p);
457    
458     return negate ? -val : val;
459     }
460    
461 root 1.4 sint64
462     object_thawer::get_sint64 () const
463 root 1.1 {
464 root 1.10 return value ? atoll (value) : 0;
465 root 1.1 }
466    
467 root 1.4 double
468     object_thawer::get_double () const
469 root 1.1 {
470 root 1.10 return value ? atof (value) : 0;
471 root 1.1 }
472