variable-length argument passing

urmajest의 이미지

안녕하세요.

variable-length argument를 passing하려고 합니다.

간단히 예를 들어서,

void foo(void (*func)(...), ...)
{
     func(...);
}

void bar(int i, char c)
{
     cout << i << c << endl;
}

int main()
{
     foo(bar, 2, 'a');
     return 1;
}

물론 돌아가지 않는 코드이구요. (모르는 부분은 그냥 대충 ...으로 표시했습니다.)

이 코드의 목적은

bar라는 function을 foo 라는 function을 통해서 call 하려고 합니다.

interface는 (function name, argument1, argunemt2, ...) 과

같아야하고 compile-time에는 bar() function의 prototype을

알수가 없습니다. (variable-length argument를 이용하는 이유겠지요.)

이것을 가능하게 하는 방법이 있을까요?

궁극적인 목적은,

void foo(void (*func)(...), ...)
{
     pthread_t id;
     pthread_create(&id, ..., ..., ... )
}

void bar(int i, char c)
{
     cout << i << c << endl;
}

int main()
{
     foo(bar, 2, 'a');
     return 1;
}

와 같이 thread를 만드는 것인데 bar()의 프로토타입을

어떤 식으로도 강제할 수가 없고(e.g., varlist)

foo()는 (function name, argument1, argument2,...)와 같은

prototype을 가져야 한다는 것입니다.

도와주세요~

doldori의 이미지

결국 타입이 정해지지 않은 함수에 대한 callback이군요. 이건 variable argument로는
불가능하지 않을까 합니다. 왜냐하면 컴파일 타임에 알려지지 않은 함수의 형을
런타임에 추론하는 것은 불가능하기 때문입니다. 하지만 템플릿으로는 가능하겠군요.
foo()를 오버로딩하여 템플릿의 인자 추론(argument deduction)을 이용하는 방법입니다.

template <typename R>
R foo(R (*f)()) 
{ 
    return f(); 
} 

template <typename R, typename A>
R foo(R (*f)(A), A a) 
{ 
    return f(a); 
} 

template <typename R, typename A1, typename A2>
R foo(R (*f)(A1, A2), A1 a1, A2 a2) 
{ 
    return f(a1, a2); 
} 

int bar();                // (1)
void bar(int i, char c);  // (2)

int main() 
{ 
    int r = foo(bar);     // calls (1)
    foo(bar, 2, 'a');     // calls (2)
    return 0; 
}
cinsk의 이미지

libsigc을 참고하시면 쉽게 위와 같은 기능을 구현할 수 있을 것 같습니다.

댓글 달기

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