Use FcAtomic to rewrite cache files.

This commit is contained in:
Patrick Lam 2005-09-28 00:23:15 +00:00
parent 099f9a8683
commit 1d879de2d9
1 changed files with 98 additions and 34 deletions

View File

@ -38,7 +38,7 @@ static off_t
FcCacheSkipToArch (int fd, const char * arch); FcCacheSkipToArch (int fd, const char * arch);
static FcBool static FcBool
FcCacheMoveDown (int fd, off_t start); FcCacheCopyOld (int fd, int fd_orig, off_t start);
static void * static void *
FcDirCacheProduce (FcFontSet *set, FcCache * metadata); FcDirCacheProduce (FcFontSet *set, FcCache * metadata);
@ -291,7 +291,7 @@ FcBool
FcGlobalCacheSave (FcGlobalCache *cache, FcGlobalCacheSave (FcGlobalCache *cache,
const FcChar8 *cache_file) const FcChar8 *cache_file)
{ {
int fd; int fd, fd_orig;
FcGlobalCacheDir *dir; FcGlobalCacheDir *dir;
FcAtomic *atomic; FcAtomic *atomic;
off_t current_arch_start = 0, truncate_to; off_t current_arch_start = 0, truncate_to;
@ -308,7 +308,8 @@ FcGlobalCacheSave (FcGlobalCache *cache,
atomic = FcAtomicCreate (cache_file); atomic = FcAtomicCreate (cache_file);
if (!atomic) if (!atomic)
goto bail0; return FcFalse;
if (!FcAtomicLock (atomic)) if (!FcAtomicLock (atomic))
goto bail1; goto bail1;
fd = open ((char *) FcAtomicNewFile(atomic), O_RDWR | O_CREAT, fd = open ((char *) FcAtomicNewFile(atomic), O_RDWR | O_CREAT,
@ -316,21 +317,31 @@ FcGlobalCacheSave (FcGlobalCache *cache,
if (fd == -1) if (fd == -1)
goto bail2; goto bail2;
fd_orig = open ((char *) FcAtomicOrigFile(atomic), O_RDONLY);
current_arch_machine_name = FcCacheMachineSignature (); current_arch_machine_name = FcCacheMachineSignature ();
current_arch_start = FcCacheSkipToArch(fd, current_arch_machine_name); if (fd_orig == -1)
current_arch_start = 0;
else
current_arch_start = FcCacheSkipToArch (fd_orig,
current_arch_machine_name);
if (current_arch_start < 0) if (current_arch_start < 0)
current_arch_start = FcCacheNextOffset (lseek(fd, 0, SEEK_END)); current_arch_start = FcCacheNextOffset (lseek(fd, 0, SEEK_END));
if (!FcCacheMoveDown(fd, current_arch_start)) if (!FcCacheCopyOld(fd, fd_orig, current_arch_start))
goto bail2; goto bail3;
close (fd_orig);
fd_orig = -1;
current_arch_start = lseek(fd, 0, SEEK_CUR); current_arch_start = lseek(fd, 0, SEEK_CUR);
if (ftruncate (fd, current_arch_start) == -1) if (ftruncate (fd, current_arch_start) == -1)
goto bail2; goto bail3;
header = malloc (10 + strlen (current_arch_machine_name)); header = malloc (10 + strlen (current_arch_machine_name));
if (!header) if (!header)
goto bail1; goto bail3;
truncate_to = current_arch_start + strlen(current_arch_machine_name) + 11; truncate_to = current_arch_start + strlen(current_arch_machine_name) + 11;
for (dir = cache->dirs; dir; dir = dir->next) for (dir = cache->dirs; dir; dir = dir->next)
@ -345,7 +356,7 @@ FcGlobalCacheSave (FcGlobalCache *cache,
sprintf (header, "%8x ", (int)truncate_to); sprintf (header, "%8x ", (int)truncate_to);
strcat (header, current_arch_machine_name); strcat (header, current_arch_machine_name);
if (!FcCacheWriteString (fd, header)) if (!FcCacheWriteString (fd, header))
goto bail1; goto bail4;
for (dir = cache->dirs; dir; dir = dir->next) for (dir = cache->dirs; dir; dir = dir->next)
{ {
@ -361,10 +372,10 @@ FcGlobalCacheSave (FcGlobalCache *cache,
FcCacheWriteString (fd, ""); FcCacheWriteString (fd, "");
if (close (fd) == -1) if (close (fd) == -1)
goto bail3; goto bail25;
if (!FcAtomicReplaceOrig (atomic)) if (!FcAtomicReplaceOrig (atomic))
goto bail3; goto bail25;
FcAtomicUnlock (atomic); FcAtomicUnlock (atomic);
FcAtomicDestroy (atomic); FcAtomicDestroy (atomic);
@ -372,13 +383,19 @@ FcGlobalCacheSave (FcGlobalCache *cache,
cache->updated = FcFalse; cache->updated = FcFalse;
return FcTrue; return FcTrue;
bail3: bail4:
free (header);
bail3:
if (fd_orig != -1)
close (fd_orig);
close (fd);
bail25:
FcAtomicDeleteNew (atomic); FcAtomicDeleteNew (atomic);
bail2: bail2:
FcAtomicUnlock (atomic); FcAtomicUnlock (atomic);
bail1: bail1:
FcAtomicDestroy (atomic); FcAtomicDestroy (atomic);
bail0:
return FcFalse; return FcFalse;
} }
@ -438,16 +455,34 @@ FcCacheSkipToArch (int fd, const char * arch)
* down to cover it), and leaves the file pointer at the end of the * down to cover it), and leaves the file pointer at the end of the
* file. */ * file. */
static FcBool static FcBool
FcCacheMoveDown (int fd, off_t start) FcCacheCopyOld (int fd, int fd_orig, off_t start)
{ {
char * buf = malloc (8192); char * buf = malloc (8192);
char candidate_arch_machine_name[MACHINE_SIGNATURE_SIZE + 9]; char candidate_arch_machine_name[MACHINE_SIGNATURE_SIZE + 9];
long bs; long bs;
int c, bytes_skipped; int c, bytes_skipped;
off_t loc;
if (!buf) if (!buf)
return FcFalse; return FcFalse;
loc = 0;
lseek (fd, 0, SEEK_SET); lseek (fd_orig, 0, SEEK_SET);
do
{
int b = 8192;
if (loc + b > start)
b = start - loc;
if ((c = read (fd_orig, buf, b)) <= 0)
break;
if (write (fd, buf, c) < 0)
goto bail;
loc += c;
}
while (c > 0);
lseek (fd, start, SEEK_SET); lseek (fd, start, SEEK_SET);
if (FcCacheReadString (fd, candidate_arch_machine_name, if (FcCacheReadString (fd, candidate_arch_machine_name,
sizeof (candidate_arch_machine_name)) == 0) sizeof (candidate_arch_machine_name)) == 0)
@ -732,12 +767,13 @@ FcBool
FcDirCacheWrite (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir) FcDirCacheWrite (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir)
{ {
FcChar8 *cache_file = FcStrPlus (dir, (FcChar8 *) "/" FC_DIR_CACHE_FILE); FcChar8 *cache_file = FcStrPlus (dir, (FcChar8 *) "/" FC_DIR_CACHE_FILE);
int fd, i, dirs_count; int fd, fd_orig, i, dirs_count;
FcCache metadata; FcAtomic *atomic;
off_t current_arch_start = 0, truncate_to; FcCache metadata;
off_t current_arch_start = 0, truncate_to;
char * current_arch_machine_name, * header; char *current_arch_machine_name, * header;
void * current_dir_block; void *current_dir_block;
if (!cache_file) if (!cache_file)
goto bail; goto bail;
@ -745,26 +781,43 @@ FcDirCacheWrite (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir)
current_dir_block = FcDirCacheProduce (set, &metadata); current_dir_block = FcDirCacheProduce (set, &metadata);
if (metadata.count && !current_dir_block) if (metadata.count && !current_dir_block)
goto bail; goto bail0;
if (FcDebug () & FC_DBG_CACHE) if (FcDebug () & FC_DBG_CACHE)
printf ("FcDirCacheWriteDir cache_file \"%s\"\n", cache_file); printf ("FcDirCacheWriteDir cache_file \"%s\"\n", cache_file);
fd = open((char *)cache_file, O_RDWR | O_CREAT, 0666); atomic = FcAtomicCreate (cache_file);
if (fd == -1) if (!atomic)
goto bail0; goto bail0;
if (!FcAtomicLock (atomic))
goto bail1;
fd_orig = open((char *)FcAtomicOrigFile (atomic), O_RDONLY, 0666);
fd = open((char *)FcAtomicNewFile (atomic), O_RDWR | O_CREAT, 0666);
if (fd == -1)
goto bail2;
current_arch_machine_name = FcCacheMachineSignature (); current_arch_machine_name = FcCacheMachineSignature ();
current_arch_start = FcCacheSkipToArch(fd, current_arch_machine_name); current_arch_start = 0;
if (fd_orig != -1)
current_arch_start =
FcCacheSkipToArch(fd_orig, current_arch_machine_name);
if (current_arch_start < 0) if (current_arch_start < 0)
current_arch_start = FcCacheNextOffset (lseek(fd, 0, SEEK_END)); current_arch_start = FcCacheNextOffset (lseek(fd, 0, SEEK_END));
if (!FcCacheMoveDown(fd, current_arch_start)) if (fd_orig != -1 && !FcCacheCopyOld(fd, fd_orig, current_arch_start))
goto bail0; goto bail3;
if (fd_orig != -1)
close (fd_orig);
current_arch_start = lseek(fd, 0, SEEK_CUR); current_arch_start = lseek(fd, 0, SEEK_CUR);
if (ftruncate (fd, current_arch_start) == -1) if (ftruncate (fd, current_arch_start) == -1)
goto bail0; goto bail3;
/* allocate space for subdir names in this block */ /* allocate space for subdir names in this block */
dirs_count = 0; dirs_count = 0;
@ -776,11 +829,11 @@ FcDirCacheWrite (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir)
truncate_to = FcCacheNextOffset (FcCacheNextOffset (current_arch_start + sizeof (FcCache) + dirs_count) + metadata.count) - current_arch_start; truncate_to = FcCacheNextOffset (FcCacheNextOffset (current_arch_start + sizeof (FcCache) + dirs_count) + metadata.count) - current_arch_start;
header = malloc (10 + strlen (current_arch_machine_name)); header = malloc (10 + strlen (current_arch_machine_name));
if (!header) if (!header)
goto bail0; goto bail3;
sprintf (header, "%8x ", (int)truncate_to); sprintf (header, "%8x ", (int)truncate_to);
strcat (header, current_arch_machine_name); strcat (header, current_arch_machine_name);
if (!FcCacheWriteString (fd, header)) if (!FcCacheWriteString (fd, header))
goto bail1; goto bail4;
for (i = 0; i < dirs->size; i++) for (i = 0; i < dirs->size; i++)
FcCacheWriteString (fd, (char *)dirs->strs[i]); FcCacheWriteString (fd, (char *)dirs->strs[i]);
@ -796,18 +849,29 @@ FcDirCacheWrite (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir)
/* this actually serves to pad out the cache file, if needed */ /* this actually serves to pad out the cache file, if needed */
if (ftruncate (fd, current_arch_start + truncate_to) == -1) if (ftruncate (fd, current_arch_start + truncate_to) == -1)
goto bail1; goto bail4;
close(fd); close(fd);
if (!FcAtomicReplaceOrig(atomic))
goto bail4;
FcAtomicUnlock (atomic);
FcAtomicDestroy (atomic);
return FcTrue; return FcTrue;
bail1: bail4:
free (header); free (header);
bail3:
close (fd);
bail2:
FcAtomicUnlock (atomic);
bail1:
FcAtomicDestroy (atomic);
bail0: bail0:
free (current_dir_block);
bail:
unlink ((char *)cache_file); unlink ((char *)cache_file);
free (cache_file); free (cache_file);
if (current_dir_block)
free (current_dir_block);
bail:
return FcFalse; return FcFalse;
} }