]>
git.saurik.com Git - apt.git/blob - apt-pkg/contrib/mmap.cc
41ea02aec02e707345259cf36b2607d5814f925e
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: mmap.cc,v 1.3 1998/07/04 22:32:15 jgg Exp $
4 /* ######################################################################
6 MMap Class - Provides 'real' mmap or a faked mmap using read().
10 Some broken versions of glibc2 (libc6) have a broken definition
11 of mmap that accepts a char * -- all other systems (and libc5) use
12 void *. We can't safely do anything here that would be portable, so
13 libc6 generates warnings -- which should be errors, g++ isn't properly
16 The configure test notes that some OS's have broken private mmap's
17 so on those OS's we can't use mmap. This means we have to use
18 configure to test mmap and can't rely on the POSIX
19 _POSIX_MAPPED_FILES test.
21 ##################################################################### */
23 // Include Files /*{{{*/
25 #include <pkglib/mmap.h>
26 #include <pkglib/error.h>
35 // MMap::MMap - Constructor /*{{{*/
36 // ---------------------------------------------------------------------
38 MMap::MMap(File
&F
,unsigned long Flags
) : Fd(F
), Flags(Flags
), iSize(0),
41 if ((Flags
& NoImmMap
) != NoImmMap
)
45 // MMap::~MMap - Destructor /*{{{*/
46 // ---------------------------------------------------------------------
53 // MMap::Map - Perform the mapping /*{{{*/
54 // ---------------------------------------------------------------------
60 // Set the permissions.
63 if ((Flags
& ReadOnly
) != ReadOnly
)
65 if ((Flags
& Public
) != Public
)
69 Base
= mmap(0,iSize
,Prot
,Map
,Fd
.Fd(),0);
70 if (Base
== (void *)-1)
71 return _error
->Errno("mmap","Couldn't make mmap of %u bytes",iSize
);
76 // MMap::Close - Close the map /*{{{*/
77 // ---------------------------------------------------------------------
79 bool MMap::Close(bool DoClose
)
81 if (Fd
.IsOpen() == false)
86 if (munmap((char *)Base
,iSize
) != 0)
87 _error
->Warning("Unable to munmap");
95 // MMap::Sync - Syncronize the map with the disk /*{{{*/
96 // ---------------------------------------------------------------------
97 /* This is done in syncronous mode - the docs indicate that this will
98 not return till all IO is complete */
101 if ((Flags
& ReadOnly
) == ReadOnly
)
102 if (msync((char *)Base
,iSize
,MS_SYNC
) != 0)
103 return _error
->Error("msync","Unable to write mmap");
107 // MMap::Sync - Syncronize a section of the file to disk /*{{{*/
108 // ---------------------------------------------------------------------
110 bool MMap::Sync(unsigned long Start
,unsigned long Stop
)
112 if ((Flags
& ReadOnly
) == ReadOnly
)
113 if (msync((char *)Base
+(int)(Start
/PAGE_SIZE
)*PAGE_SIZE
,Stop
- Start
,MS_SYNC
) != 0)
114 return _error
->Error("msync","Unable to write mmap");
119 // DynamicMMap::DynamicMMap - Constructor /*{{{*/
120 // ---------------------------------------------------------------------
122 DynamicMMap::DynamicMMap(File
&F
,unsigned long Flags
,unsigned long WorkSpace
) :
123 MMap(F
,Flags
| NoImmMap
), WorkSpace(WorkSpace
)
125 unsigned long EndOfFile
= Fd
.Size();
128 Fd
.Write(&C
,sizeof(C
));
133 // DynamicMMap::~DynamicMMap - Destructor /*{{{*/
134 // ---------------------------------------------------------------------
135 /* We truncate the file to the size of the memory data set */
136 DynamicMMap::~DynamicMMap()
138 unsigned long EndOfFile
= iSize
;
140 ftruncate(Fd
.Fd(),EndOfFile
);
144 // DynamicMMap::RawAllocate - Allocate a raw chunk of unaligned space /*{{{*/
145 // ---------------------------------------------------------------------
146 /* This allocates a block of memory aligned to the given size */
147 unsigned long DynamicMMap::RawAllocate(unsigned long Size
,unsigned long Aln
)
149 unsigned long Result
= iSize
;
151 Result
+= Aln
- (iSize%Aln
);
153 iSize
= Result
+ Size
;
155 // Just in case error check
156 if (Result
> WorkSpace
)
158 _error
->Error("Dynamic MMap ran out of room");
164 // DynamicMMap::Allocate - Pooled aligned allocation /*{{{*/
165 // ---------------------------------------------------------------------
166 /* This allocates an Item of size ItemSize so that it is aligned to its
168 unsigned long DynamicMMap::Allocate(unsigned long ItemSize
)
170 // Look for a matching pool entry
173 for (I
= Pools
; I
!= Pools
+ PoolCount
; I
++)
175 if (I
->ItemSize
== 0)
177 if (I
->ItemSize
== ItemSize
)
181 // No pool is allocated, use an unallocated one
182 if (I
== Pools
+ PoolCount
)
184 // Woops, we ran out, the calling code should allocate more.
187 _error
->Error("Ran out of allocation pools");
192 I
->ItemSize
= ItemSize
;
196 // Out of space, allocate some more
199 I
->Count
= 20*1024/ItemSize
;
200 I
->Start
= RawAllocate(I
->Count
*ItemSize
,ItemSize
);
204 unsigned long Result
= I
->Start
;
205 I
->Start
+= ItemSize
;
206 return Result
/ItemSize
;
209 // DynamicMMap::WriteString - Write a string to the file /*{{{*/
210 // ---------------------------------------------------------------------
211 /* Strings are not aligned to anything */
212 unsigned long DynamicMMap::WriteString(const char *String
,
215 unsigned long Result
= iSize
;
216 // Just in case error check
217 if (Result
> WorkSpace
)
219 _error
->Error("Dynamic MMap ran out of room");
224 Len
= strlen(String
);
226 memcpy((char *)Base
+ Result
,String
,Len
);
227 ((char *)Base
)[Result
+ Len
] = 0;