OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef BASE_MEMORY_SHARED_MEMORY_H_ | 5 #ifndef BASE_MEMORY_SHARED_MEMORY_H_ |
6 #define BASE_MEMORY_SHARED_MEMORY_H_ | 6 #define BASE_MEMORY_SHARED_MEMORY_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 SharedMemoryHandle GetReadOnlyHandle(); | 214 SharedMemoryHandle GetReadOnlyHandle(); |
215 | 215 |
216 // Shares the shared memory to another process. Attempts | 216 // Shares the shared memory to another process. Attempts |
217 // to create a platform-specific new_handle which can be | 217 // to create a platform-specific new_handle which can be |
218 // used in a remote process to access the shared memory | 218 // used in a remote process to access the shared memory |
219 // file. new_handle is an output parameter to receive | 219 // file. new_handle is an output parameter to receive |
220 // the handle for use in the remote process. | 220 // the handle for use in the remote process. |
221 // Returns true on success, false otherwise. | 221 // Returns true on success, false otherwise. |
222 bool ShareToProcess(ProcessHandle process, | 222 bool ShareToProcess(ProcessHandle process, |
223 SharedMemoryHandle* new_handle) { | 223 SharedMemoryHandle* new_handle) { |
224 return ShareToProcessCommon(process, new_handle, false); | 224 return ShareToProcessCommon(process, new_handle); |
225 } | |
226 | |
227 // Logically equivalent to: | |
228 // bool ok = ShareToProcess(process, new_handle); | |
229 // Close(); | |
230 // return ok; | |
231 // Note that the memory is unmapped by calling this method, regardless of the | |
232 // return value. | |
233 bool GiveToProcess(ProcessHandle process, | |
234 SharedMemoryHandle* new_handle) { | |
235 return ShareToProcessCommon(process, new_handle, true); | |
236 } | 225 } |
237 | 226 |
238 #if defined(OS_POSIX) && (!defined(OS_MACOSX) || defined(OS_IOS)) && \ | 227 #if defined(OS_POSIX) && (!defined(OS_MACOSX) || defined(OS_IOS)) && \ |
239 !defined(OS_NACL) | 228 !defined(OS_NACL) |
240 using UniqueId = std::pair<dev_t, ino_t>; | 229 using UniqueId = std::pair<dev_t, ino_t>; |
241 | 230 |
242 struct UniqueIdHash { | 231 struct UniqueIdHash { |
243 size_t operator()(const UniqueId& id) const { | 232 size_t operator()(const UniqueId& id) const { |
244 return HashInts(id.first, id.second); | 233 return HashInts(id.first, id.second); |
245 } | 234 } |
246 }; | 235 }; |
247 | 236 |
248 // Returns a unique ID for this shared memory's handle. Note this function may | 237 // Returns a unique ID for this shared memory's handle. Note this function may |
249 // access file system and be slow. | 238 // access file system and be slow. |
250 bool GetUniqueId(UniqueId* id) const; | 239 bool GetUniqueId(UniqueId* id) const; |
251 #endif | 240 #endif |
252 | 241 |
253 private: | 242 private: |
254 #if defined(OS_POSIX) && !defined(OS_NACL) && !defined(OS_ANDROID) && \ | 243 #if defined(OS_POSIX) && !defined(OS_NACL) && !defined(OS_ANDROID) && \ |
255 (!defined(OS_MACOSX) || defined(OS_IOS)) | 244 (!defined(OS_MACOSX) || defined(OS_IOS)) |
256 bool FilePathForMemoryName(const std::string& mem_name, FilePath* path); | 245 bool FilePathForMemoryName(const std::string& mem_name, FilePath* path); |
257 #endif | 246 #endif |
258 | 247 |
259 #if defined(OS_MACOSX) | 248 #if defined(OS_MACOSX) |
260 bool Share(SharedMemoryHandle* new_handle); | 249 bool Share(SharedMemoryHandle* new_handle); |
261 #endif | 250 #endif |
262 | 251 |
263 bool ShareToProcessCommon(ProcessHandle process, | 252 bool ShareToProcessCommon(ProcessHandle process, |
264 SharedMemoryHandle* new_handle, | 253 SharedMemoryHandle* new_handle); |
265 bool close_self); | |
266 | 254 |
267 #if defined(OS_WIN) | 255 #if defined(OS_WIN) |
268 // If true indicates this came from an external source so needs extra checks | 256 // If true indicates this came from an external source so needs extra checks |
269 // before being mapped. | 257 // before being mapped. |
270 bool external_section_; | 258 bool external_section_; |
271 std::wstring name_; | 259 std::wstring name_; |
272 win::ScopedHandle mapped_file_; | 260 win::ScopedHandle mapped_file_; |
273 #else | 261 #else |
274 // The OS primitive that backs the shared memory region. | 262 // The OS primitive that backs the shared memory region. |
275 SharedMemoryHandle shm_; | 263 SharedMemoryHandle shm_; |
(...skipping 13 matching lines...) Expand all Loading... |
289 void* memory_; | 277 void* memory_; |
290 bool read_only_; | 278 bool read_only_; |
291 size_t requested_size_; | 279 size_t requested_size_; |
292 | 280 |
293 DISALLOW_COPY_AND_ASSIGN(SharedMemory); | 281 DISALLOW_COPY_AND_ASSIGN(SharedMemory); |
294 }; | 282 }; |
295 | 283 |
296 } // namespace base | 284 } // namespace base |
297 | 285 |
298 #endif // BASE_MEMORY_SHARED_MEMORY_H_ | 286 #endif // BASE_MEMORY_SHARED_MEMORY_H_ |
OLD | NEW |