1. POSIX
POSIX 表示可移植操作系统接口(Portable Operating System Interface ,缩写为 POSIX ),POSIX 标准定义了操作系统应该为应用程序提供的接口标准,是 IEEE 为要在各种 UNIX 操作系统上运行的软件而定义的一系列 API 标准的总称,其正式称呼为 IEEE 1003,而国际标准名称为ISO/IEC 9945。
2. unistd.h 概述
unistd.h 是 C/C++ 程序设计语言中提供对 POSIX 操作系统 API 的访问功能的头文件的名称。该头文件由 POSIX.1 标准(单一UNIX规范的基础)提出,故所有遵循该标准的操作系统和编译器均应提供该头文件(如 Unix 的所有官方版本,包括 Mac OS X、Linux 等)。
对于类 Unix 系统,unistd.h 中所定义的接口通常都是大量针对系统调用的封装(英语:wrapper functions),如 fork、pipe 以及各种 I/O 原语(read、write、close 等等)。
3. 常见 api
3.0 常量
// 文件描述符,file descriptor
#define STDIN_FILENO 0 /* Standard input. */
#define STDOUT_FILENO 1 /* Standard output. */
#define STDERR_FILENO 2 /* Standard error output. */
3.1 getcwd:获取当前工作目录
char *getcwd(char *buf, size_t size);
char buf[80] = {0};
getcwd(buf, sizeof(buf));
3.2 read/write
ssize_t read (int __fd, void *__buf, size_t __nbytes);
ssize_t write (int __fd, const void *__buf, size_t __n);
read 函数返回读取的字节数,
- (1)到达文件的尾端,返回 0,程序停止执行
- (2)如果发生读错误,返回 -1;
#define BUFSIZE 4096
int n;
char buf[BUFSIZE];
while ((n = read(STDIN_FILENO, buf, BUFSIZE)) > 0){
if (write(STDOUT_FILENO, buf, n) != n)
...
}