이중Buffer System을 C언어로 구현중입니다..

finalkain1의 이미지

#include
#include

typedef struct _buffer{ //buffer의 구조체화
int buffer_num; //buffer는 1과 2로 나누어져있고 구분하기위한 번호
int full_flag; //버퍼가 비어있는지 차있는지 구분하기위한
int record_counter; //value[]를 몇번째 출력하는지 표기하기위한 counter
int value[10]; //input.txt 에서 입력(숫자)값을 저장하기위한 실질적인 버퍼공간
struct _buffer* next; //buffer1,2를 연결하고 있는 노드
}buffer;

buffer *buffer1, *buffer2; //실제 버퍼값이 들어가는 buffer1,2
buffer **to_fill,**to_empty; //to_fill,to_empty를 buffer1,2를 가리키는 이중포인터로 설정

void init_buffer(void);

int main(int argc, char* argv[]){
FILE *ifp, *ofp;
int num, i=0,j=0;
int counter=0;

ifp=fopen("input.txt","rt");
ofp=fopen("output.txt","wt");

fscanf(ifp,"%d",&num);

while(counter>500){
//producer rutine(to_fill)
loop:
if((*to_fill)->full_flag==1) goto wait ;
fscanf(ifp,"%d",&(*to_fill)->value[i]);
(*to_fill)->record_counter++;
fprintf(ofp,"[put] value : %d buffer : %d\n", (*to_fill)->value[i],(*to_fill)->buffer_num);
fprintf(ofp," buffer num : 1 full flag : %s record counter : %d\n", buffer1->full_flag==1 ? "true" : "false", buffer1->record_counter);
fprintf(ofp," buffer num : 2 full flag : %s record counter : %d\n", buffer2->full_flag==1 ? "true" : "false", buffer2->record_counter);
i++;

if (i<10) goto wait;
i=0;
(*to_fill)->record_counter = 1;
(*to_fill)->full_flag = 1;

(*to_fill) = (*to_fill)->next; //to fill : buffer 2

goto wait;


//consumer rutine
wait :
if((*to_empty)->full_flag==0) goto loop ;

(*to_empty)->record_counter++;
fprintf(ofp,"[get] value : %d buffer : %d\n", (*to_empty)->value[j],(*to_empty)->buffer_num);
fprintf(ofp," buffer num : 1 full flag : %s record counter : %d\n", buffer1->full_flag==1 ? "true" : "false", buffer1->record_counter);
fprintf(ofp," buffer num : 2 full flag : %s record counter : %d\n", buffer2->full_flag==1 ? "true" : "false", buffer2->record_counter);
j++;
counter++;

if(counter>num) break;

while(j<10) goto loop;
j=0;
(*to_empty)->record_counter = 1;
(*to_empty)->full_flag = 0;

(*to_empty) = (*to_empty)->next;

goto loop;
}

fclose(ifp);
fclose(ofp);
return 0;
}

void init_buffer(void){
buffer1->buffer_num = 1;
buffer2->buffer_num = 2;
buffer1->full_flag = 0;
buffer2->full_flag = 0;
buffer1->record_counter = 1;
buffer2->record_counter = 1;
buffer1->next = buffer2;
buffer2->next = buffer1;
to_fill = &buffer1;
to_empty = &buffer1;
}

------------------------------------
대략적인 코딩의 내용은 이렇습니다..

input.txt의 내용을 입력받으면. 일단 몇개의 데이터를 입력받을 것인지(num) 알아낸 뒤에 그만큼의 숫자를 버퍼의 크기만큼(10) input에서 읽어들인다.
하나의 버퍼가 모두 차게 되면 to_fill의 flag를 1로 변경한뒤, to_empty 즉 출력만을 하는 버퍼에 보내어 출력을 하는 동시에 다른 버퍼(to_fill)에서는
이어지는 데이터를 입력받는다.

input.txt
30
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 20

output.txt
[put] value : 1 buffer : 1
buffer num : 1 full flag : false record counter : 2
buffer num : 2 full flag : false record counter : 1
[put] value : 2 buffer : 1
buffer num : 1 full flag : false record counter : 3
buffer num : 2 full flag : false record counter : 1
[put] value : 3 buffer : 1
buffer num : 1 full flag : false record counter : 4
buffer num : 2 full flag : false record counter : 1
.
.
.
[put] value : 9 buffer : 1
buffer num : 1 full flag : false record counter : 10
buffer num : 2 full flag : false record counter : 1
[put] value : 10 buffer : 1
buffer num : 1 full flag : true record counter : 1
buffer num : 2 full flag : false record counter : 1
[get] value : 1 buffer : 1
buffer num : 1 full flag : true record counter : 2
buffer num : 2 full flag : false record counter : 1
[put] value : 11 buffer : 2
buffer num : 1 full flag : true record counter : 2
buffer num : 2 full flag : false record counter : 2

이러한 결과값이 나오는 방식입니다..

혼자서 어떻게 짜내긴 했는데 에러도 나오지 않습니다.
그런데 실행시 메모리 오류가 뜨기에 어느부분이 잘못됬는지 하루종일 찾아봐도 모르겠습니다.
꼭 정답이 아니어도 상관없습니 혹시나 문제되거나 지적할만한 부분이 얼핏 보이면 지적해주시면
감사하겠습니다.

ihavnoth의 이미지

main()에서 init_buffer() 호출하기전에
메모리 할당 초기화 해보세요

        buffer1 = (buffer *) malloc(sizeof(buffer));
        memset(buffer1, 0, sizeof(struct _buffer)-1);
        buffer2 = (buffer *) malloc(sizeof(buffer));
        memset(buffer2, 0, sizeof(struct _buffer)-1);

없음

댓글 달기

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