root / trunk / src / dot / proxy / diskcache.h
| Revision 7618, 2.3 kB (checked in by BradNeuberg, 22 months ago) |
|---|
| Line | |
|---|---|
| 1 | /* |
| 2 | Copyright (c) 2003-2006 by Juliusz Chroboczek |
| 3 | |
| 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: |
| 10 | |
| 11 | The above copyright notice and this permission notice shall be included in |
| 12 | all copies or substantial portions of the Software. |
| 13 | |
| 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 |
| 20 | THE SOFTWARE. |
| 21 | */ |
| 22 | |
| 23 | extern int maxDiskEntries; |
| 24 | |
| 25 | extern AtomPtr diskCacheRoot; |
| 26 | extern AtomPtr additionalDiskCacheRoot; |
| 27 | |
| 28 | typedef struct _DiskCacheEntry { |
| 29 | char *filename; |
| 30 | ObjectPtr object; |
| 31 | int fd; |
| 32 | off_t offset; |
| 33 | off_t size; |
| 34 | int body_offset; |
| 35 | short local; |
| 36 | short writeable; |
| 37 | short metadataDirty; |
| 38 | struct _DiskCacheEntry *next; |
| 39 | struct _DiskCacheEntry *previous; |
| 40 | } *DiskCacheEntryPtr, DiskCacheEntryRec; |
| 41 | |
| 42 | typedef struct _DiskObject { |
| 43 | char *location; |
| 44 | char *filename; |
| 45 | int body_offset; |
| 46 | int length; |
| 47 | int size; |
| 48 | time_t age; |
| 49 | time_t access; |
| 50 | time_t date; |
| 51 | time_t last_modified; |
| 52 | time_t expires; |
| 53 | struct _DiskObject *next; |
| 54 | } DiskObjectRec, *DiskObjectPtr; |
| 55 | |
| 56 | struct stat; |
| 57 | |
| 58 | extern int maxDiskCacheEntrySize; |
| 59 | |
| 60 | void preinitDiskcache(void); |
| 61 | void initDiskcache(void); |
| 62 | int destroyDiskEntry(ObjectPtr object, int); |
| 63 | int diskEntrySize(ObjectPtr object); |
| 64 | ObjectPtr objectGetFromDisk(ObjectPtr); |
| 65 | int objectFillFromDisk(ObjectPtr object, int offset, int chunks); |
| 66 | int writeoutMetadata(ObjectPtr object); |
| 67 | int writeoutToDisk(ObjectPtr object, int upto, int max); |
| 68 | void dirtyDiskEntry(ObjectPtr object); |
| 69 | int revalidateDiskEntry(ObjectPtr object); |
| 70 | DiskObjectPtr readDiskObject(char *filename, struct stat *sb); |
| 71 | void indexDiskObjects(FILE *out, const char *root, int r); |
| 72 | void expireDiskObjects(void); |
Note: See TracBrowser
for help on using the browser.