文件I/O实践(3) --文件共享与fcntl

简介: 文件共享 一个进程打开了两个文件文件表条目(file-table-entry):   1.

文件共享


一个进程打开了两个文件

文件表条目(file-table-entry):

   1.文件状态标志(file-status-flags): 读/写/追加/同步/非阻塞等;

   2.当前文件偏移量

   3.v节点指针


//验证
int main(int argc, char *argv[])
{
    int fd1 = open("test.txt", O_RDONLY);
    if (fd1 == -1)
        err_exit("fd1 open O_RDONLY error");
    int fd2 = open("test.txt", O_RDWR);
    if (fd2 == -1)
        err_exit("fd2 open O_RDWR error");

    //读取fd1
    char buf[BUFSIZ];
    if (read(fd1, buf, 10) == -1)
        err_exit("read fd1 error");
    cout << "fd1: " << buf << endl;

    //读取fd2
    bzero(buf, 10);
    if (read(fd2, buf, 10) == -1)
        err_exit("read fd1 error");
    cout << "fd2: " << buf << endl;

    lseek(fd1, 0, SEEK_SET);
    lseek(fd2, 0, SEEK_SET);
    write(fd2, "Helloworld", 10);
    bzero(buf, 10);
    if (read(fd1, buf, 10) == -1)
        err_exit("read fd1 error");
    cout << "after fd2 write: " << buf << endl;
}


两个独立的进程打开同一个文件

复制文件描述符

 

方法有三种:

1.dup

2.dup2 

#include <unistd.h>
int dup(int oldfd);
int dup2(int oldfd, int newfd);
//示例
int main(int argc, char *argv[])
{
    int fd = open("text.txt", O_WRONLY|O_TRUNC);
    if (fd == -1)
        err_exit("open O_WRONLY error");

//    close(1);   //将标准输出关闭, 则文件描述符1将空闲
//    int dupfd = dup(fd);
    int dupfd = dup2(fd, 1);
    cout << "dupfd = " << dupfd << endl;
}
/** 示例: 实现文件拷贝
其中execlp会在后面介绍
**/
int main(int argc, char *argv[])
{
    if (argc < 3)
        err_quit("usage: ./main file-name1 file-name2");

    close(STDIN_FILENO);
    open(argv[1], O_RDONLY);
    close(STDOUT_FILENO);
    open(argv[2], O_WRONLY|O_CREAT, 0666);

    execlp("/bin/cat", "cat", NULL);
    err_exit("execlp error");
}
3.fcntl
int fcntl(int fd, F_DUPFD, ... /* arg */ );
//示例见下

fcntl

#include <unistd.h>
#include <fcntl.h>
int fcntl(int fd, int cmd, ... /* arg */ );

  操纵文件描述符, 改变已经打开的文件的属性

fcntl常用操作(cmd常用取值)

F_DUPFD (long)

复制文件描述符

 

F_GETFD (void)

F_SETFD (long)

文件描述符标志

 

F_GETFL (void)

F_SETFL (long)

文件状态标志

 

F_GETLK

F_SETLK,F_SETLKW(阻塞)

文件锁

//示例: 复制文件描述符
int main(int argc, char *argv[])
{
    int fd = open("text.txt", O_WRONLY|O_TRUNC);
    if (fd == -1)
        err_exit("open O_WRONLY error");

    close(1);   //将标准输出关闭, 则文件描述符1将空闲
    // 当cmd使用F_DUPFD时, 第三个参数代表搜索的起始位置
    int dupfd = fcntl(fd, F_DUPFD, 1);  // 1代表: 从1开始搜索一个空闲的文件描述符
    if (dupfd < 0)
        err_exit("fcntl F_DUPFD error");
    cout << "dupfd = " << dupfd << endl;
}

文件状态标志

F_GETFL (void)

 Get the file access mode and the file status flags; arg is ignored.

F_SETFL (int)

 Set the file status flags to  the  value  specified  by  arg.   File  access  mode(O_RDONLY,  O_WRONLY,  O_RDWR)  and  file  creation  flags (i.e., O_CREAT, O_EXCL, O_NOCTTY, O_TRUNC) in arg are ignored.  On Linux this command can change only  the O_APPEND, O_ASYNC, O_DIRECT, O_NOATIME, and O_NONBLOCK flags.

