]>
git.saurik.com Git - apt-legacy.git/blob - apt-inst/filelist.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: filelist.cc,v 1.4.2.1 2004/01/16 18:58:50 mdz Exp $
4 /* ######################################################################
6 File Listing - Manages a Cache of File -> Package names.
8 Diversions add some signficant complexity to the system. To keep
9 storage space down in the very special case of a diverted file no
10 extra bytes are allocated in the Node structure. Instead a diversion
11 is inserted directly into the hash table and its flag bit set. Every
12 lookup for that filename will always return the diversion.
14 The hash buckets are stored in sorted form, with diversions having
15 the higest sort order. Identical files are assigned the same file
16 pointer, thus after a search all of the nodes owning that file can be
17 found by iterating down the bucket.
19 Re-updates of diversions (another extremely special case) are done by
20 marking all diversions as untouched, then loading the entire diversion
21 list again, touching each diversion and then finally going back and
22 releasing all untouched diversions. It is assumed that the diversion
23 table will always be quite small and be a very irregular case.
25 Diversions that are user-installed are represented by a package with
28 Conf files are handled like diversions by changing the meaning of the
29 Pointer field to point to a conf file entry - again to reduce over
30 head for a special case.
32 ##################################################################### */
34 // Include Files /*{{{*/
36 #pragma implementation "apt-pkg/filelist.h"
39 #include <apt-pkg/filelist.h>
40 #include <apt-pkg/mmap.h>
41 #include <apt-pkg/error.h>
42 #include <apt-pkg/strutl.h>
53 // FlCache::Header::Header - Constructor /*{{{*/
54 // ---------------------------------------------------------------------
55 /* Initialize the header variables. These are the defaults used when
56 creating new caches */
57 pkgFLCache::Header::Header()
59 Signature
= 0xEA3F1295;
61 /* Whenever the structures change the major version should be bumped,
62 whenever the generator changes the minor version should be bumped. */
67 HeaderSz
= sizeof(pkgFLCache::Header
);
68 NodeSz
= sizeof(pkgFLCache::Node
);
69 DirSz
= sizeof(pkgFLCache::Directory
);
70 PackageSz
= sizeof(pkgFLCache::Package
);
71 DiversionSz
= sizeof(pkgFLCache::Diversion
);
72 ConfFileSz
= sizeof(pkgFLCache::ConfFile
);
86 memset(Pools
,0,sizeof(Pools
));
89 // FLCache::Header::CheckSizes - Check if the two headers have same *sz /*{{{*/
90 // ---------------------------------------------------------------------
91 /* Compare to make sure we are matching versions */
92 bool pkgFLCache::Header::CheckSizes(Header
&Against
) const
94 if (HeaderSz
== Against
.HeaderSz
&&
95 NodeSz
== Against
.NodeSz
&&
96 DirSz
== Against
.DirSz
&&
97 DiversionSz
== Against
.DiversionSz
&&
98 PackageSz
== Against
.PackageSz
&&
99 ConfFileSz
== Against
.ConfFileSz
)
105 // FLCache::pkgFLCache - Constructor /*{{{*/
106 // ---------------------------------------------------------------------
107 /* If this is a new cache then a new header and hash table are instantaited
108 otherwise the existing ones are mearly attached */
109 pkgFLCache::pkgFLCache(DynamicMMap
&Map
) : Map(Map
)
111 if (_error
->PendingError() == true)
117 // Apply the typecasts
118 HeaderP
= (Header
*)Map
.Data();
119 NodeP
= (Node
*)Map
.Data();
120 DirP
= (Directory
*)Map
.Data();
121 DiverP
= (Diversion
*)Map
.Data();
122 PkgP
= (Package
*)Map
.Data();
123 ConfP
= (ConfFile
*)Map
.Data();
124 StrP
= (char *)Map
.Data();
125 AnyP
= (unsigned char *)Map
.Data();
127 // New mapping, create the basic cache structures
130 Map
.RawAllocate(sizeof(pkgFLCache::Header
));
131 *HeaderP
= pkgFLCache::Header();
132 HeaderP
->FileHash
= Map
.RawAllocate(sizeof(pkgFLCache::Node
)*HeaderP
->HashSize
,
133 sizeof(pkgFLCache::Node
))/sizeof(pkgFLCache::Node
);
136 FileHash
= NodeP
+ HeaderP
->FileHash
;
138 // Setup the dynamic map manager
139 HeaderP
->Dirty
= true;
140 Map
.Sync(0,sizeof(pkgFLCache::Header
));
141 Map
.UsePools(*HeaderP
->Pools
,sizeof(HeaderP
->Pools
)/sizeof(HeaderP
->Pools
[0]));
144 // FLCache::TreeLookup - Perform a lookup in a generic tree /*{{{*/
145 // ---------------------------------------------------------------------
146 /* This is a simple generic tree lookup. The first three entries of
147 the Directory structure are used as a template, but any other similar
148 structure could be used in it's place. */
149 map_ptrloc
pkgFLCache::TreeLookup(map_ptrloc
*Base
,const char *Text
,
150 const char *TextEnd
,unsigned long Size
,
151 unsigned int *Count
,bool Insert
)
153 pkgFLCache::Directory
*Dir
;
155 // Check our last entry cache
156 if (LastTreeLookup
!= 0 && LastLookupSize
== Size
)
158 Dir
= (pkgFLCache::Directory
*)(AnyP
+ LastTreeLookup
*Size
);
159 if (stringcmp(Text
,TextEnd
,StrP
+ Dir
->Name
) == 0)
160 return LastTreeLookup
;
165 // Allocate a new one
171 *Base
= Map
.Allocate(Size
);
176 Dir
= (pkgFLCache::Directory
*)(AnyP
+ *Base
*Size
);
177 Dir
->Name
= Map
.WriteString(Text
,TextEnd
- Text
);
178 LastTreeLookup
= *Base
;
179 LastLookupSize
= Size
;
184 Dir
= (pkgFLCache::Directory
*)(AnyP
+ *Base
*Size
);
185 int Res
= stringcmp(Text
,TextEnd
,StrP
+ Dir
->Name
);
188 LastTreeLookup
= *Base
;
189 LastLookupSize
= Size
;
200 // FLCache::PrintTree - Print out a tree /*{{{*/
201 // ---------------------------------------------------------------------
202 /* This is a simple generic tree dumper, ment for debugging. */
203 void pkgFLCache::PrintTree(map_ptrloc Base
,unsigned long Size
)
208 pkgFLCache::Directory
*Dir
= (pkgFLCache::Directory
*)(AnyP
+ Base
*Size
);
209 PrintTree(Dir
->Left
,Size
);
210 cout
<< (StrP
+ Dir
->Name
) << endl
;
211 PrintTree(Dir
->Right
,Size
);
214 // FLCache::GetPkg - Get a package pointer /*{{{*/
215 // ---------------------------------------------------------------------
216 /* Locate a package by name in it's tree, this is just a wrapper for
218 pkgFLCache::PkgIterator
pkgFLCache::GetPkg(const char *Name
,const char *NameEnd
,
222 NameEnd
= Name
+ strlen(Name
);
224 map_ptrloc Pos
= TreeLookup(&HeaderP
->Packages
,Name
,NameEnd
,
225 sizeof(pkgFLCache::Package
),
226 &HeaderP
->PackageCount
,Insert
);
228 return pkgFLCache::PkgIterator();
229 return pkgFLCache::PkgIterator(*this,PkgP
+ Pos
);
232 // FLCache::GetNode - Get the node associated with the filename /*{{{*/
233 // ---------------------------------------------------------------------
234 /* Lookup a node in the hash table. If Insert is true then a new node is
235 always inserted. The hash table can have multiple instances of a
236 single name available. A search returns the first. It is important
237 that additions for the same name insert after the first entry of
239 pkgFLCache::NodeIterator
pkgFLCache::GetNode(const char *Name
,
242 bool Insert
,bool Divert
)
244 // Split the name into file and directory, hashing as it is copied
245 const char *File
= Name
;
246 unsigned long HashPos
= 0;
247 for (const char *I
= Name
; I
< NameEnd
; I
++)
249 HashPos
= 1637*HashPos
+ *I
;
255 Node
*Hash
= NodeP
+ HeaderP
->FileHash
+ (HashPos
% HeaderP
->HashSize
);
257 map_ptrloc FilePtr
= 0;
258 while (Hash
->Pointer
!= 0)
261 Res
= stringcmp(File
+1,NameEnd
,StrP
+ Hash
->File
);
263 Res
= stringcmp(Name
,File
,StrP
+ DirP
[Hash
->Dir
].Name
);
266 if (Res
== 0 && Insert
== true)
268 /* Dir and File match exactly, we need to reuse the file name
269 when we link it in */
270 FilePtr
= Hash
->File
;
271 Res
= Divert
- ((Hash
->Flags
& Node::Diversion
) == Node::Diversion
);
278 return NodeIterator(*this,Hash
);
280 // Only one diversion per name!
282 return NodeIterator(*this,Hash
);
291 Hash
= NodeP
+ Hash
->Next
;
298 return NodeIterator(*this);
300 // Find a directory node
301 map_ptrloc Dir
= TreeLookup(&HeaderP
->DirTree
,Name
,File
,
302 sizeof(pkgFLCache::Directory
),
303 &HeaderP
->DirCount
,true);
305 return NodeIterator(*this);
307 // Allocate a new node
308 if (Hash
->Pointer
!= 0)
310 // Overwrite or append
313 Node
*Next
= NodeP
+ Map
.Allocate(sizeof(*Hash
));
315 return NodeIterator(*this);
317 Hash
->Next
= Next
- NodeP
;
321 unsigned long NewNext
= Map
.Allocate(sizeof(*Hash
));
323 return NodeIterator(*this);
324 NodeP
[NewNext
].Next
= Hash
->Next
;
325 Hash
->Next
= NewNext
;
326 Hash
= NodeP
+ Hash
->Next
;
330 // Insert into the new item
335 Hash
->Flags
|= Node::Diversion
;
338 Hash
->File
= FilePtr
;
341 HeaderP
->UniqNodes
++;
342 Hash
->File
= Map
.WriteString(File
+1,NameEnd
- File
-1);
345 // Link the node to the package list
346 if (Divert
== false && Loc
== 0)
348 Hash
->Next
= PkgP
[Loc
].Files
;
349 PkgP
[Loc
].Files
= Hash
- NodeP
;
352 HeaderP
->NodeCount
++;
353 return NodeIterator(*this,Hash
);
356 // FLCache::HashNode - Return the hash bucket for the node /*{{{*/
357 // ---------------------------------------------------------------------
358 /* This is one of two hashing functions. The other is inlined into the
360 pkgFLCache::Node
*pkgFLCache::HashNode(NodeIterator
const &Nde
)
363 unsigned long HashPos
= 0;
364 for (const char *I
= Nde
.DirN(); *I
!= 0; I
++)
365 HashPos
= 1637*HashPos
+ *I
;
366 HashPos
= 1637*HashPos
+ '/';
367 for (const char *I
= Nde
.File(); *I
!= 0; I
++)
368 HashPos
= 1637*HashPos
+ *I
;
369 return NodeP
+ HeaderP
->FileHash
+ (HashPos
% HeaderP
->HashSize
);
372 // FLCache::DropNode - Drop a node from the hash table /*{{{*/
373 // ---------------------------------------------------------------------
374 /* This erases a node from the hash table. Note that this does not unlink
375 the node from the package linked list. */
376 void pkgFLCache::DropNode(map_ptrloc N
)
381 NodeIterator
Nde(*this,NodeP
+ N
);
383 if (Nde
->NextPkg
!= 0)
384 _error
->Warning(_("DropNode called on still linked node"));
386 // Locate it in the hash table
388 Node
*Hash
= HashNode(Nde
);
389 while (Hash
->Pointer
!= 0)
394 // Top of the bucket..
400 *Hash
= NodeP
[Hash
->Next
];
401 // Release Hash->Next
404 Last
->Next
= Hash
->Next
;
411 Hash
= NodeP
+ Hash
->Next
;
416 _error
->Error(_("Failed to locate the hash element!"));
419 // FLCache::BeginDiverLoad - Start reading new diversions /*{{{*/
420 // ---------------------------------------------------------------------
421 /* Tag all the diversions as untouched */
422 void pkgFLCache::BeginDiverLoad()
424 for (DiverIterator I
= DiverBegin(); I
.end() == false; I
++)
428 // FLCache::FinishDiverLoad - Finish up a new diversion load /*{{{*/
429 // ---------------------------------------------------------------------
430 /* This drops any untouched diversions. In effect removing any diversions
431 that where not loaded (ie missing from the diversion file) */
432 void pkgFLCache::FinishDiverLoad()
434 map_ptrloc
*Cur
= &HeaderP
->Diversions
;
437 Diversion
*Div
= DiverP
+ *Cur
;
438 if ((Div
->Flags
& Diversion::Touched
) == Diversion::Touched
)
445 DropNode(Div
->DivertTo
);
446 DropNode(Div
->DivertFrom
);
451 // FLCache::AddDiversion - Add a new diversion /*{{{*/
452 // ---------------------------------------------------------------------
453 /* Add a new diversion to the diverion tables and make sure that it is
454 unique and non-chaining. */
455 bool pkgFLCache::AddDiversion(PkgIterator
const &Owner
,
456 const char *From
,const char *To
)
458 /* Locate the two hash nodes we are going to manipulate. If there
459 are pre-existing diversions then they will be returned */
460 NodeIterator FromN
= GetNode(From
,From
+strlen(From
),0,true,true);
461 NodeIterator ToN
= GetNode(To
,To
+strlen(To
),0,true,true);
462 if (FromN
.end() == true || ToN
.end() == true)
463 return _error
->Error(_("Failed to allocate diversion"));
465 // Should never happen
466 if ((FromN
->Flags
& Node::Diversion
) != Node::Diversion
||
467 (ToN
->Flags
& Node::Diversion
) != Node::Diversion
)
468 return _error
->Error(_("Internal error in AddDiversion"));
470 // Now, try to reclaim an existing diversion..
471 map_ptrloc Diver
= 0;
472 if (FromN
->Pointer
!= 0)
473 Diver
= FromN
->Pointer
;
475 /* Make sure from and to point to the same diversion, if they dont
476 then we are trying to intermix diversions - very bad */
477 if (ToN
->Pointer
!= 0 && ToN
->Pointer
!= Diver
)
479 // It could be that the other diversion is no longer in use
480 if ((DiverP
[ToN
->Pointer
].Flags
& Diversion::Touched
) == Diversion::Touched
)
481 return _error
->Error(_("Trying to overwrite a diversion, %s -> %s and %s/%s"),
482 From
,To
,ToN
.File(),ToN
.Dir().Name());
485 Diversion
*Div
= DiverP
+ ToN
->Pointer
;
488 if (Div
->DivertTo
== ToN
.Offset())
490 if (Div
->DivertFrom
== ToN
.Offset())
493 // This diversion will be cleaned up by FinishDiverLoad
496 // Allocate a new diversion
499 Diver
= Map
.Allocate(sizeof(Diversion
));
502 DiverP
[Diver
].Next
= HeaderP
->Diversions
;
503 HeaderP
->Diversions
= Diver
;
504 HeaderP
->DiversionCount
++;
507 // Can only have one diversion of the same files
508 Diversion
*Div
= DiverP
+ Diver
;
509 if ((Div
->Flags
& Diversion::Touched
) == Diversion::Touched
)
510 return _error
->Error(_("Double add of diversion %s -> %s"),From
,To
);
512 // Setup the From/To links
513 if (Div
->DivertFrom
!= FromN
.Offset() && Div
->DivertFrom
!= ToN
.Offset())
514 DropNode(Div
->DivertFrom
);
515 Div
->DivertFrom
= FromN
.Offset();
516 if (Div
->DivertTo
!= FromN
.Offset() && Div
->DivertTo
!= ToN
.Offset())
517 DropNode(Div
->DivertTo
);
518 Div
->DivertTo
= ToN
.Offset();
520 // Link it to the two nodes
521 FromN
->Pointer
= Diver
;
522 ToN
->Pointer
= Diver
;
525 Div
->OwnerPkg
= Owner
.Offset();
526 Div
->Flags
|= Diversion::Touched
;
531 // FLCache::AddConfFile - Add a new configuration file /*{{{*/
532 // ---------------------------------------------------------------------
533 /* This simply adds a new conf file node to the hash table. This is only
534 used by the status file reader. It associates a hash with each conf
535 file entry that exists in the status file and the list file for
536 the proper package. Duplicate conf files (across packages) are left
537 up to other routines to deal with. */
538 bool pkgFLCache::AddConfFile(const char *Name
,const char *NameEnd
,
539 PkgIterator
const &Owner
,
540 const unsigned char *Sum
)
542 NodeIterator Nde
= GetNode(Name
,NameEnd
,0,false,false);
543 if (Nde
.end() == true)
546 unsigned long File
= Nde
->File
;
547 for (; Nde
->File
== File
&& Nde
.end() == false; Nde
++)
549 if (Nde
.RealPackage() != Owner
)
552 if ((Nde
->Flags
& Node::ConfFile
) == Node::ConfFile
)
553 return _error
->Error(_("Duplicate conf file %s/%s"),Nde
.DirN(),Nde
.File());
555 // Allocate a new conf file structure
556 map_ptrloc Conf
= Map
.Allocate(sizeof(ConfFile
));
559 ConfP
[Conf
].OwnerPkg
= Owner
.Offset();
560 memcpy(ConfP
[Conf
].MD5
,Sum
,sizeof(ConfP
[Conf
].MD5
));
563 Nde
->Flags
|= Node::ConfFile
;
567 /* This means the conf file has been replaced, but the entry in the
568 status file was not updated */
573 // NodeIterator::RealPackage - Return the package for this node /*{{{*/
574 // ---------------------------------------------------------------------
575 /* Since the package pointer is indirected in all sorts of interesting ways
576 this is used to get a pointer to the owning package */
577 pkgFLCache::Package
*pkgFLCache::NodeIterator::RealPackage() const
579 if (Nde
->Pointer
== 0)
582 if ((Nde
->Flags
& Node::ConfFile
) == Node::ConfFile
)
583 return Owner
->PkgP
+ Owner
->ConfP
[Nde
->Pointer
].OwnerPkg
;
585 // Diversions are ignored
586 if ((Nde
->Flags
& Node::Diversion
) == Node::Diversion
)
589 return Owner
->PkgP
+ Nde
->Pointer
;