#include "rpmhash.h"
#include "header.h"
Include dependency graph for fprint.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Data Structures | |
| struct | fprintCacheEntry_s |
| Finger print cache entry. More... | |
| struct | fprintCache_s |
| Finger print cache. More... | |
| struct | fingerPrint_s |
| Associates a trailing sub-directory and final base name with an existing directory finger print. More... | |
Defines | |
| #define | FP_ENTRY_EQUAL(a, b) (((a)->dev == (b)->dev) && ((a)->ino == (b)->ino)) |
| #define | FP_EQUAL(a, b) |
Typedefs | |
| typedef fprintCache_s * | fingerPrintCache |
| typedef fingerPrint_s | fingerPrint |
Functions | |
| int | rpmdbFindFpList (rpmdb db, fingerPrint *fpList, dbiIndexSet *matchList, int numItems, unsigned int exclude) |
| Find fingerprint matches in database. | |
| fingerPrintCache | fpCacheCreate (int sizeHint) |
| Create finger print cache. | |
| fingerPrintCache | fpCacheFree (fingerPrintCache cache) |
| Destroy finger print cache. | |
| fingerPrint | fpLookup (fingerPrintCache cache, const char *dirName, const char *baseName, int scareMem) |
| Return finger print of a file path. | |
| uint32_t | fpHashFunction (uint32_t h, const void *data, size_t size) |
| Return hash value for a finger print. | |
| int | fpEqual (const void *key1, const void *key2) |
| Compare two finger print entries. | |
| void | fpLookupList (fingerPrintCache cache, const char **dirNames, const char **baseNames, const uint_32 *dirIndexes, int fileCount, fingerPrint *fpList) |
| Return finger prints of an array of file paths. | |
Definition in file fprint.h.
|
|
|
|
|
Value: ( \
FP_ENTRY_EQUAL((a).entry, (b).entry) && \
!strcmp((a).baseName, (b).baseName) && ( \
((a).subDir == (b).subDir) || \
((a).subDir && (b).subDir && !strcmp((a).subDir, (b).subDir)) \
) \
)
Definition at line 60 of file fprint.h. Referenced by findFps(), fpEqual(), rpmdbFindByFile(), and rpmdbFindFpList(). |
|
|
|
|
|
|
|
|
Create finger print cache.
Definition at line 13 of file fprint.c. References htCreate(), and xmalloc(). Referenced by rpmdbFindByFile(), rpmdbFindFpList(), and rpmtsRun(). |
|
|
Destroy finger print cache.
Definition at line 22 of file fprint.c. References fprintCache_s::ht, and htFree(). Referenced by rpmdbFindByFile(), rpmdbFindFpList(), and rpmtsRun(). |
|
||||||||||||
|
Compare two finger print entries. This routine is exactly equivalent to the FP_EQUAL macro.
Definition at line 212 of file fprint.c. References FP_EQUAL. Referenced by rpmtsRun(). |
|
||||||||||||||||
|
Return hash value for a finger print. Hash based on dev and inode only!
Definition at line 194 of file fprint.c. References fingerPrint_s::baseName, fprintCacheEntry_s::dev, fingerPrint_s::entry, and fprintCacheEntry_s::ino. Referenced by rpmtsRun(). |
|
||||||||||||||||||||
|
Return finger print of a file path.
Definition at line 188 of file fprint.c. References doLookup(). Referenced by rpmdbFindByFile(). |
|
||||||||||||||||||||||||||||
|
Return finger prints of an array of file paths.
Definition at line 232 of file fprint.c. References fingerPrint_s::baseName, doLookup(), fingerPrint_s::entry, and fingerPrint_s::subDir. Referenced by rpmdbFindFpList(), and rpmtsRun(). |
1.4.4