HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
posix.h
Go to the documentation of this file.
1 
27 #ifndef _POSIX_H_
28 #define _POSIX_H_
29 
30 #define POSIX
31 
33 #undef EDOM
34 #undef ERANGE
35 
36 #ifdef ESP8266
37 #undef strerror_r
39 #endif
40 
41 // =============================================
45 typedef uint32_t dev_t; /*< dev_t for this architecture */
46 typedef uint32_t ino_t; /*< ino_t for this architecture */
47 typedef uint32_t mode_t; /*< mode_t for this architecture */
48 typedef uint32_t nlink_t; /*< nlink_t for this architecture */
49 typedef uint16_t uid_t; /*< uid_t for this architecture */
50 typedef uint16_t gid_t; /*< gid_t for this architecture */
51 typedef uint32_t off_t; /*< off_t for this architecture */
52 typedef uint32_t blkcnt_t; /*< blkcnt_t for this architecture */
53 typedef uint32_t blksize_t; /*< blksize_t for this architecture */
54 typedef uint32_t time_t; /*< time_t for this architecture */
55 typedef int32_t ssize_t; /*< ssize_t for this architecture */
56 // =============================================
57 
58 // =============================================
59 
60 // @brief posix errno values
62 {
63  EOK, /*< 0 NO ERROR */
64  EPERM, /*< 1 Operation not permitted */
65  ENOENT, /*< 2 No such file or directory */
66  ESRCH, /*< 3 No such process */
67  EINTR, /*< 4 Interrupted system call */
68  EIO, /*< 5 I/O error */
69  ENXIO, /*< 6 No such device or address */
70  E2BIG, /*< 7 Argument list too long */
71  ENOEXEC, /*< 8 Exec format error */
72  EBADF, /*< 9 Bad file number */
73  ECHILD, /*< 10 No child processes */
74  EAGAIN, /*< 11 Try again */
75  ENOMEM, /*< 12 Out of memory */
76  EACCES, /*< 13 Permission denied */
77  EFAULT, /*< 14 Bad address */
78  ENOTBLK, /*< 15 Block device required */
79  EBUSY, /*< 16 Device or resource busy */
80  EEXIST, /*< 17 File exists */
81  EXDEV, /*< 18 Cross-device link */
82  ENODEV, /*< 19 No such device */
83  ENOTDIR, /*< 20 Not a directory */
84  EISDIR, /*< 21 Is a directory */
85  EINVAL, /*< 22 Invalid argument */
86  ENFILE, /*< 23 File table overflow */
87  EMFILE, /*< 24 Too many open files */
88  ENOTTY, /*< 25 Not a typewriter */
89  ETXTBSY, /*< 26 Text file busy */
90  EFBIG, /*< 27 File too large */
91  ENOSPC, /*< 28 No space left on device */
92  ESPIPE, /*< 29 Illegal seek */
93  EROFS, /*< 30 Read-only file system */
94  EMLINK, /*< 31 Too many links */
95  EPIPE, /*< 32 Broken pipe */
96  EDOM, /*< 33 Math argument out of domain of func */
97  ERANGE, /*< 34 Math result not representable */
98  EBADMSG /*< 35 Bad Message */
99 };
100 // =============================================
101 
105 struct stat
106 {
107  dev_t st_dev; /*< ID of device containing file */
108  ino_t st_ino; /*< inode number */
109  mode_t st_mode; /*< protection */
110  nlink_t st_nlink; /*< number of hard links */
111  uid_t st_uid; /*< user ID of owner */
112  gid_t st_gid; /*< group ID of owner */
113  dev_t st_rdev; /*< device ID (if special file) */
114  off_t st_size; /*< total size, in bytes */
115  blksize_t st_blksize; /*< blocksize for filesystem I/O */
116  blkcnt_t st_blocks; /*< number of 512B blocks allocated */
117  time_t st_atime; /*< time of last access */
118  time_t st_mtime; /*< time of last modification */
119  time_t st_ctime; /*< time of last status change */
120 };
121 
124 typedef struct utimbuf
125 {
126  time_t actime; /* access time */
127  time_t modtime; /* modification time */
128 } utime_t;
129 
130 #if FF_USE_LFN != 0
131 #define MAX_NAME_LEN (FF_MAX_LFN+1)
132 #else
133 #define MAX_NAME_LEN (FF_SFN_BUF+1)
134 #endif
135 
136 struct dirent
137 {
138 #if 0 // unsupported
139  ino_t d_ino; /* inode number */
140  off_t d_off; /* not an offset; see NOTES */
141  unsigned short d_reclen; /* length of this record */
142  unsigned char d_type;
143 /* type of file; not supported
144  by all filesystem types */
145 #endif
146  char d_name[MAX_NAME_LEN]; /* filename */
147 };
148 
149 typedef struct dirent dirent_t;
150 
151 #
152 
155 #define lstat stat
156 // =============================================
158 struct __file
159 {
160  char *buf; /* buffer pointer */
161  unsigned char unget; /* ungetc() buffer */
162  uint8_t flags; /* flags, see below */
163 #define __SRD 0x0001 /* OK to read */
164 #define __SWR 0x0002 /* OK to write */
165 #define __SSTR 0x0004 /* this is an sprintf/snprintf string */
166 #define __SPGM 0x0008 /* fmt string is in progmem */
167 #define __SERR 0x0010 /* found error */
168 #define __SEOF 0x0020 /* found EOF */
169 #define __SUNGET 0x040 /* ungetc() happened */
170 #define __SMALLOC 0x80 /* handle is malloc()ed */
171 #if 0
172 /* possible future extensions, will require uint16_t flags */
173 #define __SRW 0x0100 /* open for reading & writing */
174 #define __SLBF 0x0200 /* line buffered */
175 #define __SNBF 0x0400 /* unbuffered */
176 #define __SMBF 0x0800 /* buf is from malloc */
177 #endif
178  int size; /* size of buffer */
179  int len; /* characters read or written so far */
180  int (*put)(char, struct __file *); /* write one char to device */
181  int (*get)(struct __file *); /* read one char from device */
182 // FIXME add all low level functions here like _open, _close, ... like newlib does
183  void *udata; /* User defined and accessible data. */
184 };
185 // =============================================
189 #define O_ACCMODE 00000003 /*< read, write, read-write modes */
190 #define O_RDONLY 00000000 /*< Read only */
191 #define O_WRONLY 00000001 /*< Write only */
192 #define O_RDWR 00000002 /*< Read/Write */
193 #define O_CREAT 00000100 /*< Create file only if it does not exist */
194 #define O_EXCL 00000200
195 /*< O_CREAT option, Create fails if file exists
196  */
197 #define O_NOCTTY 00000400 /*< @todo */
198 #define O_TRUNC 00001000 /*< Truncate if exists */
199 #define O_APPEND 00002000 /*< All writes are to EOF */
200 #define O_NONBLOCK 00004000 /*< @todo */
201 #define O_BINARY 00000004 /*< Binary */
202 #define O_TEXT 00000004 /*< Text End Of Line translation */
203 
205 #define S_IFMT 0170000 /*< These bits determine file type. */
206 #define S_IFDIR 0040000 /*< Directory. */
207 #define S_IFCHR 0020000 /*< Character device. */
208 #define S_IFBLK 0060000 /*< Block device. */
209 #define S_IFREG 0100000 /*< Regular file. */
210 #define S_IFIFO 0010000 /*< FIFO. */
211 #define S_IFLNK 0120000 /*< Symbolic link. */
212 #define S_IFSOCK 0140000 /*< Socket. */
213 #define S_IREAD 0400 /*< Read by owner. */
214 #define S_IWRITE 0200 /*< Write by owner. */
215 #define S_IEXEC 0100 /*< Execute by owner. */
216 
218 #define S_ISTYPE(mode, mask) (((mode) & S_IFMT) == (mask))
219 #define S_ISDIR(mode) S_ISTYPE((mode), S_IFDIR)
220 #define S_ISCHR(mode) S_ISTYPE((mode), S_IFCHR)
221 #define S_ISBLK(mode) S_ISTYPE((mode), S_IFBLK)
222 #define S_ISREG(mode) S_ISTYPE((mode), S_IFREG)
223 
224 //@brief POSIX File permissions, see fstat and stat
225 #define S_IRUSR S_IREAD /*< Read by owner. */
226 #define S_IWUSR S_IWRITE /*< Write by owner. */
227 #define S_IXUSR S_IEXEC /*< Execute by owner. */
228 #define S_IRWXU (S_IREAD|S_IWRITE|S_IEXEC) /*< Read,Write,Execute by owner */
229 
230 #define S_IRGRP (S_IRUSR >> 3) /*< Read by group. */
231 #define S_IWGRP (S_IWUSR >> 3) /*< Write by group. */
232 #define S_IXGRP (S_IXUSR >> 3) /*< Execute by group. */
233 #define S_IRWXG (S_IRWXU >> 3) /*< Read,Write,Execute by user */
234 
235 #define S_IROTH (S_IRGRP >> 3) /*< Read by others. */
236 #define S_IWOTH (S_IWGRP >> 3) /*< Write by others. */
237 #define S_IXOTH (S_IXGRP >> 3) /*< Execute by others. */
238 #define S_IRWXO (S_IRWXG >> 3) /*< Read,Write,Execute by other */
239 // =============================================
240 
242 #define modecmp(str, pat) (strcmp(str, pat) == 0 ? 1: 0)
243 
244 // =============================================
246 #define FATFS_R (S_IRUSR | S_IRGRP | S_IROTH) /*< FatFs Read perms */
247 #define FATFS_W (S_IWUSR | S_IWGRP | S_IWOTH) /*< FatFs Write perms */
248 #define FATFS_X (S_IXUSR | S_IXGRP | S_IXOTH) /*< FatFs Execute perms */
249 
250 // =============================================
252 #define EOF (-1)
253 
255 #define SEEK_SET 0
256 #define SEEK_CUR 1
257 #define SEEK_END 2
258 
259 // =============================================
261 typedef struct __file FILE;
262 
264 #define MAX_FILES 16
265 extern FILE *__iob[MAX_FILES];
266 
268 #undef stdin
269 #undef stdout
270 #undef stderr
271 
272 // Hard coded stdin,stdout and stderr locations
273 #define stdin (__iob[0])
274 #define stdout (__iob[1])
275 #define stderr (__iob[2])
276 
277 // =============================================
278 //#define IO_MACROS
279 #ifdef IO_MACROS
280 #define putc(__c, __stream) fputc(__c, __stream)
284 #define getc(__stream) fgetc(__stream)
285 
288 #define putchar(__c) fputc(__c,stdout)
289 
290 #define puts(__str) fputs(__str,stdout)
291 #endif
292 
293 // =============================================
295 #define fdev_set_udata(stream, u) do { (stream)->udata = u; } while(0)
296 #define fdev_get_udata(stream) ((stream)->udata)
297 
299 #define _FDEV_EOF (-1)
300 #define _FDEV_ERR (-2)
301 //@brief device read/write flags
302 #define _FDEV_SETUP_READ __SRD
303 #define _FDEV_SETUP_WRITE __SWR
304 #define _FDEV_SETUP_RW (__SRD|__SWR)
306 // =============================================
307 
308 /* posix.c */
309 MEMSPACE int isatty ( int fileno );
310 MEMSPACE int fgetc ( FILE *stream );
311 MEMSPACE int fputc ( int c , FILE *stream );
312 #ifndef IO_MACROS
313 MEMSPACE int getchar ( void );
314 MEMSPACE int putchar ( int c );
315 #endif
316 MEMSPACE int ungetc ( int c , FILE *stream );
317 #ifndef IO_MACROS
318 MEMSPACE int putc ( int c , FILE *stream );
319 #endif
320 MEMSPACE char *fgets ( char *str , int size , FILE *stream );
321 MEMSPACE int fputs ( const char *str , FILE *stream );
322 #ifndef IO_MACROS
323 MEMSPACE int puts ( const char *str );
324 #endif
325 MEMSPACE int feof ( FILE *stream );
326 MEMSPACE int fgetpos ( FILE *stream , size_t *pos );
327 MEMSPACE int fseek ( FILE *stream , long offset , int whence );
328 MEMSPACE int fsetpos ( FILE *stream , size_t *pos );
329 MEMSPACE long ftell ( FILE *stream );
330 MEMSPACE off_t lseek ( int fileno , off_t position , int whence );
331 MEMSPACE void rewind ( FILE *stream );
332 MEMSPACE int close ( int fileno );
333 MEMSPACE int fileno ( FILE *stream );
335 MEMSPACE FILE *fopen ( const char *path , const char *mode );
336 MEMSPACE size_t fread ( void *ptr , size_t size , size_t nmemb , FILE *stream );
337 MEMSPACE int ftruncate ( int fd , off_t length );
338 MEMSPACE size_t fwrite ( const void *ptr , size_t size , size_t nmemb , FILE *stream );
339 MEMSPACE int open ( const char *pathname , int flags );
340 MEMSPACE ssize_t read ( int fd , const void *buf , size_t count );
341 MEMSPACE void sync ( void );
342 MEMSPACE int syncfs ( int fd );
343 MEMSPACE int truncate ( const char *path , off_t length );
344 MEMSPACE ssize_t write ( int fd , const void *buf , size_t count );
345 MEMSPACE int fclose ( FILE *stream );
346 MEMSPACE void dump_stat ( struct stat *sp );
347 
348 #if 0
349 MEMSPACE int fstat ( int fd , struct stat *buf );
350 #endif
351 
352 MEMSPACE char *mctime ( time_t timev );
353 MEMSPACE int stat ( char *name , struct stat *buf );
354 MEMSPACE char *basename ( char *str );
355 MEMSPACE char *baseext ( char *str );
356 MEMSPACE int chdir ( const char *pathname );
357 MEMSPACE int chmod ( const char *pathname , mode_t mode );
358 MEMSPACE int dirname ( char *str );
359 MEMSPACE int utime(const char *filename, const struct utimbuf *times);
360 
361 #if 0
362 MEMSPACE int fchmod ( int fd , mode_t mode );
363 #endif
364 
365 MEMSPACE char *getcwd ( char *pathname , int len );
366 MEMSPACE int mkdir ( const char *pathname , mode_t mode );
367 MEMSPACE int rename ( const char *oldpath , const char *newpath );
368 MEMSPACE int rmdir ( const char *pathname );
369 MEMSPACE int unlink ( const char *pathname );
370 int closedir ( DIR *dirp );
371 DIR *opendir ( const char *pathdir );
372 struct dirent *readdir ( DIR *dirp );
373 MEMSPACE void clrerror ( FILE *stream );
374 MEMSPACE int ferror ( FILE *stream );
375 MEMSPACE void perror ( const char *s );
376 MEMSPACE char WEAK_ATR *strerror ( int errnum );
377 MEMSPACE char *strerror_r ( int errnum , char *buf , size_t buflen );
378 MEMSPACE FILE *fdevopen ( int (*put )(char ,FILE *), int (*get )(FILE *));
379 MEMSPACE int mkfs(char *name );
380 MEMSPACE int fatfs_getc ( FILE *stream );
381 MEMSPACE int fatfs_putc ( char c , FILE *stream );
382 MEMSPACE int fatfs_to_errno ( FRESULT Result );
383 MEMSPACE int fatfs_to_fileno ( FIL *fh );
384 MEMSPACE time_t fat_time_to_unix ( uint16_t date , uint16_t time );
385 MEMSPACE void unix_time_to_fat(time_t epoch, uint16_t *date, uint16_t *time);
388 MEMSPACE int new_file_descriptor ( void );
389 MEMSPACE int posix_fopen_modes_to_open ( const char *mode );
390 
391 MEMSPACE int fprintf(FILE *fp, const char *format, ...);
392 
393 // =============================================
394 #endif //_POSIX_H_
__file::buf
char * buf
Definition: posix.h:160
free_file_descriptor
MEMSPACE int free_file_descriptor(int fileno)
Free POSIX fileno FILE descriptor. NOT POSIX.
Definition: posix.c:2361
lseek
MEMSPACE off_t lseek(int fileno, off_t position, int whence)
POSIX seek to file position.
Definition: posix.c:633
stat::st_size
off_t st_size
Definition: posix.h:114
MAX_NAME_LEN
#define MAX_NAME_LEN
Definition: posix.h:133
EBUSY
@ EBUSY
Definition: posix.h:79
stat
POSIX stat structure.
Definition: posix.h:105
fileno_to_fatfs
MEMSPACE FIL * fileno_to_fatfs(int fileno)
Convert POSIX fileno to FatFS handle NOT POSIX.
Definition: posix.c:2327
unlink
MEMSPACE int unlink(const char *pathname)
POSIX delete a file.
Definition: posix.c:1723
EAGAIN
@ EAGAIN
Definition: posix.h:74
fatfs_getc
MEMSPACE int fatfs_getc(FILE *stream)
Private FatFs function called by fgetc() to get a byte from file stream FIXME buffer this function ca...
Definition: posix.c:2031
EFAULT
@ EFAULT
Definition: posix.h:77
stat::st_mtime
time_t st_mtime
Definition: posix.h:118
rmdir
MEMSPACE int rmdir(const char *pathname)
POSIX delete a directory.
Definition: posix.c:1701
basename
MEMSPACE char * basename(char *str)
POSIX Basename of filename.
Definition: posix.c:1469
__file::put
int(* put)(char, struct __file *)
Definition: posix.h:180
FIL
Definition: ff.h:205
truncate
MEMSPACE int truncate(const char *path, off_t length)
POSIX truncate named file to length.
Definition: posix.c:1164
fread
MEMSPACE size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream)
POSIX read nmemb elements from buf, size bytes each, to the stream fd.
Definition: posix.c:823
perror
MEMSPACE void perror(const char *s)
POSIX perror() - convert POSIX errno to text with user message.
Definition: posix.c:1850
getcwd
MEMSPACE char * getcwd(char *pathname, int len)
POSIX get current working directory.
Definition: posix.c:1623
stat::st_uid
uid_t st_uid
Definition: posix.h:111
fgetpos
MEMSPACE int fgetpos(FILE *stream, size_t *pos)
POSIX get position of file stream.
Definition: posix.c:534
ERANGE
@ ERANGE
Definition: posix.h:97
stat
MEMSPACE int stat(char *name, struct stat *buf)
POSIX stat - get file status of named file.
Definition: posix.c:1368
ESRCH
@ ESRCH
Definition: posix.h:66
EPERM
@ EPERM
Definition: posix.h:64
MEMSPACE
#define MEMSPACE
Definition: user_config.h:17
strerror_r
MEMSPACE char * strerror_r(int errnum, char *buf, size_t buflen)
POSIX strerror_r() - convert POSIX errno to text with user message.
Definition: posix.c:1893
fileno
MEMSPACE int fileno(FILE *stream)
Convert POSIX stream pointer to POSIX fileno (index of __iob[])
Definition: posix.c:741
fclose
MEMSPACE int fclose(FILE *stream)
POSIX close a file stream.
Definition: posix.c:1261
dev_t
uint32_t dev_t
make sure we use our EDOM and ERANGE values
Definition: posix.h:45
stat::st_blocks
blkcnt_t st_blocks
Definition: posix.h:116
fsetpos
MEMSPACE int fsetpos(FILE *stream, size_t *pos)
POSIX set position of file stream.
Definition: posix.c:585
stat::st_nlink
nlink_t st_nlink
Definition: posix.h:110
EINTR
@ EINTR
Definition: posix.h:67
ENFILE
@ ENFILE
Definition: posix.h:86
EEXIST
@ EEXIST
Definition: posix.h:80
EROFS
@ EROFS
Definition: posix.h:93
fputs
MEMSPACE int fputs(const char *str, FILE *stream)
put a string to stdout See fdevopen() sets stream->put get for TTY devices
Definition: posix.c:470
ESPIPE
@ ESPIPE
Definition: posix.h:92
syncfs
MEMSPACE int syncfs(int fd)
POSIX Sync pending file changes and metadata for specified fileno.
Definition: posix.c:1119
stat::st_dev
dev_t st_dev
Definition: posix.h:107
stat::st_ctime
time_t st_ctime
Definition: posix.h:119
putc
MEMSPACE int putc(int c, FILE *stream)
Put a character to a stream See fdevopen() sets stream->put get for TTY devices.
Definition: posix.c:414
E2BIG
@ E2BIG
Definition: posix.h:70
dump_stat
MEMSPACE void dump_stat(struct stat *sp)
Display struct stat, from POSIX stat(0 or fstat(), in ASCII. NOT POSIX.
Definition: posix.c:1283
EFBIG
@ EFBIG
Definition: posix.h:90
ftruncate
MEMSPACE int ftruncate(int fd, off_t length)
POSIX truncate open file to length.
Definition: posix.c:848
__file::get
int(* get)(struct __file *)
Definition: posix.h:181
sync
MEMSPACE void sync(void)
POSIX Sync all pending file changes and metadata on ALL files.
Definition: posix.c:1091
fatfs_putc
MEMSPACE int fatfs_putc(char c, FILE *stream)
Private FatFs function called by fputc() to put a byte from file stream NOT POSIX open() assigns stre...
Definition: posix.c:2122
ENXIO
@ ENXIO
Definition: posix.h:69
blkcnt_t
uint32_t blkcnt_t
Definition: posix.h:52
ino_t
uint32_t ino_t
Definition: posix.h:46
utimbuf::actime
time_t actime
Definition: posix.h:126
time_t
uint32_t time_t
Definition: posix.h:54
mkdir
MEMSPACE int mkdir(const char *pathname, mode_t mode)
POSIX make a directory.
Definition: posix.c:1647
ferror
MEMSPACE int ferror(FILE *stream)
ferror reports if the stream has an error flag set
Definition: posix.c:1833
fseek
MEMSPACE int fseek(FILE *stream, long offset, int whence)
POSIX seek to file possition.
Definition: posix.c:558
ETXTBSY
@ ETXTBSY
Definition: posix.h:89
new_file_descriptor
MEMSPACE int new_file_descriptor(void)
Allocate a POSIX FILE descriptor. NOT POSIX.
Definition: posix.c:2404
closedir
int closedir(DIR *dirp)
POSIX closedir.
Definition: posix.c:1748
ssize_t
int32_t ssize_t
Definition: posix.h:55
clrerror
MEMSPACE void clrerror(FILE *stream)
clrerror resets stream EOF and error flags
Definition: posix.c:1820
dirent::d_name
char d_name[MAX_NAME_LEN]
Definition: posix.h:146
fopen
MEMSPACE FILE * fopen(const char *path, const char *mode)
POSIX Open a file with path name and ascii file mode string.
Definition: posix.c:801
stat::st_rdev
dev_t st_rdev
Definition: posix.h:113
mode_t
uint32_t mode_t
Definition: posix.h:47
__file::size
int size
Definition: posix.h:178
nlink_t
uint32_t nlink_t
Definition: posix.h:48
utime
MEMSPACE int utime(const char *filename, const struct utimbuf *times)
Set Modification and Access time of a file.
Definition: posix.c:1432
__file
FILE type structure.
Definition: posix.h:158
rename
MEMSPACE int rename(const char *oldpath, const char *newpath)
POSIX rename a file by name.
Definition: posix.c:1677
dirent
Definition: posix.h:136
dirname
MEMSPACE int dirname(char *str)
POSIX directory name of a filename. Return the index of the last '/' character.
Definition: posix.c:1577
mctime
MEMSPACE char * mctime(time_t timev)
Display Ascii formatted time from timev seconds NOT POSIX.
Definition: posix.c:1346
EMLINK
@ EMLINK
Definition: posix.h:94
EXDEV
@ EXDEV
Definition: posix.h:81
ENOTBLK
@ ENOTBLK
Definition: posix.h:78
puts
MEMSPACE int puts(const char *str)
put a string to stdout See fdevopen() sets stream->put get for TTY devices
Definition: posix.c:493
ENODEV
@ ENODEV
Definition: posix.h:82
stat::st_ino
ino_t st_ino
Definition: posix.h:108
uid_t
uint16_t uid_t
Definition: posix.h:49
fdevopen
MEMSPACE FILE * fdevopen(int(*put)(char, FILE *), int(*get)(FILE *))
Device open functions.
Definition: posix.c:1912
stat::st_mode
mode_t st_mode
Definition: posix.h:109
__file::flags
uint8_t flags
Definition: posix.h:162
__file::unget
unsigned char unget
Definition: posix.h:161
fprintf
MEMSPACE int fprintf(FILE *fp, const char *format,...)
fprintf function Example user defined printf function using fputc for I/O This method allows I/O to d...
Definition: posix.c:2533
POSIX_errno
POSIX_errno
Definition: posix.h:61
EINVAL
@ EINVAL
Definition: posix.h:85
chmod
MEMSPACE int chmod(const char *pathname, mode_t mode)
POSIX chmod function - change file access permission Unfortunately file f_open modes and f_chmod mode...
Definition: posix.c:1538
off_t
uint32_t off_t
Definition: posix.h:51
time
MEMSPACE time_t time(time_t *t)
Return second from epoch - POSIX function.
Definition: time.c:843
feof
MEMSPACE int feof(FILE *stream)
feof reports if the stream is at EOF
Definition: posix.c:516
getchar
MEMSPACE int getchar(void)
functions normally defined as macros
Definition: posix.c:347
chdir
MEMSPACE int chdir(const char *pathname)
POSIX change directory.
Definition: posix.c:1512
EIO
@ EIO
Definition: posix.h:68
blksize_t
uint32_t blksize_t
Definition: posix.h:53
ENOEXEC
@ ENOEXEC
Definition: posix.h:71
fwrite
MEMSPACE size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream)
POSIX write nmemb elements from buf, size bytes each, to the stream fd.
Definition: posix.c:890
isatty
MEMSPACE int isatty(int fileno)
Test POSIX fileno if it is a Serial Console/TTY.
Definition: posix.c:195
ECHILD
@ ECHILD
Definition: posix.h:73
fat_time_to_unix
MEMSPACE time_t fat_time_to_unix(uint16_t date, uint16_t time)
Convert FatFs file date and time to POSIX epoch seconds. NOT POSIX.
Definition: posix.c:2276
ENOTDIR
@ ENOTDIR
Definition: posix.h:83
posix_fopen_modes_to_open
MEMSPACE int posix_fopen_modes_to_open(const char *mode)
Convert POSIX fopen mode to POSIX open mode flags. NOT POSIX.
Definition: posix.c:2468
EISDIR
@ EISDIR
Definition: posix.h:84
FRESULT
FRESULT
Definition: ff.h:276
ENOSPC
@ ENOSPC
Definition: posix.h:91
DIR
Definition: ff.h:228
open
MEMSPACE int open(const char *pathname, int flags)
POSIX Open a file with integer mode flags.
Definition: posix.c:916
fgetc
MEMSPACE int fgetc(FILE *stream)
Get byte from a TTY device or FatFs file stream open() or fopen() sets stream->get = fatfs_getc() for...
Definition: posix.c:216
EACCES
@ EACCES
Definition: posix.h:76
stat::st_atime
time_t st_atime
Definition: posix.h:117
ENOENT
@ ENOENT
Definition: posix.h:65
utimbuf::modtime
time_t modtime
Definition: posix.h:127
write
MEMSPACE ssize_t write(int fd, const void *buf, size_t count)
POSIX Write count bytes from *buf to fileno fd.
Definition: posix.c:1202
read
MEMSPACE ssize_t read(int fd, const void *buf, size_t count)
POSIX read count bytes from *buf to fileno fd.
Definition: posix.c:1028
ENOMEM
@ ENOMEM
Definition: posix.h:75
__iob
FILE * __iob[MAX_FILES]
POSIX fileno to POSIX FILE stream table.
Definition: posix.c:138
opendir
DIR * opendir(const char *pathdir)
Definition: posix.c:1768
mkfs
MEMSPACE int mkfs(char *name)
Formt SD card.
Definition: posix.c:1960
ftell
MEMSPACE long ftell(FILE *stream)
POSIX file position of open stream.
Definition: posix.c:600
time_t
uint32_t time_t
type of EPOCH result.
Definition: time.h:34
MAX_FILES
#define MAX_FILES
Maximum number of POSIX file handles.
Definition: posix.h:264
readdir
struct dirent * readdir(DIR *dirp)
Definition: posix.c:1788
close
MEMSPACE int close(int fileno)
POSIX Close a file with fileno handel.
Definition: posix.c:701
fatfs_to_fileno
MEMSPACE int fatfs_to_fileno(FIL *fh)
Convert FatFS file handle to POSIX fileno. NOT POSIX.
Definition: posix.c:2238
EPIPE
@ EPIPE
Definition: posix.h:95
stat::st_gid
gid_t st_gid
Definition: posix.h:112
strerror
MEMSPACE char WEAK_ATR * strerror(int errnum)
POSIX strerror() - convert POSIX errno to text with user message.
Definition: posix.c:1876
EBADF
@ EBADF
Definition: posix.h:72
ungetc
MEMSPACE int ungetc(int c, FILE *stream)
Un-Get byte from a TTY device or FatFs file stream.
Definition: posix.c:380
stat::st_blksize
blksize_t st_blksize
Definition: posix.h:115
fileno_to_stream
MEMSPACE FILE * fileno_to_stream(int fileno)
Convert POSIX fileno to POSIX FILE stream pointer. NOT POSIX.
Definition: posix.c:772
putchar
MEMSPACE int putchar(int c)
put a character to stdout See fdevopen() sets stream->put get for TTY devices
Definition: posix.c:363
unix_time_to_fat
MEMSPACE void unix_time_to_fat(time_t epoch, uint16_t *date, uint16_t *time)
Convert Linux POSIX time_t to FAT32 date and time. NOT POSIX.
Definition: posix.c:2302
rewind
MEMSPACE void rewind(FILE *stream)
POSIX rewind file to the beginning.
Definition: posix.c:681
utimbuf
POSIX utimbuf structure.
Definition: posix.h:124
__file::len
int len
Definition: posix.h:179
fatfs_to_errno
MEMSPACE int fatfs_to_errno(FRESULT Result)
Convert FafFs error result to POSIX errno. NOT POSIX.
Definition: posix.c:2163
EDOM
@ EDOM
Definition: posix.h:96
EBADMSG
@ EBADMSG
Definition: posix.h:98
EMFILE
@ EMFILE
Definition: posix.h:87
baseext
MEMSPACE char * baseext(char *str)
File extention of a file name. NOT POSIX.
Definition: posix.c:1490
fgets
MEMSPACE char * fgets(char *str, int size, FILE *stream)
get a string from stdin See fdevopen() sets stream->put get for TTY devices
Definition: posix.c:432
fputc
MEMSPACE int fputc(int c, FILE *stream)
Put a byte to TTY device or FatFs file stream open() or fopen() sets stream->put = fatfs_outc() for F...
Definition: posix.c:287
WEAK_ATR
#define WEAK_ATR
Definition: stringsup.h:33
EOK
@ EOK
Definition: posix.h:63
__file::udata
void * udata
Definition: posix.h:183
ENOTTY
@ ENOTTY
Definition: posix.h:88
gid_t
uint16_t gid_t
Definition: posix.h:50
utime_t
struct utimbuf utime_t
POSIX utimbuf structure.