Connecting Tech Pros Worldwide Help | Site Map

STL and shared memory

Michael Schuler
Guest
 
Posts: n/a
#1: Jul 22 '05
The use of STL in shared memory poses a real problem since
(non-smart) pointers are not allowed there.

Is there any solution for containers in shared memory using
smart pointers? Where can I find templates?

void
Guest
 
Posts: n/a
#2: Jul 22 '05

re: STL and shared memory


Użytkownik Michael Schuler napisał, On 2004-01-12 15:01:
[color=blue]
> The use of STL in shared memory poses a real problem since
> (non-smart) pointers are not allowed there.
>
> Is there any solution for containers in shared memory using
> smart pointers? Where can I find templates?
>[/color]
AFAIR to use shared memory you should use boost library you can find it at:
http://www.boost.org/.
Documentation:
http://www.boost.org/libs/smart_ptr/smart_ptr.htm

Best Regards
Darek Ostolski
--
ERROR 1164 HOW IN THE HELL DID YOU GET HERE
Philipp Bachmann
Guest
 
Posts: n/a
#3: Jul 22 '05

re: STL and shared memory


Hello,

take a look to <http://tplusplus.sourceforge.net/> resp. at its source code. It uses special
allocators to place the contents of STL containers into shared memory. It's been presented
at OOPSLA 2003.

Cheers,
Philipp.


"Michael Schuler" <Michael.Schuler@fujitsu-siemens.com> wrote in message news:btu95r$25f$2@news.fujitsu-siemens.com...[color=blue]
> The use of STL in shared memory poses a real problem since
> (non-smart) pointers are not allowed there.
>
> Is there any solution for containers in shared memory using
> smart pointers? Where can I find templates?
>[/color]


tom_usenet
Guest
 
Posts: n/a
#4: Jul 22 '05

re: STL and shared memory


On Mon, 12 Jan 2004 15:01:07 +0100, Michael Schuler
<Michael.Schuler@fujitsu-siemens.com> wrote:
[color=blue]
>The use of STL in shared memory poses a real problem since
>(non-smart) pointers are not allowed there.
>
>Is there any solution for containers in shared memory using
>smart pointers? Where can I find templates?[/color]

If you can allocate your shared memory at a fixed address in each
process' address space, then you just need to write a custom allocator
to allocate from that memory. But if you can't allocate at a fixed
address, then you have to write a complex allocator that uses "offset"
smart pointers (and references!) that store an offset into the shared
memory rather than a pure pointer, and possibly a "shared memory ID"
or similar if you want to have more than one shared memory area in any
process. This is hard to do in a reliable way since C++ doesn't really
support smart references.

Tom

C++ FAQ: http://www.parashift.com/c++-faq-lite/
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
Michael Schuler
Guest
 
Posts: n/a
#5: Jul 22 '05

re: STL and shared memory


Thanks Tom,

