系統(tǒng)編程(1)

cpu:PC AR
open()
create()
O_RDONLY:只讀方式打開文件
O_WRONLY:只寫方式打開文件
O_RDWR:讀寫方式打開文件
O_APPEND
O_CREAT
O_DIRECTORY
O_EXCL

  • 一個簡單的文件copy的程序:
#include<stdio.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<fcntl.h>
#include<unistd.h>

#define BUFFER_SIZE 100

int main(int argc,char *argv[])
{
    if(argc != 3)
    {
        printf("usage:%s<src_file> <dst_file>\n",argv[0]);
        return 1;
    }   
    
    int src_fd = 0;
    int dst_fd = 0;
    int n = 0;
    char buf[BUFFER_SIZE] = {"\0"};
    char *src_file = argv[1];
    char *dst_file = argv[2];
    char cover_dir = '\0';
    char cover_filename[BUFFER_SIZE] = {'\0'};
    
    if(access(dst_file,F_OK) == 0)
    {
        printf("directorie is exist!!,,Do you want to cover, y or n:");
        scanf("%c",&cover_dir);
        switch(cover_dir)
        {
            case 'y':
            case 'Y':
                {
                    //dst_fd = open(dst_file,O_WRONLY | O_TRUNC,S_IRUSR | S_IWUSR);
                    if((dst_fd = open(dst_file,O_WRONLY | O_TRUNC)) == -1)
                    {
                        perror("open dst error");
                        return -1;
                    }
                }
                break;
            case 'n':
            case 'N':
                {
                    printf("Please resume load of filename:");
                    getchar();
                    scanf("%s",cover_filename);
                    if((dst_fd = open(cover_filename,O_WRONLY | O_TRUNC | O_CREAT,S_IRUSR | S_IWUSR)) == -1)
                    {
                        perror("open dst error\n");
                        return -1;
                    }   
                    break;                  
                }
                break;
            default:
                    printf("Please input again!!!\n");
                    return -1;
        }
    }
    else{
        if((dst_fd = open(dst_file,O_WRONLY | O_TRUNC | O_CREAT,S_IRUSR | S_IWUSR)) == -1)
        {
                            perror("open dst error");
                            return -1;
        }
    }
    if((src_fd = open(src_file,O_RDONLY)) == -1)
    {
        perror("open src error");
        return -1;
    }
    
    while((n = read(src_fd,buf,BUFFER_SIZE)) > 0)
    {
        write(dst_fd,buf,n);
    }
    
    close(src_fd);
    close(dst_fd);
    
    //1.open

    //2.1 read data form src_file
    //2.2 write data to dst_file
    
    //3.close       
    return 0;
}

簡單模仿一個shell的ls命令

#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include <pwd.h>
#include <time.h>
#include <grp.h>

int main(int argc, char *argv[])
{
    if(argc != 2)
    {
        printf("usage : %s <filename>\n", argv[0]);
        return 1;
    }
    
    struct stat file_stat;
    struct passwd *pw = NULL;
    struct group *grp = NULL;

    memset(&file_stat, 0, sizeof(file_stat));
    
    if(stat(argv[1], &file_stat) == -1)
    {
        perror("stat error");
        return 1;
    }
    
    // 打印文件類型和權(quán)限信息
    // 思路:通過預(yù)定義的宏函數(shù)分析st_mode的值
    if(S_ISREG(file_stat.st_mode))
        printf("-");
    if(S_ISDIR(file_stat.st_mode))
        printf("d");
    if(S_ISCHR(file_stat.st_mode))
        printf("c");
    // ...
    if(file_stat.st_mode & S_IRUSR)
        printf("r");
    else
        printf("-");
    if(file_stat.st_mode & S_IWUSR)
        printf("w");
    else
        printf("-");
    if(file_stat.st_mode & S_IXUSR)
        printf("x"); 
    else
        printf("-");
    
    // 打印硬鏈接數(shù)目
    printf("%d\t", file_stat.st_nlink);
    
    // 通過文件所有者ID獲取文件所有者名稱
    pw = getpwuid(file_stat.st_uid);
    printf("%s\t", pw->pw_name);
    
    // 通過文件所屬組ID獲取文件所屬組名稱
    grp = getgrgid(file_stat.st_gid);
    printf("%s\t", grp->gr_name);
    
    // 打印文件大小
    printf("%d\t", file_stat.st_size);
    
    // 打印文件的最后修改時間
    printf("%s\t", ctime(&(file_stat.st_mtime)));
    
    printf("\n");

    return 0;
}

