[완료]text file 을 읽어 오는 기법 문의드립니다.

poplinux의 이미지

길이를 알 수 없는 txt file 이 있습니다.

지금까지는 다음과 같은 방식으로 읽었는데 아무래도 이렇게 하는건 아닌듯 합니다.

  char buf[8192];
 
  fread(msgBuf, sizeof(char), 8192, FD);

그래서 다음과 같은 형태로 변형하고자 합니다.

  char *buf;
  char tmp[128];
  int ret;
  int count;
 
  count = 0;
 
  while
  {
      ret = 읽어 오는 함수(tmp....);
 
     count += ret;
      realloc(buf, count);
 
      strcat(buf, tmp);
 }

이런식으로 변경하려고 합니다.

"읽어 오는 함수()" 를 선정해야 하는데, 자기가 읽어온 갯수만큼을 리턴해 주는 함수를 어떤걸로 써야 할지 잘 모르겠습니다.

추천 부탁드려요.

익명 사용자의 이미지

왜 아니라고 생각하시는지 이상하군요?

poplinux의 이미지

읽어올 파일 길이가 변하기 때문입니다.

========================
조직 : E.L.D(Embedded Linux Developer/Designer)
블로그 : poplinux@tistory.com
카페 : cafe.naver.com/poplinux

임베디드 리눅스 관련 프리렌서 지향

peecky의 이미지

fread() 함수의 리턴값으로 파일을 얼마나 읽어왔는지 알 수 있습니다.
http://www.cplusplus.com/reference/clibrary/cstdio/fread.html

M.W.Park의 이미지

poplinux 님이 생각하시는 방법으로 하면 큰 파일의 경우 메모리 관련 부분(realloc/malloc)에서 문제가 생길 수도 있습니다.
입력 파일의 크기나 시스템 환경/상황에 따라 돌다 안돌다 하는 난처한 문제가 생길 확률이 높습니다.

일정크기의 버퍼를 잡아서 읽기를 n번 반복하는 것이 무난한 방법입니다.

ps. 거의 오류가 생길 소지가 없는 작은 파일을 처리할 때는 파일 크기만큼 한번에 malloc으로 처리하는 것이 더 간단할 수도 있습니다.

-----
오늘 나의 취미는 끝없는, 끝없는 인내다. 1973 法頂

-----
오늘 의 취미는 끝없는, 끝없는 인내다. 1973 法頂

kihlle의 이미지

1. 크기를 알수없다는 전제는 이해하기 힘들군요.

stat()으로 얻은 st_size만큼 mmap()하시는 것이 정답입니다.

2. 정말로 크기를 알수없다면 (기타 character device 등)

너무 크지만 않다면, 예측가능한 최대크기의 정적버퍼를 사용하세요.

3. 크기를 알수없으며 전체입력을 모두 메모리에 넣고 작업을 돌릴 필요가 없다면

Circular buffer를 구현하시는 것이 좋을 것입니다.

homeless

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.