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
|
/*******************************************************************************
* Concurrent Clean Simulator: simple_sun_io.c *
* =========================================== *
* At: Department of Computer Science *
* University of Nijmegen *
* Version: 1.1 *
******************************************************************************/
#include "system.h"
#if !defined (applec) || defined (__MWERKS__)
# include <sys/types.h>
# include <sys/file.h>
# include <sys/param.h>
#endif
#if !(defined (applec) || defined (_PC_))
# include <unistd.h>
#endif
char *GetFileExtension (FileKind kind)
{
switch (kind){
case abcFile: return ".abc";
case obj00File: return ".obj0";
case obj20File: return ".obj1";
case obj81File: return ".obj2";
case iclFile: return ".icl";
case dclFile: return ".dcl";
case assFile: return ".a";
case sunAssFile: return ".s";
case applFile:
case otherFile:
default: return "";
}
}
#define SEARCHPATH "CLEANPATH"
#ifdef SOLARIS
char clean_lib_directory[145] = "#$@CLEANLIB %*&.";
# define clean_lib_directory (&clean_lib_directory[16])
#else
char clean_lib_directory[129] = ".";
#endif
#define CLEANLIB clean_lib_directory
static int use_clean_system_files_folder=1;
char *PATHLIST = SEARCHPATH;
static Bool file_exists (char *path)
{
return access (path, F_OK) == 0;
}
extern char *path_parameter;
static void append_file_name_and_ext (char *path_p,char *fname_p,char *ext,int in_clean_system_files_folder)
{
int i;
char c;
if (in_clean_system_files_folder){
int last_dot_i;
last_dot_i = -1;
i=0;
while (c=fname_p[i], c!='\0'){
if (c=='.')
last_dot_i=i;
++i;
}
if (last_dot_i>=0){
i=0;
while (i<last_dot_i){
path_p[i]=fname_p[i];
++i;
}
path_p[i]='/';
path_p+=last_dot_i+1;
fname_p+=last_dot_i+1;
}
strcpy (path_p,"Clean System Files/");
path_p += 19;
i=0;
while (c=fname_p[i], c!='\0'){
path_p[i] = c;
++i;
}
path_p+=i;
} else {
int i;
char c;
i=0;
while (c=fname_p[i], c!='\0'){
path_p[i] = c=='.' ? '/' : c;
++i;
}
path_p+=i;
}
i=0;
do {
c=ext[i];
path_p[i]=c;
++i;
} while (c!='\0');
}
static Bool findfilepath (char *fname,FileKind kind,char *mode,char *path)
{
char *s,*path_elem,c,*pathlist,*ext;
int in_clean_system_files_folder;
if (path_parameter==NULL)
pathlist=getenv ("CLEANPATH");
else
pathlist=path_parameter;
if (pathlist==NULL)
pathlist=".";
ext = GetFileExtension (kind);
in_clean_system_files_folder=0;
if (use_clean_system_files_folder)
switch (kind){
case abcFile:
case obj00File:
case obj20File:
case obj81File:
in_clean_system_files_folder=1;
}
if (! (fname[0]=='/')){
path_elem = pathlist;
s=path_elem;
for (;;){
c = *s;
if (c == ':' || c == '\0'){
char *from_p,*dest_p;
from_p=path_elem;
dest_p=path;
while (from_p<s)
*dest_p++ = *from_p++;
*dest_p = '\0';
*dest_p++ = '/';
append_file_name_and_ext (dest_p,fname,ext,in_clean_system_files_folder);
if (file_exists (path))
return True;
if (c == '\0')
break;
path_elem = ++s;
} else
++s;
}
}
append_file_name_and_ext (path,fname,ext,in_clean_system_files_folder);
return file_exists (path);
}
#if 0
static Bool findfilepath (char *fname, FileKind kind, char *mode, char *path)
{
int accmode;
char *s, *pathelem,c;
char *getenv ();
char *pathlist;
char pathbuf[MAXPATHLEN]; /* buffer for tmp file name */
char *ext;
accmode = F_OK; /* required file access mode */
pathlist = getenv (SEARCHPATH);
ext = GetFileExtension (kind);
/* only scan current directory if path nonexistent */
if (pathlist == (char *) 0)
pathlist = ".";
/* interpret file mode */
for (s = mode; *s; s++)
{ switch (*s)
{
case 'r':
accmode |= R_OK;
break;
case 'w':
case 'a':
accmode |= W_OK;
break;
case '+':
accmode |= (R_OK | W_OK);
break;
}
}
/* no searching on absolute paths or if not read only */
if (fname[0] == '/' || (accmode & W_OK) == W_OK)
{ (void) strcpy (path, fname);
(void) strcat (path, ext);
if ((accmode & W_OK) == W_OK || access (path, accmode) == 0)
return True;
else
return False;
}
/* start scanning path list */
s = strcpy (pathbuf, pathlist);
pathelem = s;
for (c = *s;;c = *s){
#if defined (OS2) || defined (DOS)
if (c == ';' || c == '\0'){
#else
if (c == ':' || c == '\0'){
#endif
*s = '\0';
(void) strcpy (path, pathelem);
(void) strcat (path, "/");
(void) strcat (path, fname);
(void) strcat (path, ext);
if (access (path, accmode) == 0)
return True;
*s = c;
if (c == '\0')
break;
pathelem = ++s;
}
else
++s;
}
/* try CLEANLIB */
strcpy (path, CLEANLIB);
strcat (path, "/");
strcat (path, fname);
strcat (path, ext);
if (access (path, accmode) == 0)
return True;
/* try . */
(void) strcpy (path, fname);
(void) strcat (path, ext);
return ((Bool) (access (path, accmode) == 0));
}
#endif
static char *skip_after_last_dot (char *s)
{
int i,after_last_dot_i;
char c;
after_last_dot_i=0;
i=0;
while (c=s[i],c!='\0'){
++i;
if (c=='.')
after_last_dot_i=i;
}
return &s[after_last_dot_i];
}
#include <sys/time.h>
#include <sys/resource.h>
#include <sys/stat.h>
File FOpen (char *wname, FileKind kind, char *mode)
{
char path[MAXPATHLEN];
Bool res;
if (mode[0]=='r')
{
if (findfilepath (wname, kind, mode, path))
return (File) fopen (path, mode);
else
return (File) Null;
}
else
{
res=findfilepath (wname,dclFile,mode,path);
if (!res)
res=findfilepath (wname,iclFile,mode,path);
if (res){
char *p,*after_last_slash;
after_last_slash=NULL;
p=path;
while (*p)
if (*p++=='/')
after_last_slash=p;
if (after_last_slash==NULL)
after_last_slash=path;
if (use_clean_system_files_folder){
strcpy (after_last_slash,"Clean System Files");
if (access (path,F_OK)!=0){
if (mkdir (path,0777)!=0)
return NULL;
}
strcat (after_last_slash,"/");
strcat (after_last_slash,skip_after_last_dot (wname));
} else
strcpy (after_last_slash,skip_after_last_dot (wname));
strcat (after_last_slash,GetFileExtension (kind));
return fopen (path,mode);
} else
return NULL;
}
} /* FOpen */
int FClose (File f)
{
return fclose ((FILE *) f);
} /* FClose */
int FDelete (char *fname, FileKind kind)
{
char path[MAXPATHLEN];
Bool res;
res = findfilepath (fname, kind, "w", path);
if (res)
return remove (path);
else
return -1;
} /* FDelete */
#ifndef FPutC
int FPutC (int c, File f)
{
return fputc (c, (FILE *) f);
}
#endif
#ifndef FGetC
int FGetC (File f)
{
return fgetc ((FILE *) f);
}
#endif
int FPrintF (File f, char *fmt, ...)
{
int n;
va_list args;
va_start (args, fmt);
n = vfprintf ((FILE*)f, fmt, args);
va_end (args);
return n;
}
size_t FWrite (void *ptr, size_t size, size_t count, File f)
{
return fwrite (ptr, size, count, (FILE *) f);
}
size_t FRead (void *ptr, size_t size, size_t count, File f)
{
return fread (ptr, size, count, (FILE *) f);
}
#ifndef FGetS
char *FGetS (char *s, int n, File f)
{
return fgets (s, n, (FILE *) f);
}
#endif
int FPutS (char *s, File f)
{
return fputs (s, (FILE *) f);
} /* FPutS */
/*******************************************************************************
* Special for files *
******************************************************************************/
int FSeek (File f, long offset, int origin)
{
return fseek ((FILE *) f, offset, origin);
} /* FSeek */
long FTell (File f)
{
return ftell ((FILE *) f);
} /* FTell */
/*******************************************************************************
* Cursor movement *
******************************************************************************/
void FGotoXY (File f, int x, int y)
{
return;
}
void FGetXY (int *x, int *y, File f)
{
*x = *y = 0;
}
/*******************************************************************************
* Time Handling *
******************************************************************************/
#ifdef HP
# include <unistd.h>
# include <sys/times.h>
#endif
SysTime GetSysTime (unsigned scale)
{
/*
#ifndef HP
# ifdef OS2
unsigned long time;
SysTime t;
# define INCL_DOS
# include <os2emx.h>
DosQuerySysInfo (QSV_MS_COUNT,QSV_MS_COUNT,&time,sizeof (time));
if (scale>=1000)
t=(SysTime)(time * (unsigned long) (scale/1000));
else
t=(SysTime)((time * (unsigned long) scale)/1000);
return t;
# else
struct rusage usage;
SysTime t;
(void) getrusage (RUSAGE_SELF, &usage);
t = (SysTime) (usage.ru_utime.tv_sec * (unsigned long) scale +
usage.ru_utime.tv_usec / (unsigned long) (1000000L / scale));
return t;
# endif
#else
double clock_ticks_per_second;
struct tms time_buffer;
clock_ticks_per_second=sysconf (_SC_CLK_TCK);
times (&time_buffer);
return (SysTime) (((double)time_buffer.tms_utime * scale) / clock_ticks_per_second);
#endif
*/
return 0;
} /* GetSysTime */
void StopTimer (void)
{
} /* StopTimer */
void ResetTimer (void)
{
} /* ResetTimer */
FileTime FGetFileTime (char *fname, FileKind kind)
{ struct stat buf;
char path[MAXPATHLEN];
if (! findfilepath (fname, kind, "", path))
return NoFile;
stat (path, &buf);
return (FileTime) buf.st_mtime;
} /* FGetFileTime */
/* Error Handling */
void DoError (char *fmt, ...)
{ va_list args;
va_start (args, fmt);
(void) vfprintf (StdError, fmt, args);
va_end (args);
}
void DoFatalError (char *fmt, ...)
{ va_list args;
va_start (args, fmt);
(void) vfprintf (StdError, fmt, args);
va_end (args);
exit (0);
}
void CmdError (char *errormsg,...)
{ va_list args;
va_start (args, errormsg);
fputs ("Command line error: ", stdout);
vfprintf (stdout, errormsg, args);
fputc ('\n', stdout);
va_end (args);
}
/*******************************************************************************
* Interrupt Handling *
******************************************************************************/
#include <signal.h>
/* Special for the stand alone version of the Clean compiler:
No interrupthandler should be installed
*/
static void DoNothing (void)
{
} /* DoNothing */
void (*SetSignal (void (*f) (void))) (void)
{
return DoNothing;
} /* SetSignal */
int CheckInterrupt (void)
{
return 0;
} /* CheckInterrupt */
/*******************************************************************************
* Storage *
******************************************************************************/
void *Alloc (long unsigned count, SizeT size)
{
if (size == 1)
{ if (count >= MAXUNSIGNED)
DoFatalError ("Allocate: severe memory allocation problem");
return (void *) malloc ((size_t) count);
}
else if (count >= (MAXUNSIGNED / size))
DoFatalError ("Allocate: severe memory allocation problem");
return (void *) malloc ((size_t) (count * size));
} /* Alloc */
void Free (void *p)
{
(void) free (p);
} /* Free */
|