2 Copyright (c) 2003-2010 by Juliusz Chroboczek
4 Permission is hereby granted, free of charge, to any person obtaining a copy
5 of this software and associated documentation files (the "Software"), to deal
6 in the Software without restriction, including without limitation the rights
7 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 copies of the Software, and to permit persons to whom the Software is
9 furnished to do so, subject to the following conditions:
11 The above copyright notice and this permission notice shall be included in
12 all copies or substantial portions of the Software.
14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 extern int maxDiskEntries
;
25 extern AtomPtr diskCacheRoot
;
26 extern AtomPtr additionalDiskCacheRoot
;
28 typedef struct _DiskCacheEntry
{
37 struct _DiskCacheEntry
*next
;
38 struct _DiskCacheEntry
*previous
;
39 } *DiskCacheEntryPtr
, DiskCacheEntryRec
;
41 typedef struct _DiskObject
{
52 struct _DiskObject
*next
;
53 } DiskObjectRec
, *DiskObjectPtr
;
57 extern int maxDiskCacheEntrySize
;
59 void preinitDiskcache(void);
60 void initDiskcache(void);
61 int destroyDiskEntry(ObjectPtr object
, int);
62 int diskEntrySize(ObjectPtr object
);
63 ObjectPtr
objectGetFromDisk(ObjectPtr
);
64 int objectFillFromDisk(ObjectPtr object
, int offset
, int chunks
);
65 int writeoutMetadata(ObjectPtr object
);
66 int writeoutToDisk(ObjectPtr object
, int upto
, int max
);
67 void dirtyDiskEntry(ObjectPtr object
);
68 int revalidateDiskEntry(ObjectPtr object
);
69 DiskObjectPtr
readDiskObject(char *filename
, struct stat
*sb
);
70 void indexDiskObjects(FILE *out
, const char *root
, int r
);
71 void expireDiskObjects(void);