[UNIX 시스템 프로그래밍 second Edition - KEITH HAVILAND저] 연습문제 풀이입니다.


(저작권에 저촉 될 우려가 있어 문제 내용은 생략합니다.)


연습문제 2.15 입니다.

먼저 받아오는 인수를 for문을 이용해서 처리합니다.

각각의 인수를 파일 이름으로 보고 open함수를 통해 파일을 open 합니다.

open한 파일은 read 함수로 읽어들이고 write함수로 출력하는 과정을 반복합니다.

만약, 받아오는 인수가 없다면 표준 입력으로 파일 이름을 받아와 출력합니다.


코드는 C++로 작성하였습니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
 
#define SIZE 512
 
int main(int argc, char* argv[]) {
    ssize_t nread;
    int fd;
    int i;
    char buf[SIZE];
    if(argc > 1) {
        for(i=1; i<argc; i++) {
            if ((fd = open(argv[i], O_RDWR)) == -1) {
                printf("file can not open TT \n");
                return (-1);
            }
            while((nread = read(fd, buf, SIZE)) > 0) {
                write(1,buf,nread);                        
            }
            close(fd);
        }    
    }
    else {
        nread = read(0, buf, SIZE);
        write(1, buf, nread);
    }
    
        exit(0);
}
 



[UNIX 시스템 프로그래밍 second Edition - KEITH HAVILAND저] 연습문제 풀이입니다.


(저작권에 저촉 될 우려가 있어 문제 내용은 생략합니다.)


연습문제 2.14입니다.

두 번째 인수에서 r, w, rw, a 문자(열)만 체크해서 그에 따른 적절한 처리를 해 주면 됩니다.

문자를 하나씩 받아오면 예외 처리 할 부분이 많아져 string으로 받아와 strcmp 함수를 통해 적절히 처리하였습니다.


코드는 C++로 작성하였습니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
 
int fileopen(char* filename, char* filetype) {
    int filedes;
    printf("%s\n",filetype);
    if(!strcmp(filetype,"r"))
        filedes = open(filename, O_RDONLY);
    else if(!strcmp(filetype,"rw"))
        filedes = open(filename, O_RDWR);
    else if(!strcmp(filetype,"w"))
        filedes = open(filename, O_WRONLY);
    else if(!strcmp(filetype,"a"))
        filedes = open(filename, O_WRONLY | O_APPEND);
    else {
        printf("cannot find filetype\n");
        filedes = -1;
        return (-1);
    }
    printf("ok\n");
    return filedes;
}
 
int main(int argc, char* argv[]) {
    int filedes = fileopen(argv[1], argv[2]);
    printf("file discripter is %d\n",filedes);
    return 0;
}



[UNIX 시스템 프로그래밍 second Edition - KEITH HAVILAND저] 연습문제 풀이입니다.


(저작권에 저촉 될 우려가 있어 문제 내용은 생략합니다.)


연습문제 2.7입니다.

파일 복사를 위해 한 파일을 모두 읽어들여 새로 만든 파일에 내용을 모두 덮어쓰는 방식으로 진행했습니다.

오류 처리 외에는 특별히 신경 쓸 부분이 없습니다.


코드는 C++로 작성하였습니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <unistd.h>
#include <fcntl.h>
 
#define BUFSIZE 512
#define PERM 0644
 
int mycp (const char* name1, const char* name2) {
    int infile, outfile;
    ssize_t nread;
    char buffer[BUFSIZE];
    
    if((infile = open(name1, O_RDONLY)) == -1)
        return (-1);
 
    if((outfile = open(name2, O_WRONLY|O_CREAT|O_TRUNC, PERM)) == -1) {
        close(infile);
        return (-2);
    }
    
    while((nread = read(infile, buffer, BUFSIZE)) > 0) {
        if(write(outfile, buffer, nread) < BUFSIZE) {
            close(infile);
                close(outfile);
            return (-3);
        }
    }
    
    close(infile);
    close(outfile);
    
    if(nread == -1)
        return (-4);
    else
        return (0);
        return 0;
}
 
int main(int argc, char* argv[]) {
    mycp(argv[1],argv[2]);
    return 0;
}
 
cs


[UNIX 시스템 프로그래밍 second Edition - KEITH HAVILAND저] 연습문제 풀이입니다.


(저작권에 저촉 될 우려가 있어 문제 내용은 생략합니다.)


연습문제 2.5입니다.

먼저 open함수를 이용해 파일을 열고, read함수를 이용해 파일을 읽어 들입니다.

이때 read의 BUFSIZE가 1이기 때문에 한 문자씩 읽어오게 됩니다.

이를 통해 구분자를 읽어 오면 단어와 줄의 수를 출력해주기 위해 적절히 처리하고, 문자를 읽어오면 다음 문자를 확인합니다.

이와 같은 과정을 반복하여 파일 내의 모든 문자를 읽어 들인다면 결과를 출력하고 프로그램을 종료합니다.


코드는 C++로 작성하였습니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>
 
#define BUFSIZE 1
 
int main(int argc, char* argv[]) {
    char* buffer;
    int filedes;
    ssize_t nread;
    long total = 0;
    long line = 0;
    long check = 0;
    if((filedes = open(argv[1], O_RDONLY)) == -1) {
        printf("error in opening file\n");
        exit(1);
    }
    while((nread = read(filedes, buffer, BUFSIZE)) > 0) {
    if(buffer[0== '\t') {
        total++;
        if(check == 1)
            total--;        
        check = 1;
    }
    else if (buffer[0== '\n') {
        total++;
        line++;
        if(check == 1)
            total--;
        check = 1;        
    }
    else if (buffer[0== ' ') {
        total++;
        if(check == 1)
            total--;
        check = 1;
        }
    else
        check = 0;
    }
 
    printf("total chars in file: %ld\nline in file: %ld\n", total, line);
    exit(0);
}
 



[UNIX 시스템 프로그래밍 second Edition - KEITH HAVILAND저] 연습문제 풀이입니다.


(저작권에 저촉 될 우려가 있어 문제 내용은 생략합니다.)


연습문제 2.1입니다.

간단한 문제로 따로 설명은 필요하지 않을 듯 합니다.


코드는 C++로 작성하였습니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdlib.h>
#include <fcntl.h>
#include <stdio.h>
 
char *workfile="junk";
 
int main() {
    int filedes;
 
    if((filedes = open(workfile, O_RDWR)) == -1)
    {
        printf("Couldn't open %s\n", workfile);
        exit(1);
    }
    exit(0);
}