linux 记录

1.IO


O_WRONLY|O_CREAT|O_TRUNC
int open(const char *name,int flags);
int open(const char *name,int flags,mode_t mode);
creat()
int fd;
fd=creat(file,0644)


#include <unistd.h>
ssize_t read(int fd,void *buf,size_t len);

非阻挡式读取操作

read() 的调用在尚无数据可用时受到阻挡,让调用立即返回,指出尚无数据可用这成为非阻挡式I/O

ssize_t 类型是int 有符号 返回值为-1


#include <unistd.h>
ssize_t write (int fd,const void *buf,size_t count)

EINTR
EAGAIN
ENIVAL 指定的文件描述符被映射到一个不允许写入操作的对象
#include <unistd.h>
int fsync(int fd);
EBADF 所指定文件描述符无效或者未打开以备写入
sync()

O_SYNC 会让写入操作的用户时间和内核时间略微变差

int close(int fd);

#include <sys/types.h>
#include <unistd.h>
off_t lseek(int fd,off_t pos,int origin)
origin  SEEK_CUR SEEK_END SEEK_SET 


linux 提供read() 和 write()的变体
pread(int fd,void *buf,size_t count,off_t pos);
pwrite(int fd,void *buf,size_t count,off_t pos);
截短文件的系统调用
#include <unistd.h>
#include <sys/types.h>
int ftruncate(int fd,off_t len);
int truncate(const char*path,off_t len);

linux 提供了三种多任务IO解决方案  多任务IO让一个应用程序可以同时服务多个文件描述符,以及在其中有任何一个就绪都可以读取或者写入时收到通知而不会受到阻拦
select poll epoll
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
int select (int n,fd_set *readfds,fd_set *writefds,fd_set *exceptfds,struct timeval *timeout)

poll() 系统调用 解决了select()的若干缺点
#include <sys/poll.h>
int poll(struct pollfd *fds,unsigned int nfds,int timeout);
struct pollfd{
    int fd;
    short events;
    short revents;
};

VFS 单一系统调用可以读区任何存储媒介上的任何操作系统 当一个应用程序进行read()系统调用时,C链接库所提供的系统定义在编译时会被转换为适当的trap
语句。当一个用户空间进程陷入内核后,控制权会通过系统调用处理程序交给read()系统调用,于是内核可以找出支持所指定的文件描述符的是何种对象。然后内核会调用与
背后对象相应的读取函数。对文件系统而言,此函数是文件系统程序代码的一部分,它会左它该做的事情并且将数据返回给用户空间的read()调用。于是会从系统调用程序返回,
而系统调用处理程序会将数据复制回用户空间,接着从用户空间的read()系统调用返回,然后进程会继续执行


#inlcude <stdio.h>
FILE *fopen(const char *path,const char *mode)
int fgetc (FILE *stream)
int ungetc(int c,FILE *stream)
char *fgets (char *str,int size,FILE *stream)
int fputc(int c,FILE *stream)
int fputs(const char *str,FILE *stream)
size_t fwrite(void *buf,sizez_t size,size_t nr,FILE *stream);
int fseek(FILE *stream,long offset,int whence);
rewind(stream)  = fseek(stream,0,SEEK_SET)



 

你可能感兴趣的:(linux,职场,I/O,休闲)