source: cpp/frams/param/param.cpp @ 533

Last change on this file since 533 was 533, checked in by Maciej Komosinski, 8 years ago
  • Improved error message on superfluous param values
  • Don't call flags(i) for illegal i
  • Property svn:eol-style set to native
File size: 27.0 KB
RevLine 
[286]1// This file is a part of Framsticks SDK.  http://www.framsticks.com/
2// Copyright (C) 1999-2015  Maciej Komosinski and Szymon Ulatowski.
3// See LICENSE.txt for details.
[109]4
5#include <stdio.h>
6#include <ctype.h>
7
8#include "param.h"
9#include <frams/util/extvalue.h>
[375]10#include "common/log.h"
[109]11#include <frams/util/sstringutils.h>
12
13//#define SAVE_ALL_NAMES
14#define SAVE_SELECTED_NAMES
15#define WARN_MISSING_NAME
16
17char MakeCodeGuardHappy;
18
[154]19ParamEntry empty_paramtab[] =
20{ { "Empty", 1, 0, "Empty", }, { 0, 0, 0, }, };
[109]21
[154]22static void czytdotyldy(VirtFILE *f, SString &s)
[109]23{
[154]24        SString temp;
25        int z;
26        char last_char = 0;
[523]27        while ((z = f->Vgetc()) != EOF)
[109]28        {
[154]29                if (z == '~')
30                        if (last_char != '\\') break;
31                last_char = (char)z;
32                temp += last_char;
[109]33        }
[154]34        s = temp;
[109]35}
36
[154]37static const char *strchrlimit(const char *t, int ch, const char *limit)
[109]38{
[333]39        if (limit < t) return NULL;
40        return (const char*)memchr((const void*)t, ch, limit - t);
[109]41}
42
43void ParamInterface::copyFrom(ParamInterface *src)
44{
[154]45        int n = getPropCount();
46        ExtValue v;
47        int j;
48        for (int i = 0; i < n; i++)
49                if ((!(flags(i)&PARAM_READONLY))
50                        && (*type(i) != 'p'))
51                {
[312]52                j = src->findId(id(i));
53                if (j < 0) continue;
54                src->get(j, v);
55                set(i, v);
[154]56                }
[109]57}
58
59void ParamInterface::quickCopyFrom(ParamInterface *src)
60{
[154]61        int n = getPropCount();
62        ExtValue v;
63        for (int i = 0; i < n; i++)
64                if ((!(flags(i)&PARAM_READONLY))
65                        && (*type(i) != 'p'))
66                {
[312]67                src->get(i, v);
68                set(i, v);
[154]69                }
[109]70}
71
[247]72int ParamInterface::getMinMax(int prop, paInt& minumum, paInt& maximum, paInt &def)
[109]73{
[154]74        const char* t = type(prop) + 1;
75        while (*t) if (*t == ' ') break; else t++;
[247]76        return sscanf(t, PA_INT_SCANF " " PA_INT_SCANF " " PA_INT_SCANF, &minumum, &maximum, &def);
[109]77}
78
[154]79int ParamInterface::getMinMax(int prop, double& minumum, double& maximum, double& def)
[109]80{
[154]81        const char* t = type(prop) + 1;
82        while (*t) if (*t == ' ') break; else t++;
83        return sscanf(t, "%lg %lg %lg", &minumum, &maximum, &def);
[109]84}
85
[253]86int ParamInterface::getMinMax(int prop, int& minumum, int& maximum, SString& def)
87{
88        const char* t = type(prop) + 1;
89        while (*t) if (*t == ' ') break; else t++;
[312]90        int ret = sscanf(t, "%d %d", &minumum, &maximum);
91        def = SString::empty();
92        if (ret == 2)
93        {
94                while (*t == ' ') t++;
95                for (int skip_fields = 2; skip_fields > 0; skip_fields--)
[253]96                {
97                        while (*t) if (*t == ' ') break; else t++;
[312]98                        while (*t == ' ') t++;
99                }
[253]100                if (*t)
[312]101                {
102                        const char* end = strchr(t, '~');
[300]103                        if (!end)
[312]104                                end = t + strlen(t);
105                        while ((end > t) && (end[-1] == ' ')) end--;
106                        def = SString(t, end - t);
107                }
[253]108                return 3;
[312]109        }
[253]110        else
111                return ret;
112}
113
[278]114void ParamInterface::setDefault()
[109]115{
[300]116        for (int i = 0; i < getPropCount(); i++)
[278]117                setDefault(i);
[109]118}
119
120void ParamInterface::setMin()
121{
[300]122        for (int i = 0; i < getPropCount(); i++)
[154]123                setMin(i);
[109]124}
125
126void ParamInterface::setMax()
127{
[300]128        for (int i = 0; i < getPropCount(); i++)
[154]129                setMax(i);
[109]130}
131
[278]132void ParamInterface::setDefault(int i)
[109]133{
[154]134        const char *t = type(i);
135        switch (*t)
[109]136        {
137        case 'f':
138        {
[314]139                double mn = 0, mx = 0, def = 0;
140                if (getMinMax(i, mn, mx, def) < 3) def = mn;
141                setDouble(i, def);
[109]142        }
[154]143                break;
[109]144        case 'd':
145        {
[314]146                paInt mn = 0, mx = 0, def = 0;
147                if (getMinMax(i, mn, mx, def) < 3) def = mn;
148                setInt(i, def);
[109]149        }
[154]150                break;
[312]151        case 's': case 'x':
[253]152        {
[314]153                int mn, mx; SString def;
154                getMinMax(i, mn, mx, def);
[312]155                if (*t == 's')
[314]156                        setString(i, def);
[278]157                else
[312]158                {
[314]159                        if (def.len() > 0) setExtValue(i, ExtValue(def)); else setExtValue(i, ExtValue::empty());
[312]160                }
161        }
[253]162                break;
[278]163        case 'o':
[312]164                setObject(i, ExtObject::empty());
[278]165                break;
[109]166        }
167}
168
169void ParamInterface::setMin(int i)
170{
[154]171        const char *t = type(i);
172        switch (*t)
[109]173        {
174        case 'f':
175        {
[314]176                double mn = 0, mx = 0, def = 0;
177                getMinMax(i, mn, mx, def);
178                setDouble(i, mn);
[109]179        }
[154]180                break;
[109]181        case 'd':
182        {
[314]183                paInt mn = 0, mx = 0, def = 0;
184                getMinMax(i, mn, mx, def);
185                setInt(i, mn);
[109]186        }
[154]187                break;
188        default: set(i, "");
[109]189        }
190}
191
192void ParamInterface::setMax(int i)
193{
[154]194        const char *t = type(i);
195        switch (*t)
[109]196        {
197        case 'f':
198        {
[314]199                double mn = 0, mx = 0, def = 0;
200                getMinMax(i, mn, mx, def);
201                setDouble(i, mx);
[109]202        }
[154]203                break;
[109]204        case 'd':
205        {
[314]206                paInt mn = 0, mx = 0, def = 0;
207                getMinMax(i, mn, mx, def);
208                setInt(i, mx);
[109]209        }
[154]210                break;
211        default: set(i, "");
[109]212        }
213}
214
215SString ParamInterface::getStringById(const char*prop)
[312]216{
217        int i = findId(prop); if (i >= 0) return getString(i); else return SString();
218}
[247]219paInt ParamInterface::getIntById(const char*prop)
[312]220{
221        int i = findId(prop); if (i >= 0) return getInt(i); else return 0;
222}
[109]223double ParamInterface::getDoubleById(const char*prop)
[312]224{
225        int i = findId(prop); if (i >= 0) return getDouble(i); else return 0;
226}
[109]227ExtObject ParamInterface::getObjectById(const char*prop)
[312]228{
229        int i = findId(prop); if (i >= 0) return getObject(i); else return ExtObject();
230}
[109]231ExtValue ParamInterface::getExtValueById(const char*prop)
[312]232{
233        int i = findId(prop); if (i >= 0) return getExtValue(i); else return ExtValue();
234}
[109]235
[312]236int ParamInterface::setIntById(const char* prop, paInt v)
237{
238        int i = findId(prop); if (i >= 0) return setInt(i, v); else return PSET_NOPROPERTY;
239}
240int ParamInterface::setDoubleById(const char* prop, double v)
241{
242        int i = findId(prop); if (i >= 0) return setDouble(i, v); else return PSET_NOPROPERTY;
243}
244int ParamInterface::setStringById(const char* prop, const SString &v)
245{
246        int i = findId(prop); if (i >= 0) return setString(i, v); else return PSET_NOPROPERTY;
247}
248int ParamInterface::setObjectById(const char* prop, const ExtObject &v)
249{
250        int i = findId(prop); if (i >= 0) return setObject(i, v); else return PSET_NOPROPERTY;
251}
252int ParamInterface::setExtValueById(const char* prop, const ExtValue &v)
253{
254        int i = findId(prop); if (i >= 0) return setExtValue(i, v); else return PSET_NOPROPERTY;
255}
256int ParamInterface::setById(const char* prop, const ExtValue &v)
257{
258        int i = findId(prop); if (i >= 0) return set(i, v); else return PSET_NOPROPERTY;
259}
[109]260
[154]261int ParamInterface::save(VirtFILE* f, const char* altname, bool force)
[109]262{
[154]263        const char *p;
264        SString ws;
265        int err = 0, i;
266        bool withname = false;
267        if ((altname == NULL) || (altname[0] != 0))
[109]268        {
[523]269                err |= (f->Vputs(altname ? altname : getName()) == EOF);
270                err |= (f->Vputs(":\n") == EOF);
[154]271                withname = true;
[109]272        }
[154]273        for (i = 0; p = id(i); i++)
274                err |= saveprop(f, i, p, force);
275        if (withname)
[523]276                err |= (f->Vputs("\n") == EOF);
[154]277        return err;
[109]278}
279
[154]280const char* ParamInterface::SERIALIZATION_PREFIX = "@Serialized:";
[109]281
[154]282int ParamInterface::saveprop(VirtFILE* f, int i, const char* p, bool force)
[109]283{
[154]284        if ((flags(i)&PARAM_DONTSAVE) && (!force)) return 0;
285        const char *typ = type(i);
[273]286        if (*typ == 'p') return 0;
[109]287
[154]288        const char *t, *w;
289        SString ws;
290        int err = 0, cr;
[109]291
[523]292        err |= (f->Vputs(p) == EOF); f->Vputc(':');
[154]293        cr = 0;
[312]294        if ((*typ == 'x') || (*typ == 'o'))
[109]295        {
[154]296                ExtValue ex;
297                get(i, ex);
[464]298                ws = SString(SERIALIZATION_PREFIX) + ex.serialize(NativeSerialization);
[109]299        }
[154]300        else
301                ws = get(i);
302        quoteTilde(ws);
[348]303        w = ws.c_str();
[154]304        if (ws.len() > 50) cr = 1;
305        else for (t = w; *t; t++) if ((*t == 10) || (*t == 13)) { cr = 1; break; }
[523]306        if (cr) f->Vputs("~\n");
307        err |= (f->Vputs(w) == EOF);
308        err |= (f->Vputs(cr ? "~\n" : "\n") == EOF);
[154]309        return err;
[109]310}
311
312
[154]313int SimpleAbstractParam::isequal(int i, void* defdata)
[109]314{ // defdata->member == object->member ?
[154]315        void *backup = object;
316        switch (type(i)[0])
[109]317        {
318        case 'd':
[154]319        {
[109]320                select(defdata);
[247]321                paInt x = getInt(i);
[109]322                select(backup);
[154]323                return x == getInt(i);
324        }
[109]325        case 'f':
[154]326        {
[109]327                select(defdata);
[154]328                double x = getDouble(i);
[109]329                select(backup);
[154]330                return x == getDouble(i);
331        }
[109]332        case 's':
[154]333        {
[109]334                select(defdata);
[154]335                SString x = getString(i);
[109]336                select(backup);
[154]337                return x == getString(i);
[109]338        }
[154]339        }
340        return 1;
[109]341}
342
[154]343void SimpleAbstractParam::save2(SString& f, void *defdata, bool addcr, bool all_names)
344{ // defdata!=NULL -> does not save default values
345        const char *p;
346        int i;
347        int needlabel = 0;
348        int first = 1;
349        SString val;
350        SString t;
351        int fl;
352        // t+=SString(getName()); t+=':';
353        for (i = 0; p = id(i); i++)
354                if (!((fl = flags(i))&PARAM_DONTSAVE))
[109]355                {
[312]356                if (defdata && isequal(i, defdata))
357                        needlabel = 1;
358                else
359                {
360                        if (!first) t += ", ";
[109]361#ifndef SAVE_ALL_NAMES
362#ifdef SAVE_SELECTED_NAMES
[312]363                        if (needlabel || all_names || !(fl & PARAM_CANOMITNAME))
[109]364#else
[312]365                        if (needlabel)
[109]366#endif
367#endif
[312]368                        {
369                                t += p; t += "="; needlabel = 0;
370                        }
371                        if (type(i)[0] == 's')
372                        { // string - special case
373                                SString str = getString(i);
[348]374                                if (strContainsOneOf(str.c_str(), ", \\\n\r\t\""))
[109]375                                {
[312]376                                        t += "\"";
377                                        sstringQuote(str);
378                                        t += str;
379                                        t += "\"";
[109]380                                }
[154]381                                else
[312]382                                        t += str;
[109]383                        }
[312]384                        else
385                                t += get(i);
386                        first = 0;
[109]387                }
[312]388                }
[154]389        if (addcr)
390                t += "\n";
391        f += t;
[109]392}
393
[333]394int ParamInterface::load(VirtFILE* f, bool warn_unknown_fields, bool *abortable, int *linenum)
[109]395{
[154]396        SString buf;
397        int i;
398        const char *p, *p0;
399        int p_len;
400        bool loaded;
401        int fields_loaded = 0;
[413]402        int unexpected_line = 0;
[426]403        vector<bool> seen;
404        seen.resize(getPropCount());
[412]405        if ((i=findId("beforeLoad"))>=0)
406                call(i,NULL,NULL);
[312]407        while (((!abortable) || (!*abortable)) && loadSStringLine(f, buf))
[109]408        {
[333]409                if (linenum) (*linenum)++;
[348]410                const char* t = buf.c_str();
[413]411                p0 = t; while (isblank(*p0)) p0++;
[154]412                if (!*p0) break;
[413]413                if (p0[0] == '#') { unexpected_line = 0; continue; }
414                p = strchr(p0, ':');
415                if (!p)
416                        {
417                        switch(unexpected_line)
418                                {
419                                case 0:
420                                        logPrintf("ParamInterface", "load", LOG_WARN, "Ignored unexpected line %s while reading object '%s'",
421                                          linenum ?
422                                          SString::sprintf("%d",*linenum).c_str()
423                                        : SString::sprintf("'%s'", p0).c_str(),
424                                          getName());
425                                        break;
426                                case 1:
427                                        logPrintf("ParamInterface", "load", LOG_WARN, "The following line(s) were also unexpected and were ignored");
428                                        break;
429                                }
430                        unexpected_line++;
431                        continue;
432                        }
433                unexpected_line = 0;
[247]434                p_len = (int)(p - p0);
[154]435                loaded = false;
[268]436                if (p_len && ((i = findIdn(p0, p_len)) >= 0))
[109]437                {
[426]438                        if (seen[i])
439                                {
440                                SString fileinfo;
441                                const char* fname=f->VgetPath();
442                                if (fname!=NULL)
443                                        {
444                                        fileinfo=SString::sprintf(" while reading from '%s'",fname);
445                                        if (linenum)
446                                                fileinfo+=SString::sprintf(" (line %d)",*linenum);
447                                        }
448                                logPrintf("ParamInterface", "load", LOG_WARN, "Multiple '%s.%s' fields found%s",getName(),id(i),fileinfo.c_str());
449                                }
450                        else
451                                seen[i]=true;
[312]452                        if (!(flags(i)&PARAM_DONTLOAD))
[109]453                        {
[312]454                                if (p0[p_len + 1] == '~')
455                                {
456                                        SString s;
457                                        czytdotyldy(f, s);
[333]458                                        int lfcount = 1;
[348]459                                        const char* tmp = s.c_str();
[333]460                                        while (tmp)
461                                                if ((tmp = strchr(tmp, '\n')))
462                                                {
463                                                lfcount++; tmp++;
464                                                }
[312]465                                        removeCR(s);
[523]466                                        int ch; while ((ch = f->Vgetc()) != EOF) if (ch == '\n') break;
[312]467                                        unquoteTilde(s);
[333]468                                        if (linenum && (flags(i)&PARAM_LINECOMMENT))
[342]469                                                s = SString::sprintf("@file %s\n@line %d\n", f->VgetPath(), *linenum + 1) + s;
[348]470                                        set(i, s.c_str());
[333]471                                        if (linenum)
472                                                (*linenum) += lfcount;
[312]473                                }
474                                else
475                                {
476                                        set(i, p0 + p_len + 1);
477                                }
478                                fields_loaded++;
479                                loaded = true;
[109]480                        }
481                }
[268]482                else if (warn_unknown_fields)
[312]483                {
484                        SString name(p0, p_len);
[375]485                        logPrintf("ParamInterface", "load", LOG_WARN, "Ignored unknown property '%s' while reading object '%s'", name.c_str(), getName());
[312]486                }
[268]487
[154]488                if ((!loaded) && (p0[p_len + 1] == '~'))
[109]489                { // eat unrecognized multiline field
[154]490                        SString s;
491                        czytdotyldy(f, s);
[333]492                        if (linenum)
493                        {
[348]494                                const char* tmp = s.c_str();
[333]495                                int lfcount = 1;
496                                while (tmp)
497                                        if ((tmp = strchr(tmp, '\n')))
498                                        {
499                                        lfcount++; tmp++;
500                                        }
501                                (*linenum) += lfcount;
502                        }
[523]503                        int ch; while ((ch = f->Vgetc()) != EOF) if (ch == '\n') break;
[109]504                }
505        }
[412]506        if ((i=findId("afterLoad"))>=0)
507                call(i,NULL,NULL);
[154]508        return fields_loaded;
[109]509}
510
511
512/*
513SString SimpleAbstractParam::getString(int i)
514{
515char *t;
516switch (*(t=type(i)))
[312]517{
[333]518case 'd':
519{
520for (i=atol(get(i));i>=0;i--) if (t) t=strchr(t+1,'~');
521if (t)
522{
523t++;
524char *t2=strchr(t,'~');
525if (!t2) t2=t+strlen(t);
526SString str;
527strncpy(str.directWrite(t2-t),t,t2-t);
528str.endWrite(t2-t);
529return str;
[312]530}
[333]531}
532}
[109]533return get(i);
534}
535*/
536
537int ParamInterface::findId(const char* n)
538{
[154]539        int i; const char *p;
540        for (i = 0; p = id(i); i++) if (!strcmp(n, p)) return i;
541        return -1;
[109]542}
543
[154]544int ParamInterface::findIdn(const char* naz, int n)
[109]545{
[154]546        int i; const char *p;
547        for (i = 0; p = id(i); i++) if ((!strncmp(naz, p, n)) && (!p[n])) return i;
548        return -1;
[109]549}
550
[154]551void ParamInterface::get(int i, ExtValue &ret)
[109]552{
[154]553        switch (type(i)[0])
[109]554        {
555        case 'd':       ret.setInt(getInt(i)); break;
556        case 'f':       ret.setDouble(getDouble(i)); break;
557        case 's':       ret.setString(getString(i)); break;
558        case 'o':       ret.setObject(getObject(i)); break;
[154]559        case 'x':       ret = getExtValue(i); break;
[375]560        default: logPrintf("ParamInterface", "get", LOG_ERROR, "'%s.%s' is not a field", getName(), id(i));
[109]561        }
562}
563
[154]564int ParamInterface::setInt(int i, const char* str)
[109]565{
[326]566        paInt value;
[333]567        if (!ExtValue::parseInt(str, value, false, true))
[109]568        {
[314]569                paInt mn, mx, def;
570                if (getMinMax(i, mn, mx, def) >= 3)
[393]571                        return setInt(i, def) | PSET_PARSEFAILED;
[154]572                else
[393]573                        return setInt(i, (paInt)0) | PSET_PARSEFAILED;
[154]574        }
[109]575        else
[326]576                return setInt(i, value);
[109]577}
578
[154]579int ParamInterface::setDouble(int i, const char* str)
[109]580{
[326]581        double value;
[333]582        if (!ExtValue::parseDouble(str, value, true))
[109]583        {
[314]584                double mn, mx, def;
585                if (getMinMax(i, mn, mx, def) >= 3)
[393]586                        return setDouble(i, def) | PSET_PARSEFAILED;
[154]587                else
[393]588                        return setDouble(i, (double)0) | PSET_PARSEFAILED;
[154]589        }
[109]590        else
[326]591                return setDouble(i, value);
[109]592}
593
[154]594int ParamInterface::set(int i, const ExtValue &v)
[109]595{
[154]596        switch (type(i)[0])
[109]597        {
[144]598        case 'd':
[154]599                if ((v.type == TInt) || (v.type == TDouble)) return setInt(i, v.getInt());
[144]600                else
[154]601                {
602                        if (v.type == TObj)
[333]603                        {
[478]604                                logPrintf("ParamInterface", "set", LOG_ERROR, "Setting int '%s.%s' from object reference (%s)", getName(), id(i), v.getString().c_str());
[333]605                                return 0;
606                        }
607                        else
[348]608                                return setInt(i, v.getString().c_str());
[154]609                }
[144]610        case 'f':
[154]611                if ((v.type == TInt) || (v.type == TDouble)) return setDouble(i, v.getDouble());
[144]612                else
[154]613                {
614                        if (v.type == TObj)
[333]615                        {
[478]616                                logPrintf("ParamInterface", "set", LOG_ERROR, "Setting float '%s.%s' from object reference (%s)", getName(), id(i), v.getString().c_str());
[333]617                                return 0;
618                        }
619                        else
[348]620                                return setDouble(i, v.getString().c_str());
[154]621                }
622        case 's': { SString t = v.getString(); return setString(i, t); }
[478]623        case 'o':
624                if ((v.type!=TUnknown)&&(v.type!=TObj))
625                        logPrintf("ParamInterface", "set", LOG_ERROR, "Setting object '%s.%s' from %s", getName(), id(i), v.typeAndValue().c_str());
626                else
627                        return setObject(i, v.getObject());
628                break;
[154]629        case 'x': return setExtValue(i, v);
[375]630        default: logPrintf("ParamInterface", "set", LOG_ERROR, "'%s.%s' is not a field", getName(), id(i));
[109]631        }
[154]632        return 0;
[109]633}
634
[154]635int ParamInterface::set(int i, const char *v)
[109]636{
[312]637        char typ = type(i)[0];
[273]638        switch (typ)
[109]639        {
[154]640        case 'd': return setInt(i, v);
641        case 'f': return setDouble(i, v);
642        case 's': { SString t(v); return setString(i, t); }
[273]643        case 'x': case 'o':
[109]644        {
[154]645                ExtValue e;
646                const char* after;
647                if (!strncmp(v, SERIALIZATION_PREFIX, strlen(SERIALIZATION_PREFIX)))
[109]648                {
[154]649                        after = e.deserialize(v + strlen(SERIALIZATION_PREFIX));
650                        if ((after == NULL) || (*after))
[343]651                        {
[478]652                                logPrintf("ParamInterface", "set", LOG_ERROR, "serialization format mismatch in %s.%s", (getName() ? getName() : "<Unknown>"), id(i));
[334]653                                e.setEmpty();
[343]654                        }
[109]655                }
[154]656                else if ((after = e.parseNumber(v)) && (*after == 0)) //consumed the whole string
[109]657                {
[154]658                        //OK!
[109]659                }
[154]660                else
[109]661                {
[154]662                        e.setString(SString(v));
[109]663                }
[312]664                if (typ == 'x')
[273]665                        return setExtValue(i, e);
666                else
667                        return setObject(i, e.getObject());
[109]668        }
669        }
[154]670        return 0;
[109]671}
672
673SString ParamInterface::getText(int i)
674{
[154]675        const char *t;
676        if ((*(t = type(i))) == 'd')
[109]677        {
[314]678                paInt mn, mx, def;
[312]679                int value = getInt(i);
[314]680                if (getMinMax(i, mn, mx, def) >= 2)
[312]681                {
[314]682                        if (value > mx)
[310]683                                return get(i);
[314]684                        value -= mn;
[312]685                }
686                if (value < 0) return get(i);
[310]687                for (; value >= 0; value--) if (t) t = strchr(t + 1, '~');
[154]688                if (t)
[109]689                {
[154]690                        t++;
691                        const char *t2 = strchr(t, '~');
692                        if (!t2) t2 = t + strlen(t);
[247]693                        return SString(t, (int)(t2 - t));
[109]694                }
695        }
[154]696        return get(i);
[109]697}
698
699SString ParamInterface::get(int i)
700{
[154]701        switch (type(i)[0])
[109]702        {
703        case 'd': return SString::valueOf(getInt(i));
704        case 'f': return SString::valueOf(getDouble(i));
705        case 's': return getString(i);
706        }
[154]707        ExtValue v;
708        get(i, v);
709        return v.getString();
[109]710}
711
712
713//////////////////////////////// PARAM ////////////////////////////////////
714
[483]715#ifdef _DEBUG
[230]716void SimpleAbstractParam::sanityCheck(int i)
717{
[312]718        ParamEntry *pe=entry(i);
[230]719
[312]720        const char* t=pe->type;
721        const char* err=NULL;
[230]722
[312]723        if (*t=='p')
[230]724        {
[312]725                if (pe->fun1==NULL)
726                        err="no procedure defined";
[230]727        }
[312]728        else
[230]729        {
[312]730                if (!(pe->flags & PARAM_READONLY))
[230]731                { //write access
[312]732                        if ((pe->fun2==NULL)&&(pe->offset==PARAM_ILLEGAL_OFFSET))
733                                err="no field defined (GETONLY without PARAM_READONLY?)";
[230]734                }
735        }
[312]736        if (err!=NULL)
[375]737                logPrintf("SimpleAbstractParam","sanityCheck", LOG_ERROR,
[312]738                "Invalid ParamEntry for %s.%s (%s)", getName(), pe->id, err);
[230]739}       
740#endif
741
[109]742void *SimpleAbstractParam::getTarget(int i)
743{
[154]744        return (void*)(((char*)object) + entry(i)->offset);
745        //return &(object->*(entry(i)->fldptr));
[109]746}
747
748///////// get
749
[483]750#ifdef _DEBUG
[230]751#define SANITY_CHECK(i) sanityCheck(i)
752#else
753#define SANITY_CHECK(i)
754#endif
755
[247]756paInt SimpleAbstractParam::getInt(int i)
[109]757{
[230]758        SANITY_CHECK(i);
[154]759        ExtValue v;
760        ParamEntry *pe = entry(i);
761        if (pe->fun1)
[109]762        {
[154]763                (*(void(*)(void*, ExtValue*))pe->fun1)(object, &v);
764                return v.getInt();
[109]765        }
[154]766        else
[109]767        {
[154]768                void *target = getTarget(i);
[247]769                return *((paInt*)target);
[109]770        }
771}
772
773double SimpleAbstractParam::getDouble(int i)
774{
[230]775        SANITY_CHECK(i);
[154]776        ExtValue v;
777        ParamEntry *pe = entry(i);
778        if (pe->fun1)
[109]779        {
[154]780                (*(void(*)(void*, ExtValue*))pe->fun1)(object, &v);
781                return v.getDouble();
[109]782        }
[154]783        else
[109]784        {
[154]785                void *target = getTarget(i);
786                return *((double*)target);
[109]787        }
788}
789
790SString SimpleAbstractParam::getString(int i)
791{
[230]792        SANITY_CHECK(i);
[154]793        ExtValue v;
794        ParamEntry *pe = entry(i);
795        if (pe->fun1)
[109]796        {
[154]797                (*(void(*)(void*, ExtValue*))pe->fun1)(object, &v);
798                return v.getString();
[109]799        }
[154]800        else
[109]801        {
[154]802                void *target = getTarget(i);
803                return *((SString*)target);
[109]804        }
805}
806
807ExtObject SimpleAbstractParam::getObject(int i)
808{
[230]809        SANITY_CHECK(i);
[154]810        ExtValue v;
811        ParamEntry *pe = entry(i);
812        if (pe->fun1)
[109]813        {
[154]814                (*(void(*)(void*, ExtValue*))pe->fun1)(object, &v);
815                return v.getObject();
[109]816        }
[154]817        else
[109]818        {
[154]819                void *target = getTarget(i);
820                return *((ExtObject*)target);
[109]821        }
822}
823
824ExtValue SimpleAbstractParam::getExtValue(int i)
825{
[230]826        SANITY_CHECK(i);
[154]827        ExtValue v;
828        ParamEntry *pe = entry(i);
829        if (pe->fun1)
[109]830        {
[154]831                (*(void(*)(void*, ExtValue*))pe->fun1)(object, &v);
832                return v;
[109]833        }
[154]834        else
[109]835        {
[154]836                void *target = getTarget(i);
837                return *((ExtValue*)target);
[109]838        }
839}
840
841
842//////// set
843
[247]844int SimpleAbstractParam::setInt(int i, paInt x)
[109]845{
[230]846        SANITY_CHECK(i);
[154]847        ExtValue v;
848        ParamEntry *pe = entry(i);
849        if (pe->flags&PARAM_READONLY) return PSET_RONLY;
[247]850        paInt xcopy = x; //only needed for messageOnExceedRange(): retain original, requested value of x because it may be changed below
[314]851        paInt mn = 0, mx = 0;
[154]852        int result = 0;
853        const char* t = pe->type + 1;
854        while (*t) if (*t == ' ') break; else t++;
[314]855        if (sscanf(t, PA_INT_SCANF " " PA_INT_SCANF, &mn, &mx) == 2)
[316]856                if (mn <= mx) // else if mn>mx then the min/max constraint makes no sense and there is no checking
[109]857                {
[314]858                if (x < mn) { x = mn; result = PSET_HITMIN; }
859                else if (x > mx) { x = mx; result = PSET_HITMAX; }
[109]860                }
861
[154]862        if (pe->fun2)
[109]863        {
[154]864                v.setInt(x);
865                result |= (*(int(*)(void*, const ExtValue*))pe->fun2)(object, &v);
[109]866        }
[154]867        else
[109]868        {
[154]869                void *target = getTarget(i);
[247]870                if (dontcheckchanges || (*((paInt*)target) != x))
[154]871                {
[109]872                        result |= PSET_CHANGED;
[247]873                        *((paInt*)target) = x;
[154]874                }
[109]875        }
[154]876        messageOnExceedRange(i, result, xcopy);
[109]877        return result;
878}
879
[154]880int SimpleAbstractParam::setDouble(int i, double x)
[109]881{
[230]882        SANITY_CHECK(i);
[154]883        ExtValue v;
884        ParamEntry *pe = entry(i);
885        if (pe->flags&PARAM_READONLY) return PSET_RONLY;
886        double xcopy = x; //only needed for messageOnExceedRange(): retain original, requested value of x because it may be changed below
[314]887        double mn = 0, mx = 0;
[154]888        int result = 0;
889        const char* t = pe->type + 1;
890        while (*t) if (*t == ' ') break; else t++;
[314]891        if (sscanf(t, "%lg %lg", &mn, &mx) == 2)
[316]892                if (mn <= mx) // else if mn>mx then the min/max constraint makes no sense and there is no checking
[109]893                {
[314]894                if (x < mn) { x = mn; result = PSET_HITMIN; }
895                else if (x > mx) { x = mx; result = PSET_HITMAX; }
[109]896                }
897
[154]898        if (pe->fun2)
[109]899        {
[154]900                v.setDouble(x);
901                result |= (*(int(*)(void*, const ExtValue*))pe->fun2)(object, &v);
[109]902        }
[154]903        else
[109]904        {
[154]905                void *target = getTarget(i);
906                if (dontcheckchanges || (*((double*)target) != x))
[109]907                {
[154]908                        result |= PSET_CHANGED;
909                        *((double*)target) = x;
[109]910                }
911        }
[154]912        messageOnExceedRange(i, result, xcopy);
[109]913        return result;
914}
915
[154]916int SimpleAbstractParam::setString(int i, const SString& x)
[109]917{
[230]918        SANITY_CHECK(i);
[154]919        ExtValue v;
920        SString vs;
921        const SString *xx = &x;
922        ParamEntry *pe = entry(i);
923        if (pe->flags&PARAM_READONLY) return PSET_RONLY;
924        SString xcopy = x; //only needed for messageOnExceedRange(): retain original, requested value of x because it may be changed below
925        const char* t = pe->type + 1;
926        while (*t) if (*t == ' ') break; else t++;
[314]927        int mn = 0, mx = 0;
[154]928        int result = 0;
[314]929        if (sscanf(t, "%d %d", &mn, &mx) == 2) //using getMinMax would also get default value, which is not needed here
[109]930        {
[314]931                if ((x.len() > mx) && (mx > 0))
[109]932                {
[314]933                        vs = x.substr(0, mx);
[154]934                        xx = &vs;
935                        result |= PSET_HITMAX;
[109]936                }
937        }
938
[154]939        if (pe->fun2)
[109]940        {
[154]941                v.setString(*xx);
942                result |= (*(int(*)(void*, const ExtValue*))pe->fun2)(object, &v);
[109]943        }
[154]944        else
[109]945        {
[154]946                void *target = getTarget(i);
947                if (dontcheckchanges || (!(*((SString*)target) == *xx)))
[109]948                {
[154]949                        result |= PSET_CHANGED;
[306]950                        *((SString*)target) = *xx;
[109]951                }
952        }
[154]953        messageOnExceedRange(i, result, xcopy);
[109]954        return result;
955}
956
[154]957int SimpleAbstractParam::setObject(int i, const ExtObject& x)
[109]958{
[230]959        SANITY_CHECK(i);
[154]960        ExtValue v;
961        ParamEntry *pe = entry(i);
962        if (pe->flags&PARAM_READONLY) return PSET_RONLY;
[478]963        if (pe->flags&PARAM_OBJECTSET)
964                {
965                ExtObject o=getObject(i);
966                Param tmp;
967                ParamInterface* oif=o.getParamInterface(tmp);
968                int ass;
969                if (oif && ((ass=oif->findId("assign"))>=0))
970                        {
971                        ExtValue arg=x;
972                        oif->call(ass,&arg,&v);
973                        }
974                else
975                        logPrintf("SimpleAbstractParam", "setObject", LOG_ERROR,
976                                  "'%s.%s' is PARAM_OBJECTSET but no 'assign()' in %s", getName(), pe->id, o.interfaceName());
977                return PSET_CHANGED;
978                }
[154]979        ExtObject xcopy = x; //only needed for messageOnExceedRange(): retain original, requested value of x because it may be changed below
980        if (pe->fun2)
[109]981        {
[154]982                v.setObject(x);
983                int result = (*(int(*)(void*, const ExtValue*))pe->fun2)(object, &v);
984                messageOnExceedRange(i, result, xcopy);
985                return result;
[109]986        }
[154]987        else
[109]988        {
[154]989                void *target = getTarget(i);
990                *((ExtObject*)target) = x;
991                return PSET_CHANGED;
[109]992        }
993}
994
[154]995int SimpleAbstractParam::setExtValue(int i, const ExtValue& x)
[109]996{
[230]997        SANITY_CHECK(i);
[154]998        ParamEntry *pe = entry(i);
999        if (pe->flags&PARAM_READONLY) return PSET_RONLY;
1000        ExtValue xcopy = x; //only needed for messageOnExceedRange(): retain original, requested value of x because it may be changed below
1001        if (pe->fun2)
[109]1002        {
[154]1003                int result = (*(int(*)(void*, const ExtValue*))pe->fun2)(object, &x);
1004                messageOnExceedRange(i, result, xcopy);
1005                return result;
[109]1006        }
[154]1007        else
[109]1008        {
[154]1009                void *target = getTarget(i);
1010                *((ExtValue*)target) = x;
1011                return PSET_CHANGED;
[109]1012        }
1013}
1014
[154]1015void SimpleAbstractParam::call(int i, ExtValue *args, ExtValue *ret)
[109]1016{
[230]1017        SANITY_CHECK(i);
[154]1018        ParamEntry *pe = entry(i);
1019        if (!pe) return;
1020        if (pe->fun1 && (pe->type[0] == 'p'))
1021                (*(void(*)(void*, ExtValue*, ExtValue*))pe->fun1)(object, args, ret);
1022        else
[109]1023        {
[375]1024                logPrintf("SimpleAbstractParam", "call", LOG_ERROR,
[154]1025                        (*pe->type != 'p') ? "'%s.%s' is not a function" : "Internal error - undefined function pointer for '%s.%s'", getName(), pe->id);
[290]1026                ret->setInvalid();
[109]1027        }
1028}
1029
[278]1030void SimpleAbstractParam::setDefault()
[109]1031{
[154]1032        bool save = dontcheckchanges;
1033        dontcheckchanges = 1;
[278]1034        ParamInterface::setDefault();
[154]1035        dontcheckchanges = save;
[109]1036}
1037
[278]1038void SimpleAbstractParam::setDefault(int i)
[109]1039{
[154]1040        bool save = dontcheckchanges;
1041        dontcheckchanges = 1;
[278]1042        ParamInterface::setDefault(i);
[154]1043        dontcheckchanges = save;
[109]1044}
1045
[154]1046// Returns the address of the beginning of the line.
1047// len = line length (without \n).
1048// 0 may mean the line with length=0 or the end of the SString.
1049// poz is advanced to the beginning of the next line.
1050// A typical loop: for(poz=0;poz<s.d;) {line=getline(s,poz,len);...
1051static const char *getline(const SString &s, int &poz, int &len)
[109]1052{
[348]1053        const char *beg = s.c_str() + poz;
1054        if (poz >= s.len()) { poz = s.len(); len = 0; return s.c_str() + s.len(); }
[154]1055        const char *lf = strchr(beg, '\n');
[348]1056        if (!lf) { lf = s.c_str() + s.len() - 1; poz = s.len(); }
1057        else { poz = (int)(lf - s.c_str()) + 1; if (poz > s.len()) poz = s.len(); }
[154]1058        while (lf >= beg) if ((*lf == '\n') || (*lf == '\r')) lf--; else break;
[247]1059        len = (int)(lf - beg) + 1;
[154]1060        return beg;
[109]1061}
1062
[154]1063int ParamInterface::load2(const SString &s, int &poz)
[109]1064{
[154]1065        int i; // the index number of the parameter
1066        int tmpi;
1067        int len;
1068        int ret;
1069        int fields_loaded = 0;
1070        const char *t, *lin, *end;
[320]1071        const char *equals_sign, *field_end, *next_field;
[154]1072        char remember;
1073        const char *quote, *quote2;
1074        const char *value, *valstop;
1075        SString tmpvalue;
[393]1076        bool parse_failed=false;
[154]1077        if (poz >= s.len()) return fields_loaded;
[348]1078        t = s.c_str() + poz;
[109]1079
[154]1080        lin = getline(s, poz, len); // all fields must be encoded in a single line
1081        if (!len) return fields_loaded; // empty line = end
1082        i = 0;
1083        end = lin + len;
1084        while (t < end)
1085        {
1086                // processing a single field
[320]1087                // "p:name=field_value,  field_name=field_value  , name=value..."
1088                //                     ^ ^-t (after)           ^ ^_next_field
1089                //                     \_t (before)            \_field_end
[325]1090                while (isspace(*t)) if (t < end) t++; else return fields_loaded;
[109]1091
[320]1092                field_end = strchrlimit(t, ',', end); if (!field_end) field_end = end;
[333]1093                next_field = field_end;
[325]1094                while ((field_end>t) && isblank(field_end[-1])) field_end--;
[320]1095                quote = strchrlimit(t, '\"', field_end);
[154]1096                if (quote)
[109]1097                {
[154]1098                        quote2 = skipQuoteString(quote + 1, end);
[320]1099                        if (quote2 > field_end)
[154]1100                        {
[320]1101                                field_end = strchrlimit(quote2 + 1, ',', end);
[393]1102                                if (!field_end) field_end = end;
1103                                next_field = field_end;
[154]1104                        }
1105                        equals_sign = strchrlimit(t, '=', quote);
[109]1106                }
[154]1107                else
1108                {
[320]1109                        equals_sign = strchrlimit(t, '=', field_end);
[154]1110                        quote2 = 0;
1111                }
1112                if (equals_sign == t) { t++; equals_sign = 0; }
[320]1113                if (field_end == t)     // skip empty value
[154]1114                {
1115                        t++; i++;
1116                        continue;
1117                }
1118                if (equals_sign) // have parameter name
1119                {
[247]1120                        tmpi = findIdn(t, (int)(equals_sign - t));
[154]1121                        i = tmpi;
1122                        if (tmpi < 0)
[312]1123                        {
1124                                SString name(t, (int)(equals_sign - t));
[375]1125                                logPrintf("Param", "load2", LOG_WARN, "Unknown property '%s' while reading object '%s' (ignored)", name.c_str(), getName());
[312]1126                        }
[154]1127                        t = equals_sign + 1; // t=value
1128                }
[109]1129#ifdef WARN_MISSING_NAME
[154]1130                else
[109]1131#ifdef SAVE_SELECTED_NAMES
[533]1132                        if ((i>=getPropCount()) || !(flags(i)&PARAM_CANOMITNAME))
[109]1133#endif
[154]1134                        {
[533]1135                        if (id(i))
1136                                logPrintf("Param", "load2", LOG_WARN, "Missing property name in '%s' (assuming '%s')", getName(), id(i));
1137                        else
1138                                logPrintf("Param", "load2", LOG_WARN, "Value after the last property of '%s'", getName());
[154]1139                        }
[109]1140#endif
[154]1141                if ((i >= 0) && id(i))
[109]1142                {
[154]1143                        value = t;
1144                        if (quote)
1145                        {
[247]1146                                tmpvalue.copyFrom(quote + 1, (int)(quote2 - quote) - 1);
[154]1147                                sstringUnquote(tmpvalue);
[348]1148                                value = tmpvalue.c_str();
[154]1149                                valstop = quote2;
1150                        }
1151                        else
[320]1152                                if (field_end < end) valstop = field_end; else valstop = end;
[154]1153
1154                        remember = *valstop;
1155                        *(char*)valstop = 0;
1156                        ret = set(i, value);
1157                        fields_loaded++;
1158                        if (ret&(PSET_HITMAX | PSET_HITMIN))
[375]1159                                logPrintf("Param", "load2", LOG_WARN, "Adjusted '%s' in '%s' (was too %s)",
[154]1160                                id(i), getName(), (ret&PSET_HITMAX) ? "big" : "small");
[393]1161                        if (ret&PSET_PARSEFAILED)
1162                                parse_failed=true;
[154]1163                        *(char*)valstop = remember;
[109]1164                }
1165
[154]1166                if (i >= 0) i++;
[109]1167#ifdef __CODEGUARD__
[320]1168                if (next_field<end-1) t=next_field+1; else return fields_loaded;
[109]1169#else
[320]1170                t = next_field + 1;
[109]1171#endif
[154]1172        }
[393]1173        return fields_loaded | (parse_failed ? LOAD2_PARSE_FAILED : 0);
[109]1174}
1175
[154]1176int Param::grmember(int g, int a)
[109]1177{
[154]1178        if ((getGroupCount() < 2) && (!g))
1179                return (a < getPropCount()) ? a : -9999;
[109]1180
[154]1181        ParamEntry *e = entry(0);
1182        int x = 0, i = 0;
1183        for (; e->id; i++, e++)
[109]1184        {
[154]1185                if (e->group == g)
1186                        if (a == x) return i; else x++;
[109]1187        }
[154]1188        return -9999;
[109]1189}
Note: See TracBrowser for help on using the repository browser.