공유 메모리에 클래스 인스턴스를 붙일 수 있을까요?

icristi의 이미지

공유메모리에 클래스로 선언된 객체를 붙일 수 있을까요?
그래서 다른 프로세스간에 클래스 메소드도 공유하고,
클래스 변수도 공유하고 할 수 있을까요?

보통의 경우라면 안될 듯 한데...
이것을 구현할 수 있는 방법이 없을까요?

반드시 공유메모리 기법이 아니라도...
클래스로 구현된 자료구조를 프로세스간에 공유하려고 하는데,
어떤 방법들이 있을까요?

wowcode의 이미지

저도 전에 같은 문제로 고민한 적이 있었습니다.

new 연산자 오버라이딩을 하면 가능하다고 하더군요.
해보지는 않았지만 일리가 있는 이야기 같습니다.

성공하시면 좀 알려주세요^^

bugiii의 이미지

간단한 경우에는 placement new
처음엔 좀 힘들지만 만들어 놓으면 좋은 메모리 관리자를 직접 제작
stl을 쓰신다면 allocator도 좋은 선택이구요. (list나 연관 컨테이너는 좀 더 생각해야 하구요)

훌륭한 텍스트들이 꽤 있으니 꼭 참고하세요. effective C++ 시리즈에도 있고 다른 고급서적에도 꽤 자주 다루는 주제입니다.

void의 이미지

int fd = shm_open("/shm_test", O_RDWR, 0);
void *p = mmap(0, sizeof(yourclass), PROT_READ|PROT_WRITE,
MAP_SHARED, fd, 0);
yourclass *instance = new(p) yourclass();

dhjung의 이미지

mmap()을 이용할 시에는 한가지 주의해야 할 점이 있을 듯 싶습니다.

virtual function이 그것인데, 일반적으로 vtables의 item들은 heap area(아마도...)에 생성될것입니다.
따라서, virtual function이 있는 object의 경우, mmap()을 통한 완벽한 sharing은 힘들 듯 싶습니다..

차라리 bugiii님이 말씀하신 것처럼, allocator를 사용하시는건 어떨지...
allocator가 생겨난 이유중에 하나가 님과 같은 의도를 해결하기 위한것으로 알고 있습니다.
(내부적으로 pointer가 필요한 경우, offset으로 사용할것이라 추측됩니다.. :wink: )

아래 싸이트를 한번 참조해보세여..

http://allocator.sourceforge.net

PS. 위의 wowcode님... 혹시 제가 아는 분이 아닌가여? 8)


--------------------------
Donghyun Jung

댓글 달기

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