1. ホーム
  2. c++

[解決済み] Windows (Visual C)用のunistd.hに代わるものはありますか?

2022-02-21 04:10:12

質問

Unix 用に書かれた比較的簡単なコンソールプログラムを Windows プラットフォームに移植しているところです ( ビジュアルC++ 8.0 ). すべてのソースファイルに "unistd.h" が含まれていますが、これは存在しません。 これを削除すると、'srandom', 'random', 'getopt' のプロトタイプを間違えたという苦情が来ます。 ランダム関数を置き換えることができることは分かっていますし、getoptの実装を見つける/ハックアップすることができると確信しています。

しかし、他の人も同じ課題にぶつかっているはずです。 私の質問は、Windowsへの"unistd.h"の移植はあるのでしょうか?少なくとも、Windowsネイティブの実装を持つ関数を含むもので、パイプや分岐は必要ありません。

EDIT :

私は、私が必要とするもののための置換を含む非常に自身の "unistd.h" を作成することができることを知っています - 特にこの場合、それは限られたセットであるので。しかし、これはよくある問題のようなので、誰かが機能のより大きなサブセットに対して既に作業を行ったことがあるのかと思っていました。

他のコンパイラや環境に切り替えることは仕事ではできないので、Visual Studioで我慢しています。

どうすればいい?

インターネット上でバージョンを見つけることができないので、ここで始めてみましょう。
Windowsへの移植のほとんどは、おそらく完全なUnixファイルのサブセットを必要とするだけでしょう。
これが出発点です。必要に応じて定義を追加してください。

#ifndef _UNISTD_H
#define _UNISTD_H    1

/* This is intended as a drop-in replacement for unistd.h on Windows.
 * Please add functionality as neeeded.
 * https://stackoverflow.com/a/826027/1202830
 */

#include <stdlib.h>
#include <io.h>
#include <getopt.h> /* getopt at: https://gist.github.com/ashelly/7776712 */
#include <process.h> /* for getpid() and the exec..() family */
#include <direct.h> /* for _getcwd() and _chdir() */

#define srandom srand
#define random rand

/* Values for the second argument to access.
   These may be OR'd together.  */
#define R_OK    4       /* Test for read permission.  */
#define W_OK    2       /* Test for write permission.  */
//#define   X_OK    1       /* execute permission - unsupported in windows*/
#define F_OK    0       /* Test for existence.  */

#define access _access
#define dup2 _dup2
#define execve _execve
#define ftruncate _chsize
#define unlink _unlink
#define fileno _fileno
#define getcwd _getcwd
#define chdir _chdir
#define isatty _isatty
#define lseek _lseek
/* read, write, and close are NOT being #defined here, because while there are file handle specific versions for Windows, they probably don't work for sockets. You need to look at your app and consider whether to call e.g. closesocket(). */

#ifdef _WIN64
#define ssize_t __int64
#else
#define ssize_t long
#endif

#define STDIN_FILENO 0
#define STDOUT_FILENO 1
#define STDERR_FILENO 2
/* should be in some equivalent to <sys/types.h> */
typedef __int8            int8_t;
typedef __int16           int16_t; 
typedef __int32           int32_t;
typedef __int64           int64_t;
typedef unsigned __int8   uint8_t;
typedef unsigned __int16  uint16_t;
typedef unsigned __int32  uint32_t;
typedef unsigned __int64  uint64_t;

#endif /* unistd.h  */