//示例: 给文件描述符0设置成非阻塞模式
int main(int argc, char *argv[])
{
    int flags = fcntl(0, F_GETFL, 0);
    if (flags == -1)
        err_exit("fcntl get error");
    flags |= O_NONBLOCK;
    if (fcntl(0, F_SETFL, flags) == -1)
        err_exit("fcntl set error");

    char buf[BUFSIZ];
    if (read(0, buf, sizeof(buf)) == -1)
        err_exit("read STDIN_FILENO error");
    cout << "buffer size = " << strlen(buf) << endl;
    cout << buf << endl;
}
//示例: 文件状态设置与清除(函数封装)
void set_fl(int fd, int setFlag)
{
    int flags = fcntl(fd, F_GETFL, 0);
    if (flags == -1)
        err_exit("fcntl get flags error");
    //设置状态
    flags |= setFlag;
    if (fcntl(fd, F_SETFL, flags) == -1)
        err_exit("fcntl set flags error");
}
void clr_fl(int fd, int clrFlag)
{
    int flags = fcntl(fd, F_GETFL, 0);
    if (flags == -1)
        err_exit("fcntl get flags error");
    //清除状态
    flags &= ~clrFlag;
    if (fcntl(fd, F_SETFL, flags) == -1)
        err_exit("fcntl set flags error");
}

//测试
int main(int argc, char *argv[])
{
    set_fl(0, O_NONBLOCK);
    clr_fl(0, O_NONBLOCK);
    char buf[BUFSIZ];
    if (read(0, buf, sizeof(buf)) == -1)
        err_exit("read STDIN_FILENO error");
    cout << "buffer size = " << strlen(buf) << endl;
    cout << buf << endl;
}

文件锁

F_SETLK (struct flock *)

 Acquire  a lock (when l_type is F_RDLCK or F_WRLCK) or release a lock (when l_type is F_UNLCK) on the bytes specified by the l_whence, l_start, and l_len  fields  of lock.   If a conflicting lock is held by another process, this call returns -1 and sets errno to EACCES or EAGAIN.

F_SETLKW (struct flock *) 如果加锁不成功:会一直阻塞直到解锁

 As for F_SETLK, but if a conflicting lock is held on the file, then wait for  that lock to be released.  If a signal is caught while waiting, then the call is interrupted and (after the signal  handler  has  returned)  returns  immediately  (with return value -1 and errno set to EINTR; see signal(7)).

F_GETLK (struct flock *)

 On  input  to this call, lock describes a lock we would like to place on the file.

 If the lock could be placed, fcntl() does  not  actually  place  it,  but  returns F_UNLCK  in  the l_type field of lock and leaves the other fields of the structure unchanged.  If one or more  incompatible  locks  would  prevent  this  lock  being placed,  then  fcntl()  returns  details  about  one of these locks in the l_type, l_whence, l_start, and l_len fields of lock and sets l_pid to be the  PID  of  the process holding that lock.

//文件锁结构体
struct flock
{
    ...
    short l_type;    /* Type of lock: F_RDLCK,
                                   F_WRLCK, F_UNLCK */
    short l_whence;  /* How to interpret l_start:
                                   SEEK_SET, SEEK_CUR, SEEK_END */
    off_t l_start;   /* Starting offset for lock */
    off_t l_len;     /* Number of bytes to lock */
    pid_t l_pid;     /* PID of process blocking our lock
                                   (F_GETLK only) */
    ...
};

注意: Specifying 0 for l_len has the special meaning: lock all bytes starting  at  

the  location  specified  by l_whence and l_start through to the end of file, 

no matter how large the file grows.

