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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
//////////////////////////////////////////////////////////////////////////////
//
// (C) Copyright Ion Gaztanaga 2004-2009. Distributed under the Boost
// Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// See http://www.boost.org/libs/interprocess for documentation.
//
//////////////////////////////////////////////////////////////////////////////
#include <boost/interprocess/detail/config_begin.hpp>
#include <boost/interprocess/detail/workaround.hpp>
#ifdef BOOST_INTERPROCESS_WINDOWS
#include <boost/interprocess/allocators/allocator.hpp>
#include <boost/interprocess/containers/vector.hpp>
#include <boost/interprocess/managed_windows_shared_memory.hpp>
#include <cstdio>
#include <string>
#include "get_process_id_name.hpp"
using namespace boost::interprocess;
int main ()
{
const int MemSize = 65536;
const char *const MemName = test::get_process_id_name();
//STL compatible allocator object for shared memory
typedef allocator<int, managed_windows_shared_memory::segment_manager>
allocator_int_t;
//A vector that uses that allocator
typedef boost::interprocess::vector<int, allocator_int_t> MyVect;
{
const int max = 100;
void *array[max];
//Named allocate capable shared memory allocator
managed_windows_shared_memory w_shm(create_only, MemName, MemSize);
int i;
//Let's allocate some memory
for(i = 0; i < max; ++i){
array[i] = w_shm.allocate(i+1);
}
//Deallocate allocated memory
for(i = 0; i < max; ++i){
w_shm.deallocate(array[i]);
}
}
{
//Named allocate capable shared memory managed memory class
managed_windows_shared_memory w_shm(create_only, MemName, MemSize);
//Construct the STL-like allocator with the segment manager
const allocator_int_t myallocator (w_shm.get_segment_manager());
//Construct vector
MyVect *w_shm_vect = w_shm.construct<MyVect> ("MyVector") (myallocator);
//Test that vector can be found via name
if(w_shm_vect != w_shm.find<MyVect>("MyVector").first)
return -1;
//Destroy and check it is not present
w_shm.destroy<MyVect> ("MyVector");
if(0 != w_shm.find<MyVect>("MyVector").first)
return -1;
//Construct a vector in the shared memory
w_shm_vect = w_shm.construct<MyVect> ("MyVector") (myallocator);
{
//Map preexisting segment again in memory
managed_windows_shared_memory w_shm_new(open_only, MemName);
//Check vector is still there
w_shm_vect = w_shm_new.find<MyVect>("MyVector").first;
if(!w_shm_vect)
return -1;
if(w_shm_new.get_size() != w_shm.get_size())
return 1;
{
{
//Map preexisting shmem again in copy-on-write
managed_windows_shared_memory shmem(open_copy_on_write, MemName);
//Check vector is still there
MyVect *shmem_vect = shmem.find<MyVect>("MyVector").first;
if(!shmem_vect)
return -1;
//Erase vector
shmem.destroy_ptr(shmem_vect);
//Make sure vector is erased
shmem_vect = shmem.find<MyVect>("MyVector").first;
if(shmem_vect)
return -1;
}
//Now check vector is still in the s
{
//Map preexisting shmem again in copy-on-write
managed_windows_shared_memory shmem(open_copy_on_write, MemName);
//Check vector is still there
MyVect *shmem_vect = shmem.find<MyVect>("MyVector").first;
if(!shmem_vect)
return -1;
}
}
{
//Map preexisting shmem again in copy-on-write
managed_windows_shared_memory shmem(open_read_only, MemName);
//Check vector is still there
MyVect *shmem_vect = shmem.find<MyVect>("MyVector").first;
if(!shmem_vect)
return -1;
}
//Destroy and check it is not present
w_shm_new.destroy_ptr(w_shm_vect);
if(0 != w_shm_new.find<MyVect>("MyVector").first)
return 1;
//Now test move semantics
managed_windows_shared_memory original(open_only, MemName);
managed_windows_shared_memory move_ctor(boost::interprocess::move(original));
managed_windows_shared_memory move_assign;
move_assign = boost::interprocess::move(move_ctor);
}
}
return 0;
}
#else
int main()
{
return 0;
}
#endif
#include <boost/interprocess/detail/config_end.hpp>
|