[질문]ACE WRITE_MASK와 handle_output 호출관계

Fe.head의 이미지

제가 ACE Reactor부분을 공부하고 있는데
이상한 부분이 있어 질문드립니다.

보낼데이터가 있으면 바로 send하지 않고
Queue에 넣어 놓고(ClientService::send 호출)

reactor()->register_handler( this, ACE_Event_Handler::WRITE_MASK );

이렇게 handle_output을 호출하는데요.

이상하게 handle_output 함수가 딱 한번만 호출되고 다음부터 호출되지 않습니다.
다시 Queue에넣어 놓고

reactor()->register_handler( this, ACE_Event_Handler::WRITE_MASK );

를 호출해도 소용이 없네요.

코드는 대략 아래와 같습니다.

class ClientService : public ACE_Event_Handler
{
private:
  ACE_SOCK_Stream                   peer_;
  ACE_Message_Queue<ACE_NULL_SYNCH> queue_;
 
public:
	virtual int  handle_input(ACE_HANDLE fd = ACE_INVALID_HANDLE);
	virtual int  handle_output(ACE_HANDLE fd = ACE_INVALID_HANDLE);
	int          send(const char * data, ssize_t len );
};
 
int ClientService::send(const char * data, ssize_t len )
{
  ACE_Message_Block * mb = 0;
  ACE_NEW_RETURN( mb, ACE_Message_Block(len), -1 );
 
  mb->copy( data, len );
 
  ACE_Time_Value nowait(ACE_OS::gettimeofday());
 
  bool outputoff = queue_.is_empty();
 
  if( queue_.enqueue_tail( mb, &nowait ) == -1 )
  {
    // ERROR MESSAGE 출력
    mb->release();
    return 0;
  }
 
  // --> 이부분 <--
  if( outputoff )
    return reactor()->register_handler( this, ACE_Event_Handler::WRITE_MASK );
  return 0;
}
 
int ClientService::handle_output(ACE_HANDLE)
{
  ACE_Message_Block *	mb = 0;
  ACE_Time_Value	timeout(ACE_OS::gettimeofday());
  while( queue_.dequeue_head( mb, &timeout ) == 0 )
  {	
    ssize_t	sendlen = peer_.send( mb->rd_ptr(), mb->length() );
 
    // 에러 처리 코드 생략.
 
    mb->release();
  }
 
  return (queue_.is_empty()) ? -1 : 0;
}

댓글 달기

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