[66] | 1 | // This file is a part of the Framsticks GDK library. |
---|
| 2 | // Copyright (C) 2002-2011 Szymon Ulatowski. See LICENSE.txt for details. |
---|
| 3 | // Refer to http://www.framsticks.com/ for further information. |
---|
| 4 | |
---|
| 5 | #include "multiparamload.h" |
---|
| 6 | #include "framsg.h" |
---|
| 7 | #include <ctype.h> |
---|
| 8 | |
---|
| 9 | void MultiParamLoader::init() |
---|
| 10 | { |
---|
| 11 | file=0; ownfile=0; |
---|
| 12 | status=0; |
---|
| 13 | reset(); |
---|
| 14 | } |
---|
| 15 | |
---|
| 16 | void MultiParamLoader::reset() |
---|
| 17 | { |
---|
| 18 | status=0; |
---|
| 19 | breakcond=OnError; |
---|
| 20 | emptyparam.setParamTab(empty_paramtab); |
---|
| 21 | } |
---|
| 22 | |
---|
[104] | 23 | int MultiParamLoader::findObject(const ExtObject &o) |
---|
| 24 | { |
---|
| 25 | for(int i=0;i<objects.size();i++) |
---|
| 26 | if ((*objects(i))==o) |
---|
| 27 | return i; |
---|
| 28 | return -1; |
---|
| 29 | } |
---|
| 30 | |
---|
| 31 | void MultiParamLoader::removeObject(const ExtObject &o) |
---|
| 32 | { |
---|
| 33 | int i=findObject(o); |
---|
| 34 | if (i>=0) |
---|
| 35 | { |
---|
| 36 | delete objects(i); |
---|
| 37 | objects-=i; |
---|
| 38 | } |
---|
| 39 | } |
---|
| 40 | |
---|
| 41 | void MultiParamLoader::clearObjects() |
---|
| 42 | { |
---|
| 43 | FOREACH(ExtObject*,o,objects) |
---|
| 44 | delete o; |
---|
| 45 | objects.clear(); |
---|
| 46 | } |
---|
| 47 | |
---|
[66] | 48 | void MultiParamLoader::load() |
---|
| 49 | { |
---|
| 50 | clearstack(); |
---|
| 51 | if (!file) |
---|
| 52 | { |
---|
| 53 | lasterror="can't open file"; |
---|
| 54 | status=OnError; |
---|
| 55 | return; |
---|
| 56 | } |
---|
| 57 | status=Loading; |
---|
| 58 | } |
---|
| 59 | |
---|
| 60 | void MultiParamLoader::abort() |
---|
| 61 | { |
---|
| 62 | if (file && ownfile) |
---|
| 63 | { |
---|
| 64 | fclose(file); |
---|
| 65 | file=0; |
---|
| 66 | } |
---|
| 67 | clearstack(); |
---|
| 68 | status=Finished; |
---|
| 69 | } |
---|
| 70 | |
---|
| 71 | void MultiParamLoader::load(VirtFILE *f) |
---|
| 72 | { |
---|
| 73 | abort(); |
---|
| 74 | ownfile=0; |
---|
| 75 | file=f; |
---|
| 76 | load(); |
---|
| 77 | } |
---|
| 78 | |
---|
| 79 | void MultiParamLoader::load(const char* filename) |
---|
| 80 | { |
---|
| 81 | abort(); |
---|
| 82 | ownfile=1; |
---|
| 83 | file=Vfopen(filename,FOPEN_READ); |
---|
| 84 | load(); |
---|
| 85 | } |
---|
| 86 | |
---|
| 87 | static int isEOL(char ch) |
---|
| 88 | { |
---|
| 89 | return (ch=='\n')||(ch=='\r'); |
---|
| 90 | } |
---|
| 91 | |
---|
| 92 | static char* fgets0(char*t,int d,VirtFILE *f,int &linlen) |
---|
| 93 | { |
---|
| 94 | char *r=fgets(t,d,f); |
---|
| 95 | if (r) |
---|
| 96 | { |
---|
| 97 | int d=strlen(r); |
---|
| 98 | if (d && isEOL(r[d-1])) { d--; if (d && isEOL(r[d-1])) d--; } |
---|
| 99 | linlen=d; |
---|
| 100 | r[d]=0; |
---|
| 101 | } |
---|
| 102 | else |
---|
| 103 | linlen=0; |
---|
| 104 | return r; |
---|
| 105 | } |
---|
| 106 | |
---|
| 107 | static char* trim(char*t,int &linlen) |
---|
| 108 | { |
---|
| 109 | char *x=t; |
---|
| 110 | while(isspace(*x)) x++; |
---|
| 111 | linlen-=(x-t); |
---|
| 112 | t=x; |
---|
| 113 | if (!linlen) return t; |
---|
| 114 | x=t+linlen-1; |
---|
| 115 | while(isspace(*x)) x--; |
---|
| 116 | x[1]=0; |
---|
| 117 | linlen=x-t+1; |
---|
| 118 | return t; |
---|
| 119 | } |
---|
| 120 | |
---|
| 121 | int MultiParamLoader::go() |
---|
| 122 | { |
---|
| 123 | char buf[100]; |
---|
| 124 | char *t; |
---|
| 125 | int linlen; |
---|
| 126 | if (status==OnError) return status; |
---|
| 127 | while (!finished()) |
---|
| 128 | { |
---|
[104] | 129 | if ((status==BeforeObject) || ((status==BeforeUnknown) && !lastobject.isEmpty())) |
---|
[66] | 130 | { |
---|
[104] | 131 | Param tmp_param; |
---|
| 132 | ParamInterface *pi=lastobject.getParamInterface(tmp_param); |
---|
| 133 | pi->load(file); |
---|
[66] | 134 | if ((status!=Finished) && maybeBreak(AfterObject)) |
---|
| 135 | break; |
---|
| 136 | continue; |
---|
| 137 | } |
---|
| 138 | else if (status==BeforeUnknown) |
---|
| 139 | { |
---|
| 140 | loadObjectNow(&emptyparam); |
---|
| 141 | continue; |
---|
| 142 | } |
---|
| 143 | t=fgets0(buf,100,file,linlen); |
---|
| 144 | if (!t) |
---|
| 145 | { |
---|
| 146 | if (!returnFromIncluded()) |
---|
| 147 | { |
---|
| 148 | abort(); |
---|
| 149 | break; |
---|
| 150 | } |
---|
| 151 | else |
---|
| 152 | continue; |
---|
| 153 | } |
---|
| 154 | if (buf[0]=='#') |
---|
| 155 | { |
---|
| 156 | if (!strncmp(buf+1,"include",7)) |
---|
| 157 | { |
---|
| 158 | const char* t=strchr(buf,'\"'),*t2=0; |
---|
| 159 | if (t) t2=strchr(t+1,'\"'); |
---|
| 160 | if (t2) |
---|
| 161 | { |
---|
| 162 | SString filename(t+1,t2-t-1); |
---|
| 163 | include(filename); |
---|
| 164 | } |
---|
| 165 | else |
---|
| 166 | { |
---|
| 167 | const char* thisfilename=file->VgetPath(); |
---|
| 168 | FMprintf("MultiParamLoader","go",FMLV_WARN,"invalid \"%s\"%s%s",buf, |
---|
| 169 | (thisfilename?" in ":""),(thisfilename?thisfilename:"")); |
---|
| 170 | } |
---|
| 171 | continue; |
---|
| 172 | } |
---|
| 173 | else if ((status!=Finished) && maybeBreak(OnComment)) |
---|
| 174 | { |
---|
| 175 | lastcomment=t+1; |
---|
| 176 | break; |
---|
| 177 | } |
---|
| 178 | } |
---|
| 179 | t=trim(buf,linlen); |
---|
| 180 | if ((linlen>1)&&(t[linlen-1]==':')) |
---|
| 181 | { |
---|
| 182 | lastunknown=0; |
---|
| 183 | lastunknown.append(t,linlen-1); |
---|
[104] | 184 | lastobject.setEmpty(); |
---|
| 185 | FOREACH(ExtObject*,o,objects) |
---|
[66] | 186 | { |
---|
[104] | 187 | if (!strcmp(o->interfaceName(),lastunknown)) {lastobject=*o; break;} |
---|
[66] | 188 | } |
---|
[104] | 189 | if (!lastobject.isEmpty()) |
---|
[66] | 190 | { |
---|
| 191 | if (maybeBreak(BeforeObject)) |
---|
| 192 | break; |
---|
| 193 | } |
---|
| 194 | else |
---|
| 195 | { |
---|
| 196 | if (maybeBreak(BeforeUnknown)) |
---|
| 197 | break; |
---|
| 198 | } |
---|
| 199 | |
---|
| 200 | } |
---|
| 201 | } |
---|
| 202 | return status; |
---|
| 203 | } |
---|
| 204 | |
---|
| 205 | bool MultiParamLoader::alreadyIncluded(const char* filename) |
---|
| 206 | { |
---|
| 207 | int i; |
---|
| 208 | const char* t; |
---|
| 209 | for(i=0;i<filestack.size();i++) |
---|
| 210 | { |
---|
| 211 | t=filestack(i)->VgetPath(); |
---|
| 212 | if (!t) continue; |
---|
| 213 | if (!strcmp(filename,t)) return true; |
---|
| 214 | } |
---|
| 215 | return false; |
---|
| 216 | } |
---|
| 217 | |
---|
| 218 | void MultiParamLoader::include(SString& filename) |
---|
| 219 | { |
---|
| 220 | const char* thisfilename=file->VgetPath(); |
---|
| 221 | SString newfilename; |
---|
[81] | 222 | const char* t=thisfilename?strrchr(thisfilename,PATH_SEPARATOR_CHAR):0; |
---|
[66] | 223 | |
---|
| 224 | if (thisfilename && t) |
---|
| 225 | { |
---|
| 226 | newfilename.append(thisfilename,t-thisfilename+1); |
---|
| 227 | newfilename+=filename; |
---|
| 228 | } |
---|
| 229 | else |
---|
| 230 | newfilename=filename; |
---|
| 231 | |
---|
| 232 | if (alreadyIncluded(newfilename)) |
---|
| 233 | { |
---|
| 234 | FMprintf("MultiParamLoader","include",FMLV_WARN,"circular reference ignored (\"%s\")", |
---|
| 235 | (const char*)filename); |
---|
| 236 | return; |
---|
| 237 | } |
---|
| 238 | |
---|
| 239 | VirtFILE *f=Vfopen(newfilename,FOPEN_READ); |
---|
| 240 | if (!f) |
---|
| 241 | { |
---|
| 242 | FMprintf("MultiParamLoader","include",FMLV_WARN,"\"%s\" not found",(const char*)newfilename); |
---|
| 243 | } |
---|
| 244 | else |
---|
| 245 | { |
---|
| 246 | filestack+=file; |
---|
| 247 | file=f; |
---|
| 248 | } |
---|
| 249 | } |
---|
| 250 | |
---|
| 251 | VirtFILE* MultiParamLoader::popstack() |
---|
| 252 | { |
---|
| 253 | if (!filestack.size()) return 0; |
---|
| 254 | VirtFILE* f=filestack(filestack.size()-1); |
---|
| 255 | filestack.remove(filestack.size()-1); |
---|
| 256 | return f; |
---|
| 257 | } |
---|
| 258 | |
---|
| 259 | void MultiParamLoader::clearstack() |
---|
| 260 | { |
---|
| 261 | VirtFILE *f; |
---|
| 262 | while(f=popstack()) fclose(f); |
---|
| 263 | } |
---|
| 264 | |
---|
| 265 | bool MultiParamLoader::returnFromIncluded() |
---|
| 266 | { |
---|
| 267 | if (!filestack.size()) return false; |
---|
| 268 | if (file) fclose(file); |
---|
| 269 | file=popstack(); |
---|
| 270 | return true; |
---|
| 271 | } |
---|
| 272 | |
---|
[104] | 273 | int MultiParamLoader::loadObjectNow(const ExtObject& o) |
---|
[66] | 274 | { |
---|
[104] | 275 | Param tmp_param; |
---|
| 276 | ParamInterface *pi=o.getParamInterface(tmp_param); |
---|
[66] | 277 | pi->load(file); |
---|
| 278 | status=AfterObject; |
---|
| 279 | return 0; |
---|
| 280 | } |
---|
| 281 | |
---|
| 282 | int MultiParamLoader::run() |
---|
| 283 | { |
---|
| 284 | int stat; |
---|
| 285 | breakOn(OnError); |
---|
| 286 | while(stat=go()) |
---|
| 287 | if (stat==OnError) |
---|
| 288 | { |
---|
| 289 | abort(); |
---|
| 290 | return 0; |
---|
| 291 | } |
---|
| 292 | return 1; |
---|
| 293 | } |
---|