fork通過copy的方式創(chuàng)建一個進程沿盅,父進程和子進程同事存在坎缭,子進程會執(zhí)行父進程中的內(nèi)容,執(zhí)行時不分先后順序滥玷。需要判讀其返回值來判斷來區(qū)分函數(shù)的字符進程。炉爆。exec系列函數(shù)創(chuàng)建進程的時候具有替代進程的屬性铝耻,參數(shù)有path路徑和 envo路徑尋找的方式

#include<stdio.h>
#include<sys/types.h>
#include<unistd.h>
#include<string.h>
#include<sys/stat.h>
#include<pwd.h>
#include <grp.h>

#define DEBUG_MODE 1

#define COM_MAX_LEN 128

int main(int argc,char *argv[])
{
    pid_t pid = 0;
    char command[COM_MAX_LEN] = {'\0'};
    int status = 0;
    char *delim = " ";
    char *str_command[2];
    struct passwd *pw = NULL;
    struct stat file_stat;
    
    memset(&file_stat, 0, sizeof(file_stat));
    
    while(1)
    {
        // 通過文件所有者ID獲取文件所有者名稱
        pw = getpwuid(file_stat.st_uid);
        printf("%s>", pw->pw_name);
        
        //printf(">>>>>>>>>");
        //uid_t     st_uid;     /* user ID of owner */

        
        fgets(command,COM_MAX_LEN,stdin);
        command[strlen(command)-1] = '\0';
        
        if(strcmp(command,".exit") == 0)
            return 0;
        
        str_command[0] = strtok(command,delim);
        str_command[1] = strtok(NULL,delim);
        //strcpy(str_command[],p);
    
        if((pid = fork()) == 0)
        {
        
            
            printf("in child peocess :%d\n",getpid());
            //利用exec函數(shù)將該子進程的執(zhí)行指令替換
            execlp(str_command[0],str_command[0],str_command[1],NULL);
            //在path路勁中收索執(zhí)行l(wèi)s命令
            //2.在path路勁中搜索執(zhí)行l(wèi)s -l /命令
            //execlp("ls","ls","-l",NULL);
            return 0;
            
        }
        //防止僵尸進程的產(chǎn)生
        pid = wait(&status);
#if DEBUG_MODE
        printf("in parent process child %d process exit code: \n",pid);
#endif  
    
    }
    return 0;
}

//練習(xí):
//參考上述代碼,完成自己的shell命令解釋器
//基本功能1:能夠輸入并執(zhí)行普通的不帶選項和參數(shù)的shell命令
//基本功能2:shell命令解釋器具備不同的

  • 模仿shell的命令解釋器:
#include<stdio.h>
#include<sys/types.h>
#include<unistd.h>
#include<string.h>
#include<sys/stat.h>
#include<pwd.h>
#include <grp.h>

#define DEBUG_MODE 1

#define COM_MAX_LEN 128

int main(int argc,char *argv[])
{
    pid_t pid = 0;
    char command[COM_MAX_LEN] = {'\0'};
    int status = 0;
    char *delim = " ";
    char *str_command[2];
    struct passwd *pw = NULL;
    struct stat file_stat;
    
    memset(&file_stat, 0, sizeof(file_stat));
    
    while(1)
    {
        // 通過文件所有者ID獲取文件所有者名稱
        pw = getpwuid(file_stat.st_uid);
        printf("%s>", pw->pw_name);
        
        //printf(">>>>>>>>>");
        //uid_t     st_uid;     /* user ID of owner */

        
        fgets(command,COM_MAX_LEN,stdin);
        command[strlen(command)-1] = '\0';
        
        if(strcmp(command,".exit") == 0)
            return 0;
        
        str_command[0] = strtok(command,delim);
        str_command[1] = strtok(NULL,delim);
        //strcpy(str_command[],p);
    
        if((pid = fork()) == 0)
        {
        
            
            printf("in child peocess :%d\n",getpid());
            //利用exec函數(shù)將該子進程的執(zhí)行指令替換
            execlp(str_command[0],str_command[0],str_command[1],NULL);
            //在path路勁中收索執(zhí)行l(wèi)s命令
            //2.在path路勁中搜索執(zhí)行l(wèi)s -l /命令
            //execlp("ls","ls","-l",NULL);
            return 0;
            
        }
        //防止僵尸進程的產(chǎn)生
        pid = wait(&status);
#if DEBUG_MODE
        printf("in parent process child %d process exit code: \n",pid);
#endif  
    
    }
    return 0;
}

