您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)實(shí)現(xiàn)的dup2( )函數(shù)的源碼怎么寫(xiě),文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
原 dup2()函數(shù):
#include <unistd.h> int dup2( int fd, int fd2 );
對(duì)于 dup2,可以用 fd2 參數(shù)指定新描述符的值。如果 fd2 已經(jīng)打開(kāi),則先將其關(guān)閉。如若 fd 等于 fd2,則 dup2 返回 fd2,而不關(guān)閉它。否則,fd2 的 FD_CLOEXEC 文件描述符標(biāo)志就被清除,這樣 fd2 在進(jìn)程調(diào)用 exec 時(shí)是打開(kāi)狀態(tài)。該函數(shù)返回的新文件描述符與參數(shù) fd 共享同一個(gè)文件表項(xiàng)。
下面是自己實(shí)現(xiàn)的 dup2函數(shù):
#include <unistd.h> #include <string.h> #include <stdio.h> #include <stdlib.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <errno.h> //檢查文件描述符是否有效 int isFileDescriptor( int fd ) { struct stat st; if( (-1 == fstat(fd,&st)) && (EBADF == errno) ) return -1; return 0; } int my_dup2( int oldfd, int newfd ) { int tempfd; int fd_count; int fdarray[newfd]; int res; if( -1 == isFileDescriptor( oldfd ) ) { printf("the file descriptor is invalid.\n"); return -1; } //如果newfd等于oldfd,則直接返回newfd,而不關(guān)閉它 if( oldfd == newfd ) return newfd; //否則,關(guān)閉newfd if( 0 == isFileDescriptor( newfd ) ) { res = close( newfd ); if( -1 == res ) { perror("close file descriptor failed"); return -1; } } //復(fù)制文件描述符 for( fd_count=0; fd_count<newfd; fd_count++ ) fdarray[fd_count] = 0; for( fd_count=0; fd_count<newfd; fd_count++ ) { tempfd = dup( oldfd ); if( -1 == tempfd ) return -1; if( tempfd == newfd ) break; else fdarray[fd_count] = 1; } //關(guān)閉之前尋找指定描述符時(shí)打開(kāi)的描述符 for( fd_count=0; fd_count<newfd; fd_count++ ) { if( 1 == fdarray[fd_count] ) { res = close( fd_count ); if( -1 ==res ) { perror("close file descriptor failed"); return -1; } } } return tempfd; } //測(cè)試代碼 int main() { int fd; int testfd; int res; char *buffer = (char *)malloc(sizeof(char)*32); fd = open("/tmp/dup2test1.txt", O_RDWR | O_CREAT, 0666); if( -1 == fd ) { perror("file open failed"); exit( EXIT_SUCCESS ); } testfd = my_dup2( fd, 5 ); res = write( testfd, "Hey man!", strlen("Hey man!") ); //通過(guò)復(fù)制得到的文件描述符 testfd 寫(xiě)數(shù)據(jù) if( -1 == res ) { perror("write to testfd failed"); exit( EXIT_FAILURE ); } printf("write to testfd %d successfully\n", testfd); memset( buffer, '\0', 32 ); lseek( testfd, 0, SEEK_SET ); res = read( fd, buffer, 30 ); //通過(guò)初始的文件描述符 fd 讀取數(shù)據(jù) if( -1 == res ) { perror("read from testfd failed"); exit( EXIT_FAILURE ); } printf("read from initial fd %d is: %s\n", fd, buffer ); exit( EXIT_SUCCESS ); }
程序運(yùn)行結(jié)果:
[zhang@localhost APUE]$ ./my_dup2
write to testfd 5 successfully
read from initial fd 3 is: Hey man!
測(cè)試通過(guò)。
關(guān)于實(shí)現(xiàn)的dup2( )函數(shù)的源碼怎么寫(xiě)就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。