//示例1
int main(int argc, char *argv[])
{
    int fd = open("test.txt", O_RDWR|O_CREAT|O_TRUNC, 0666);
    if (fd == -1)
        err_exit("open file error");

    struct flock lock;
    lock.l_type = F_WRLCK;  //设定独占锁
    lock.l_whence = SEEK_SET;
    lock.l_start = 0;
    lock.l_len = 0; //锁定全部文件

    //if (fcntl(fd, F_SETLK, &lock) == 0)   //对比下面
    if (fcntl(fd, F_SETLKW, &lock) == 0)
    {
        cout << "file lock success, press any key to unlock..." << endl;
        cin.get();

        lock.l_type = F_UNLCK;
        lock.l_whence = SEEK_SET;
        lock.l_start = 0;
        lock.l_len = 0;
        if (fcntl(fd, F_SETLK, &lock) == -1)
            err_exit("file unlock error");
        else
            cout << "file unlock success" << endl;
    }
    else
        err_exit("file lock error");
}
//示例2: 打印加锁进程号
int main(int argc, char *argv[])
{
    int fd = open("test.txt", O_RDWR|O_CREAT|O_TRUNC, 0666);
    if (fd == -1)
        err_exit("open file error");

    struct flock lock;
    lock.l_type = F_WRLCK;  //设定独占锁
    lock.l_whence = SEEK_SET;
    lock.l_start = 0;
    lock.l_len = 0; //锁定全部文件

    if (fcntl(fd, F_SETLK, &lock) == 0)
    {
        cout << "file lock success, press any key to unlock..." << endl;
        cin.get();

        lock.l_type = F_UNLCK;
        lock.l_whence = SEEK_SET;
        lock.l_start = 0;
        lock.l_len = 0;
        if (fcntl(fd, F_SETLK, &lock) == -1)
            err_exit("file unlock error");
        else
            cout << "file unlock success" << endl;
    }
    else    //如果失败, 则获取锁信息
    {
        if (fcntl(fd, F_GETLK, &lock) == -1)
            err_exit("get lock error");

        cout << "lock process: " << lock.l_pid << endl;
        if (lock.l_type == F_WRLCK)
            cout << "type: F_WRLCK" << endl;
        else
            cout << "type: F_RDLCK" << endl;

        if (lock.l_whence == SEEK_SET)
            cout << "whence: SEEK_SET" << endl;
        else if (lock.l_whence == SEEK_END)
            cout << "whence: SEEK_END" << endl;
        else
            cout << "whence: SEEK_CUR" << endl;
    }
}

目录
相关文章
|
7月前
|
存储 算法 Linux
【Linux系统编程】Linux 文件系统探究:深入理解 struct dirent、DIR 和 struct stat结构
【Linux系统编程】Linux 文件系统探究:深入理解 struct dirent、DIR 和 struct stat结构
293 0
|
7月前
|
运维 应用服务中间件 网络安全
利于群晖的File Station+SFTP实现第三方人员快速获取服务器应用日志
利于群晖的File Station+SFTP实现第三方人员快速获取服务器应用日志
230 0
|
7月前
|
存储 Linux
Linux文件编程(lseek函数和stat函数)
Linux文件编程(lseek函数和stat函数)
108 0
Linux文件编程(lseek函数和stat函数)
|
7月前
|
存储 Linux C语言
Linux获取文件信息的利器stat,fstat,lstat,fstatat
stat系列函数是C语言中的一个系统调用函数,用于获取文件的信息。通过提供文件路径,它能够返回包含文件属性的结构体数据。
191 0
|
安全 Unix Linux
探索安全高效的文件传输:Linux Secure Copy Protocol (SCP)
Linux系统中的scp(secure copy)命令用于以安全方式在服务器之间复制文件。通过使用SCP命令或安全副本,可以在本地主机和远程主机之间或两个远程主机之间安全地传输文件。它使用与安全外壳(SSH)协议中相同的身份验证和安全性。SCP以其简单性,安全性和预安装的可用性而闻名。在当今数字化的时代,安全高效的文件传输对于个人和企业来说都至关重要。Linux Secure Copy Protocol (SCP) 作为一种基于SSH的文件传输工具,以其安全性、简单性和跨平台性而受到广泛欢迎。
279 0
系统编程之高级文件IO(十一)——获取设置文件属性(fcntl、ioctl)
系统编程之高级文件IO(十一)——获取设置文件属性(fcntl、ioctl)
118 0
系统编程之高级文件IO(十一)——获取设置文件属性(fcntl、ioctl)
|
Linux C++
VS远程Linux项目附加pthread
VS远程Linux项目附加pthread
179 0
VS远程Linux项目附加pthread
|
存储 Java Maven
网络抓包数据文件(.pcap/.cap)解析工具(Java实现)
pcap/.cap文件是常用的数据报存储格式文件,数据按照特定格式存储,普通编辑器无法正常打开该类型文件,使用Ultra Edit编辑器能够以16进制的格式查看数据,无法直观查看数据重要信息。需要特定的解析工具软件读取查看如WiresharkPortable或Microsoft Network Monitor等
网络抓包数据文件(.pcap/.cap)解析工具(Java实现)
|
Java Unix Linux
小师妹学JavaIO之:File文件系统
小师妹学JavaIO之:File文件系统
小师妹学JavaIO之:File文件系统
Ansible文件操作 file模块(学习笔记三)
file模块:修改文件属性、生成链接文件、创建空文件、创建空目录、删除目录文件 1、修改文件属性, ansible all -m file -a "path=/root/test.
2288 0