+Trace dumps compatible with TraceFS.
[captive.git] / src / libcaptive / cc / cache.c
1 /* $Id$
2  * reactos Cache Manager (Cc*) cache handling of libcaptive
3  * Copyright (C) 2003 Jan Kratochvil <project-captive@jankratochvil.net>
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; exactly version 2 of June 1991 is required
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19
20 #include "config.h"
21
22 #include "privatebcbpin.h"
23 #include "reactos/ddk/status.h"
24
25
26 /**
27  * CcPurgeCacheSection:
28  * @SectionObjectPointer: Pointer specifying file to purge;
29  * %NULL value is forbidden.
30  * libcaptive interprets only #SharedCacheMap field as #PUBLIC_BCB pointer.
31  * Field #SharedCacheMap value %NULL is permitted; libcaptive does a NOP with %TRUE return code in such case.
32  * @FileOffset: Starting offset of the ranger to purge.
33  * %NULL pointer is permitted and it means to purge the whole whole.
34  * FIXME: Non %NULL pointer is NOT IMPLEMENTED YET by libcaptive.
35  * @Length: Length of the range to purge. Ignored if @FileOffset==NULL.
36  * @UninitializeCacheMaps: Purge also private cache maps (FIXME: ???).
37  *
38  * Drop any caching for shrunken file which is not being deleted.
39  * libcaptive will no longer consider such #BCB as dirty.
40  *
41  * Undocumented: It is required during %FSCTL_LOCK_VOLUME by ntfs.sys of NT-5.1sp1
42  * to return %TRUE value if #SharedCacheMap value is %NULL.
43  *
44  * Returns: %TRUE if the range was purged successfuly.
45  */
46 BOOLEAN CcPurgeCacheSection(IN PSECTION_OBJECT_POINTERS SectionObjectPointer,
47                 IN PLARGE_INTEGER FileOffset OPTIONAL,IN ULONG Length,IN BOOLEAN UninitializeCacheMaps)
48 {
49 CaptiveSharedCacheMapObject *SharedCacheMap;
50 BOOLEAN r;
51
52         g_log(G_LOG_DOMAIN,G_LOG_LEVEL_DEBUG,"enter: CcPurgeCacheSection: SectionObjectPointer=0x%lX,->SharedCacheMap=0x%lX,FileOffset=0x%lX,Length=0x%lX,"
53                                         "UninitializeCacheMaps=%d",
54                         (long)SectionObjectPointer,
55                         (!SectionObjectPointer ? -1 : (long)SectionObjectPointer->SharedCacheMap),
56                         (!FileOffset ? -1 : (long)FileOffset->QuadPart),Length,
57                                         UninitializeCacheMaps);
58
59         g_return_val_if_fail(SectionObjectPointer!=NULL,FALSE);
60         g_return_val_if_fail(FileOffset==NULL,FALSE);   /* NOT IMPLEMENTED YET */
61         g_return_val_if_fail(UninitializeCacheMaps==0,FALSE);   /* NOT IMPLEMENTED YET */
62
63         SharedCacheMap=captive_SectionObjectPointers_to_SharedCacheMap(SectionObjectPointer);
64
65         captive_shared_cache_map_purge(SharedCacheMap);
66
67         r=TRUE;
68
69         g_log(G_LOG_DOMAIN,G_LOG_LEVEL_DEBUG,"leave: CcPurgeCacheSection: r=%d",r);
70
71         return r;
72 }
73
74
75 /**
76  * CcFlushCache:
77  * @SectionObjectPointer: Pointer specifying file to flush;
78  * %NULL value is forbidden.
79  * libcaptive interprets only #SharedCacheMap field as #PUBLIC_BCB pointer.
80  * Field #SharedCacheMap value %NULL is permitted; libcaptive does a NOP in such case.
81  * @FileOffset: Optional starting point of the range to flush.
82  * %NULL value is permitted.
83  * @Length: Length of the range to flush. Ignored if @FileOffset is %NULL.
84  * @IoStatus: Optionally returns the resulting operation status.
85  * #Information field will contain the number of bytes flushed.
86  * %NULL value is permitted.
87  *
88  * Flushes out any pending dirty data in cache manager BCB mapping.
89  * FIXME: libcaptive currently always flushes the full file ignoring any @FileOffset or @Length.
90  *
91  * VERIFIED: Ranged flushes.
92  * VERIFIED: Synchronous write.
93  */
94 VOID CcFlushCache(IN PSECTION_OBJECT_POINTERS SectionObjectPointer,
95                 IN PLARGE_INTEGER FileOffset OPTIONAL,IN ULONG Length,OUT PIO_STATUS_BLOCK IoStatus OPTIONAL)
96 {
97 CaptiveSharedCacheMapObject *SharedCacheMap;
98 guint64 flushed;
99
100         g_log(G_LOG_DOMAIN,G_LOG_LEVEL_DEBUG,"enter: CcFlushCache: SectionObjectPointer=0x%lX,->SharedCacheMap=0x%lX,FileOffset=0x%lX,Length=0x%lX",
101                         (long)SectionObjectPointer,
102                         (!SectionObjectPointer ? -1 : (long)SectionObjectPointer->SharedCacheMap),
103                         (!FileOffset ? -1 : (long)FileOffset->QuadPart),Length);
104
105         g_return_if_fail(SectionObjectPointer!=NULL);
106
107         if (SectionObjectPointer->SharedCacheMap) {
108                 SharedCacheMap=captive_SectionObjectPointers_to_SharedCacheMap(SectionObjectPointer);
109
110                 if (FileOffset)
111                         flushed=captive_shared_cache_map_flush(SharedCacheMap,FileOffset->QuadPart,FileOffset->QuadPart+Length);
112                 else
113                         flushed=captive_shared_cache_map_flush(SharedCacheMap,0,G_MAXUINT64-1); /* '-1' for overflow safety */
114                 }
115         else
116                 flushed=0;
117
118         if (IoStatus) {
119                 IoStatus->Status=STATUS_SUCCESS;
120                 IoStatus->Information=flushed;
121                 }
122
123         g_log(G_LOG_DOMAIN,G_LOG_LEVEL_DEBUG,"leave: CcFlushCache: IoStatus->Status=0x%lX,IoStatus->Information=0x%lX",
124                         (!IoStatus ? -1 : (long)IoStatus->Status),(!IoStatus ? -1 : (long)IoStatus->Information));
125 }
126
127
128 BOOLEAN CcIsThereDirtyData(IN PVPB Vpb)
129 {
130 BOOLEAN r;
131
132         g_log(G_LOG_DOMAIN,G_LOG_LEVEL_DEBUG,"enter: CcIsThereDirtyData: Vpb=0x%lX",(long)Vpb);
133
134         g_return_val_if_fail(Vpb!=NULL,FALSE);  /* We have just one volume mounted anyway. */
135
136         r=captive_shared_cache_map_is_any_dirty();
137
138         g_log(G_LOG_DOMAIN,G_LOG_LEVEL_DEBUG,"leave: CcIsThereDirtyData: r=%d",r);
139
140         return r;
141 }