Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(504)

Side by Side Diff: base/memory/discardable_memory_allocator_android.cc

Issue 191673003: Implement ScopedFD in terms of ScopedGeneric. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/file_util_unittest.cc ('k') | base/memory/shared_memory.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "base/memory/discardable_memory_allocator_android.h" 5 #include "base/memory/discardable_memory_allocator_android.h"
6 6
7 #include <sys/mman.h> 7 #include <sys/mman.h>
8 #include <unistd.h> 8 #include <unistd.h>
9 9
10 #include <algorithm> 10 #include <algorithm>
11 #include <cmath> 11 #include <cmath>
12 #include <limits> 12 #include <limits>
13 #include <set> 13 #include <set>
14 #include <utility> 14 #include <utility>
15 15
16 #include "base/basictypes.h" 16 #include "base/basictypes.h"
17 #include "base/containers/hash_tables.h" 17 #include "base/containers/hash_tables.h"
18 #include "base/file_util.h" 18 #include "base/file_util.h"
19 #include "base/files/scoped_file.h"
19 #include "base/logging.h" 20 #include "base/logging.h"
20 #include "base/memory/discardable_memory.h" 21 #include "base/memory/discardable_memory.h"
21 #include "base/memory/scoped_vector.h" 22 #include "base/memory/scoped_vector.h"
22 #include "base/synchronization/lock.h" 23 #include "base/synchronization/lock.h"
23 #include "base/threading/thread_checker.h" 24 #include "base/threading/thread_checker.h"
24 #include "third_party/ashmem/ashmem.h" 25 #include "third_party/ashmem/ashmem.h"
25 26
26 // The allocator consists of three parts (classes): 27 // The allocator consists of three parts (classes):
27 // - DiscardableMemoryAllocator: entry point of all allocations (through its 28 // - DiscardableMemoryAllocator: entry point of all allocations (through its
28 // Allocate() method) that are dispatched to the AshmemRegion instances (which 29 // Allocate() method) that are dispatched to the AshmemRegion instances (which
(...skipping 29 matching lines...) Expand all
58 if (size > std::numeric_limits<size_t>::max() - kPageSize + 1) 59 if (size > std::numeric_limits<size_t>::max() - kPageSize + 1)
59 return 0; 60 return 0;
60 const size_t mask = ~(kPageSize - 1); 61 const size_t mask = ~(kPageSize - 1);
61 return (size + kPageSize - 1) & mask; 62 return (size + kPageSize - 1) & mask;
62 } 63 }
63 64
64 bool CreateAshmemRegion(const char* name, 65 bool CreateAshmemRegion(const char* name,
65 size_t size, 66 size_t size,
66 int* out_fd, 67 int* out_fd,
67 void** out_address) { 68 void** out_address) {
68 int fd = ashmem_create_region(name, size); 69 base::ScopedFD fd(ashmem_create_region(name, size));
69 if (fd < 0) { 70 if (!fd) {
viettrungluu 2014/03/08 03:06:04 So, it occurs to me that this is extremely confusi
70 DLOG(ERROR) << "ashmem_create_region() failed"; 71 DLOG(ERROR) << "ashmem_create_region() failed";
71 return false; 72 return false;
72 } 73 }
73 file_util::ScopedFD fd_closer(&fd);
74 74
75 const int err = ashmem_set_prot_region(fd, PROT_READ | PROT_WRITE); 75 const int err = ashmem_set_prot_region(fd.get(), PROT_READ | PROT_WRITE);
76 if (err < 0) { 76 if (err < 0) {
77 DLOG(ERROR) << "Error " << err << " when setting protection of ashmem"; 77 DLOG(ERROR) << "Error " << err << " when setting protection of ashmem";
78 return false; 78 return false;
79 } 79 }
80 80
81 // There is a problem using MAP_PRIVATE here. As we are constantly calling 81 // There is a problem using MAP_PRIVATE here. As we are constantly calling
82 // Lock() and Unlock(), data could get lost if they are not written to the 82 // Lock() and Unlock(), data could get lost if they are not written to the
83 // underlying file when Unlock() gets called. 83 // underlying file when Unlock() gets called.
84 void* const address = mmap( 84 void* const address = mmap(
85 NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); 85 NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 DCHECK_LE(ashmem_regions_.size(), 5U); 551 DCHECK_LE(ashmem_regions_.size(), 5U);
552 const ScopedVector<AshmemRegion>::iterator it = std::find( 552 const ScopedVector<AshmemRegion>::iterator it = std::find(
553 ashmem_regions_.begin(), ashmem_regions_.end(), region); 553 ashmem_regions_.begin(), ashmem_regions_.end(), region);
554 DCHECK_NE(ashmem_regions_.end(), it); 554 DCHECK_NE(ashmem_regions_.end(), it);
555 std::swap(*it, ashmem_regions_.back()); 555 std::swap(*it, ashmem_regions_.back());
556 ashmem_regions_.pop_back(); 556 ashmem_regions_.pop_back();
557 } 557 }
558 558
559 } // namespace internal 559 } // namespace internal
560 } // namespace base 560 } // namespace base
OLDNEW
« no previous file with comments | « base/file_util_unittest.cc ('k') | base/memory/shared_memory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698