Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007 #include <admodel.h>
00008
00009 void ad_make_code_reentrant(void)
00010 {
00011 initial_params::num_initial_params=0;
00012 initial_params::mc_phase=0;
00013 initial_params::mceval_phase=0;
00014 initial_params::sd_phase=0;
00015 likeprof_params::num_likeprof_params=0;
00016 stddev_params::num_stddev_params=0;
00017 if (ad_comm::global_datafile)
00018 {
00019 delete ad_comm::global_datafile;
00020 ad_comm::global_datafile=NULL;
00021 }
00022
00023 if (ad_comm::global_parfile)
00024 {
00025 delete ad_comm::global_parfile;
00026 ad_comm::global_parfile=NULL;
00027 }
00028
00029 if (ad_comm::global_bparfile)
00030 {
00031 delete ad_comm::global_bparfile;
00032 ad_comm::global_bparfile=NULL;
00033 }
00034 }
00035
00036 void parse_dll_options(char *pname, const int& _nopt, char *sp_options,
00037 char *** pargv)
00038 {
00039 int& nopt=(int&) _nopt;
00040 nopt=1;
00041 char ** a=*pargv;
00042 char * p=NULL;
00043 if (strlen(sp_options))
00044 {
00045 size_t string_size = (strlen(sp_options)+5)*sizeof(char);
00046
00047 p = (char *) malloc(string_size);
00048 char * ptmp=NULL;
00049 strcpy(p,sp_options);
00050 ptmp = strtok(p," ");
00051 if (ptmp) nopt++;
00052
00053 do
00054 {
00055 ptmp = strtok(NULL, " ");
00056 if (ptmp) nopt++;
00057 }
00058 while(ptmp);
00059
00060
00061
00062 nopt=1;
00063 strcpy(p,sp_options);
00064 ptmp = strtok(p," ");
00065 if (ptmp)
00066 {
00067
00068 strcpy(a[nopt++],ptmp);
00069 }
00070
00071 do
00072 {
00073 ptmp = strtok(NULL, " ");
00074 if (ptmp)
00075 {
00076
00077 strcpy(a[nopt++],ptmp);
00078 }
00079 }
00080 while(ptmp);
00081
00082 if (p)
00083 {
00084 free(p);
00085 p=NULL;
00086 }
00087 }
00088
00089
00090
00091
00092
00093
00094
00095
00096 strcpy(a[0],pname);
00097 #ifdef _WIN32
00098 strcat(a[0],".exe");
00099 #endif
00100
00101 }
00102
00103 char** no_dll_options(char *pname, const int& _nopt)
00104 {
00105 int& nopt=(int&) _nopt;
00106 nopt=1;
00107 unsigned int nopt2 = 2;
00108 char** a = (char**)malloc(nopt2 * sizeof(char*));
00109 if (a)
00110 {
00111 a[nopt] = NULL;
00112 a[0] = (char*)malloc((strlen(pname)+5)*sizeof(char));
00113 if (a[0])
00114 {
00115 strcpy(a[0],pname);
00116 #ifdef _WIN32
00117 strcat(a[0],".exe");
00118 #endif
00119 }
00120 }
00121 return a;
00122 }
00123
00124 void cleanup_argv(int nopt,char *** pa)
00125 {
00126 if (pa)
00127 {
00128 char **a=*pa;
00129 if (a)
00130 {
00131 for (int i=0;i<=nopt;i++)
00132 {
00133 if (a[i])
00134 {
00135 free(a[i]);
00136 }
00137 }
00138 free(a);
00139 a=NULL;
00140 }
00141 }
00142 }
00143
00144 #if defined(_WIN32)
00145 #include <windows.h>
00146 #endif
00147
00148 #if !defined(_MSC_VER)
00149 void get_sp_printf(void)
00150 {
00151 ad_printf=NULL;
00152
00153
00154
00155
00156
00157 }
00158 #endif
00159
00160 void do_dll_housekeeping(int argc,char ** argv)
00161 {
00162 #if !defined(_MSC_VER)
00163 int on = option_match(argc,argv,"-sp");
00164 if (on > -1)
00165 {
00166 #if defined(_WIN32)
00167 get_sp_printf();
00168 #endif
00169 ad_exit=spdll_exit;
00170 }
00171 else if ( (on=option_match(argc,argv,"-spexit"))>-1)
00172 {
00173 ad_printf=printf;
00174 ad_exit=spdll_exit;
00175 }
00176 else
00177 {
00178 ad_exit=exit;
00179 if (!ad_printf) ad_printf=printf;
00180 }
00181 #else
00182 ad_exit=exit;
00183
00184 if (!ad_printf) ad_printf=printf;
00185 #endif
00186 }
00187
00188
00189
00190
00191
00192
00193
00194
00195
00196
00197
00198
00199
00200
00201
00202
00203
00204
00205
00206
00207
00208
00209
00210
00211
00212
00213
00214
00215
00216
00217
00218
00219
00220
00221
00222
00223
00224
00225
00226
00227
00228
00229
00230
00231
00232
00233
00234
00235
00236
00237
00238
00239
00240
00241
00242
00243
00244
00245
00246
00247
00248
00249
00250
00251
00252
00253
00254
00255
00256
00257
00258
00259
00260
00261
00262
00263
00264
00265
00266
00267
00268
00269
00270
00271
00272
00273
00274
00275
00276
00277
00278
00279
00280
00281
00282
00283
00284
00285
00286
00287
00288
00289
00290
00291
00292
00293
00294
00295
00296
00297
00298
00299
00300
00301
00302
00303
00304
00305
00306
00307
00308
00309
00310
00311
00312
00313
00314
00315
00316
00317
00318
00319
00320
00321
00322
00323
00324
00325
00326
00327
00328
00329
00330
00331
00332
00333
00334
00335
00336
00337
00338
00339
00340
00341
00342
00343
00344
00345
00346
00347
00348
00349
00350
00351
00352
00353
00354 class string_parser
00355 {
00356 char * str;
00357 char * nt;
00358 char * ct;
00359 size_t nlen;
00360 public:
00361 string_parser(char* s, const size_t n);
00362 ~string_parser();
00363
00364 char* get_next_option(size_t& n);
00365 };
00366
00367 string_parser::string_parser(char * s, const size_t n)
00368 {
00369 if (strlen(s) > n)
00370 {
00371 cerr << "string too long in string_parser" << endl;
00372 exit(1);
00373 }
00374
00375 str=new char[strlen(s)+20];
00376 strcpy(str,s);
00377
00378 ct=str;
00379
00380 while (*ct==' ')
00381 {
00382 ct++;
00383 }
00384
00385 nt=ct;
00386
00387 size_t ii=0;
00388 while (*nt != ' ' && *nt != '\0')
00389 {
00390 nt++;
00391 ii++;
00392 }
00393 nlen=ii;
00394
00395 while (*nt==' ')
00396 {
00397 nt++;
00398 }
00399 }
00403 string_parser::~string_parser()
00404 {
00405 if (str != NULL)
00406 {
00407 delete [] str;
00408 str = NULL;
00409 }
00410 nt = NULL;
00411 ct = NULL;
00412 nlen = 0;
00413 }
00414
00415 char* string_parser::get_next_option(size_t& n)
00416 {
00417 n=nlen;
00418
00419 char * rt=ct;
00420 if (nlen!=0)
00421 {
00422 ct=nt;
00423 size_t ii=0;
00424 while (*nt != ' ' && *nt != '\0')
00425 {
00426 nt++;
00427 ii++;
00428 }
00429 nlen=ii;
00430
00431 while (*nt==' ')
00432 {
00433 nt++;
00434 }
00435 }
00436 return rt;
00437 }
00438
00439 typedef char * chararray;
00440
00441 void davesnobullshitstrncpy(char * a,const char * b, const size_t n)
00442 {
00443 strncpy(a,b,n);
00444 a[n]=0;
00445 }
00446
00447 char** parse_dll_options(char *pname, const int& _argc, char *s)
00448 {
00449 const int maxargs=200;
00450 char** a = (char**)malloc(sizeof(char*)*(maxargs+2));
00451 if (a)
00452 {
00453 int& argc=(int&)(_argc);
00454 for (int i=0;i<=maxargs;i++)
00455 {
00456 a[i]=0;
00457 }
00458 string_parser sp(s,1000);
00459
00460 size_t n=0;
00461 int ii=1;
00462 do
00463 {
00464 char * ss=sp.get_next_option(n);
00465 if (n>0)
00466 {
00467 if (ii>maxargs)
00468 {
00469 cerr << "maximum number of command line arguments exceeded"
00470 << endl;
00471 }
00472 a[ii]=(char*)malloc(sizeof(char)*(n+2));
00473 davesnobullshitstrncpy(a[ii],ss,n);
00474 cout << a[ii] << endl;
00475 ii++;
00476 }
00477 } while (n > 0);
00478 a[0]=(char*)malloc(sizeof(char)*(strlen(pname)+6));
00479 if (a[0])
00480 {
00481 strcpy(a[0],pname);
00482 #ifdef _WIN32
00483 strcat(a[0],".exe");
00484 #endif
00485 argc=ii;
00486 }
00487 }
00488 return a;
00489 }