進程的5種狀態(tài)贞远,創(chuàng)建畴博、等待、run蓝仲、關(guān)閉俱病、阻塞。袱结。

信號在只能在進程的間傳遞信號亮隙,起到激發(fā)的作用,不能傳遞信息垢夹。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末溢吻,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子果元,更是在濱河造成了極大的恐慌促王,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,290評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件噪漾,死亡現(xiàn)場離奇詭異硼砰,居然都是意外死亡,警方通過查閱死者的電腦和手機欣硼,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評論 2 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來恶阴,“玉大人诈胜,你說我怎么就攤上這事》胧拢” “怎么了焦匈?”我有些...
    開封第一講書人閱讀 156,872評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長昵仅。 經(jīng)常有香客問我缓熟,道長累魔,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,415評論 1 283
  • 正文 為了忘掉前任够滑,我火速辦了婚禮垦写,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘彰触。我一直安慰自己梯投,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,453評論 6 385
  • 文/花漫 我一把揭開白布况毅。 她就那樣靜靜地躺著分蓖,像睡著了一般。 火紅的嫁衣襯著肌膚如雪尔许。 梳的紋絲不亂的頭發(fā)上么鹤,一...
    開封第一講書人閱讀 49,784評論 1 290
  • 那天,我揣著相機與錄音味廊,去河邊找鬼医窿。 笑死,一個胖子當(dāng)著我的面吹牛爽蝴,可吹牛的內(nèi)容都是我干的春宣。 我是一名探鬼主播,決...
    沈念sama閱讀 38,927評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼衙熔,長吁一口氣:“原來是場噩夢啊……” “哼登颓!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起红氯,我...
    開封第一講書人閱讀 37,691評論 0 266
  • 序言:老撾萬榮一對情侶失蹤框咙,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后痢甘,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體喇嘱,經(jīng)...
    沈念sama閱讀 44,137評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,472評論 2 326
  • 正文 我和宋清朗相戀三年塞栅,在試婚紗的時候發(fā)現(xiàn)自己被綠了者铜。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,622評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡放椰,死狀恐怖作烟,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情砾医,我是刑警寧澤拿撩,帶...
    沈念sama閱讀 34,289評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站如蚜,受9級特大地震影響压恒,放射性物質(zhì)發(fā)生泄漏影暴。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,887評論 3 312
  • 文/蒙蒙 一探赫、第九天 我趴在偏房一處隱蔽的房頂上張望型宙。 院中可真熱鬧,春花似錦期吓、人聲如沸早歇。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽箭跳。三九已至,卻和暖如春潭千,著一層夾襖步出監(jiān)牢的瞬間谱姓,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工刨晴, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留屉来,地道東北人。 一個月前我還...
    沈念sama閱讀 46,316評論 2 360
  • 正文 我出身青樓狈癞,卻偏偏與公主長得像茄靠,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子蝶桶,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,490評論 2 348

推薦閱讀更多精彩內(nèi)容

  • 1.進程 1.1多線程的引入 現(xiàn)實生活中 有很多的場景中的事情是同時進行的慨绳,比如開車的時候手和腳共同來駕駛汽車,再...
    TENG書閱讀 497評論 0 0
  • Ubuntu的發(fā)音 Ubuntu战秋,源于非洲祖魯人和科薩人的語言,發(fā)作 oo-boon-too 的音讨韭。了解發(fā)音是有意...
    螢火蟲de夢閱讀 99,201評論 9 467
  • linux資料總章2.1 1.0寫的不好抱歉 但是2.0已經(jīng)改了很多 但是錯誤還是無法避免 以后資料會慢慢更新 大...
    數(shù)據(jù)革命閱讀 12,146評論 2 34
  • Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見模式的工具(例如配置管理脂信,服務(wù)發(fā)現(xiàn),斷路器透硝,智...
    卡卡羅2017閱讀 134,629評論 18 139
  • 二十一 尋愛吉嚣、 若干年后…… 至從藍放棄了緣海的求婚后,生活似乎又恢復(fù)了往日的平靜蹬铺,這二個人都忙著各自的事情。 …...
    易寫發(fā)閱讀 346評論 0 1