but to my knowledge if I use an allocator, only the items are in shared
memory not the container itself. In my case teh container also must lie
in shared memory to survive a process failure :-(

tom_usenet wrote:[color=blue]
> On Mon, 12 Jan 2004 15:01:07 +0100, Michael Schuler
> <Michael.Schuler@fujitsu-siemens.com> wrote:
>
>[color=green]
>>The use of STL in shared memory poses a real problem since
>>(non-smart) pointers are not allowed there.
>>
>>Is there any solution for containers in shared memory using
>>smart pointers? Where can I find templates?[/color]
>
>
> If you can allocate your shared memory at a fixed address in each
> process' address space, then you just need to write a custom allocator
> to allocate from that memory. But if you can't allocate at a fixed
> address, then you have to write a complex allocator that uses "offset"
> smart pointers (and references!) that store an offset into the shared
> memory rather than a pure pointer, and possibly a "shared memory ID"
> or similar if you want to have more than one shared memory area in any
> process. This is hard to do in a reliable way since C++ doesn't really
> support smart references.
>
> Tom
>
> C++ FAQ: http://www.parashift.com/c++-faq-lite/
> C FAQ: http://www.eskimo.com/~scs/C-faq/top.html[/color]

Philipp Bachmann
Guest
 
Posts: n/a
#6: Jul 22 '05

re: STL and shared memory


Hello,

that's true, but imposes no problem at all, because there's "placement new",
i.e. given we talk about Unix and given there's some magic "shmAllocator<>",
you can write sth like

...
typedef std::map< int,std::less< int >,shmAllocator< int > > shmIntMap;
shm=shmget(shm_key,sizeof(shmIntMap),IPC_CREAT|070 0);
void *const p=(shmIntMap *)shmat(shm,NULL,0);
shmIntMap *m=new(p) shmIntMap;
...

Then, don't forget to manually call the destructor afterwards.

Now, you might ask, o.k., now both the map and the ints contained within the map
go into the shared memory - but what's about the linked structure that establishes
the tree the map internally consists of, i.e. that glues together the container and
its elements? The answer is the "rebind<>" member template class a conforming
allocator has to have.

Cheers,
Philipp.
[color=blue]
> but to my knowledge if I use an allocator, only the items are in shared
> memory not the container itself. In my case teh container also must lie
> in shared memory to survive a process failure :-(
>[color=green][color=darkred]
> >>Is there any solution for containers in shared memory using
> >>smart pointers? Where can I find templates?[/color]
> >
> > If you can allocate your shared memory at a fixed address in each
> > process' address space, then you just need to write a custom allocator
> > to allocate from that memory. But if you can't allocate at a fixed
> > address, then you have to write a complex allocator that uses "offset"
> > smart pointers (and references!) that store an offset into the shared
> > memory rather than a pure pointer, and possibly a "shared memory ID"
> > or similar if you want to have more than one shared memory area in any
> > process. This is hard to do in a reliable way since C++ doesn't really
> > support smart references.[/color][/color]


Jonathan Turkanis
Guest
 
Posts: n/a
#7: Jul 22 '05

re: STL and shared memory



"void" <chq@nie_spamuj.wp.pl> wrote in message
news:29333-1073917569@213.17.192.132...[color=blue]
> Użytkownik Michael Schuler napisał, On 2004-01-12 15:01:
>[color=green]
> > The use of STL in shared memory poses a real problem since
> > (non-smart) pointers are not allowed there.
> >
> > Is there any solution for containers in shared memory using
> > smart pointers? Where can I find templates?
> >[/color]
> AFAIR to use shared memory you should use boost library you can find[/color]
it at:[color=blue]
> http://www.boost.org/.
> Documentation:
> http://www.boost.org/libs/smart_ptr/smart_ptr.htm[/color]

Boost has excellent smart pointers, but does not provide any help with
accessing shared memory.

Jonathan


Michael Schuler
Guest
 
Posts: n/a
#8: Jul 22 '05

re: STL and shared memory


Thanks Philipp, good hint,

but I still have the problem with pointers inside the container,
whereas pointers pose problems since the shared memory may have
different addresses in different processes :-(

Philipp Bachmann[color=blue]
> Hello,
>
> that's true, but imposes no problem at all, because there's "placement new",
> i.e. given we talk about Unix and given there's some magic "shmAllocator<>",
> you can write sth like
>
> ...
> typedef std::map< int,std::less< int >,shmAllocator< int > > shmIntMap;
> shm=shmget(shm_key,sizeof(shmIntMap),IPC_CREAT|070 0);
> void *const p=(shmIntMap *)shmat(shm,NULL,0);
> shmIntMap *m=new(p) shmIntMap;
> ...
>
> Then, don't forget to manually call the destructor afterwards.
>
> Now, you might ask, o.k., now both the map and the ints contained within the map
> go into the shared memory - but what's about the linked structure that establishes
> the tree the map internally consists of, i.e. that glues together the container and
> its elements? The answer is the "rebind<>" member template class a conforming
> allocator has to have.
>
> Cheers,
> Philipp.
>
>[color=green]
>>but to my knowledge if I use an allocator, only the items are in shared
>>memory not the container itself. In my case teh container also must lie
>>in shared memory to survive a process failure :-(
>>
>>[color=darkred]
>>>>Is there any solution for containers in shared memory using
>>>>smart pointers? Where can I find templates?
>>>
>>>If you can allocate your shared memory at a fixed address in each
>>>process' address space, then you just need to write a custom allocator
>>>to allocate from that memory. But if you can't allocate at a fixed
>>>address, then you have to write a complex allocator that uses "offset"
>>>smart pointers (and references!) that store an offset into the shared
>>>memory rather than a pure pointer, and possibly a "shared memory ID"
>>>or similar if you want to have more than one shared memory area in any
>>>process. This is hard to do in a reliable way since C++ doesn't really
>>>support smart references.[/color][/color]
>
>
>[/color]

Philipp Bachmann
Guest
 
Posts: n/a
#9: Jul 22 '05

re: STL and shared memory


The T++ I've referenced seems to use a shared memory pool of a fixed size,
if I correctly understood its source code. But check this out, please:
<http://allocator.sourceforge.net/>. This looks quite promising, doesn't
it?

Cheers,
Philipp.
[color=blue]
> but I still have the problem with pointers inside the container,
> whereas pointers pose problems since the shared memory may have
> different addresses in different processes :-([color=green]
> > that's true, but imposes no problem at all, because there's "placement new",
> > i.e. given we talk about Unix and given there's some magic "shmAllocator<>",
> > you can write sth like
> >
> > ...
> > typedef std::map< int,std::less< int >,shmAllocator< int > > shmIntMap;
> > shm=shmget(shm_key,sizeof(shmIntMap),IPC_CREAT|070 0);
> > void *const p=(shmIntMap *)shmat(shm,NULL,0);
> > shmIntMap *m=new(p) shmIntMap;
> > ...
> >
> > Then, don't forget to manually call the destructor afterwards.
> >
> > Now, you might ask, o.k., now both the map and the ints contained within the map
> > go into the shared memory - but what's about the linked structure that establishes
> > the tree the map internally consists of, i.e. that glues together the container and
> > its elements? The answer is the "rebind<>" member template class a conforming
> > allocator has to have.[color=darkred]
> >>but to my knowledge if I use an allocator, only the items are in shared
> >>memory not the container itself. In my case teh container also must lie
> >>in shared memory to survive a process failure :-(
> >>>>Is there any solution for containers in shared memory using
> >>>>smart pointers? Where can I find templates?
> >>>
> >>>If you can allocate your shared memory at a fixed address in each
> >>>process' address space, then you just need to write a custom allocator
> >>>to allocate from that memory. But if you can't allocate at a fixed
> >>>address, then you have to write a complex allocator that uses "offset"
> >>>smart pointers (and references!) that store an offset into the shared
> >>>memory rather than a pure pointer, and possibly a "shared memory ID"
> >>>or similar if you want to have more than one shared memory area in any
> >>>process. This is hard to do in a reliable way since C++ doesn't really
> >>>support smart references.[/color][/color][/color]


tom_usenet
Guest
 
Posts: n/a
#10: Jul 22 '05

re: STL and shared memory


On Tue, 13 Jan 2004 15:05:50 +0100, Michael Schuler
<Michael.Schuler@fujitsu-siemens.com> wrote:
[color=blue]
>Thanks Philipp, good hint,
>
>but I still have the problem with pointers inside the container,
>whereas pointers pose problems since the shared memory may have
>different addresses in different processes :-([/color]

Solution 1 (easy if your OS supports it):

Map the shared memory to the same address in every process that
accesses it. Some OSes allow you to at least attempt this, and if it
fails you can bail out.


Solution 2 (a nightmare, not really worth it?):

Assuming your standard library is up to it (the only one I'm aware of
is Dinkumware, Metrowerks might be, libstdc++ and STLport aren't), it
might be possible to write a smart pointer and smart reference that
work using an offset into the shared memory (which will be the same
for every process). You'll obviously have to use those classes for any
other pointers/references you want to put in shared memory. I wrote
some such class templates a while back, with mixed success.


Solution 2 (probably best if you can't map to a fixed address):

Don't use the STL, but your own simpler code. Use explicit offsets,
not pointers.

Tom

C++ FAQ: http://www.parashift.com/c++-faq-lite/
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
Michael Schuler
Guest
 
Posts: n/a
#11: Jul 22 '05

re: STL and shared memory


Thanks. Great answer. I will probably map the shared memory at some
fixed address.

tom_usenet wrote:[color=blue]
> On Tue, 13 Jan 2004 15:05:50 +0100, Michael Schuler
> <Michael.Schuler@fujitsu-siemens.com> wrote:
>
>[color=green]
>>Thanks Philipp, good hint,
>>
>>but I still have the problem with pointers inside the container,
>>whereas pointers pose problems since the shared memory may have
>>different addresses in different processes :-([/color]
>
>
> Solution 1 (easy if your OS supports it):
>
> Map the shared memory to the same address in every process that
> accesses it. Some OSes allow you to at least attempt this, and if it
> fails you can bail out.
>
>
> Solution 2 (a nightmare, not really worth it?):
>
> Assuming your standard library is up to it (the only one I'm aware of
> is Dinkumware, Metrowerks might be, libstdc++ and STLport aren't), it
> might be possible to write a smart pointer and smart reference that
> work using an offset into the shared memory (which will be the same
> for every process). You'll obviously have to use those classes for any
> other pointers/references you want to put in shared memory. I wrote
> some such class templates a while back, with mixed success.
>
>
> Solution 2 (probably best if you can't map to a fixed address):
>
> Don't use the STL, but your own simpler code. Use explicit offsets,
> not pointers.
>
> Tom
>
> C++ FAQ: http://www.parashift.com/c++-faq-lite/
> C FAQ: http://www.eskimo.com/~scs/C-faq/top.html[/color]

Michael Schuler
Guest
 
Posts: n/a
#12: Jul 22 '05

re: STL and shared memory




Philipp Bachmann[color=blue]
> The T++ I've referenced seems to use a shared memory pool of a fixed size,
> if I correctly understood its source code. But check this out, please:
> <http://allocator.sourceforge.net/>. This looks quite promising, doesn't
> it?
>[/color]

Yes, looks great. Thanks for the hint.[color=blue]
> Cheers,
> Philipp.
>
>[color=green]
>>but I still have the problem with pointers inside the container,
>>whereas pointers pose problems since the shared memory may have
>>different addresses in different processes :-(
>>[color=darkred]
>>>that's true, but imposes no problem at all, because there's "placement new",
>>>i.e. given we talk about Unix and given there's some magic "shmAllocator<>",
>>>you can write sth like
>>>
>>> ...
>>> typedef std::map< int,std::less< int >,shmAllocator< int > > shmIntMap;
>>> shm=shmget(shm_key,sizeof(shmIntMap),IPC_CREAT|070 0);
>>> void *const p=(shmIntMap *)shmat(shm,NULL,0);
>>> shmIntMap *m=new(p) shmIntMap;
>>> ...
>>>
>>>Then, don't forget to manually call the destructor afterwards.
>>>
>>>Now, you might ask, o.k., now both the map and the ints contained within the map
>>>go into the shared memory - but what's about the linked structure that establishes
>>>the tree the map internally consists of, i.e. that glues together the container and
>>>its elements? The answer is the "rebind<>" member template class a conforming
>>>allocator has to have.
>>>
>>>>but to my knowledge if I use an allocator, only the items are in shared
>>>>memory not the container itself. In my case teh container also must lie
>>>>in shared memory to survive a process failure :-(
>>>>
>>>>>>Is there any solution for containers in shared memory using
>>>>>>smart pointers? Where can I find templates?
>>>>>
>>>>>If you can allocate your shared memory at a fixed address in each
>>>>>process' address space, then you just need to write a custom allocator
>>>>>to allocate from that memory. But if you can't allocate at a fixed
>>>>>address, then you have to write a complex allocator that uses "offset"
>>>>>smart pointers (and references!) that store an offset into the shared
>>>>>memory rather than a pure pointer, and possibly a "shared memory ID"
>>>>>or similar if you want to have more than one shared memory area in any
>>>>>process. This is hard to do in a reliable way since C++ doesn't really
>>>>>support smart references.[/color][/color]
>
>
>[/color]

Closed Thread