read()에 대한 질문입니다

ch0nn0m의 이미지

#include<stdio.h>
#include<fcntl.h>
int main()
{
        int fd;
        int str;
        char buf[20];
 
        fd=open("apple.dat", O_RDONLY);
        while(str=read(fd,buf,sizeof(buf))>0);
        {
        printf("str=%d\n",str);
        printf("buf=%s",buf);
        printf("buf의 문자열 길이=%d\n",strlen(buf));
        }
}

파일 apple.dat에는
apple
orange
banana
blueberry

이렇게 있습니다

결과는...

str=0
buf=blueberry
ge
banana
퓾@8???uf의 문자열 길이=34

이렇게 나오는 이유가 뭔지요??
str에는 성공시 수신한 바이트 수가 들어가는게 아닌지요??

klutzy의 이미지

read에는 잘못된 게 없지만, 코드의 while문이 잘못되었습니다.

while(str=read(fd,buf,sizeof(buf))>0);

str=read(...)>0에서 str에는 read(...)와 0을 비교한 TRUE/FALSE 값이 들어갑니다. 예를 들어 read(...)에서 10이 나왔다면 str = (10>0), 즉 str = 1이 대입됩니다. 정상적으로 동작하려면 (str = read(...)) > 0과 같이 대입이 먼저 일어나도록 괄호를 붙여 주어야 합니다.

while 끝의 ;도 문제가 됩니다. while(...);는 while(...){}과 같이 ... 내부의 조건문이 참일 동안 '아무 일도 하지 않는' 코드가 됩니다. 그러면 해당 코드는 read가 다 끝날 동안 아무 일도 하지 않다가 파일을 다 읽고 read에서 0을 리턴할 때 밑의 세 줄 printf가 작동하게 됩니다.

몇 가지를 더 짚어보면:

buf가 출력된 데이터를 보면 blueberry 이후에 banana가 들어가있는 것을 볼 수 있습니다. 첫번째 read에서 20바이트가 buf로 들어간 다음에 두번째 read가 불릴 때 blueberry가 그 위에 덮어씌워졌다는 의미입니다.

buf 출력의 끝에서는 쓰레기 데이터가 출력되어 있고, strlen에서는 buf의 원래 크기보다도 큰 34가 나왔습니다. read에서는 문자열 끝에 NULL을 붙여주지 않습니다.

파일에서 읽은 바이트 수를 저장하기에 int str;이라는 변수명은 그리 좋지 않을 것 같네요. nbytes나 size 등의 이름을 사용하는 편이 나중에 착각으로 인한 버그를 줄여줍니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.