2012-02-03 07:05:11 +00:00
|
|
|
/*
|
|
|
|
* unicode/utf-8 I/O helpers and wrappers for Windows
|
|
|
|
*
|
|
|
|
* This file is part of mplayer2.
|
|
|
|
*
|
|
|
|
* mplayer2 is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* mplayer2 is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with mplayer2. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MPLAYER_OSDEP_IO
|
|
|
|
#define MPLAYER_OSDEP_IO
|
|
|
|
|
2014-02-13 07:18:58 +00:00
|
|
|
#include "config.h"
|
2013-11-30 21:40:51 +00:00
|
|
|
#include <stdbool.h>
|
2012-02-03 07:05:11 +00:00
|
|
|
#include <limits.h>
|
2013-11-30 21:40:51 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2014-02-13 07:18:58 +00:00
|
|
|
#if HAVE_GLOB
|
|
|
|
#include <glob.h>
|
|
|
|
#endif
|
|
|
|
|
2013-12-18 16:12:16 +00:00
|
|
|
#ifndef O_BINARY
|
|
|
|
#define O_BINARY 0
|
|
|
|
#endif
|
|
|
|
|
2013-11-30 21:40:51 +00:00
|
|
|
// This is in POSIX.1-2008, but support outside of Linux is scarce.
|
|
|
|
#ifndef O_CLOEXEC
|
|
|
|
#define O_CLOEXEC 0
|
|
|
|
#endif
|
2014-04-12 18:13:07 +00:00
|
|
|
#ifndef FD_CLOEXEC
|
|
|
|
#define FD_CLOEXEC 0
|
|
|
|
#endif
|
2013-11-30 21:40:51 +00:00
|
|
|
|
|
|
|
bool mp_set_cloexec(int fd);
|
2014-05-29 21:56:56 +00:00
|
|
|
int mp_make_wakeup_pipe(int pipes[2]);
|
2012-02-03 07:05:11 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include <wchar.h>
|
|
|
|
wchar_t *mp_from_utf8(void *talloc_ctx, const char *s);
|
|
|
|
char *mp_to_utf8(void *talloc_ctx, const wchar_t *s);
|
|
|
|
#endif
|
|
|
|
|
2012-09-30 12:47:37 +00:00
|
|
|
#ifdef __CYGWIN__
|
|
|
|
#include <io.h>
|
|
|
|
#endif
|
|
|
|
|
2012-02-03 07:05:11 +00:00
|
|
|
#ifdef __MINGW32__
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
void mp_get_converted_argv(int *argc, char ***argv);
|
|
|
|
|
|
|
|
int mp_stat(const char *path, struct stat *buf);
|
2012-04-06 21:42:02 +00:00
|
|
|
int mp_printf(const char *format, ...);
|
2011-10-22 14:24:16 +00:00
|
|
|
int mp_fprintf(FILE *stream, const char *format, ...);
|
2012-02-03 07:05:11 +00:00
|
|
|
int mp_open(const char *filename, int oflag, ...);
|
|
|
|
int mp_creat(const char *filename, int mode);
|
|
|
|
FILE *mp_fopen(const char *filename, const char *mode);
|
|
|
|
DIR *mp_opendir(const char *path);
|
|
|
|
struct dirent *mp_readdir(DIR *dir);
|
|
|
|
int mp_closedir(DIR *dir);
|
|
|
|
int mp_mkdir(const char *path, int mode);
|
2013-09-18 15:49:10 +00:00
|
|
|
char *mp_getenv(const char *name);
|
2012-02-03 07:05:11 +00:00
|
|
|
|
2014-02-13 07:18:58 +00:00
|
|
|
typedef struct {
|
|
|
|
size_t gl_pathc;
|
|
|
|
char **gl_pathv;
|
|
|
|
size_t gl_offs;
|
|
|
|
void *ctx;
|
|
|
|
} mp_glob_t;
|
|
|
|
|
|
|
|
// glob-win.c
|
|
|
|
int mp_glob(const char *restrict pattern, int flags,
|
|
|
|
int (*errfunc)(const char*, int), mp_glob_t *restrict pglob);
|
|
|
|
void mp_globfree(mp_glob_t *pglob);
|
|
|
|
|
2013-01-13 13:46:02 +00:00
|
|
|
// NOTE: stat is not overridden with mp_stat, because MinGW-w64 defines it as
|
2012-02-03 07:05:11 +00:00
|
|
|
// macro.
|
|
|
|
|
2012-04-06 21:42:02 +00:00
|
|
|
#define printf(...) mp_printf(__VA_ARGS__)
|
2011-10-22 14:24:16 +00:00
|
|
|
#define fprintf(...) mp_fprintf(__VA_ARGS__)
|
2012-02-03 07:05:11 +00:00
|
|
|
#define open(...) mp_open(__VA_ARGS__)
|
|
|
|
#define creat(...) mp_creat(__VA_ARGS__)
|
|
|
|
#define fopen(...) mp_fopen(__VA_ARGS__)
|
|
|
|
#define opendir(...) mp_opendir(__VA_ARGS__)
|
|
|
|
#define readdir(...) mp_readdir(__VA_ARGS__)
|
|
|
|
#define closedir(...) mp_closedir(__VA_ARGS__)
|
|
|
|
#define mkdir(...) mp_mkdir(__VA_ARGS__)
|
2013-09-18 15:49:10 +00:00
|
|
|
#define getenv(...) mp_getenv(__VA_ARGS__)
|
2012-02-03 07:05:11 +00:00
|
|
|
|
2014-02-13 07:18:58 +00:00
|
|
|
#ifndef GLOB_NOMATCH
|
|
|
|
#define GLOB_NOMATCH 3
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define glob_t mp_glob_t
|
|
|
|
#define glob(...) mp_glob(__VA_ARGS__)
|
|
|
|
#define globfree(...) mp_globfree(__VA_ARGS__)
|
|
|
|
|
2012-02-03 07:05:11 +00:00
|
|
|
#else /* __MINGW32__ */
|
|
|
|
|
|
|
|
#define mp_stat(...) stat(__VA_ARGS__)
|
|
|
|
|
|
|
|
#endif /* __MINGW32__ */
|
|
|
|
|
|
|
|
#endif
|