Annotation of OpenXM/src/util/ox_pathfinder.c, Revision 1.19
1.19 ! takayama 1: /* $OpenXM: OpenXM/src/util/ox_pathfinder.c,v 1.18 2004/02/28 12:27:15 takayama Exp $ */
1.1 takayama 2: /* Moved from misc-2003/07/cygwin/test.c */
1.5 takayama 3:
1.1 takayama 4: #include <stdio.h>
5: #include <sys/types.h>
6: #include <sys/stat.h>
7: #include <fcntl.h>
8: #include <stdlib.h>
9: #include <unistd.h>
10: #include <sys/wait.h>
11: #include <signal.h>
12: #include <ctype.h>
1.5 takayama 13: #include <time.h>
14: #include <string.h>
1.1 takayama 15: #include "ox_pathfinder.h"
16:
1.14 takayama 17: int OX_P_stdin = -1;
18: int OX_P_stdout = -1;
19: int OX_P_stderr = -1;
20:
1.1 takayama 21: extern char **environ;
22:
23: static int getOStypei();
24: static char *addSlash();
25: static char *get_sm1_lib_path();
26: static char *get_k0_lib_path();
27: static char *get_ox_asir_path();
28: static char *get_ox_sm1_path();
29: static char *get_ox_path();
30: static char *get_oxc_path();
31: static char *get_oxlog_path();
1.5 takayama 32: static int getFileSize(char *fn);
1.8 takayama 33: static void errorPathFinder(char *s);
34: static void msgPathFinder(char *s);
1.1 takayama 35:
36:
1.4 takayama 37: static int Verbose_get_home = 0;
1.19 ! takayama 38: static int Verbose = 1;
1.1 takayama 39: static int NoX = 0;
40:
1.2 takayama 41:
42: #define nomemory(a) {fprintf(stderr,"(%d) no more memory.\n",a);exit(10);}
1.3 takayama 43: #define mymalloc(a) sGC_malloc(a)
1.2 takayama 44:
1.8 takayama 45: static void errorPathFinder(char *s) {
46: /* Todo; we need to return the error message to the client if it is used
47: in ox_shell */
48: fprintf(stderr,"Error: %s",s);
49: }
50: static void msgPathFinder(char *s) {
51: /* Todo; we need to return the error message to the client if it is used
52: in ox_shell */
53: fprintf(stderr,"Log(ox_pathfinder): %s",s);
54: }
55:
1.2 takayama 56: int ox_pathfinderNoX(int f) {
57: if (f < 0) return NoX;
58: NoX = f;
1.4 takayama 59: return f;
60: }
61: int ox_pathfinderVerbose(int f) {
62: extern Verbose_get_home;
63: if (f < 0) return Verbose_get_home;
64: Verbose_get_home = f;
1.2 takayama 65: return f;
1.19 ! takayama 66: } /* cf. ox_pathfinder_quiet() */
1.2 takayama 67:
1.5 takayama 68: /* test main */
69: /*
70: main() {
71: char *outfile;
72: char *cpp;
73: char *argv[10];
74: int n;
75: char *sfile = "ox_pathfinder.c";
76: if (getFileSize(sfile) < 0) {
77: fprintf(stderr,"The source file is not found.\n"); return -1;
78: }
79: cpp = getCppPath();
80: if (cpp == NULL) {
81: fprintf(stderr,"cpp is not found.\n"); return -1;
82: }
83: printf("%s\n",cpp);
84: outfile = generateTMPfileName("seed");
85: if (outfile == NULL) {
86: fprintf(stderr,"Failed to generate a temporary file name.\n"); return -1;
87: }
88: printf("%s\n",outfile);
89: if ((char *)strstr(cpp,"/asir/bin/cpp.exe") == NULL) {
90: argv[0] = cpp;
91: argv[1] = "-P";
92: argv[2] = "-lang-c++";
93: argv[3] = sfile;
94: argv[4] = outfile;
95: argv[5] = NULL;
96: }else{
97: argv[0] = cpp;
98: argv[1] = cygwinPathToWinPath(sfile);
99: argv[2] = cygwinPathToWinPath(outfile);
100: argv[3] = NULL;
101: }
102: n=oxForkExecBlocked(argv);
103: }
104:
105: void *sGC_malloc(int s) { return (void *) malloc(s); }
106: */
107:
108: /* -------- end of test main ----------- */
109:
1.2 takayama 110: /* See kxx/ox100start.c for main */
111:
1.1 takayama 112: #define MYFORKCP_SIZE 100
113: static int Myforkchildren[MYFORKCP_SIZE];
114: static int Myforkcp=0;
115: static void myforkwait() {
116: int status;
117: int pid;
118: int i,j;
1.13 takayama 119: /* signal(SIGCHLD,SIG_IGN); It is not allowed in posix */
1.1 takayama 120: pid = wait(&status);
1.19 ! takayama 121: if (Verbose) fprintf(stderr,"Child process %d is exiting.\n",pid);
1.13 takayama 122: if (pid < 0) {
1.14 takayama 123: perror("wait");
1.13 takayama 124: }
1.1 takayama 125: for (i=0; i<Myforkcp; i++) {
126: if (Myforkchildren[i] == pid) {
127: for (j=i; j<Myforkcp-1; j++) {
128: Myforkchildren[j] = Myforkchildren[j+1];
129: }
130: if (Myforkcp > 0) Myforkcp--;
131: }
132: }
133: signal(SIGCHLD,myforkwait);
134: }
135:
1.2 takayama 136: int oxForkExec(char **argv) {
1.1 takayama 137: int pid;
138: char **eee;
139: int m;
140: m = 0;
141: if (argv == NULL) {
142: fprintf(stderr,"Cannot fork and exec.\n"); return -1;
143: }
144: if ((pid = fork()) > 0) {
1.16 takayama 145: oxResetRedirect();
1.1 takayama 146: if (m&2) {
1.5 takayama 147: /* Do not call singal to turn around a trouble on cygwin. BUG. */
148: }else{
149: signal(SIGCHLD,myforkwait); /* to kill Zombie */
150: }
151: Myforkchildren[Myforkcp++] = pid;
152: if (Myforkcp >= MYFORKCP_SIZE-1) {
153: fprintf(stderr,"Child process table is full.\n");
154: Myforkcp = 0;
155: }
1.1 takayama 156: }else{
157: /* close the specified files */
1.5 takayama 158: if (m&1) {
1.1 takayama 159: sigset_t sss;
160: sigemptyset(&sss);
161: sigaddset(&sss,SIGINT);
162: sigprocmask(SIG_BLOCK,&sss,NULL);
1.5 takayama 163: }
164: if (NoX) {
165: FILE *null;
166: null = fopen("/dev/null","wb");
1.14 takayama 167: if (OX_P_stdout >= 0) dup2(OX_P_stdout,1); else dup2(fileno(null),1);
168: if (OX_P_stderr >= 0) dup2(OX_P_stderr,2); else dup2(fileno(null),2);
169: }else{
170: if (OX_P_stdout >= 0) dup2(OX_P_stdout,1);
171: if (OX_P_stderr >= 0) dup2(OX_P_stderr,2);
1.5 takayama 172: }
1.14 takayama 173: if (OX_P_stdin >= 0) dup2(OX_P_stdin,0);
1.1 takayama 174: execve(argv[0],argv,environ);
175: /* This place will never be reached unless execv fails. */
1.2 takayama 176: fprintf(stderr,"oxForkExec fails: ");
1.5 takayama 177: exit(3);
178: }
179: }
180:
181: int oxForkExecBlocked(char **argv) {
182: int pid;
183: char **eee;
184: int m;
185: int status;
186: if (argv == NULL) {
187: fprintf(stderr,"Cannot fork and exec.\n"); return -1;
188: }
189: if ((pid = fork()) > 0) {
1.16 takayama 190: oxResetRedirect();
1.5 takayama 191: Myforkchildren[Myforkcp++] = pid;
192: if (Myforkcp >= MYFORKCP_SIZE-1) {
193: fprintf(stderr,"Child process table is full.\n");
194: Myforkcp = 0;
195: }
1.14 takayama 196: if (waitpid(pid,&status,0) < 0) { /* blocked */
197: perror("waitpid");
198: }
1.16 takayama 199: Myforkcp--;
1.5 takayama 200: return status;
201: }else{
202: /* close the specified files */
203: if (m&1) {
204: sigset_t sss;
205: sigemptyset(&sss);
206: sigaddset(&sss,SIGINT);
207: sigprocmask(SIG_BLOCK,&sss,NULL);
208: }
209: if (NoX) {
210: FILE *null;
211: null = fopen("/dev/null","wb");
1.14 takayama 212: if (OX_P_stdout >= 0) dup2(OX_P_stdout,1); else dup2(fileno(null),1);
213: if (OX_P_stderr >= 0) dup2(OX_P_stderr,2); else dup2(fileno(null),2);
214: }else{
215: if (OX_P_stdout >= 0) dup2(OX_P_stdout,1);
216: if (OX_P_stderr >= 0) dup2(OX_P_stderr,2);
1.5 takayama 217: }
1.14 takayama 218: if (OX_P_stdin >= 0) dup2(OX_P_stdin,0);
1.5 takayama 219: execve(argv[0],argv,environ);
220: /* This place will never be reached unless execv fails. */
221: fprintf(stderr,"oxForkExecBlock fails: ");
222: exit(3);
1.1 takayama 223: }
224: }
225:
226: static int getOStypei() {
227: /*
228: 0 unix
229: 1 windows-cygwin
230: 2 windows-cygwin-on-X
231: 3 windows-native
232: */
233: int ostype;
234: char *s,*s2,*s3;
235: #if defined(__CYGWIN__)
236: ostype = 1;
237: #else
238: ostype = 0;
239: #endif
240: if (ostype == 0) return ostype;
241: /* Heuristic method */
242: s = (char *)getenv("WINDOWID");
243: if (s != NULL) {
244: return 2;
245: }
246: s = (char *)getenv("OSTYPE");
247: s2 = (char *)getenv("MACHTYPE");
248: s3 = (char *)getenv("PWD");
249: if ((s != NULL) || (s2 != NULL) || (s3 != NULL)) {
250: return 1;
251: }
252: return 3;
253: }
254:
255: char *getOStypes() {
256: int ostype;
257: ostype = getOStypei();
258:
259: if (ostype == 1) {
260: return("Windows-cygwin");
261: }else if (ostype == 2) {
262: return("Windows-cygwin-on-X");
263: }else if (ostype == 3) {
264: return("Windows-native");
265: }else{
266: return("unix");
267: }
268: }
269:
270: /*
271: kan96xx/Kan/ext.c
272: */
273: /*
274: -1 : no file
275: non-negative: there is a regular file or a directory
276: */
277: static int getFileSize(char *s) {
278: struct stat buf;
279: int m;
280: if (s == NULL) return -1;
281: m = stat(s,&buf);
282: if (m == -1) {
283: return -1;
284: /* fail */
285: }else{
286: /* success */
287: return (int) buf.st_size;
288: }
289: }
290:
291: static char *addSlash(char *p) {
292: char *p2;
293: if ((strlen(p) == 0) || (p == NULL)) return(p);
294: if (p[strlen(p)-1] == '/') return(p);
295: /* Add / */
296: p2 = (char *) mymalloc(sizeof(char)*(strlen(p)+3));
297: if (p2 == NULL) { fprintf(stderr,"No more memory.\n"); exit(10); }
298: strcpy(p2,p); strcat(p2,"/");
299: return(p2);
300:
301: }
302:
303: static void msg_get_home(int t,char *s) {
304: extern int Verbose_get_home;
305: if (!Verbose_get_home) return;
306: if (t == 1) {
307: fprintf(stderr,"getOpenXM_HOME(): ");
308: }else if (t == 2) {
309: fprintf(stderr,"getServerEnv(): ");
310: }else if (t == 3) {
1.2 takayama 311: fprintf(stderr,"?? ");
1.1 takayama 312: }else if (t == 4) {
313: fprintf(stderr,"cygwinPathToWinPath(): ");
314: }else if (t == 5) {
315: fprintf(stderr,"catArgv(): ");
316: }else{
317: fprintf(stderr,"getting path...: ");
318: }
319: if (s != NULL) {
320: fprintf(stderr,"%s\n",s);
321: }else{
322: fprintf(stderr," --NULL-- \n");
323: }
324: }
325: /* cf. k097/d.c getLOAD_K_PATH();
326: kan96xx/Kan/scanner.c getLOAD_SM1_PATH();
327: */
328: char *getOpenXM_HOME() {
329: char *p;
330: char *h;
331: p = getOStypes();
332: msg_get_home(1,p);
333:
334: p = (char *) getenv("OpenXM_HOME");
335: if (getFileSize(p) != -1) return addSlash(p);
336: msg_get_home(1,"OpenXM_HOME is not found.");
337:
338: p = (char *) getenv("OPENXM_HOME");
339: if (getFileSize(p) != -1) return addSlash(p);
340: msg_get_home(1,"OPENXM_HOME is not found.");
341:
342: if (getOStypei() == 3) { /* cygwin-native */
343: p = (char *) getenv("OpenXM_HOME_WIN");
344: if (getFileSize(p) != -1) return addSlash(p);
345: msg_get_home(1,"OpenXM_HOME_WIN is not found.");
346:
347: p = (char *) getenv("OPENXMHOMEWIN");
348: if (getFileSize(p) != -1) return addSlash(p);
349: msg_get_home(1,"OPENXMHOMEWIN is not found.");
350: }
351:
352: /* Try to find default directories */
353: h = (char *)getenv("HOME");
354: if (h != NULL) {
355: p = (char *)mymalloc(strlen(h)+100);
356: if (p == NULL) {
357: fprintf(stderr,"No more memory.\n"); exit(100);
358: }
359: strcat(h,"/OpenXM");
360: p = h;
361: if (getFileSize(p) != -1) return addSlash(p);
362: msg_get_home(1,"OpenXM is not found under the home directory.");
363: }
364:
365: if (getOStypei() != 3) {
366: p = "/usr/local/OpenXM";
367: }else{
368: p = "/cygdrive/c/usr/local/OpenXM";
369: }
370: if (getFileSize(p) != -1) return addSlash(p);
371: msg_get_home(1,"OpenXM is not found under /usr/local");
372:
373: if (getOStypei() != 0) {
374: p = "/cygdrive/c/OpenXM";
375: if (getFileSize(p) != -1) return addSlash(p);
376: msg_get_home(1,"OpenXM is not found under c:\\");
377:
378: p = "/cygdrive/c/OpenXM-win";
379: if (getFileSize(p) != -1) return addSlash(p);
380: msg_get_home(1,"OpenXM-win is not found under c:\\");
381:
382: p = "/cygdrive/c/Program Files/OpenXM";
383: if (getFileSize(p) != -1) return addSlash(p);
384: msg_get_home(1,"OpenXM is not found under c:\\Program Files");
385:
386: p = "/cygdrive/c/Program Files/OpenXM-win";
387: if (getFileSize(p) != -1) return addSlash(p);
388: msg_get_home(1,"OpenXM-win is not found under c:\\Program Files");
389:
390: }
391:
392: msg_get_home(1,"Giving up!");
393: return NULL;
394:
395: }
396:
397: static char *get_k0_lib_path() {
398: char *oxhome;
399: char *p;
400:
401:
402: p = (char *)getenv("LOAD_K_PATH");
403: if (p != NULL) {
404: if (getFileSize(p) != -1) return addSlash(p);
405: msg_get_home(1,"LOAD_K0_PATH is not found.");
406: }
407:
408: oxhome = getOpenXM_HOME();
409: if (oxhome == NULL) return (char *)NULL;
410: p = (char *) mymalloc(strlen(oxhome)+100);
411: if (p == NULL) {fprintf(stderr,"No more memory.\n"); exit(100);}
412:
413: strcpy(p,oxhome);
414: strcat(p,"lib/k097");
415: if (getFileSize(p) != -1) return addSlash(p);
416: msg_get_home(1,oxhome);
417: msg_get_home(1," is found, but ");
418: msg_get_home(1,p);
419: msg_get_home(1," is not found.");
420:
421: msg_get_home(1,"Giving up!");
422: return NULL;
423: }
424:
425: static char *get_sm1_lib_path() {
426: char *oxhome;
427: char *p;
428:
429: p = (char *)getenv("LOAD_SM1_PATH");
430: if (p != NULL) {
431: if (getFileSize(p) != -1) return addSlash(p);
432: msg_get_home(1,"LOAD_SM1_PATH is not found.");
433: }
434:
435: oxhome = getOpenXM_HOME();
436: if (oxhome == NULL) return NULL;
437: p = (char *) mymalloc(strlen(oxhome)+100);
438: if (p == NULL) {fprintf(stderr,"No more memory.\n"); exit(100);}
439:
440: strcpy(p,oxhome);
441: strcat(p,"lib/sm1");
442: if (getFileSize(p) != -1) return addSlash(p);
443: msg_get_home(1,oxhome);
444: msg_get_home(1," is found, but ");
445: msg_get_home(1,p);
446: msg_get_home(1," is not found.");
447:
448: msg_get_home(1,"Giving up!");
449: return NULL;
450: }
451:
452: static char *get_ox_asir_path() {
453: char *oxhome;
454: char *p;
455:
456: oxhome = getOpenXM_HOME();
457: if (oxhome == NULL) return NULL;
458: p = (char *) mymalloc(strlen(oxhome)+100);
459: if (p == NULL) {fprintf(stderr,"No more memory.\n"); exit(100);}
460:
461: strcpy(p,oxhome);
462: strcat(p,"bin/ox_asir");
463: if (getFileSize(p) != -1) return p;
464: msg_get_home(1,oxhome);
465: msg_get_home(1," is found, but ");
466: msg_get_home(1,p);
467: msg_get_home(1," is not found.");
468:
469: strcpy(p,oxhome);
470: strcat(p,"lib/asir/ox_asir");
471: if (getFileSize(p) != -1) return p;
472: msg_get_home(1,oxhome);
473: msg_get_home(1," is found, but ");
474: msg_get_home(1,p);
475: msg_get_home(1," is not found.");
476:
477: msg_get_home(1,"Giving up!");
478: return NULL;
479: }
480:
481: static char *get_ox_path() {
482: char *oxhome;
483: char *p;
484:
485: oxhome = getOpenXM_HOME();
486: if (oxhome == NULL) return NULL;
487: p = (char *) mymalloc(strlen(oxhome)+100);
488: if (p == NULL) {fprintf(stderr,"No more memory.\n"); exit(100);}
489:
490: strcpy(p,oxhome);
491: strcat(p,"bin/ox");
492: if (getFileSize(p) != -1) return p;
493: msg_get_home(1,oxhome);
494: msg_get_home(1," is found, but ");
495: msg_get_home(1,p);
496: msg_get_home(1," is not found.");
497:
498: msg_get_home(1,"Giving up!");
499: return NULL;
500: }
501:
502:
503: static char *get_oxc_path() {
504: char *oxhome;
505: char *p;
506:
507: oxhome = getOpenXM_HOME();
508: if (oxhome == NULL) return NULL;
509: p = (char *) mymalloc(strlen(oxhome)+100);
510: if (p == NULL) {fprintf(stderr,"No more memory.\n"); exit(100);}
511:
512: strcpy(p,oxhome);
513: strcat(p,"bin/oxc");
514: if (getFileSize(p) != -1) return p;
515: msg_get_home(1,oxhome);
516: msg_get_home(1," is found, but ");
517: msg_get_home(1,p);
518: msg_get_home(1," is not found.");
519:
520: msg_get_home(1,"Giving up!");
521: return NULL;
522: }
523:
524: static char *get_oxlog_path() {
525: char *oxhome;
526: char *p;
527:
528: oxhome = getOpenXM_HOME();
529: if (oxhome == NULL) return NULL;
530: p = (char *) mymalloc(strlen(oxhome)+100);
531: if (p == NULL) {fprintf(stderr,"No more memory.\n"); exit(100);}
532:
533: strcpy(p,oxhome);
534: strcat(p,"bin/oxlog");
535: if (getFileSize(p) != -1) return p;
536: msg_get_home(1,oxhome);
537: msg_get_home(1," is found, but ");
538: msg_get_home(1,p);
539: msg_get_home(1," is not found.");
540:
541: msg_get_home(1,"Giving up!");
542: return NULL;
543: }
544:
545: char *cygwinPathToWinPath(char *s) {
546: char *pos;
547: char *ans;
548: int i;
549: msg_get_home(4,s);
550: if (s == NULL) return NULL;
551: if (strlen(s) == 0) return s;
552:
553: ans = (char *) mymalloc(strlen(s) + 32);
554: if (ans == NULL) nomemory(0);
555:
556: pos = (char *)strstr(s,"/cygdrive/");
557: if (pos == s) {
558: strcpy(ans,&(s[9]));
559: ans[0] = s[10]; ans[1] = ':'; ans[2] = '\\';
560: }else{
561: strcpy(ans,s);
562: }
563:
564: if (ans[0] == '/') {
565: strcpy(ans,"C:\\cygwin");
566: strcat(ans,s);
567: }
568:
569:
570: for (i=0; i <strlen(ans); i++) {
571: if (ans[i] == '/') ans[i] = '\\';
572: }
573: return ans;
574: }
575:
576: char **getServerEnv(char *oxServer) {
577: int ostype;
578: char *p;
579: char *oxhome;
580: char *xterm;
581: char *oxlog;
582: char *load_sm1_path;
583: char *load_k0_path;
584: char *openXM_HOME;
585: #define ARGV_SIZE 100
586: char *argv[ARGV_SIZE];
587: int i,k;
588: char **aaa;
589:
590: if (Verbose_get_home) {
1.5 takayama 591: if (oxServer == NULL) {
592: fprintf(stderr,"Server name is NULL.\n");
593: }else{
594: fprintf(stderr,"Server name is %s\n",oxServer);
595: }
1.1 takayama 596: }
597:
598: if (oxServer == NULL) return NULL;
599: i = 0;
600: argv[i] = NULL;
601:
602: ostype = getOStypei();
603:
604: oxhome = getOpenXM_HOME();
605: if (oxhome == NULL) return NULL;
606: p = (char *) mymalloc(strlen(oxhome)+strlen(oxServer)+100);
607: if (p == NULL) {fprintf(stderr,"No more memory.\n"); exit(100);}
608:
609: strcpy(p,oxhome);
610: strcat(p,oxServer);
611: if (getFileSize(p) == -1) {
612: msg_get_home(2,oxhome);
613: msg_get_home(2," is found, but ");
614: msg_get_home(2,p);
615: msg_get_home(2," is not found.");
616: return (NULL);
617: }
618: oxServer = (char *) mymalloc(strlen(oxhome)+strlen(oxServer)+100);
619: if (oxServer == NULL) {fprintf(stderr,"No more memory.\n"); exit(100);}
620: strcpy(oxServer,p);
621:
622: if ((ostype == 0) || (ostype == 2)) {
1.5 takayama 623: if (!NoX) {
624: xterm = "/usr/X11R6/bin/xterm";
625: if (getFileSize(xterm) == -1) {
626: msg_get_home(2,"xterm is not found. NoX is automatically set.");
627: NoX = 1;
628: }
629: }
1.1 takayama 630: oxlog = get_oxlog_path();
631: xterm = "/usr/X11R6/bin/xterm -icon -e ";
632: argv[i] = oxlog; i++; argv[i] = NULL;
1.5 takayama 633: if (!NoX) {
634: argv[i] = "/usr/X11R6/bin/xterm"; i++; argv[i] = NULL;
635: argv[i] = "-icon"; i++; argv[i] = NULL;
636: argv[i] = "-e"; i++; argv[i] = NULL;
637: }
1.1 takayama 638: argv[i] = get_ox_path(); i++; argv[i] = NULL;
639: argv[i] = "-ox"; i++; argv[i] = NULL;
640: argv[i] = oxServer; i++; argv[i] = NULL;
641: }else{
1.5 takayama 642: if (!NoX) {
643: if (getFileSize("/cygdrive/c/winnt/system32/cmd.exe") >= 0) {
644: xterm = "/cygdrive/c/winnt/system32/cmd.exe /c start /min ";
645: argv[i] = "/cygdrive/c/winnt/system32/cmd.exe"; i++; argv[i] = NULL;
646: }else if (getFileSize("/cygdrive/c/windows/system32/cmd.exe") >= 0) {
647: xterm = "/cygdrive/c/windows/system32/cmd.exe /c start /min ";
648: argv[i] = "/cygdrive/c/windows/system32/cmd.exe"; i++; argv[i] = NULL;
649: }else{
650: msg_get_home(2,"cmd.exe is not found. NoX is automatically set.");
1.1 takayama 651: NoX = 1;
1.5 takayama 652: }
653: }
1.1 takayama 654: oxlog = " ";
1.5 takayama 655: if (!NoX) {
656: argv[i] = "/c"; i++; argv[i] = NULL;
657: argv[i] = "start"; i++; argv[i] = NULL;
658: argv[i] = "/min"; i++; argv[i] = NULL;
659: }
1.1 takayama 660: argv[i] = cygwinPathToWinPath(get_ox_path()); i++; argv[i] = NULL;
661: argv[i] = "-ox"; i++; argv[i] = NULL;
662: argv[i] = oxServer; i++; argv[i] = NULL;
663: }
664:
665: aaa = (char **) mymalloc(sizeof(char*)*(i+1));
666: if (aaa == NULL) nomemory(0);
667: msg_get_home(2,"--------- Result --------------");
668: for (k=0; k<i; k++) {
669: aaa[k] = argv[k];
670: msg_get_home(2,aaa[k]);
671: aaa[k+1] = NULL;
672: }
673: return aaa;
674: }
675:
676: char **setOXenv_old() {
677: char *openXM_HOME;
678: char *load_sm1_path;
679: char *load_k0_path;
680: char *asir_config;
681: char *asir_libdir;
682: char *asirloadpath;
683: char *asir_rsh;
684: char *ld_library_path;
685: char **aaa;
686: int n,i,k;
687:
688: /* set environmental variables */
689: n = 20; /* n must be larger than the number of env vars */
690: n++;
691: load_sm1_path = (char *) getenv("LOAD_SM1_PATH");
692: load_k0_path = (char *) getenv("LOAD_SM1_PATH");
693: asir_config = (char *) getenv("ASIR_CONFIG");
694: asir_libdir = (char *) getenv("ASIR_LIBDIR");
695: asirloadpath = (char *) getenv("ASIRLOADPATH");
696: asir_rsh = (char *) getenv("ASIR_RSH");
697: ld_library_path = (char *) getenv("LD_LIBRARY_PATH");
698:
699: openXM_HOME = getOpenXM_HOME();
700: if (openXM_HOME != NULL)
701: openXM_HOME[strlen(openXM_HOME)-1] = '\0';
702: /* How about ASIR... ? */
703:
704: msg_get_home(3,"OpenXM_HOME is"); msg_get_home(2,openXM_HOME);
705: msg_get_home(3,"LOAD_SM1_PATH is"); msg_get_home(2,load_sm1_path);
706: msg_get_home(3,"LOAD_K0_PATH is"); msg_get_home(2,load_k0_path);
707:
708: aaa = (char **) mymalloc(sizeof(char*)*n);
709: if (aaa == NULL) nomemory(0);
710:
711: i = 0;
712: if (openXM_HOME != NULL) {
713: aaa[i] = openXM_HOME; i++; aaa[i] = NULL; if (i > n-2) return aaa;
714: }
715: if (load_sm1_path != NULL) {
716: aaa[i] = load_sm1_path; i++; aaa[i] = NULL; if (i > n-2) return aaa;
717: }
718: if (load_k0_path != NULL) {
719: aaa[i] = load_k0_path; i++; aaa[i] = NULL; if (i > n-2) return aaa;
720: }
721: if (asir_config != NULL) {
722: aaa[i] = asir_config; i++; aaa[i] = NULL; if (i > n-2) return aaa;
723: }
724: if (asir_libdir != NULL) {
725: aaa[i] = asir_libdir; i++; aaa[i] = NULL; if (i > n-2) return aaa;
726: }
727: if (asirloadpath != NULL) {
728: aaa[i] = asirloadpath; i++; aaa[i] = NULL; if (i > n-2) return aaa;
729: }
730: if (asir_rsh != NULL) {
731: aaa[i] = asir_rsh; i++; aaa[i] = NULL; if (i > n-2) return aaa;
732: }
733:
734: msg_get_home(3,"--------- Result --------------");
735: for (k=0; k<n; k++) {
736: if (aaa[k] == NULL) break;
737: msg_get_home(3,aaa[k]);
738: }
739:
740: return aaa;
741: }
742:
743: char **debugServerEnv(char *oxServer)
744: {
745: int t;
746: char **aaa;
747: t = Verbose_get_home;
748: Verbose_get_home = 1;
749: aaa = getServerEnv(oxServer);
750: Verbose_get_home = t;
751: return ( aaa );
752: }
753:
754: char **catArgv(char **argv1,char **argv2)
755: {
756: int i,n1,n2;
757: char **argv;
758: n1=0;
759: while (argv1[n1] != NULL) n1++;
760: n2=0;
761: while (argv2[n2] != NULL) n2++;
762: argv = (char **) mymalloc(sizeof(char *)*(n1+n2+1));
763: if (argv == NULL) nomemory(0);
764: for (i=0; i<n1; i++) argv[i] = argv1[i];
765: for (i=0; i<n2; i++) argv[n1+i] = argv2[i];
766: argv[n1+n2]=NULL;
767: for (i=0; i<n1+n2; i++) {
1.5 takayama 768: msg_get_home(5,argv[i]);
1.1 takayama 769: }
770: return argv;
771: }
772:
773: char *getLOAD_SM1_PATH2() {
774: char *p;
775: p = get_sm1_lib_path();
776: if (p == NULL) {
777: return("/usr/local/lib/sm1/");
1.3 takayama 778: }else{
1.5 takayama 779: return p;
1.3 takayama 780: }
781: }
782:
783: char *getLOAD_K_PATH2(void) {
784: char *p;
785: p = get_k0_lib_path();
786: if (p == NULL) {
787: return("/usr/local/lib/kxx97/yacc/");
1.1 takayama 788: }else{
1.5 takayama 789: return p;
790: }
791: }
792:
793: char *winPathToCygwinPath(char *s) {
794: char *new;
795: int n,i;
796: if (s == NULL) return s;
797: new = (char *) mymalloc(strlen(s)+20);
798: if (new == NULL) nomemory(new);
799: if (strlen(s) >= 3) {
800: /* case of c:\xxx ==> /cygdrive/c/xxx */
801: if ((s[1] == ':') && (s[2] == '\\')) {
802: sprintf(new,"/cygdrive/%c/%s",s[0],&(s[3]));
803: }else{
804: strcpy(new,s);
805: }
806: }else{
807: strcpy(new,s);
808: }
809: n = strlen(s);
810: for (i=0; i<n; i++) {
811: if (new[i] == '\\') new[i] = '/';
812: }
813: return new;
814: }
815:
816: char *generateTMPfileName(char *seed) {
817: char *tmp;
818: char *fname;
819: char *tt;
820: int num;
1.6 takayama 821: static int prevnum=0;
822: /* Bugs for k0.
823: (1) unlink does not work so, load["t.k"];; load["t.k"];; fails (only cygwin.
824: (2) In case of error, TMP file is not removed. cf KCerror().
825: In case of cygwin, we can only load 90 times.
826: */
1.5 takayama 827: int i;
828: int clean = 0;
829: tmp = getenv("TMP");
830: if (tmp == NULL) {
831: tmp = getenv("TEMP");
832: }
833: if ((tmp == NULL) && (strcmp(getOStypes(),"Windows-native") != 0)) {
834: tmp = "/tmp";
835: }
836: tmp = winPathToCygwinPath(tmp);
837: if (tmp != NULL) {
838: fname = (char *)mymalloc(strlen(tmp)+strlen(seed)+40);
839: if (fname == NULL) nomemory(fname);
840: }else{
841: fname = (char *)mymalloc(strlen(seed)+40);
842: if (fname == NULL) nomemory(fname);
843: }
1.6 takayama 844: for (num=prevnum+1; num <100; num++) {
1.5 takayama 845: if (tmp != NULL) {
846: sprintf(fname,"%s/%s-tmp-%d.txt",tmp,seed,num);
847: }else{
848: sprintf(fname,"%s-tmp-%d.txt",seed,num);
849: }
1.6 takayama 850: if (getFileSize(fname) < 0) {
851: prevnum = num;
852: return fname;
853: } else {
1.5 takayama 854: if ((num > 90) && (!clean)) {
855: /* Clean the old garbages. */
856: for (i=0; i<100; i++) {
857: if (tmp != NULL) {
858: sprintf(fname,"%s/%s-tmp-%d.txt",tmp,seed,i);
859: }else{
860: sprintf(fname,"%s-tmp-%d.txt",seed,i);
861: }
862: {
863: struct stat buf;
864: int m;
865: m = stat(fname,&buf);
866: if ((m >= 0) && (buf.st_mtime+120 < time(NULL))) {
867: unlink(fname);
868: }
869: }
870: }
1.6 takayama 871: num = 0; clean=1; prevnum=0;
1.5 takayama 872: }
873: }
874: }
875: return NULL;
876: }
877:
1.11 takayama 878: #define MAXTMP2 0xffffff
879: char *generateTMPfileName2(char *seed,char *ext,int usetmp,int win){
880: char *tmp;
881: char *fname;
882: char *tt;
883: int num;
884: static int prevnum=0;
885: int i;
886: int clean = 0;
1.12 takayama 887: char *extold;
888: if (ext == NULL) ext="";
889: else {
1.14 takayama 890: extold = ext;
891: ext = (char *) mymalloc(strlen(ext)+3);
892: if (ext == NULL) {fprintf(stderr,"No more memory.\n"); return NULL;}
893: strcpy(ext,".");
894: strcat(ext,extold);
1.12 takayama 895: }
1.11 takayama 896: if (usetmp) {
1.14 takayama 897: tmp = getenv("TMP");
898: if (tmp == NULL) {
899: tmp = getenv("TEMP");
900: }
901: if ((tmp == NULL) && (strcmp(getOStypes(),"Windows-native") != 0)) {
902: tmp = "/tmp";
903: }
904: tmp = winPathToCygwinPath(tmp);
1.11 takayama 905: }else{
1.14 takayama 906: tmp = NULL;
1.11 takayama 907: }
908: if (tmp != NULL) {
909: fname = (char *)mymalloc(strlen(tmp)+strlen(seed)+40);
910: if (fname == NULL) nomemory(fname);
911: }else{
912: fname = (char *)mymalloc(strlen(seed)+40);
913: if (fname == NULL) nomemory(fname);
914: }
915: for (num=prevnum+1; num <MAXTMP2; num++) {
916: if (tmp != NULL) {
1.12 takayama 917: sprintf(fname,"%s/%s-tmp-%d%s",tmp,seed,num,ext);
1.11 takayama 918: }else{
1.12 takayama 919: sprintf(fname,"%s-tmp-%d%s",seed,num,ext);
1.11 takayama 920: }
921: if (getFileSize(fname) < 0) {
922: prevnum = num;
1.14 takayama 923: if (win) fname= cygwinPathToWinPath(fname);
1.11 takayama 924: return fname;
925: } else {
926: if ((num > MAXTMP2-10) && (!clean)) {
927: /* Clean the old garbages. */
928: for (i=0; i<MAXTMP2; i++) {
929: if (tmp != NULL) {
1.12 takayama 930: sprintf(fname,"%s/%s-tmp-%d%s",tmp,seed,i,ext);
1.11 takayama 931: }else{
1.12 takayama 932: sprintf(fname,"%s-tmp-%d%s",seed,i,ext);
1.11 takayama 933: }
934: {
935: struct stat buf;
936: int m;
937: m = stat(fname,&buf);
938: if ((m >= 0) && (buf.st_mtime+120 < time(NULL))) {
939: unlink(fname);
940: }
941: }
942: }
943: num = 0; clean=1; prevnum=0;
944: }
945: }
946: }
947: return NULL;
948: }
1.5 takayama 949:
950: char *getCppPath(void) {
951: static char *cpp = "/usr/local/bin/cpp";
952: int ostype;
953: char *oxhome;
954: if ((cpp != NULL) && (getFileSize(cpp) >= 0)) return cpp;
955: ostype = getOStypei();
956: if (ostype < 3) {
957: /* unix or cygwin env */
958: cpp = "/lib/cpp"; /* on linux */
959: if (getFileSize(cpp) >= 0) return cpp;
960: cpp = "/usr/bin/cpp"; /* on freebsd, on cygwin */
961: if (getFileSize(cpp) >= 0) return cpp;
962: cpp = "/bin/cpp";
963: if (getFileSize(cpp) >= 0) return cpp;
964: cpp = NULL; return cpp;
965: }else {
966: /* On Windows */
967: oxhome = getOpenXM_HOME();
968: if (oxhome == NULL) {
969: cpp = NULL; return cpp;
970: }
971: cpp = (char *) mymalloc(strlen(oxhome)+strlen("/asir/bin/cpp.exe")+5);
972: if (cpp == NULL) nomemory(cpp);
973: sprintf(cpp,"%s/asir/bin/cpp.exe",oxhome);
974: if (getFileSize(cpp) >= 0) return cpp;
975: else return NULL;
1.1 takayama 976: }
977: }
1.8 takayama 978:
979: char *getCommandPath(char *cmdname)
980: {
981: char *path;
982: char *msg;
983: char *path2;
1.9 takayama 984: char *ss;
1.8 takayama 985: int i,j;
1.9 takayama 986: /* Use /cygdrive format always. */
1.8 takayama 987: if (cmdname == NULL) return NULL;
988: if (strlen(cmdname) < 1) {
1.14 takayama 989: errorPathFinder("getCommandPath: cmdname is an empty string.\n");
990: return NULL;
1.8 takayama 991: }
992: if (cmdname[0] == '/') {
1.14 takayama 993: if (getFileSize(cmdname) >= 0) { /* Todo: isExecutableFile() */
994: }else{
995: msg = (char *)mymalloc(strlen(cmdname)+30);
996: sprintf(msg,"getCommandPath: %s is not found.");
997: errorPathFinder(msg);
998: return NULL;
999: }
1000: return cmdname;
1.8 takayama 1001: }
1002:
1.9 takayama 1003: path = getOpenXM_HOME(); /* It will return /cygdrive for windows. */
1.8 takayama 1004: if (path != NULL) {
1.14 takayama 1005: path2 = (char *)mymalloc(strlen(path)+5);
1006: strcpy(path2,path);
1007: strcat(path2,"bin");
1008: ss = oxWhich(cmdname,path2);
1.9 takayama 1009: if (ss != NULL) return ss;
1010: }
1011:
1012: path = (char *)getenv("PATH"); /* Todo: it will not give /cygdrive format*/
1013: ss = oxWhich(cmdname,path);
1014: if (ss == NULL) {
1.14 takayama 1015: errorPathFinder("oxWhich_unix: could not find it in the path string.\n");
1.8 takayama 1016: }
1.9 takayama 1017: return ss;
1018: }
1.8 takayama 1019:
1.9 takayama 1020: char *oxWhich(char *cmdname,char *path) {
1021: return(oxWhich_unix(cmdname,path));
1022: }
1023:
1024: char *oxWhich_unix(char *cmdname,char *path) {
1025: char *path2;
1026: int i,j;
1.8 takayama 1027: if (path == NULL) {
1.14 takayama 1028: return NULL;
1.8 takayama 1029: }
1030:
1.9 takayama 1031: path2 = (char *)mymalloc(strlen(path)+strlen(cmdname)+2);
1032: for (i=0, j=0; i <= strlen(path); i++) {
1.14 takayama 1033: path2[j] = 0;
1034: if ((path[i] == ':') || (path[i] == 0)) {
1035: strcat(path2,"/"); strcat(path2,cmdname);
1036: if (getFileSize(path2) >= 0) { /* Todo: isExecutableFile() */
1037: return path2;
1038: }
1039: j = 0; path2[j] = 0;
1040: }else{
1041: path2[j] = path[i]; j++; path2[j] = 0;
1042: }
1.8 takayama 1043: }
1044: return NULL;
1.10 takayama 1045: }
1046:
1047: char *oxEvalEnvVar(char *s) {
1048: int n, i,j;
1049: char *es;
1050: char *news;
1051: int flag,flag2;
1052: flag=-1;
1053: n = strlen(s);
1054: es = (char *)mymalloc(n+1); es[0] = 0;
1055: if (es == NULL) nomemory(1);
1056: for (i=0; i<n; i++) {
1057: if ((s[i] == '$') && (s[i+1] == '{')) {
1058: for (j=0; ; j++) {
1059: if ((s[i+2+j] == 0) || (s[i+2+j] == '}')) {
1060: flag2 = i+2+j+1;
1061: break;
1062: }
1063: es[j] = s[i+2+j]; es[j+1]=0;
1064: }
1065: if (es[0] != 0) { flag=i; break; }
1066: }
1067: }
1068: if (flag >= 0) {
1069: es = (char *)getenv(es);
1070: if (es == NULL) es="";
1071: news = (char *) mymalloc(n+5+strlen(es));
1072: if (news == NULL) nomemory(1);
1073: j = 0;
1074: for (i=0; i<flag; i++) {
1075: news[j] = s[i]; j++;
1076: }
1077: for (i=0; i<strlen(es); i++) {
1078: news[j] = es[i]; j++;
1079: }
1080: for (i=flag2; i<strlen(s); i++) {
1081: news[j] = s[i]; j++;
1082: }
1083: news[j] = 0;
1084: return(oxEvalEnvVar(news));
1085: }else{
1086: return(s);
1087: }
1.8 takayama 1088: }
1089:
1.14 takayama 1090: void oxResetRedirect(void) {
1.15 takayama 1091: if (OX_P_stdin >= 0) close(OX_P_stdin);
1092: if (OX_P_stdout >= 0) close(OX_P_stdout);
1093: if (OX_P_stderr >= 0) close(OX_P_stderr);
1.14 takayama 1094: OX_P_stdin = OX_P_stdout = OX_P_stderr = -1;
1095: }
1096:
1097: int oxDeleteFile(char *fname) {
1098: if (getFileSize(fname) >= 0) {
1099: return(unlink(fname));
1100: }else{
1101: return(-1);
1102: }
1.16 takayama 1103: }
1104:
1105: /* This function just kills processes, so if there is a process which
1106: uses ox protocol, it is not relevant to use this functions.
1107: */
1108: int oxKillAll(void) {
1109: int i;
1110: int pid;
1111: int status;
1112: for (i=0; i<Myforkcp; i++) {
1113: pid = Myforkchildren[i];
1.19 ! takayama 1114: if (Verbose) fprintf(stderr,"Sending signal to %d ... ",pid);
1.17 takayama 1115: kill(pid,SIGKILL);
1116: waitpid(pid,&status,0);
1.19 ! takayama 1117: if (Verbose) fprintf(stderr,"Gone.\n");
1.16 takayama 1118: }
1119: Myforkcp = 0;
1120: return(0);
1.18 takayama 1121: }
1122:
1123: void ox_pathfinder_quiet(void) {
1124: Verbose_get_home = 0;
1.19 ! takayama 1125: Verbose = 0;
1.14 takayama 1126: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>