fmt/test/posix-mock.h

70 lines
1.4 KiB
C
Raw Normal View History

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>
#include <stdio.h>
2014-05-15 14:45:44 +00:00
2015-05-06 14:29:58 +00:00
#ifdef _WIN32
# include <windows.h>
2015-06-24 14:59:19 +00:00
#else
# include <sys/param.h> // for FreeBSD version
2015-06-24 14:59:19 +00:00
# include <sys/types.h> // for ssize_t
#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
// 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);
int fstat(int fd, struct stat *buf);
2014-05-15 14:45:44 +00:00
#else
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
DWORD GetFileSize(HANDLE hFile, LPDWORD lpFileSizeHigh);
2014-05-15 14:45:44 +00:00
#endif
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
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 14:45:44 +00:00
#endif // FMT_POSIX_TEST_H