Add -fno-strict-aliasing to prevent compile warnings on some systems.
[polipo.git] / diskcache.h
blob4c9b87f466393a56c13023347bfb9d9a00b165a2
1 /*
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
20 THE SOFTWARE.
23 extern int maxDiskEntries;
25 extern AtomPtr diskCacheRoot;
26 extern AtomPtr additionalDiskCacheRoot;
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 metadataDirty;
37 struct _DiskCacheEntry *next;
38 struct _DiskCacheEntry *previous;
39 } *DiskCacheEntryPtr, DiskCacheEntryRec;
41 typedef struct _DiskObject {
42 char *location;
43 char *filename;
44 int body_offset;
45 int length;
46 int size;
47 time_t age;
48 time_t access;
49 time_t date;
50 time_t last_modified;
51 time_t expires;
52 struct _DiskObject *next;
53 } DiskObjectRec, *DiskObjectPtr;
55 struct stat;
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);