1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698
|
/****************************************
* Computer Algebra System SINGULAR *
****************************************/
/*
* ABSTRACT: management of resources
*/
#include "singular_resourcesconfig.h"
#include "feResource.h"
#include "omFindExec.h"
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <stdio.h>
#include <sys/param.h>
VAR char* feArgv0 = NULL;
//char* feResource(const char id, int warn = -1);
//char* feResource(const char* key, int warn = -1);
// define RESOURCE_DEBUG for chattering about resource management
// #define RESOURCE_DEBUG
#define SINGULAR_DEFAULT_DIR PREFIX
/*****************************************************************
*
* Declarations: Data structures
*
*****************************************************************/
// feSprintf transforms format strings as follows:
// 1.) substrings of the form %c (c being a letter) are replaced by respective resource value
// 2.) substrings of the form $string are replaced by value of resp. env variable
// feCleanResource makes furthermore the following transformations (except for URL resources)
// 1.) '/' characters are replaced by respective directory - separators
// 2.) ';' characters are replaced by respective path separators
VAR feResourceConfig_s feResourceConfigs[] =
{
{"SearchPath", 's', feResPath, NULL,
"$SINGULARPATH;"
"%D/singular/LIB;"
"%r/share/singular/LIB;"
"%b/../share/singular/LIB;"
// gftables:
"%D/singular/factory;"
"%r/share/singular/factory;"
////"%b/LIB;"
////"%b/../LIB;" // not installed, shared is in .libs/Singular
"%b/../share/singular/factory;"
////"%b/../../factory;" // not installed, shared is in .libs/Singular
// path for dynamic modules, should match ProcDir:
////"%b/MOD;"
////"%b/../MOD;" // Singular in .libs/Singular
"%r/lib/singular/MOD;"
LIB_DIR "/singular/MOD;"
"%b;"
///"%b/..", // Singular in .libs/Singular
,(char *)""},
{"Singular", 'S', feResBinary,"SINGULAR_EXECUTABLE", "%d/Singular", (char *)""},
{"BinDir", 'b', feResDir, "SINGULAR_BIN_DIR", "", (char *)""},
// should be changed to %b/../lib/singular/pProcs/:
{"ProcDir", 'P', feResPath, "SINGULAR_PROCS_DIR",
"%b/MOD;"
////"%b/../MOD;" // Singular in .libs/Singular
////"%b/..;" // Singular in .libs/Singular, programs in .
"%r/lib/singular/MOD;"
LIB_DIR "/singular/MOD;"
,(char *)""},
{"RootDir", 'r', feResDir, "SINGULAR_ROOT_DIR", "%b/..", (char *)""},
{"DataDir", 'D', feResDir, "SINGULAR_DATA_DIR", "%b/../share/", (char *)""},
{"DefaultDir",'d', feResDir, "SINGULAR_DEFAULT_DIR", SINGULAR_DEFAULT_DIR, (char *)""},
{"InfoFile", 'i', feResFile, "SINGULAR_INFO_FILE", "%D/info/singular.info", (char *)""},
{"IdxFile", 'x', feResFile, "SINGULAR_IDX_FILE", "%D/singular/singular.idx", (char *)""},
{"HtmlDir", 'h', feResDir, "SINGULAR_HTML_DIR", DATA_TO_HTML_DIR, (char *)""},
{"ManualUrl", 'u', feResUrl, "SINGULAR_URL", "https://www.singular.uni-kl.de/Manual/", (char *)""},
{"ExDir", 'm', feResDir, "SINGULAR_EXAMPLES_DIR","%r/examples", (char *)""},
{"Path", 'p', feResPath, NULL, "%b;%P;$PATH", (char *)""},
#ifdef __CYGWIN__
{"emacs", 'E', feResBinary,"ESINGULAR_EMACS", "%b/emacs.exe", (char *)""},
{"xemacs", 'A', feResBinary,"ESINGULAR_EMACS", "%b/xemacs.exe", (char *)""},
{"SingularEmacs",'M', feResBinary,"ESINGULAR_SINGULAR", "%b/Singular.exe", (char *)""},
#else
{"emacs", 'E', feResBinary,"ESINGULAR_EMACS", "%b/emacs", (char *)""},
{"xemacs", 'A', feResBinary,"ESINGULAR_EMACS", "%b/xemacs", (char *)""},
{"SingularEmacs",'M', feResBinary,"ESINGULAR_SINGULAR", "%b/Singular", (char *)""},
#endif
{"EmacsLoad", 'l', feResFile, "ESINGULAR_EMACS_LOAD", "%e/.emacs-singular", (char *)""},
{"EmacsDir", 'e', feResDir, "ESINGULAR_EMACS_DIR", "%D/singular/emacs", (char *)""},
{"SingularXterm",'M', feResBinary,"TSINGULAR_SINGULAR", "%b/Singular", (char *)""},
#ifdef __CYGWIN__
{"rxvt", 'X', feResBinary,"RXVT", "%b/rxvt", (char *)""},
#else
{"xterm", 'X', feResBinary,"XTERM", "%b/xterm", (char *)""},
#endif
{"EmacsDir", 'e', feResDir, "SINGULAR_EMACS_DIR", "%r/emacs", (char *)""},
{NULL, 0, feResUndef, NULL, NULL, NULL}, // must be the last record
};
/*****************************************************************
*
* Declarations: Local variables / functions
*
*****************************************************************/
#define MAXRESOURCELEN 5*MAXPATHLEN
static feResourceConfig feGetResourceConfig(const char id);
static feResourceConfig feGetResourceConfig(const char* key);
static char* feResource(feResourceConfig config, int warn);
static char* feResourceDefault(feResourceConfig config);
static char* feInitResource(feResourceConfig config, int warn);
static char* feGetExpandedExecutable();
static int feVerifyResourceValue(feResourceType type, char* value);
static char* feCleanResourceValue(feResourceType type, char* value);
static char* feCleanUpFile(char* fname);
static char* feCleanUpPath(char* path);
static void mystrcpy(char* d, char* s);
static char* feSprintf(char* s, const char* fmt, int warn = -1);
#if defined(__CYGWIN__) && defined(__GNUC__)
// utility function of Cygwin32:
extern "C" int cygwin32_posix_path_list_p (const char *path);
#endif
/*****************************************************************
*
* Public functions
*
*****************************************************************/
char* feResource(const char* key, int warn)
{
return feResource(feGetResourceConfig(key), warn);
}
char* feResource(const char id, int warn)
{
return feResource(feGetResourceConfig(id), warn);
}
char* feGetResource(const char id, int warn)
{
return feResource(feGetResourceConfig(id), warn);
}
char* feResourceDefault(const char id)
{
return feResourceDefault(feGetResourceConfig(id));
}
char* feResourceDefault(const char* key)
{
return feResourceDefault(feGetResourceConfig(key));
}
void feInitResources(const char* argv0)
{
if (argv0==NULL)
{
//WarnS("illegal argv[0]==NULL");
feArgv0 = (char*)malloc(MAXPATHLEN+strlen("/Singular"));
getcwd(feArgv0, MAXPATHLEN);
strcat(feArgv0,"/Singular");
}
else
feArgv0 = strdup(argv0);
#ifdef RESOURCE_DEBUG
printf("feInitResources(argv0: '%s'): entering...\n", feArgv0);
#endif
// init some Resources
feResource('b');
feResource('r');
// don't complain about stuff when initializing SingularPath
feResource('s',0);
feResource('P');
}
void feReInitResources()
{
int i = 0;
while (feResourceConfigs[i].key != NULL)
{
if ((feResourceConfigs[i].value != NULL)
&& (feResourceConfigs[i].value[0] != '\0'))
{
free(feResourceConfigs[i].value);
feResourceConfigs[i].value = (char *)"";
}
i++;
}
#ifdef RESOURCE_DEBUG
printf("feInitResources(): entering...\n");
#endif
// init some Resources
feResource('b');
feResource('r');
// don't complain about stuff when initializing SingularPath
feResource('s',0);
}
/*****************************************************************
*
* Local functions
*
*****************************************************************/
static feResourceConfig feGetResourceConfig(const char id)
{
int i = 0;
while (feResourceConfigs[i].key != NULL)
{
if (feResourceConfigs[i].id == id) return &(feResourceConfigs[i]);
i++;
}
return NULL;
}
static feResourceConfig feGetResourceConfig(const char* key)
{
int i = 0;
while (feResourceConfigs[i].key != NULL)
{
if (strcmp(feResourceConfigs[i].key, key) == 0)
return &(feResourceConfigs[i]);
i++;
}
return NULL;
}
static char* feResource(feResourceConfig config, int warn)
{
if (config == NULL) return NULL;
if (config->value != NULL && *(config->value) != '\0') return config->value;
return feInitResource(config, warn);
}
static char* feResourceDefault(feResourceConfig config)
{
if (config == NULL) return NULL;
char* value = (char*) malloc(MAXRESOURCELEN);
feSprintf(value, config->fmt, -1);
return value;
}
static char* feInitResource(feResourceConfig config, int warn)
{
/*assume(config != NULL);*/
#ifdef RESOURCE_DEBUG
printf("feInitResource(config->key: '%s', warn: '%d') : entering ...\n", config->key, warn);
#endif
char value[MAXRESOURCELEN];
// now we have to work
// First, check Environment variable
if (config->env != NULL)
{
char* evalue = getenv(config->env);
if (evalue != NULL)
{
#ifdef RESOURCE_DEBUG
printf("feInitResource(config,warn): Found value from env:%s\n", evalue);
#endif
strcpy(value, evalue);
if (config->type == feResBinary // do not verify binaries
||
feVerifyResourceValue(config->type,
feCleanResourceValue(config->type, value)))
{
#ifdef RESOURCE_DEBUG
printf("feInitResource(config,warn): Set value of config (with key: '%s') to '%s'\n", config->key, value);
#endif
config->value = strdup(value);
return config->value;
}
}
}
*value = '\0';
// Special treatment of executable
if (config->id == 'S')
{
char* executable = feGetExpandedExecutable();
if (executable != NULL)
{
#ifdef RESOURCE_DEBUG
printf("exec:%s\n", executable);
#endif
strcpy(value, executable);
#ifdef RESOURCE_DEBUG
printf("value:%s\n", value);
#endif
free(executable);
}
}
// and bindir
else if (config->id == 'b')
{
char* executable = feResource('S');
#ifdef RESOURCE_DEBUG
printf("feInitResource(config,warn): Get '%s' from \"%s\"\n", config->key, executable);
#endif
if (executable != NULL)
{
strcpy(value, executable);
executable = strrchr(value, DIR_SEP);
if (executable != NULL) *executable = '\0';
}
}
#ifdef RESOURCE_DEBUG
printf("value:%s\n", value);
#endif
if (*value == '\0' && config->fmt != NULL )
{
feSprintf(value, config->fmt, warn);
}
else if (config->fmt == NULL)
{
printf("Bug >>Wrong Resource Specification of '%s'<< at \"%s:%d\"\n",config->key,__FILE__,__LINE__);
// TODO: printf -> WarnS???
return NULL;
}
// Clean and verify
if (feVerifyResourceValue(config->type,
feCleanResourceValue(config->type, value)))
{
#ifdef RESOURCE_DEBUG
printf("feInitResource(config,warn): Set value of '%s' to \"%s\"\n", config->key, value);
#endif
config->value = strdup(value);
return config->value;
}
else if (config->type == feResBinary)
{
// for binaries, search through PATH once more
char* executable = omFindExec(config->key, value);
if (executable != NULL)
{
if (feVerifyResourceValue(config->type,
feCleanResourceValue(config->type, value)))
{
config->value = strdup(value);
#ifdef RESOURCE_DEBUG
printf("feInitResource(config,warn): Set value of '%s' to \"%s\"\n", config->key, config->value);
#endif
return config->value;
}
}
}
// issue warning if explicitely requested, or if
// this value is gotten for the first time
if (warn > 0 || (warn < 0 && config->value != NULL))
{
printf("// ** Could not get '%s'.\n", config->key);
printf("// ** Either set environment variable '%s' to '%s',\n",
config->env, config->key);
feSprintf(value, config->fmt, warn);
printf("// ** or make sure that '%s' is at \"%s\"\n", config->key, value);
}
#ifdef RESOURCE_DEBUG
printf("feInitResource(config,warn): Set value of '%s' to NULL", config->key);
#endif
config->value = NULL;
return NULL;
}
static char* feGetExpandedExecutable()
{
if (feArgv0 == NULL || *feArgv0 == '\0')
{
if (feArgv0 == NULL)
printf("Bug >>feArgv0 == NULL<< at %s:%d\n",__FILE__,__LINE__);
else
printf("Bug >>feArgv0 == ''<< at %s:%d\n",__FILE__,__LINE__);
return NULL;
}
#ifdef __CYGWIN__ // stupid WINNT sometimes gives you argv[0] within ""
if (*feArgv0 == '"')
{
int l = strlen(feArgv0);
if (feArgv0[l-1] == '"')
{
feArgv0[l-1] = '\0';
feArgv0++;
}
}
#endif
#ifdef RESOURCE_DEBUG
printf("feGetExpandedExecutable: calling find_exec with \"%s\"\n", feArgv0);
#endif
char executable[MAXRESOURCELEN];
char* value = omFindExec(feArgv0, executable);
#ifdef RESOURCE_DEBUG
printf("feGetExpandedExecutable: find_exec exited with \"%s\": %d\n", executable, access(executable, X_OK));
#endif
if (value == NULL)
{
printf("Bug >>Could not get expanded executable from \"%s\"<< at %s:%d\n",feArgv0,__FILE__,__LINE__);
return NULL;
}
return strdup(value);
}
static int feVerifyResourceValue(feResourceType type, char* value)
{
#ifdef RESOURCE_DEBUG
printf("feVerifyResourceValue(type: %d, value: \"%s\"): entering\n", (int)type, value);
printf("Access: ROK: %d, XOK: %d\n", access(value, R_OK), access(value, X_OK));
#endif
switch(type)
{
case feResUrl:
case feResPath:
return 1;
case feResFile:
return ! access(value, R_OK);
case feResBinary:
case feResDir:
return ! access(value, X_OK);
default:
return 0;
}
}
/*****************************************************************
*
* Cleaning/Transformations of resource values
*
*****************************************************************/
static char* feCleanResourceValue(feResourceType type, char* value)
{
if (value == NULL || *value == '\0') return value;
#ifdef RESOURCE_DEBUG
printf("Clean value:%s\n", value);
#endif
#ifdef __CYGWIN__
#ifdef RESOURCE_DEBUG
printf("Clean WINNT value:%s\n", value);
#endif
if (type == feResBinary)
{
int l = strlen(value);
if (l < 4 || (strcmp(&value[l-4], ".exe") != 0 &&
strcmp(&value[l-4], ".EXE") != 0))
strcat(value, ".exe");
}
#endif
if (type == feResFile || type == feResBinary || type == feResDir)
return feCleanUpFile(value);
if (type == feResPath)
return feCleanUpPath(value);
return value;
}
static char* feCleanUpFile(char* fname)
{
char* fn;
#ifdef RESOURCE_DEBUG
printf("feCleanUpFile: entering with =%s=\n", fname);
#endif
// Remove unnecessary .. and //
for (fn = fname; *fn != '\0'; fn++)
{
if (*fn == '/')
{
if (*(fn+1) == '\0')
{
if (fname != fn) *fn = '\0';
break;
}
if (*(fn + 1) == '/' && (fname != fn))
{
mystrcpy(fn, fn+1);
fn--;
}
else if (*(fn+1) == '.')
{
if (*(fn+2) == '.' && (*(fn + 3) == '/' || *(fn + 3) == '\0'))
{
#if 0
// this does not work: ./../../mmm will be changed to ./../mmm
// but we only want to change ././mmm to ./mmm
*fn = '\0';
s = strrchr(fname, '/');
if (s != NULL)
{
mystrcpy(s+1, fn + (*(fn + 3) != '\0' ? 4 : 3));
fn = s-1;
}
else
{
*fn = '/';
}
#endif
}
else if (*(fn+2) == '/' || *(fn+2) == '\0')
{
mystrcpy(fn+1, fn+3);
fn--;
}
}
}
}
#ifdef RESOURCE_DEBUG
printf("feCleanUpFile: leaving with =%s=\n", fname);
#endif
return fname;
}
// remove duplicates dir resp. those which do not exist
static char* feCleanUpPath(char* path)
{
#ifdef RESOURCE_DEBUG
printf("feCleanUpPath: entering with: =%s=\n", path);
#endif
if (path == NULL) return path;
int n_comps = 1, i, j;
char* opath = path;
char** path_comps;
for (; *path != '\0'; path++)
{
if (*path == fePathSep) n_comps++;
else if (*path == ';')
{
*path = fePathSep;
n_comps++;
}
}
path_comps = (char**) malloc(n_comps*sizeof(char*));
path_comps[0]=opath;
path=opath;
i = 1;
if (i < n_comps)
{
while (1)
{
if (*path == fePathSep)
{
*path = '\0';
path_comps[i] = path+1;
i++;
if (i == n_comps) break;
}
path++;
}
}
for (i=0; i<n_comps; i++)
path_comps[i] = feCleanUpFile(path_comps[i]);
#ifdef RESOURCE_DEBUG
printf("feCleanUpPath: after CleanUpName: ");
for (i=0; i<n_comps; i++)
printf("%s:", path_comps[i]);
printf("\n");
#endif
for (i=0; i<n_comps;)
{
#ifdef RESOURCE_DEBUG
if (access(path_comps[i], X_OK | R_OK))
printf("feCleanUpPath: remove %d:%s -- can not access\n", i, path_comps[i]);
#endif
if ( ! access(path_comps[i], X_OK | R_OK))
{
// x- permission is granted -- we assume that it is a dir
for (j=0; j<i; j++)
{
if (strcmp(path_comps[j], path_comps[i]) == 0)
{
// found a duplicate
#ifdef RESOURCE_DEBUG
printf("feCleanUpPath: remove %d:%s -- equal to %d:%s\n", j, path_comps[j], i, path_comps[i]);
#endif
j = i+1;
break;
}
}
if (j == i)
{
i++;
continue;
}
}
// now we can either not access or found a duplicate
path_comps[i] = NULL;
for (j=i+1; j<n_comps; j++)
path_comps[j-1] = path_comps[j];
n_comps--;
}
// assemble everything again
for (path=opath, i=0;i<n_comps-1;i++)
{
mystrcpy(path, path_comps[i]);
path += strlen(path);
*path = fePathSep;
path++;
}
if (n_comps)
{
mystrcpy(path, path_comps[i]);
}
else
{
*opath = '\0';
}
free(path_comps);
#ifdef RESOURCE_DEBUG
printf("feCleanUpPath: leaving with path=%s=\n", opath);
#endif
return opath;
}
// strcpy where source and destination may overlap
static void mystrcpy(char* d, char* s)
{
/*assume(d != NULL && s != NULL);*/
while (*s != '\0')
{
*d = *s;
d++;
s++;
}
*d = '\0';
}
/*****************************************************************
*
* feSprintf
*
*****************************************************************/
static char* feSprintf(char* s, const char* fmt, int warn)
{
char* s_in = s;
if (fmt == NULL) return NULL;
while (*fmt != '\0')
{
*s = *fmt;
if (*fmt == '%' && *(fmt + 1) != '\0')
{
fmt++;
char* r = feResource(*fmt, warn);
if (r != NULL)
{
strcpy(s, r);
s += strlen(r) - 1;
}
else
{
s++;
*s = *fmt;
}
}
else if (*fmt == '$' && *(fmt + 1) != '\0')
{
fmt++;
char* v = s + 1;
while (*fmt == '_' ||
(*fmt >= 'A' && *fmt <= 'Z') ||
(*fmt >= 'a' && *fmt <= 'z'))
{
*v = *fmt;
v++;
fmt++;
}
fmt--;
*v = '\0';
v = getenv(s + 1);
if (v != NULL) strcpy(s, v);
s += strlen(s) - 1;
}
s++;
fmt++;
}
*s = '\0';
return s_in;
}
|