2018-03-04 17:16:51 +00:00
|
|
|
// Formatting library for C++ - mocks of POSIX functions
|
|
|
|
//
|
|
|
|
// Copyright (c) 2012 - present, Victor Zverovich
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// For the license information refer to format.h.
|
2014-05-15 14:45:44 +00:00
|
|
|
|
|
|
|
#ifndef FMT_POSIX_TEST_H
|
|
|
|
#define FMT_POSIX_TEST_H
|
|
|
|
|
|
|
|
#include <errno.h>
|
2014-05-15 15:58:10 +00:00
|
|
|
#include <stdio.h>
|
2014-05-15 14:45:44 +00:00
|
|
|
|
2015-05-06 14:29:58 +00:00
|
|
|
#ifdef _WIN32
|
2014-09-12 18:12:22 +00:00
|
|
|
# include <windows.h>
|
2015-06-24 14:59:19 +00:00
|
|
|
#else
|
|
|
|
# include <sys/types.h> // for ssize_t
|
2014-09-12 18:12:22 +00:00
|
|
|
#endif
|
|
|
|
|
2015-05-06 14:29:58 +00:00
|
|
|
#ifndef _MSC_VER
|
|
|
|
struct stat;
|
|
|
|
#endif
|
|
|
|
|
2014-05-15 14:45:44 +00:00
|
|
|
namespace test {
|
|
|
|
|
2015-05-06 14:29:58 +00:00
|
|
|
#ifndef _MSC_VER
|
2014-05-15 15:58:10 +00:00
|
|
|
// Size type for read and write.
|
|
|
|
typedef size_t size_t;
|
|
|
|
typedef ssize_t ssize_t;
|
2014-05-15 14:45:44 +00:00
|
|
|
int open(const char *path, int oflag, int mode);
|
2014-09-12 18:12:22 +00:00
|
|
|
int fstat(int fd, struct stat *buf);
|
2014-05-15 14:45:44 +00:00
|
|
|
#else
|
2014-05-15 15:58:10 +00:00
|
|
|
typedef unsigned size_t;
|
|
|
|
typedef int ssize_t;
|
|
|
|
errno_t sopen_s(
|
|
|
|
int* pfh, const char *filename, int oflag, int shflag, int pmode);
|
2015-05-06 14:29:58 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
long sysconf(int name);
|
|
|
|
#else
|
2015-03-16 15:52:23 +00:00
|
|
|
DWORD GetFileSize(HANDLE hFile, LPDWORD lpFileSizeHigh);
|
2014-05-15 14:45:44 +00:00
|
|
|
#endif
|
|
|
|
|
2014-05-15 15:58:10 +00:00
|
|
|
int close(int fildes);
|
|
|
|
|
|
|
|
int dup(int fildes);
|
|
|
|
int dup2(int fildes, int fildes2);
|
|
|
|
|
|
|
|
FILE *fdopen(int fildes, const char *mode);
|
|
|
|
|
|
|
|
ssize_t read(int fildes, void *buf, size_t nbyte);
|
|
|
|
ssize_t write(int fildes, const void *buf, size_t nbyte);
|
|
|
|
|
2014-05-18 18:09:37 +00:00
|
|
|
#ifndef _WIN32
|
2014-05-18 17:05:29 +00:00
|
|
|
int pipe(int fildes[2]);
|
2014-05-18 18:09:37 +00:00
|
|
|
#else
|
|
|
|
int pipe(int *pfds, unsigned psize, int textmode);
|
|
|
|
#endif
|
|
|
|
|
2014-08-28 18:53:05 +00:00
|
|
|
FILE *fopen(const char *filename, const char *mode);
|
2014-05-18 18:09:37 +00:00
|
|
|
int fclose(FILE *stream);
|
2015-03-19 14:39:24 +00:00
|
|
|
int (fileno)(FILE *stream);
|
2014-05-15 14:45:44 +00:00
|
|
|
} // namespace test
|
|
|
|
|
2014-05-18 18:09:37 +00:00
|
|
|
#define FMT_SYSTEM(call) test::call
|
2014-05-15 15:58:10 +00:00
|
|
|
|
2014-05-15 14:45:44 +00:00
|
|
|
#endif // FMT_POSIX_TEST_H
|