Updates of recent changes to logging.
[python.git] / RISCOS / unixstuff.c
blob83e6212c82d14dee698d208fb8b7f59202bed03f
1 /* Fudge unix isatty and fileno for RISCOS */
3 #include "unixstuff.h"
4 #include <math.h>
5 #include <time.h>
6 #include "oslib/osfile.h"
8 int fileno(FILE *f)
9 { return (int)f;
12 int isatty(int fn)
13 { return (fn==fileno(stdin));
16 bits unixtime(bits ld,bits ex)
17 { ld&=0xFF;
18 ld-=51;
19 if(ex<1855547904U) ld--;
20 ex-=1855548004U;
21 return ex/100+42949673U*ld-ld/25;
25 /* from RISC OS infozip, preserves filetype in ld */
26 int acorntime(bits *ex, bits *ld, time_t utime)
28 unsigned timlo; /* 3 lower bytes of acorn file-time plus carry byte */
29 unsigned timhi; /* 2 high bytes of acorn file-time */
31 timlo = ((unsigned)utime & 0x00ffffffU) * 100 + 0x00996a00U;
32 timhi = ((unsigned)utime >> 24);
33 timhi = timhi * 100 + 0x0000336eU + (timlo >> 24);
34 if (timhi & 0xffff0000U)
35 return 1; /* calculation overflow, do not change time */
37 /* insert the five time bytes into loadaddr and execaddr variables */
38 *ex = (timlo & 0x00ffffffU) | ((timhi & 0x000000ffU) << 24);
39 *ld = (*ld & 0xffffff00U) | ((timhi >> 8) & 0x000000ffU);
41 return 0; /* subject to future extension to signal overflow */
45 int isdir(char *fn)
46 { int ob;
47 if(xosfile_read_stamped_no_path(fn,&ob,0,0,0,0,0)) return 0;
48 switch (ob)
49 { case osfile_IS_DIR:return 1;
50 case osfile_IS_IMAGE:return 1;
52 return 0;
55 int isfile(char *fn)
56 { int ob;
57 if(xosfile_read_stamped_no_path(fn,&ob,0,0,0,0,0)) return 0;
58 switch (ob)
59 { case osfile_IS_FILE:return 1;
60 case osfile_IS_IMAGE:return 1;
62 return 0;
65 int object_exists(char *fn)
66 { int ob;
67 if(xosfile_read_stamped_no_path(fn,&ob,0,0,0,0,0)) return 0;
68 switch (ob)
69 { case osfile_IS_FILE:return 1;
70 case osfile_IS_DIR:return 1;
71 case osfile_IS_IMAGE:return 1;
73 return 0;