CBCache Component
Properties Methods Events Config Settings Errors
The CBCache component allows applications to easily cache remote file data locally.
Syntax
callback.CBFSConnect.Cbcache
Remarks
The CBCache component provides a local file-caching implementation that helps applications easily cache the contents of files stored in some external storage, such as a cloud storage service. Once an application has informed the CBCache component of the external storage's file transfer capabilities, the hard work of reading data into and flushing data out of the cache is handled automatically.
Getting Started
Applications typically need only a single instance of the CBCache component, because it can handle caching and accessing multiple files at once in parallel. Each file in the cache is identified by its file Id, and all cached file data are stored in a single cache storage file, whose name and location are determined by the CacheFile and CacheDirectory properties, respectively.
In terms of application architecture, the CBCache component (or, more generally, the cache itself) should reside between application code that needs random access to files in the external storage, and the code that provides access to said external storage. The former makes use of the CBCache component's properties and methods, while the latter is "connected" through the component's ReadData and WriteData events.
Here's how to get up and running:
- Implement the ReadData and WriteData events so that they provide appropriate access to the external storage. The ReadData event is mandatory. The WriteData event is required only if the CBCache component is to be in charge of flushing changed data back to external storage. Refer to these events' documentation for more information about how to correctly implement them.
- "Describe" the reading, writing, and resizing capabilities of the external storage to the CBCache component by setting the ReadingCapabilities, WritingCapabilities, and ResizingCapabilities properties. This information is used by the CBCache component to formulate a strategy for interacting with the external storage through the events mentioned in step 1.
- Open the cache by setting the CacheDirectory and CacheFile properties, and then calling the OpenCache method.
- When the component opens an existing cache vault, it is recommended that applications use the EnumerateCachedFiles method to search for any Orphan Files (i.e., files that are not currently open have unflushed data). If any such files are found, applications may wish to open, flush, or delete them.
- To create or open a file in the cache (i.e., a cached file), call the FileOpen method.
- While a cached file is open, it can be read from or written to using the FileRead and FileWrite methods.
Property List
The following is the full list of the properties of the component with short descriptions. Click on the links for further details.
Active | This property describes whether the file cache is open. |
AutoFlush | This property specifies whether automatic flushing is enabled. |
CacheDirectory | This property includes the directory in which the cache's storage file is located. |
CacheFile | This property includes the name of the file cache. |
CacheSizeLimit | This property includes the maximum size of the cache's storage file. |
Compressed | This property specifies whether or not the cache's storage file should be compressed. |
FlushAfterCloseDelay | This property includes the number of seconds to delay flushing after a file is closed. |
FlushAfterSize | This property includes the amount of data that must be changed for flushing to begin. |
FlushAfterTime | This property includes the inactivity timeout that must elapse for flushing to begin. |
FlushPolicy | This property includes the file flushing strategy that the cache should use. |
HasOrphans | This property notes whether or not the cache contains any orphan files. |
MaxCachedFileSize | This property includes the maximum amount of data that should be cached for any given file. |
Mode | This property includes the mode in which the cache operates in regard to access to the external storage. |
Offline | This property specifies whether or not the cache works in Offline mode. |
PurgeAfterCloseDelay | This property includes the number of seconds to delay purging for after a file is closed. |
PurgeAfterTime | This property includes the inactivity timeout that must elapse for purging to begin. |
PurgePolicy | This property includes the file block purging strategy that the cache should use. |
ReadBlockSize | This property includes the block size to use when reading file data from external storage. |
ReadingCapabilities | This property includes the reading capabilities supported by the external storage. |
ResizingCapabilities | This property includes the file resizing capabilities supported by the external storage. |
Serialization | This property specifies whether nonintersecting operations against the same file or cache should execute serially or in parallel. |
Stats | This property includes cache statistics. |
Tag | This property stores application-defined data specific to a particular instance of the component. |
WriteBlockSize | This property includes the block size to use when writing file data to external storage. |
WritingCapabilities | This property includes the writing capabilities supported by the external storage. |
Method List
The following is the full list of the methods of the component with short descriptions. Click on the links for further details.
CancelCleanup | This method cancels a background cleanup operation, if necessary. |
CheckAndRepair | This method checks a cache vault's consistency and repairs it as necessary. |
Clear | This method removes files from the cache. |
CloseCache | This method closes the cache. |
CloseEnumeration | This method closes the given file enumeration. |
Config | Sets or retrieves a configuration setting. |
DeleteCache | This method deletes the cache completely. |
EnumerateCachedFiles | This method enumerates the files in the cache. |
FileChangeId | This method changes the Id of a cached file. |
FileClose | This method closes a cached file. |
FileCloseEx | This method closes a cached file, specifying flushing and purging behaviors explicitly. |
FileDelete | This method deletes a file from the cache. |
FileExists | This method checks if a file with the given Id is present in the cache. |
FileFlush | This method flushes the specified file's modified blocks out to external storage. |
FileGetPinned | This method returns the pinned state of a cached file. |
FileGetSize | This method gets the "real size" of a cached file. |
FileGetStatus | This method gets the status of a cached file. |
FileOpen | This method opens the specified cached file, creating it if necessary. |
FileOpenEx | This method opens the specified cached file, creating it if necessary. |
FilePurge | This method purges unmodified data from the cache. |
FileRead | This method reads the specified part of a cached file. |
FileSetPinned | This method sets the pinned state of a cached file. |
FileSetSize | This method sets the "real size" of a cached file. |
FileSetSizeEx | This method sets the "real size" of a cached file. |
FileTagDelete | This method deletes a file tag. |
FileTagExists | This method checks whether or not a file has a specific tag associated with it. |
FileTagGet | This method retrieves the binary data held by a file tag attached to the specified cached file. |
FileTagGetSize | This method retrieves the size of a file tag attached to the specified cached file. |
FileTagSet | This method attaches a file tag with binary data to the specified cached file. |
FileTouch | This method touches a range of data in a cached file. |
FileWrite | This method writes the specified part of a cached file. |
GetNextEnumeratedFile | This method returns the next file in the list of enumeration results. |
OpenCache | This method opens the cache. |
RefreshStatistics | This method forces a refresh of the cache's statistics. |
ResetErrorState | This method resets any outstanding errors for a file or external storage. |
StartCleanup | This method starts a background cleanup operation to remove unused files from the cache. |
Event List
The following is the full list of the events fired by the component with short descriptions. Click on the links for further details.
BeforeFlush | This event fires to report the start of the asynchronous file flush procedure. |
BeforePurge | This event fires to report the start of the asynchronous file purge procedure. |
EndCleanup | This event fires to report the beginning of the asynchronous cleanup procedure. |
Error | This event fires if an unhandled error occurs during an event. |
Log | This log reports events that occur in the component. |
Progress | This event fires to report the progress of an operation. |
ReadData | This event fires when the cache needs to read file data from external storage. |
StartCleanup | This event fires to report the beginning of the asynchronous cleanup procedure. |
Status | This event fires to report the latest cache statistics. |
WriteData | This event fires when the cache needs to write file data to external storage. |
Config Settings
The following is a list of config settings for the component with short descriptions. Click on the links for further details.
BlockSize | The size of the block, used to store the data. |
JournalingMode | Specifies whether the main cache file uses journaling for increased data consistency. |
LogLevel | The level of detail that is logged. |
MaxReaderThreadsPerFile | The maximum number of reader threads to use to fire events. |
StatsRefreshInterval | Minimum time period between cache statistics refreshes. |
StoreDataInFiles | Specifies whether file data should be stored in the main cache file or in individual files. |
BuildInfo | Information about the product's build. |
LicenseInfo | Information about the current license. |
Active Property (CBCache Component)
This property describes whether the file cache is open.
Syntax
Default Value
False
Remarks
This property reflects whether the component has opened a file cache; it will be true once the OpenCache method has been called successfully.
This property is read-only and not available at design time.
AutoFlush Property (CBCache Component)
This property specifies whether automatic flushing is enabled.
Syntax
Default Value
True
Remarks
This property specifies whether automatic flushing is enabled. When this property is enabled (default), automatic flushing will take place both according to the FlushPolicy setting, and when cached files are closed (after any delay specified by the FlushAfterCloseDelay property).
If this property is disabled, automatic flushing will never occur, regardless of the FlushPolicy setting; however, the FileFlush method can still be used to explicitly flush a cached file.
Typically, applications should disable this property only in cases in which they need to suspend background write operations for some reason (e.g., if connectivity with the external storage is temporarily lost).
CacheDirectory Property (CBCache Component)
This property includes the directory in which the cache's storage file is located.
Syntax
Default Value
""
Remarks
This property specifies the path of the directory in which the cache's storage file is located. The name of the cache's storage file is derived from the CacheFile property.
Note: This property cannot be changed when Active is true.
CacheFile Property (CBCache Component)
This property includes the name of the file cache.
Syntax
Default Value
""
Remarks
This property specifies the name of the file cache. This name is used to create the cache's storage file in the directory specified by the CacheDirectory property.
Note: This property cannot be changed when Active is true.
CacheSizeLimit Property (CBCache Component)
This property includes the maximum size of the cache's storage file.
Syntax
Default Value
0
Remarks
This property specifies the maximum size, in megabytes, that the cache's storage file is allowed to grow to. If this limit is reached, the cache will initiate a background cleanup operation automatically, purging file data according to the PurgePolicy and shrinking the cache storage file afterward. By default, this property is set to 0, which means "no limit".
Note: Any purging and shrinking attempts caused by this property's value are made on a "best effort" basis, which can be affected by the following:
- The amount of unflushed data present in the cache (as indicated by the Stats property): if it is greater than the specified size limit, the cache will not be able to purge said data or shrink its storage file until enough data have been flushed.
- The PurgePolicy property: certain values can make it impossible for the cache to immediately perform the required purging.
Note: This property cannot be changed when Active is true.
Compressed Property (CBCache Component)
This property specifies whether or not the cache's storage file should be compressed.
Syntax
Default Value
False
Remarks
This property specifies whether or not the cache's storage file should be compressed.
If the StoreDataInFiles configuration setting is enabled, the Compressed property affects only the main cache storage file and not the files used to store individual files' data.
Note: This property cannot be changed when Active is true.
FlushAfterCloseDelay Property (CBCache Component)
This property includes the number of seconds to delay flushing after a file is closed.
Syntax
Default Value
30
Remarks
This property specifies the number of seconds that flushing will be delayed after a file with unflushed blocks is closed. A value of 0 will cause such files to be flushed immediately upon close.
Flush-after-close delays are intended to prevent excessive flushing operations in cases in which a file is opened, written to, and closed many times in succession within the delay period.
Note: This property cannot be changed when Active is true.
FlushAfterSize Property (CBCache Component)
This property includes the amount of data that must be changed for flushing to begin.
Syntax
Default Value
1
Remarks
When the FlushPolicy property is set to fpSize, fpSizeOrTime, or fpSizeAndTime, this property specifies how many megabytes of a file's data must be changed for flushing to begin.
Changed data thresholds are intended to prevent excessive flushing in cases in which data are written to the same range of a file many times in succession.
Note: This property cannot be changed when Active is true.
FlushAfterTime Property (CBCache Component)
This property includes the inactivity timeout that must elapse for flushing to begin.
Syntax
Default Value
30
Remarks
When the FlushPolicy property is set to fpTime, fpSizeOrTime, or fpSizeAndTime, this property specifies how many seconds of inactivity (i.e., time with no writes) must elapse for a file before flushing can begin.
Inactivity delays are intended to prevent excessive flushing in cases in which data are written to a file many times in succession within the inactivity period.
Note: This property cannot be changed when Active is true.
FlushPolicy Property (CBCache Component)
This property includes the file flushing strategy that the cache should use.
Syntax
public CbcacheFlushPolicies FlushPolicy { get; set; }
enum CbcacheFlushPolicies { fpNone, fpSize, fpTime, fpSizeOrTime, fpSizeAndTime }
Public Property FlushPolicy As CbcacheFlushPolicies
Enum CbcacheFlushPolicies fpNone fpSize fpTime fpSizeOrTime fpSizeAndTime End Enum
Default Value
2
Remarks
This property specifies the strategy that the cache should use for flushing-changed file data of the opened file out to external storage. It must be set to one of the following values:
fpNone (0) | No automatic flushing. Use this setting to have the file written only after it is closed. Use the FlushAfterCloseDelay property to control the delay between file closing and writing of file data. |
fpSize (1) | Flush a file when the amount of changed data exceeds a certain limit. The FlushAfterSize property specifies the size limit. |
fpTime (2) (default) | Flush a file when it has not been written to for a certain amount of time. The FlushAfterTime property specifies the time limit. |
fpSizeOrTime (3) | Flush a file when the amount of changed data exceeds a certain limit OR when it has not been written to for a certain amount of time. The FlushAfterSize and FlushAfterTime properties specify the size and time limits, respectively. |
fpSizeAndTime (4) | Flush a file when the amount of changed data exceeds a certain limit AND when it has not been written to for a certain amount of time. The FlushAfterSize and FlushAfterTime properties specify the size and time limits, respectively. |
Note: This property cannot be changed when Active is true.
HasOrphans Property (CBCache Component)
This property notes whether or not the cache contains any orphan files.
Syntax
Default Value
False
Remarks
This property specifies whether or not the cache contains any Orphan Files, returning true if so or false otherwise.
Note: This property returns a valid value only when Active is true.
This property is read-only and not available at design time.
MaxCachedFileSize Property (CBCache Component)
This property includes the maximum amount of data that should be cached for any given file.
Syntax
Default Value
0
Remarks
This property specifies the maximum amount of data, in bytes, that the cache should store for any given file. When a file reaches this limit, the cache will start dropping its least-recently accessed unchanged blocks.
The default value of 0 means "no limit", causing all file data to be kept in the cache at least until the file is closed (and possibly longer, depending on how the cache is configured).
Mode Property (CBCache Component)
This property includes the mode in which the cache operates in regard to access to the external storage.
Syntax
public CbcacheModes Mode { get; set; }
enum CbcacheModes { cmNormal, cmShadow, cmPassthrough, cmMirror }
Public Property Mode As CbcacheModes
Enum CbcacheModes cmNormal cmShadow cmPassthrough cmMirror End Enum
Default Value
0
Remarks
This property specifies the mode of operations that the cache should use for reading and writing the data. Possible values are as follows:
cmNormal (0) (default) | Regular cached reading and writing are performed. |
cmShadow (1) | The cache reads the data from the external storage, but it does not do any writes. |
cmPassthrough (2) | The cache does not store file data locally and serves read/write requests by firing the corresponding events synchronously. |
cmMirror (3) | Reading is performed as in the Normal mode. Writing is done synchronously both to the local cache and to the external storage. The FileWrite method returns when the data are flushed to the external storage or if the error occurs during this operation. |
Note: This property cannot be changed when Active is true.
Offline Property (CBCache Component)
This property specifies whether or not the cache works in Offline mode.
Syntax
Default Value
False
Remarks
This property specifies whether or not the cache works in Offline mode. When in this mode, no events are fired to read or write data from/to the external storage.
This property is different from AutoFlush: AutoFlush prevents automated flushing but allows reading and manual flushing, whereas the Offline mode prevents both reading and writing, which means that application-initiated flushing does nothing as well.
PurgeAfterCloseDelay Property (CBCache Component)
This property includes the number of seconds to delay purging for after a file is closed.
Syntax
Default Value
30
Remarks
When the PurgePolicy property is set to ppFileClose, this property specifies the number of seconds that purging will be delayed for after a file without any unflushed blocks is closed. A value of 0 will cause such files to be purged immediately on close.
Purge-after-close delays are intended to prevent excessive fetching of data from external storage in cases in which a file is opened and closed many times in succession within the delay period.
Note: This property cannot be changed when Active is true.
PurgeAfterTime Property (CBCache Component)
This property includes the inactivity timeout that must elapse for purging to begin.
Syntax
Default Value
2592000
Remarks
When the PurgePolicy property is set to ppTime, this property specifies the number of seconds that a file data block must remain unchanged for before it is purged from the cache. Because the cache is intended for longer-time data storage and all data survive cache restart, the default value is 30 days.
Note: This property cannot be changed when Active is true.
PurgePolicy Property (CBCache Component)
This property includes the file block purging strategy that the cache should use.
Syntax
public CbcachePurgePolicies PurgePolicy { get; set; }
enum CbcachePurgePolicies { ppNone, ppFileClose, ppCacheClose, ppTime }
Public Property PurgePolicy As CbcachePurgePolicies
Enum CbcachePurgePolicies ppNone ppFileClose ppCacheClose ppTime End Enum
Default Value
3
Remarks
This property specifies the strategy that the cache should use for purging unmodified blocks of file data from the cache. It must be set to one of the following values:
ppNone (0) (default) | No automatic purging. Use the StartCleanup method to perform cache cleanup. |
ppFileClose (1) | Purge files as they are closed (after a delay). The PurgeAfterCloseDelay property specifies the delay interval. |
ppCacheClose (2) | Purge files when the cache is closed (without a delay). |
ppTime (3) | Purge files when they have not been accessed for a certain time. The PurgeAfterTime property specifies the time a file must not be accessed for it to be purged. |
Note: This property cannot be changed when Active is true.
ReadBlockSize Property (CBCache Component)
This property includes the block size to use when reading file data from external storage.
Syntax
Default Value
1048576
Remarks
This property specifies the block size, in bytes, that the component should use when reading data from external storage through the ReadData event.
Note: In some cases (e.g., when reading the last part of a file), the amount of requested data may be less than the value specified by this property.
Applications should always set this property to a reasonable value (or use the default value), even if the ReadingCapabilities property specifies that the external storage supports only whole-file reading.
This property may be overridden by the corresponding parameter of the FileOpen and FileSetSize methods.
Changing this property causes the BlockSize configuration setting's value to be recalculated.
Note: This property cannot be changed when Active is true.
ReadingCapabilities Property (CBCache Component)
This property includes the reading capabilities supported by the external storage.
Syntax
Default Value
1048
Remarks
This property specifies any and all behaviors of the external storage that are relevant when reading data from it. The component will automatically alter its behavior based on this property's "description" of how the external storage is able to provide file data.
This property should be set by ORing together zero or more of the flags defined in the following. These flags are grouped by name to specify the operations to which they apply.
Flag Group | Description |
Position | Flags with POS in the name describe where read and writes can occur from. |
Size | Flags with SIZE in the name describe the sizes of read and writes the external data source supports. |
Write | Flags with WRITE in the name describe flags that are specific to write operations. |
Supplemental | Flags with SUPPL in the name describe flags that are used to further specify the expectations of the external data source. |
Reading and Writing Capability Flags (Position Related)
RWCAP_POS_SEQUENTIAL_FROM_BOF | 0x00000001 | No random access allowed; read/write operations must start at the beginning of a file.
When this flag is used in writing capabilities, the component can initiate reading of missing data before writing the changes to build the complete dataset, which is required for correct write operations. |
RWCAP_POS_BLOCK_MULTIPLE | 0x00000004 | Reading/writing is possible at positions that are multiple of the corresponding block size.
The read and write block sizes are specified by the ReadBlockSize and WriteBlockSize properties . When this flag is used in writing capabilities, the component can initiate reading of missing data before writing the changes to build the complete dataset, which is required for correct write operations. |
RWCAP_POS_RANDOM | 0x00000008 | Reading/writing is possible at any position.
When this flag is used, other flags can still alter the positions at which reading/writing are possible. |
RWCAP_POS_SUPPL_ONLY_WITHIN_FILE | 0x00000010 | File position must remain in the range: 0 <= FilePos < FileSize |
Reading and Writing Capability Flags (Size Related)
RWCAP_SIZE_WHOLE_FILE | 0x00000100 | Only whole-file reads/writes are possible; partial reads/writes are not supported.
Note:
|
RWCAP_SIZE_FIXED_BLOCKS_WITH_TAIL | 0x00000200 | Reads/writes must be done in blocks of a fixed size, except for the last block, which may be of any size.
When this flag is used in writing capabilities, the component can initiate reading of missing data before writing the changes to build the complete dataset, which is required for correct write operations. |
RWCAP_SIZE_FIXED_BLOCKS_NO_TAIL | 0x00000400 | Reads/writes must be done in blocks of a fixed size, including the last block.
Note: Real file sizes, if needed, must be stored elsewhere when using the cache with an external storage medium that has this characteristic. When this flag is used in writing capabilities, the component can initiate reading of missing data before writing the changes to build the complete dataset, which is required for correct write operations. |
RWCAP_SIZE_ANY | 0x00000800 | Reads/writes may be done in blocks of any size. |
Reading and Writing Capability Flags (Write Related)
RWCAP_WRITE_APPEND_ONLY | 0x00000002 | Append only; write operations must start at the end of a file.
To overwrite a file, it must first be truncated, and then written to. (Truncation behavior is defined by the corresponding flags.) |
RWCAP_WRITE_SUPPL_NOT_BEYOND_EOF | 0x00000020 | File position remain in the range: 0 <= FilePos <= FileSize
When writing, appending to the end of the file is supported, but writing at positions past the end of the file is not. |
RWCAP_WRITE_TRUNCATES_FILE | 0x00001000 | When writes occur, the last data written becomes the new end of the file.
Any overwritten data, and any data previously present after the written range, are lost. |
RWCAP_WRITE_KEEPS_FILESIZE | 0x00002000 | Normal writing behavior (i.e., writes do not alter a file's size, except possibly to expand it). |
RWCAP_WRITE_NOT_BEYOND_EOF | 0x00004000 | Writes may not extend past the end of a file's current size (i.e., cannot cause a file to grow).
Applications may still adjust the file size beforehand. |
Note: This property cannot be changed when Active is true.
ResizingCapabilities Property (CBCache Component)
This property includes the file resizing capabilities supported by the external storage.
Syntax
Default Value
51
Remarks
This property specifies any and all behaviors of the external storage that are relevant when resizing files. The component will automatically alter its behavior based on this property's "description" of how the external storage is able to resize files.
This property should be set by ORing together zero or more of the following flags:
RSZCAP_GROW_TO_ANY | 0x00000001 | Files can grow to any size. |
RSZCAP_SHRINK_TO_ANY | 0x00000002 | Files can shrink to any size. |
RSZCAP_GROW_TO_BLOCK_MULTIPLE | 0x00000004 | Files can grow to sizes that are a multiple of the block size. |
RSZCAP_SHRINK_TO_BLOCK_MULTIPLE | 0x00000008 | Files can shrink to sizes that are a multiple of the block size. |
RSZCAP_TRUNCATE_ON_OPEN | 0x00000010 | The external storage (or application itself) supports truncating a file when it is opened for writing. |
RSZCAP_TRUNCATE_AT_ZERO | 0x00000020 | The external storage (or application itself) supports truncating a file to zero at any time (not just when it is being opened). |
Note: This property cannot be changed when Active is true.
Serialization Property (CBCache Component)
This property specifies whether nonintersecting operations against the same file or cache should execute serially or in parallel.
Syntax
public CbcacheSerializations Serialization { get; set; }
enum CbcacheSerializations { smNone, smGlobal, smPerFileAllOperations, smPerFileReadingWritingConcurrent, smPerFileReadingConcurrent }
Public Property Serialization As CbcacheSerializations
Enum CbcacheSerializations smNone smGlobal smPerFileAllOperations smPerFileReadingWritingConcurrent smPerFileReadingConcurrent End Enum
Default Value
3
Remarks
This property specifies whether the component should force nonintersecting operations against a single file or whole cache to execute serially, or allow them to execute in parallel.
smNone (0) | "No serialization", the component does not serialize anything and leaves this task to the user. The same as smPerFileReadingWritingConcurrent serialization mode. |
smGlobal (1) | "Global", all events are serialized; it is assumed that the user has one instance of code (e.g., class, component) that is capable of handling one request at a time. |
smPerFileAllOperations (2) | "Per-file, all operations", all operations on a single file are serialized; however, operations with different files may be concurrent. |
smPerFileReadingWritingConcurrent (3)(default) | "Per-file, reading and writing concurrent", reading and writing to a single file may be concurrent, but access to different ranges is serialized. |
smPerFileReadingConcurrent (4) | "Per-file, reading concurrent", reading of different ranges of the same file may be concurrent, while writing of different blocks of the file will be serialized. |
Note: This property cannot be changed when Active is true.
Stats Property (CBCache Component)
This property includes cache statistics.
Syntax
public CBCacheStats Stats { get; }
Public ReadOnly Property Stats As CBCacheStats
Remarks
This property holds various statistics that are related to the cache.
This property is read-only.
Please refer to the CBCacheStats type for a complete list of fields.Tag Property (CBCache Component)
This property stores application-defined data specific to a particular instance of the component.
Syntax
Default Value
0
Remarks
This property can be used to store data specific to a particular instance of the component.
WriteBlockSize Property (CBCache Component)
This property includes the block size to use when writing file data to external storage.
Syntax
Default Value
1048576
Remarks
This property specifies the block size, in bytes, that the component should use when writing data to external storage via the WriteData event.
Note: In some cases (e.g., when writing the last part of a file), the amount of data being written may be less than the value specified by this property.
Applications should always set this property to a reasonable value (or use the default value), even if the WritingCapabilities property specifies that the external storage only supports whole-file writing.
The property may be overridden by the corresponding parameter of the FileOpen and FileSetSize methods.
Changing this property causes the BlockSize configuration setting's value to be recalculated.
Note: This property cannot be changed when Active is true.
WritingCapabilities Property (CBCache Component)
This property includes the writing capabilities supported by the external storage.
Syntax
Default Value
9256
Remarks
This property specifies any and all behaviors of the external storage that are relevant when writing data to it. The component will automatically alter its behavior based on this property's "description" of how the external storage is able to write file data.
This property should be set by ORing together zero or more of the flags defined as follows. The flags are grouped by name to specify the operations to which they apply.
Flag Group | Description |
Position | Flags with POS in the name describe where read and writes can occur from. |
Size | Flags with SIZE in the name describe the sizes of read and writes the external data source supports. |
Write | Flags with WRITE in the name describe flags that are specific to write operations. |
Supplemental | Flags with SUPPL in the name describe flags that are used to further specify the expectations of the external data source. |
Reading and Writing Capability Flags (Position Related)
RWCAP_POS_SEQUENTIAL_FROM_BOF | 0x00000001 | No random access allowed; read/write operations must start at the beginning of a file.
When this flag is used in writing capabilities, the component can initiate reading of missing data before writing the changes to build the complete dataset, which is required for correct write operations. |
RWCAP_POS_BLOCK_MULTIPLE | 0x00000004 | Reading/writing is possible at positions that are multiple of the corresponding block size.
The read and write block sizes are specified by the ReadBlockSize and WriteBlockSize properties . When this flag is used in writing capabilities, the component can initiate reading of missing data before writing the changes to build the complete dataset, which is required for correct write operations. |
RWCAP_POS_RANDOM | 0x00000008 | Reading/writing is possible at any position.
When this flag is used, other flags can still alter the positions at which reading/writing are possible. |
RWCAP_POS_SUPPL_ONLY_WITHIN_FILE | 0x00000010 | File position must remain in the range: 0 <= FilePos < FileSize |
Reading and Writing Capability Flags (Size Related)
RWCAP_SIZE_WHOLE_FILE | 0x00000100 | Only whole-file reads/writes are possible; partial reads/writes are not supported.
Note:
|
RWCAP_SIZE_FIXED_BLOCKS_WITH_TAIL | 0x00000200 | Reads/writes must be done in blocks of a fixed size, except for the last block, which may be of any size.
When this flag is used in writing capabilities, the component can initiate reading of missing data before writing the changes to build the complete dataset, which is required for correct write operations. |
RWCAP_SIZE_FIXED_BLOCKS_NO_TAIL | 0x00000400 | Reads/writes must be done in blocks of a fixed size, including the last block.
Note: Real file sizes, if needed, must be stored elsewhere when using the cache with an external storage medium that has this characteristic. When this flag is used in writing capabilities, the component can initiate reading of missing data before writing the changes to build the complete dataset, which is required for correct write operations. |
RWCAP_SIZE_ANY | 0x00000800 | Reads/writes may be done in blocks of any size. |
Reading and Writing Capability Flags (Write Related)
RWCAP_WRITE_APPEND_ONLY | 0x00000002 | Append only; write operations must start at the end of a file.
To overwrite a file, it must first be truncated, and then written to. (Truncation behavior is defined by the corresponding flags.) |
RWCAP_WRITE_SUPPL_NOT_BEYOND_EOF | 0x00000020 | File position remain in the range: 0 <= FilePos <= FileSize
When writing, appending to the end of the file is supported, but writing at positions past the end of the file is not. |
RWCAP_WRITE_TRUNCATES_FILE | 0x00001000 | When writes occur, the last data written becomes the new end of the file.
Any overwritten data, and any data previously present after the written range, are lost. |
RWCAP_WRITE_KEEPS_FILESIZE | 0x00002000 | Normal writing behavior (i.e., writes do not alter a file's size, except possibly to expand it). |
RWCAP_WRITE_NOT_BEYOND_EOF | 0x00004000 | Writes may not extend past the end of a file's current size (i.e., cannot cause a file to grow).
Applications may still adjust the file size beforehand. |
Note: This property cannot be changed when Active is true.
CancelCleanup Method (CBCache Component)
This method cancels a background cleanup operation, if necessary.
Syntax
public void CancelCleanup();
Public Sub CancelCleanup()
Remarks
This method cancels any cleanup operation currently being performed in the background. If no such operation is running, this method does nothing.
CheckAndRepair Method (CBCache Component)
This method checks a cache vault's consistency and repairs it as necessary.
Syntax
Remarks
This method checks the consistency of a cache vault and attempts to repair it as necessary. Please refer to the Cache Corruption topic for more information.
Applications should call this method if a vault has become corrupted (if a cache operation fails with a ERROR_INTERNAL_VAULT_CORRUPTED error). Be sure to make a vault backup before calling this method, as its repair efforts may cause data loss in cases of severe corruption.
The Flags parameter is used to specify additional options and should be set by OR-ing together zero or more of the following flags:
CACHE_CHECK_NO_RECREATE_VAULT | 0x00000000 | If the vault is damaged beyond repair, report an error.
When this flag is used, the CheckAndRepair will return an error if the vault could not be repaired. |
CACHE_CHECK_RECREATE_VAULT | 0x00000001 | If the vault is damaged beyond repair, recreate the vault automatically.
When this flag is used, the CheckAndRepair will delete the damaged vault and create a new one instead. |
Note: This method cannot be called when Active is true, and it cannot be called within events.
Clear Method (CBCache Component)
This method removes files from the cache.
Syntax
Remarks
This method removes all files from the cache that are fully flushed and currently closed. Depending on the value passed for RemoveOrphans and RemoveLocals, Orphan Files and/or Local Files also may be removed as well.
The operation is performed synchronously, so this method returns once all applicable files have been removed. During the operation, the Progress event will fire periodically to indicate progress.
CloseCache Method (CBCache Component)
This method closes the cache.
Syntax
Remarks
This method closes the cache, optionally performing file flushing and purging operations before doing so.
The FlushAction parameter specifies what kind of flushing to perform, if any. It must be one of the following values:
FLUSH_DELAYED | 0 | Flush as usual, taking into account any specified delay.
The FlushAfterCloseDelay property specifies the delay. Passing this value to FileClose or FileCloseEx will cause the method to return immediately; flushing is performed in the background. Passing this value to CloseCache has no effect (i.e., the cache is not flushed before being closed). |
FLUSH_NONE | 1 | Do not flush anything. |
FLUSH_IMMEDIATE | 2 | Flush immediately.
Passing this value to FileClose, FileCloseEx, and CloseCache will cause the method to return only after all flushing operations are complete. |
The PurgeAction parameter specifies what kind of purging to perform, if any. It must be one of the following values:
PURGE_DELAYED | 0 | Purge as usual, taking into account any specified delay.
The PurgeAfterCloseDelay property specifies the delay. Passing this value to FileClose or FileCloseEx will cause the method to return immediately; purging is performed in the background. Passing this value to CloseCache has no effect; the cache is not purged before being closed. |
PURGE_NONE | 1 | Do not purge anything. |
PURGE_IMMEDIATE | 2 | Purge immediately.
Passing this value to FileClose, FileCloseEx, or CloseCache will cause the method to return only after all purging operations are complete. |
CloseEnumeration Method (CBCache Component)
This method closes the given file enumeration.
Syntax
Public Sub CloseEnumeration(ByVal EnumerationHandle As Long)
Remarks
This method closes the file enumeration identified by EnumerationHandle and releases any associated resources.
Config Method (CBCache Component)
Sets or retrieves a configuration setting.
Syntax
Remarks
Config is a generic method available in every component. It is used to set and retrieve configuration settings for the component.
These settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the component, access to these internal properties is provided through the Config method.
To set a configuration setting named PROPERTY, you must call Config("PROPERTY=VALUE"), where VALUE is the value of the setting expressed as a string. For boolean values, use the strings "True", "False", "0", "1", "Yes", or "No" (case does not matter).
To read (query) the value of a configuration setting, you must call Config("PROPERTY"). The value will be returned as a string.
DeleteCache Method (CBCache Component)
This method deletes the cache completely.
Syntax
public void DeleteCache();
Public Sub DeleteCache()
Remarks
This method deletes the cache specified by the CacheFile property completely, removing its storage file from the directory specified by the CacheDirectory property. If the cache is currently open, it is closed first.
EnumerateCachedFiles Method (CBCache Component)
This method enumerates the files in the cache.
Syntax
Remarks
This method initiates a enumeration operation for cached files that match the specified EnunmerationMode, which must be take of the following values:
ENUM_MODE_ALL | 0 | Enumerate all files. |
ENUM_MODE_CHANGED | 1 | Enumerate files with changed blocks. |
ENUM_MODE_UNCHANGED | 2 | Enumerate files with no changed blocks. |
ENUM_MODE_LOCAL | 4 | Enumerate local files.
Refer to the Local Files topic for more information. |
ENUM_MODE_ORPHAN | 8 | Enumerate orphan files.
Refer to the Orphan Files topic for more information. |
ENUM_MODE_PINNED | 16 | Enumerate pinned files. |
This method returns a handle that can be passed to the GetNextEnumeratedFile method to retrieve the results of the enumeration. If no matching files are found, -1 is returned instead.
When an application is finished enumerating files, it must call the CloseEnumeration method to release the associated resources.
FileChangeId Method (CBCache Component)
This method changes the Id of a cached file.
Syntax
Remarks
This method changes the Id of the cached file identified by FileId to NewFileId. Applications that use file paths as Ids may need to use this method if a path element is renamed.
This method fails with an error if no file with the specified FileId is present in the cache, or if another file is already present in the cache with NewFileId.
FileClose Method (CBCache Component)
This method closes a cached file.
Syntax
Remarks
This method closes the cached file identified by FileId, performing any of the flushing and/or purging operations specified by the component's other properties. (To override the configured flushing and purging behaviors, use the FileCloseEx method instead.)
This method returns immediately, and any flushing and/or purging operations are performed in the background.
FileCloseEx Method (CBCache Component)
This method closes a cached file, specifying flushing and purging behaviors explicitly.
Syntax
Remarks
This method closes the cached file identified by FileId, performing any flushing and/or purging operations specified by the FlushAction and PurgeAction parameters.
The FlushAction parameter must be passed by one of the following values:
FLUSH_DELAYED | 0 | Flush as usual, taking into account any specified delay.
The FlushAfterCloseDelay property specifies the delay. Passing this value to FileClose or FileCloseEx will cause the method to return immediately; flushing is performed in the background. Passing this value to CloseCache has no effect (i.e., the cache is not flushed before being closed). |
FLUSH_NONE | 1 | Do not flush anything. |
FLUSH_IMMEDIATE | 2 | Flush immediately.
Passing this value to FileClose, FileCloseEx, and CloseCache will cause the method to return only after all flushing operations are complete. |
The PurgeAction parameter must be passed by one of the following values:
PURGE_DELAYED | 0 | Purge as usual, taking into account any specified delay.
The PurgeAfterCloseDelay property specifies the delay. Passing this value to FileClose or FileCloseEx will cause the method to return immediately; purging is performed in the background. Passing this value to CloseCache has no effect; the cache is not purged before being closed. |
PURGE_NONE | 1 | Do not purge anything. |
PURGE_IMMEDIATE | 2 | Purge immediately.
Passing this value to FileClose, FileCloseEx, or CloseCache will cause the method to return only after all purging operations are complete. |
This method returns immediately, and any flushing and/or purging operations are performed in the background.
FileDelete Method (CBCache Component)
This method deletes a file from the cache.
Syntax
Remarks
This method deletes the cached file identified by FileId, removing all of its data from the cache. If the specified file is currently open, it is closed first.
Note: The specified file is not flushed to external storage before being deleted; any unflushed data will be lost.
FileExists Method (CBCache Component)
This method checks if a file with the given Id is present in the cache.
Syntax
Remarks
This method checks to see whether a file with the specified FileId is present in the cache; returning true if so or false otherwise.
FileFlush Method (CBCache Component)
This method flushes the specified file's modified blocks out to external storage.
Syntax
Remarks
This method flushes any modified data blocks for the file specified by FileId out to external storage via the WriteData event (and possibly, the ReadData event, if the cache is forced to retrieve data from external storage before writing it back). The FlushMode parameter specifies what kind of flushing should be performed. It must take one of the following values:
FLUSH_MODE_SYNC | 0 | Flush file data synchronously, blocking until finished. |
FLUSH_MODE_ASYNC | 1 | Flush file data in the background; do not wait until the flush operation completes. |
FLUSH_MODE_TEST | 2 | Check to see if file data exists and needs to be flushed, but do not actually flush anything. |
The Delay parameter may be passed a non-zero number of seconds to delay the flushing operation.
The FileContext parameter may be passed any application-defined value. If the flushing operation causes the file to be opened, the specified value will be passed through to the WriteData and ReadData events' corresponding parameter. (If the file is already open, the value passed to FileOpen takes precedence).
This method will return one of the following values:
FLUSH_RESULT_NOTHING | 0 | The file has no data that need flushing. |
FLUSH_RESULT_DIRTY | 1 | Data in the file need flushing, but no flush operation is running yet. |
FLUSH_RESULT_RUNNING | 2 | Data in the file are in the process of being flushed. |
FLUSH_RESULT_SUCCESS | 3 | Data in the file have been flushed successfully. |
FileGetPinned Method (CBCache Component)
This method returns the pinned state of a cached file.
Syntax
Remarks
This method indicates whether the cached file identified by FileId is pinned (or reports an error if no such file is present in the cache).
Pinned files are the files whose data are not purged automatically. If you need to remove the local data of a pinned file, use the FilePurge method.
FileGetSize Method (CBCache Component)
This method gets the "real size" of a cached file.
Syntax
Remarks
This method returns the application-reported File Sizes for the cached file identified by FileId (or reports an error if no such file is present in the cache).
Note: The size value returned by this method is the one previously set by the application through the FileOpen or FileSetSize method; it does not necessarily correspond to the actual amount of data present in the cache for the file.
FileGetStatus Method (CBCache Component)
This method gets the status of a cached file.
Syntax
Remarks
This method returns the status of the cached file identified by FileId (or reports an error if no such file is present in the cache). StatusKind must be one of the following:
FILE_STATUS_CHANGED | 1 | Retrieves the value of the Changed state of the file. |
FILE_STATUS_UNCHANGED | 2 | Retrieves the value of the Unchanged state of the file. |
FILE_STATUS_LOCAL | 3 | Retrieves the value that indicates whether the file is Local.
Refer to the Local Files topic for more information. |
FILE_STATUS_ORPHAN | 4 | Retrieves the value that indicates whether the file is Orphan.
Refer to the Orphan Files topic for more information. |
FILE_STATUS_OPEN | 5 | Retrieves the value of the Open state of the file. |
FileOpen Method (CBCache Component)
This method opens the specified cached file, creating it if necessary.
Syntax
Remarks
This method opens the cached file identified by FileId, creating it if necessary.
The RealFileSize parameter informs the cache of the File Sizes (in bytes) of the real file (i.e., the one in external storage); this size can be changed later using the FileSetSize method. For existing cached files, -1 may be passed to instruct the cache to use the previously set real file size instead.
The PrefetchSize parameter specifies how many bytes of data the cache should prefetch, from external storage, for the file via the ReadData event (which will fire on a background thread). Pass PREFETCH_ALL to prefetch the entire fire, or PREFETCH_NOTHING to prefetch none of it.
The FileContext may be passed to any application-defined value; this value will then be passed through to any ReadData and WriteData events fired for the file.
FileOpenEx Method (CBCache Component)
This method opens the specified cached file, creating it if necessary.
Syntax
Remarks
This method opens the cached file identified by FileId, creating it if necessary.
The RealFileSize parameter informs the cache of the File Sizes (in bytes) of the real file (i.e., the one in external storage); this size can be changed later using the FileSetSize method. For existing cached files, -1 may be passed to instruct the cache to use the previously set real file size instead.
The IsLocal parameter specifies whether the file is a local to the cache and does not exist in external storage; refer to the Local Files topic for more information.
ReadBlockSize and WriteBlockSize parameters make it possible for the application to configure the size of the block for reading and writing, respectively, thus overriding the values specified in the ReadBlockSize and WriteBlockSize properties for a specific file. Set the parameter to 0 to make the component use the value from the corresponding property. The values of the parameters will be used when ReadingCapabilities or WritingCapabilities properties indicate that reading or writing should be performed in blocks of a specific size (or when the whole file should be read or written using sequential block operations).
The PrefetchSize parameter specifies how many bytes of data the cache should prefetch, from external storage, for the file through the ReadData event (which will fire on a background thread). Pass PREFETCH_ALL to prefetch the entire fire, or PREFETCH_NOTHING to prefetch none of it. This parameter is ignored if IsLocal is true.
The FileContext may be passed to any application-defined value; this value will then be passed through to any ReadData and WriteData events fired for the file.
FilePurge Method (CBCache Component)
This method purges unmodified data from the cache.
Syntax
Remarks
This method removes unmodified data from the cache.
Use FilePurge with pinned files to free space or after the pinned attribute has been removed and you need to remove the data immediately.
FileRead Method (CBCache Component)
This method reads the specified part of a cached file.
Syntax
Remarks
This method reads data from the cached file identified by FileId into the specified Buffer. The cached file must be opened using FileOpen before it can be read from.
Count bytes of data will be read from the cached file, starting from the specified Position, into the given Buffer. The data are written to Buffer starting at the given Index.
The method returns false if any errors happened during reading and returns true if everything went fine.
FileSetPinned Method (CBCache Component)
This method sets the pinned state of a cached file.
Syntax
Remarks
This method specifies whether the cached file identified by FileId should be treated as pinned.
Pinned files are the files whose data are not purged automatically. If you need to remove the local data of a pinned file, use the FilePurge method.
FileSetSize Method (CBCache Component)
This method sets the "real size" of a cached file.
Syntax
Remarks
This method changes the "real size" of the cached file identified by FileId to the number of bytes specified by NewSize. The cached file must be opened using FileOpen before its real size can be changed.
ReadBlockSize and WriteBlockSize parameters make it possible for the application to configure the size of the block for reading and writing, respectively, thus overriding the values specified in the ReadBlockSize and WriteBlockSize properties for a specific file. Set the parameter to 0 to make the component use the value from the corresponding property. The values of the parameters will be used when ReadingCapabilities or WritingCapabilities properties indicate that reading or writing should be performed in blocks of a specific size (or when the whole file should be read or written using sequential block operations).
The FetchMissingData parameter controls how the cache initializes new file space in cases in which the file's real size is increased. If FetchMissingData is true, the new file space is filled with real data fetched from external storage. Otherwise, the new file space is marked as zero-filled (although no actual data writing occurs).
FileSetSizeEx Method (CBCache Component)
This method sets the "real size" of a cached file.
Syntax
Remarks
This method changes the "real size" of the cached file identified by FileId to the number of bytes specified by NewSize. The cached file must be opened using FileOpen before its real size can be changed.
ReadBlockSize and WriteBlockSize parameters make it possible for the application to configure the size of the block for reading and writing, respectively, thus overriding the values specified in the ReadBlockSize and WriteBlockSize properties for a specific file. Set the parameter to 0 to make the component use the value from the corresponding property. The values of the parameters will be used when ReadingCapabilities or WritingCapabilities properties indicate that reading or writing should be performed in blocks of a specific size (or when the whole file should be read or written using sequential block operations).
The FetchMissingData parameter controls how the cache initializes new file space in cases in which the file's real size is increased. If FetchMissingData is true, the new file space is filled with real data fetched from external storage. Otherwise, the new file space is marked as zero-filled (although no actual data writing occurs).
FileTagDelete Method (CBCache Component)
This method deletes a file tag.
Syntax
Remarks
This method deletes the file tag identified by TagId from the cached file specified by FileId.
Please refer to the File Tags topic for more information.
Note: This method can be called only when Active is true, and it cannot be called within events.
FileTagExists Method (CBCache Component)
This method checks whether or not a file has a specific tag associated with it.
Syntax
Remarks
This method returns true if a file identified by FileId has an associated tag identified by TagId; otherwise, it returns false.
The value passed for TagId must be in the range from 0x0001 to 0xCFFF (inclusive).
Please refer to the File Tags topic for more information.
Note: This method can be called only when Active is true, and it cannot be called within events.
FileTagGet Method (CBCache Component)
This method retrieves the binary data held by a file tag attached to the specified cached file.
Syntax
Remarks
This method retrieves the binary data stored in a file tag, identified by TagId attached to the file identified by FileId. If a file tag with the specified TagId is not attached to the specified file, this method throws an exception.
The value passed for TagId must be in the range from 0x0001 to 0xCFFF (inclusive).
Please refer to the File Tags topic for more information.
Note: This method can be called only when Active is true, and it cannot be called within events.
FileTagGetSize Method (CBCache Component)
This method retrieves the size of a file tag attached to the specified cached file.
Syntax
Remarks
This method retrieves the size of the binary data stored in a file tag, identified by TagId, attached to the cached file identified by FileId. If a file tag with the specified TagId is not attached to the specified file, this method returns 0 as the tag size.
The value passed for TagId must be in the range from 0x0001 to 0xCFFF (inclusive).
Please refer to the File Tags topic for more information.
Note: This method can be called only when Active is true.
FileTagSet Method (CBCache Component)
This method attaches a file tag with binary data to the specified cached file.
Syntax
Remarks
This method attaches a file tag with binary data to the cached file identified by FileId using the specified TagId. If a file tag with the specified TagId is already attached to the specified file, it is replaced.
The value passed for TagId must be in the range from 0x0001 to 0xCFFF (inclusive).
The Data parameter specifies the raw binary data to store in the file tag; it may be up to 65531 bytes in length.
Please refer to the File Tags topic for more information.
Note: This method can be called only when Active is true, and it cannot be called within events.
FileTouch Method (CBCache Component)
This method touches a range of data in a cached file.
Syntax
Remarks
This method touches a range of data in the cached file identified by FileId, thereby marking it as changed and in need of flushing. The range of data to be touched starts at the specified Position and extends for Count bytes.
The cache will automatically attempt to read in any unavailable data in the touched range via ReadData, and then will write out all data in the touched range via WriteData. If the Flush parameter is true, these operations will take place synchronously and block return of this method; otherwise, they will take place in the background and this method will return immediately.
FileWrite Method (CBCache Component)
This method writes the specified part of a cached file.
Syntax
Remarks
This method writes data to the cached file identified by FileId from the specified Buffer. The cached file must be opened using FileOpen before it can be written to.
Count bytes of data will be read from the given Buffer, starting at the given Index, and written into the cached file. The data are written to the cached file starting at the given Position.
If any amount of data is written beyond the known file size, such writing causes the file to grow unless the RWCAP_WRITE_NOT_BEYOND_EOF flag is specified. When the file grows, the known file size value for the file is updated and all the data are eventually flushed (written) to the external storage via the WriteData event. The RWCAP_WRITE_NOT_BEYOND_EOF flag indicates that no writing should occur beyond the known file size, thus preventing the file from growth.
The method returns false if any errors happened during writing and returns true if everything went fine.
GetNextEnumeratedFile Method (CBCache Component)
This method returns the next file in the list of enumeration results.
Syntax
Remarks
This method returns the Id of the next file in the list of enumeration results identified by the EnumerationHandle parameter. If the list does not have any more files, an empty string is returned.
When an empty string is returned because the end of the list has been reached, the component will close the enumeration automatically by calling CloseEnumeration. If the application finishes enumeration without reaching the end of the list, it must call the CloseEnumeration method to release any associated resources.
OpenCache Method (CBCache Component)
This method opens the cache.
Syntax
Remarks
This method opens the cache specified by the CacheFile property; creating a storage file for it in the directory specified by the CacheDirectory property, if necessary.
To encrypt the cache, pass a nonempty string for the EncryptionPassword parameter the first time it is created. The same value will need to be passed any time the cache is opened again in the future.
If the StoreDataInFiles configuration setting is enabled, encryption affects only the main cache storage file and not the files that are used to store individual files' data.
The CaseSensitive parameter specifies whether the cache should treat its File Ids as case-sensitive or case-insensitive.
RefreshStatistics Method (CBCache Component)
This method forces a refresh of the cache's statistics.
Syntax
public void RefreshStatistics();
Public Sub RefreshStatistics()
Remarks
This method forces the cache to immediately refresh its statistics. The refreshed statistics will be reported through the Status event and will be used to update the Stats property.
This method needs to be called only if the applications needs to update the cache's statistics sooner than the end of the current StatsRefreshInterval.
ResetErrorState Method (CBCache Component)
This method resets any outstanding errors for a file or external storage.
Syntax
Remarks
If FileId is specified, this method resets any outstanding file errors, related to the cached file identified by FileId, previously reported via ReadData and/or WriteData events, thus allowing operations on the file to continue. If there are no outstanding errors for the specified file, this method does nothing.
If FileId is empty, this method resets any outstanding external-storage-related error previously reported via a ReadData or WriteData event, thus allowing external I/O operations to continue. If there are no outstanding external storage errors, this method does nothing.
StartCleanup Method (CBCache Component)
This method starts a background cleanup operation to remove unused files from the cache.
Syntax
Remarks
This method starts a cleanup operation to remove unused files from the cache. Files used earlier than MaxAge hours ago will be removed (passing 0 will cause all files to be removed).
The cleanup operation is performed asynchronously in a background thread, so this method returns immediately. To cancel a cleanup operation, use the CancelCleanup method.
BeforeFlush Event (CBCache Component)
This event fires to report the start of the asynchronous file flush procedure.
Syntax
public event OnBeforeFlushHandler OnBeforeFlush; public delegate void OnBeforeFlushHandler(object sender, CbcacheBeforeFlushEventArgs e); public class CbcacheBeforeFlushEventArgs : EventArgs { public string FileId { get; } public IntPtr FileContext { get; } public DateTime LastUseTime { get; } public int PostponeTime { get; set; } }
Public Event OnBeforeFlush As OnBeforeFlushHandler Public Delegate Sub OnBeforeFlushHandler(sender As Object, e As CbcacheBeforeFlushEventArgs) Public Class CbcacheBeforeFlushEventArgs Inherits EventArgs Public ReadOnly Property FileId As String Public ReadOnly Property FileContext As IntPtr Public ReadOnly Property LastUseTime As DateTime Public Property PostponeTime As Integer End Class
Remarks
This event fires when the asynchronous file flush procedure starts for the cached file identified by FileId. This event does not fire if the flush procedure is initiated by the application using FileFlush, FileClose, or FileCloseEx methods.
Note: This event will fire in the context of a dedicated worker thread that performs cache maintenance. Keep handling of this event as quick as possible.
Use the PostponeTime parameter to specify time in seconds to postpone automatic flush operation for this file.
BeforePurge Event (CBCache Component)
This event fires to report the start of the asynchronous file purge procedure.
Syntax
public event OnBeforePurgeHandler OnBeforePurge; public delegate void OnBeforePurgeHandler(object sender, CbcacheBeforePurgeEventArgs e); public class CbcacheBeforePurgeEventArgs : EventArgs { public string FileId { get; } public IntPtr FileContext { get; } public DateTime LastUseTime { get; } public int PostponeTime { get; set; } }
Public Event OnBeforePurge As OnBeforePurgeHandler Public Delegate Sub OnBeforePurgeHandler(sender As Object, e As CbcacheBeforePurgeEventArgs) Public Class CbcacheBeforePurgeEventArgs Inherits EventArgs Public ReadOnly Property FileId As String Public ReadOnly Property FileContext As IntPtr Public ReadOnly Property LastUseTime As DateTime Public Property PostponeTime As Integer End Class
Remarks
This event fires when the asynchronous file purge procedure starts for the cached file identified by FileId. This event does not fire if the purge procedure is initiated by the application using the FileFlush, FileClose, or FileCloseEx methods.
Note: This event will fire in the context of a dedicated worker thread that performs cache maintenance. Keep handling of this event as quick as possible.
Use the PostponeTime parameter to specify time in seconds to postpone automatic purge operation for this file.
EndCleanup Event (CBCache Component)
This event fires to report the beginning of the asynchronous cleanup procedure.
Syntax
public event OnEndCleanupHandler OnEndCleanup; public delegate void OnEndCleanupHandler(object sender, CbcacheEndCleanupEventArgs e); public class CbcacheEndCleanupEventArgs : EventArgs { }
Public Event OnEndCleanup As OnEndCleanupHandler Public Delegate Sub OnEndCleanupHandler(sender As Object, e As CbcacheEndCleanupEventArgs) Public Class CbcacheEndCleanupEventArgs Inherits EventArgs End Class
Remarks
This event fires when the asynchronous cleanup procedure ends.
Note: This event will fire in the context of a dedicated worker thread that performs cache maintenance. Keep handling of this event as quick as possible.
Error Event (CBCache Component)
This event fires if an unhandled error occurs during an event.
Syntax
public event OnErrorHandler OnError; public delegate void OnErrorHandler(object sender, CbcacheErrorEventArgs e); public class CbcacheErrorEventArgs : EventArgs { public int ErrorCode { get; } public string Description { get; } }
Public Event OnError As OnErrorHandler Public Delegate Sub OnErrorHandler(sender As Object, e As CbcacheErrorEventArgs) Public Class CbcacheErrorEventArgs Inherits EventArgs Public ReadOnly Property ErrorCode As Integer Public ReadOnly Property Description As String End Class
Remarks
This event fires if an unhandled error occurs during another event. Developers can use this information to track down unhandled errors in an application's event handlers.
IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.
Log Event (CBCache Component)
This log reports events that occur in the component.
Syntax
public event OnLogHandler OnLog; public delegate void OnLogHandler(object sender, CbcacheLogEventArgs e); public class CbcacheLogEventArgs : EventArgs { public int Level { get; } public string Message { get; } }
Public Event OnLog As OnLogHandler Public Delegate Sub OnLogHandler(sender As Object, e As CbcacheLogEventArgs) Public Class CbcacheLogEventArgs Inherits EventArgs Public ReadOnly Property Level As Integer Public ReadOnly Property Message As String End Class
Remarks
This event fires when the component needs to notify an application or developers about something that happened internally. The verbosity is controlled by the LogLevel setting.
LogLevel indicates the level of the message. Possible values are as follows:
0 (None) | No information is logged. |
1 (Errors) | Only errors are logged. |
2 (Warnings) | Errors and warnings are logged. |
3 (Information - Default) | Errors, warnings, and informational messages are logged. |
4 (Debug) | Debug data are logged. |
Message is the log entry.
Note: This event will fire in the context of a dedicated worker thread. Keep handling of this event as quick as possible.
Progress Event (CBCache Component)
This event fires to report the progress of an operation.
Syntax
public event OnProgressHandler OnProgress; public delegate void OnProgressHandler(object sender, CbcacheProgressEventArgs e); public class CbcacheProgressEventArgs : EventArgs { public int Operation { get; } public long Current { get; } public long Total { get; } public bool Interrupt { get; set; } }
Public Event OnProgress As OnProgressHandler Public Delegate Sub OnProgressHandler(sender As Object, e As CbcacheProgressEventArgs) Public Class CbcacheProgressEventArgs Inherits EventArgs Public ReadOnly Property Operation As Integer Public ReadOnly Property Current As Long Public ReadOnly Property Total As Long Public Property Interrupt As Boolean End Class
Remarks
This event fires when the cache wants to report the progress of the operation specified by Operation. Possible values are as follows:
CACHE_PO_CLEANUP | 1 | Cache cleanup |
The Current and Total parameters specify the number of the item being processed, and the total number of items being processed, respectively. For some operations, these parameters may be 0 or -1.
The Interrupt parameter can be set to true to stop the operation.
ReadData Event (CBCache Component)
This event fires when the cache needs to read file data from external storage.
Syntax
public event OnReadDataHandler OnReadData; public delegate void OnReadDataHandler(object sender, CbcacheReadDataEventArgs e); public class CbcacheReadDataEventArgs : EventArgs { public string FileId { get; } public long Size { get; } public long Position { get; } public int Flags { get; } public IntPtr Buffer { get; } public int BytesToRead { get; } public int BytesRead { get; set; } public IntPtr FileContext { get; } public int ResultCode { get; set; } }
Public Event OnReadData As OnReadDataHandler Public Delegate Sub OnReadDataHandler(sender As Object, e As CbcacheReadDataEventArgs) Public Class CbcacheReadDataEventArgs Inherits EventArgs Public ReadOnly Property FileId As String Public ReadOnly Property Size As Long Public ReadOnly Property Position As Long Public ReadOnly Property Flags As Integer Public ReadOnly Property Buffer As IntPtr Public ReadOnly Property BytesToRead As Integer Public Property BytesRead As Integer Public ReadOnly Property FileContext As IntPtr Public Property ResultCode As Integer End Class
Remarks
This event fires when the cache needs to read data for the cached file identified by FileId from an external storage.
The Size parameter reflects the specified file's "real size" as it is currently known by the cache.
The Position parameter reflects the byte offset in the real file (i.e., the one in the external storage) from which the handler should start reading data.
The Flags parameter provides supplementary information about the nature of the request. This parameter, along with the Size and Position parameters, helps the event handler to determine, which part of the file Buffer represents and whether additional ReadData events should be expected. It will include a combination of one or more of the following flags:
RWEVENT_IN_PROGRESS | 0x00000001 | A file's data are being transferred into or out of the cache. |
RWEVENT_CANCELED | 0x00000002 | A data transfer has been canceled for some reason. |
RWEVENT_WHOLE_FILE | 0x00000004 | The entire file is being transferred. |
RWEVENT_CONTINUOUS_STARTED | 0x00000010 | A continuous transfer has started. |
RWEVENT_CONTINUOUS_RESTARTED | 0x00000020 | A continuous transfer has restarted from the beginning. |
RWEVENT_CONTINUOUS_FINISHED | 0x00000040 | A continuous transfer is finishing (i.e., the current block is the final one). |
RWEVENT_RANDOM_STARTED | 0x00000100 | A random-access transfer has started. |
RWEVENT_RANDOM_FINISHED | 0x00000200 | A random-access transfer is finishing (i.e., the current block is the final one). |
RWEVENT_BEFORE_END | 0x00001000 | The current transfer will finish before the end of the file. |
RWEVENT_TIL_END | 0x00002000 | The current transfer will last until the end of the file. |
To handle this event property, a handler must read BytesToRead bytes of data from the real file in external storage, starting at the specified Position, into Buffer.
Please see the Buffer Parameters topic for more information on how to work with memory buffer event parameters.
Note: If Flags contains RWEVENT_CANCELED, the transfer is being canceled and no data should be read; the Buffer is not provided and both Position and BytesToRead parameters are set to 0.
When reading is complete, a handler must set BytesRead to reflect the actual number of bytes read from the real file. A handler must not attempt to copy more than BytesToRead bytes of data into Buffer.
The FileContext parameter reflects the application-defined value passed when FileOpen was called.
The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available, security checks failed), set it to one of the following values to report an appropriate error:
RWRESULT_SUCCESS | 0x00000000 | Success.
Returning this code indicates that all data were successfully transferred. |
RWRESULT_PARTIAL | 0x00000080 | Partial success.
Returning this code indicates that some, but not all, data were successfully transferred. i.e., when BytesRead < BytesToRead (for ReadData), or BytesWritten < BytesToWrite (for WriteData). |
RWRESULT_RANGE_BEYOND_EOF | 0x00000081 | Specified range is beyond the end of the file (EOF).
For the ReadData event, returning this code indicates to the cache that there is no need to request data beyond (Position + BytesRead), and that the tail should be zeroed instead. |
RWRESULT_FILE_MODIFIED_EXTERNALLY | 0x00000082 | The specified file's size was modified externally.
Returning this code indicates that the operation was not completed successfully because of this conflicting situation. |
RWRESULT_FILE_MODIFIED_LOCALLY | 0x00000083 | The requested file's size was modified locally. |
RWRESULT_FAILURE | 0x0000008D | The operation failed for some transient reason.
Returning this code indicates that, even though the current request failed, it is safe to continue sending requests for both the specified file and others. (Other operations may continue.) |
RWRESULT_FILE_FAILURE | 0x0000008E | The operation failed for some external-file-related reason.
Returning this code indicates that some failure related to the external file has occurred, and it is expected that any further requests made against that file will also fail. The component will not send any more requests for the specified file until the file-specific error is reset as described in Reporting Transfer Errors. |
RWRESULT_PERMANENT_FAILURE | 0x0000008F | The operation failed for some external-storage-related reason.
Returning this code indicates that some failure related to the external storage has occurred, and it is expected that all further requests will also fail. The component will not send any more requests for any file until the global error is reset as described in Reporting Transfer Errors. |
Please refer to the Error Reporting and Handling topic for more information.
StartCleanup Event (CBCache Component)
This event fires to report the beginning of the asynchronous cleanup procedure.
Syntax
public event OnStartCleanupHandler OnStartCleanup; public delegate void OnStartCleanupHandler(object sender, CbcacheStartCleanupEventArgs e); public class CbcacheStartCleanupEventArgs : EventArgs { }
Public Event OnStartCleanup As OnStartCleanupHandler Public Delegate Sub OnStartCleanupHandler(sender As Object, e As CbcacheStartCleanupEventArgs) Public Class CbcacheStartCleanupEventArgs Inherits EventArgs End Class
Remarks
This event fires when the asynchronous cleanup procedure starts.
Note: This event will fire in the context of a dedicated worker thread that performs cache maintenance. Keep handling of this event as quick as possible.
Status Event (CBCache Component)
This event fires to report the latest cache statistics.
Syntax
public event OnStatusHandler OnStatus; public delegate void OnStatusHandler(object sender, CbcacheStatusEventArgs e); public class CbcacheStatusEventArgs : EventArgs { public long CacheSize { get; } public long TotalData { get; } public long UnflushedData { get; } public int UnflushedFiles { get; } public int CurrentOperation { get; } public string CurrentFileId { get; } }
Public Event OnStatus As OnStatusHandler Public Delegate Sub OnStatusHandler(sender As Object, e As CbcacheStatusEventArgs) Public Class CbcacheStatusEventArgs Inherits EventArgs Public ReadOnly Property CacheSize As Long Public ReadOnly Property TotalData As Long Public ReadOnly Property UnflushedData As Long Public ReadOnly Property UnflushedFiles As Integer Public ReadOnly Property CurrentOperation As Integer Public ReadOnly Property CurrentFileId As String End Class
Remarks
This event fires once every StatsRefreshInterval to provide the application with the latest cache statistics, as well as information about any in-progress cache operation.
The CacheSize parameter reflects the current size of the cache, in bytes.
The TotalData parameter reflects the total amount of data present in the cache, in bytes.
The UnflushedData parameter reflects the amount of unflushed data present in the cache, in bytes.
The UnflushedFiles parameter reflects the number of unflushed files present in the cache.
The CurrentOperation parameter reflects the cache's current operations; it will take one of the following values:
CACHE_OP_IDLE | 0 | The cache is idle. |
CACHE_OP_CLEANUP | 2 | Cache cleanup is being performed. |
CACHE_OP_COMPACT | 3 | The cache's storage file is being compacted. |
CACHE_OP_READ | 4 | The cache is reading some file's data. |
CACHE_OP_WRITE | 5 | The cache is writing some file's data. |
When CurrentOperation is CACHE_OP_READ or CACHE_OP_WRITE, the CurrentFileId parameter will reflect the Id of the cached file being processed.
Note: This event can fire in the context of any thread.
WriteData Event (CBCache Component)
This event fires when the cache needs to write file data to external storage.
Syntax
public event OnWriteDataHandler OnWriteData; public delegate void OnWriteDataHandler(object sender, CbcacheWriteDataEventArgs e); public class CbcacheWriteDataEventArgs : EventArgs { public string FileId { get; } public long Size { get; } public long Position { get; } public int Flags { get; } public IntPtr Buffer { get; } public int BytesToWrite { get; } public int BytesWritten { get; set; } public IntPtr FileContext { get; } public int ResultCode { get; set; } }
Public Event OnWriteData As OnWriteDataHandler Public Delegate Sub OnWriteDataHandler(sender As Object, e As CbcacheWriteDataEventArgs) Public Class CbcacheWriteDataEventArgs Inherits EventArgs Public ReadOnly Property FileId As String Public ReadOnly Property Size As Long Public ReadOnly Property Position As Long Public ReadOnly Property Flags As Integer Public ReadOnly Property Buffer As IntPtr Public ReadOnly Property BytesToWrite As Integer Public Property BytesWritten As Integer Public ReadOnly Property FileContext As IntPtr Public Property ResultCode As Integer End Class
Remarks
This event fires when the cache needs to write data for the cached file identified by FileId to external storage.
The Size parameter reflects the specified file's "real size" as it is currently known by the cache.
The Position parameter reflects the byte offset in the real file (i.e., the one in external storage) at which the application should start writing data.
The Flags parameter provides supplementary information about the nature of the request. This parameter, along with the Size and Position parameters, helps the application to determine which part of the file Buffer represents, and whether additional WriteData events should be expected. It will include a combination of one or more of the following flags:
RWEVENT_IN_PROGRESS | 0x00000001 | A file's data are being transferred into or out of the cache. |
RWEVENT_CANCELED | 0x00000002 | A data transfer has been canceled for some reason. |
RWEVENT_WHOLE_FILE | 0x00000004 | The entire file is being transferred. |
RWEVENT_CONTINUOUS_STARTED | 0x00000010 | A continuous transfer has started. |
RWEVENT_CONTINUOUS_RESTARTED | 0x00000020 | A continuous transfer has restarted from the beginning. |
RWEVENT_CONTINUOUS_FINISHED | 0x00000040 | A continuous transfer is finishing (i.e., the current block is the final one). |
RWEVENT_RANDOM_STARTED | 0x00000100 | A random-access transfer has started. |
RWEVENT_RANDOM_FINISHED | 0x00000200 | A random-access transfer is finishing (i.e., the current block is the final one). |
RWEVENT_BEFORE_END | 0x00001000 | The current transfer will finish before the end of the file. |
RWEVENT_TIL_END | 0x00002000 | The current transfer will last until the end of the file. |
To handle this event properly, applications must write BytesToWrite bytes of data from Buffer to the real file in external storage, starting at the specified Position.
Please see the Buffer Parameters topic for more information on how to work with memory buffer event parameters.
Note: If Flags contains RWEVENT_CANCELED, the transfer is being canceled and no data should be written; the Buffer is not provided and both Position and BytesToWrite parameters are set to 0.
When writing is complete, applications must set BytesWritten to reflect the actual number of bytes written to the real file. Applications must not attempt to copy more than BytesToWrite bytes of data from Buffer.
The FileContext parameter reflects the application-defined value passed when FileOpen was called.
The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available, security checks failed), set it to one of the following values to report an appropriate error:
RWRESULT_SUCCESS | 0x00000000 | Success.
Returning this code indicates that all data were successfully transferred. |
RWRESULT_PARTIAL | 0x00000080 | Partial success.
Returning this code indicates that some, but not all, data were successfully transferred. i.e., when BytesRead < BytesToRead (for ReadData), or BytesWritten < BytesToWrite (for WriteData). |
RWRESULT_RANGE_BEYOND_EOF | 0x00000081 | Specified range is beyond the end of the file (EOF).
For the ReadData event, returning this code indicates to the cache that there is no need to request data beyond (Position + BytesRead), and that the tail should be zeroed instead. |
RWRESULT_FILE_MODIFIED_EXTERNALLY | 0x00000082 | The specified file's size was modified externally.
Returning this code indicates that the operation was not completed successfully because of this conflicting situation. |
RWRESULT_FILE_MODIFIED_LOCALLY | 0x00000083 | The requested file's size was modified locally. |
RWRESULT_FAILURE | 0x0000008D | The operation failed for some transient reason.
Returning this code indicates that, even though the current request failed, it is safe to continue sending requests for both the specified file and others. (Other operations may continue.) |
RWRESULT_FILE_FAILURE | 0x0000008E | The operation failed for some external-file-related reason.
Returning this code indicates that some failure related to the external file has occurred, and it is expected that any further requests made against that file will also fail. The component will not send any more requests for the specified file until the file-specific error is reset as described in Reporting Transfer Errors. |
RWRESULT_PERMANENT_FAILURE | 0x0000008F | The operation failed for some external-storage-related reason.
Returning this code indicates that some failure related to the external storage has occurred, and it is expected that all further requests will also fail. The component will not send any more requests for any file until the global error is reset as described in Reporting Transfer Errors. |
Please refer to the Error Reporting and Handling topic for more information.
CBCacheStats Type
This type holds cache statistics.
Remarks
This type is used to hold various cache statistics.
Fields
CacheSize
long (read-only)
Default Value: 0
This field contains the current size of the cache.
This property reflects the current size, in bytes, of the file cache.
Properties related to cache statistics are refreshed periodically based on the interval specified by the StatsRefreshInterval configuration setting. Applications that need fresher data can either decrease the update refresh, or call the RefreshStatistics method to force an immediate refresh.
Note: This property returns a valid value only when Active is true.
CurrentFileId
string (read-only)
Default Value: ""
This field contains the file currently being read or written by the cache.
When CurrentOperation is CACHE_OP_READ or CACHE_OP_WRITE, this field will reflect the Id of the file being read or written. Otherwise, it will return an empty string.
Properties related to cache statistics are refreshed periodically based on the interval specified by the StatsRefreshInterval configuration setting. Applications that need fresher data can either decrease the update refresh, or call the RefreshStatistics method to force an immediate refresh.
Note: This property returns a valid value only when Active is true.
CurrentOperation
int (read-only)
Default Value: 0
This field contains the operation currently being performed by the cache.
This property reflects the operation currently being performed by the cache. It will be one of the following values:
CACHE_OP_IDLE | 0 | The cache is idle. |
CACHE_OP_CLEANUP | 2 | Cache cleanup is being performed. |
CACHE_OP_COMPACT | 3 | The cache's storage file is being compacted. |
CACHE_OP_READ | 4 | The cache is reading some file's data. |
CACHE_OP_WRITE | 5 | The cache is writing some file's data. |
Properties related to cache statistics are refreshed periodically based on the interval specified by the StatsRefreshInterval configuration setting. Applications that need fresher data can either decrease the update refresh, or call the RefreshStatistics method to force an immediate refresh.
Note: This property returns a valid value only when Active is true.
TotalData
long (read-only)
Default Value: 0
This field contains the total amount of data present in the cache.
This property reflects the total amount of data, in bytes, currently present in the cache.
Properties related to cache statistics are refreshed periodically based on the interval specified by the StatsRefreshInterval configuration setting. Applications that need fresher data can either decrease the update refresh, or call the RefreshStatistics method to force an immediate refresh.
Note: This property returns a valid value only when Active is true.
UnflushedData
long (read-only)
Default Value: 0
This field contains the amount of unflushed data present in the cache.
This property reflects the amount of unflushed or modified data, in bytes, currently present in the cache.
Properties related to cache statistics are refreshed periodically based on the interval specified by the StatsRefreshInterval configuration setting. Applications that need fresher data can either decrease the update refresh, or call the RefreshStatistics method to force an immediate refresh.
Note: This property returns a valid value only when Active is true.
UnflushedFiles
long (read-only)
Default Value: 0
This field contains the number of unflushed files present in the cache.
This property reflects the number of files with unflushed or modified data currently present in the cache.
Properties related to cache statistics are refreshed periodically based on the interval specified by the StatsRefreshInterval configuration setting. Applications that need fresher data can either decrease the update refresh, or call the RefreshStatistics method to force an immediate refresh.
Note: This property returns a valid value only when Active is true.
Config Settings (CBCache Component)
The component accepts one or more of the following configuration settings. Configuration settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the component, access to these internal properties is provided through the Config method.CBCache Config Settings
VAULT_JM_NONE | 0 | No journaling is used.
This mode ensures the fastest operations, but if the application crashes, corruption of the vault is possible. |
VAULT_JM_METADATA | 1 | Journaling is used only for metadata (filesystem structure and directory contents).
This mode is a balance between speed and reliability. |
VAULT_JM_FULL | 2 | Journaling is used for both filesystem structure and file data and metadata.
This mode is the slowest but the most reliable option. |
0 (None) | No information is logged. |
1 (Errors) | Only errors are logged. |
2 (Warnings) | Errors and warnings are logged. |
3 (Information - Default) | Errors, warnings, and informational messages are logged. |
4 (Debug) | Debug data are logged. |
By default, this configuration setting is set to 4 threads per file.
The statistics refresh interval is intended to prevent excessive user interface changes. Set the value to 0 to disable automatic refresh. The default value is 100 ms.
Note: Applications may call RefreshStatistics at any time to explicitly refresh the cache's statistics.
When this configuration setting is enabled, the cache stores individual files' data in separate files and uses the main cache file to store various metadata. This option makes the main cache file smaller and opening of the cache file becomes faster. Also, the speed of intensive write operations of large files is increased. The cache in this mode, however, does not provide encryption or compression of file data and journaling of file data does not take place either.
Base Config Settings
- Product: The product the license is for.
- Product Key: The key the license was generated from.
- License Source: Where the license was found (e.g., RuntimeLicense, License File).
- License Type: The type of license installed (e.g., Royalty Free, Single Server).
Trappable Errors (CBCache Component)
Cache errors Errors
0x48000001 ERROR_ALREADY_OPENED: The requested operation cannot be performed while the cache is open. | |
0x48000002 ERROR_NOT_OPENED: The cache must be open before attempting to perform the requested operation. | |
0x48000003 ERROR_REQ_PARAM_MISSING: The requested operation cannot be performed because a required property has not been set. | |
0x48000004 ERROR_WRONG_ARGUMENT: An invalid value has been passed for the method parameter specified in the error message. | |
0x48000005 ERROR_BACKEND_FAILURE: The cache cannot read data from or write data to external storage because an event handler has reported an error. Once the error state has been reset using ResetErrorState, try again. | |
0x48000006 ERROR_BACKEND_FILE_FAILURE: The cache cannot read data from or write data to external storage because an event handler has reported a file error. Once the error state has been reset using ResetErrorState, try again. | |
0x48000007 ERROR_INVALID_OPERATION: The requested operation is not valid in current context. Refer to the error message for additional information. | |
0x48000008 ERROR_STORAGE_FAILURE: An operation involving the cache storage file has failed. | |
0x48000009 ERROR_WRONG_ENCRYPTION_KEY: The specified cache encryption key is incorrect. | |
0x4800000A ERROR_DIR_NOT_EMPTY: The cache has failed to delete all blocks from the cache storage file. | |
0x4800000B ERROR_FILE_NOT_OPEN: The requested operation cannot be completed because the specified file is not open. Open it using FileOpen, and then try again. | |
0x4800000C ERROR_PATH_NOT_FOUND: The requested operation cannot be completed because the specified path is not found. | |
0x4800000D ERROR_FILE_NOT_FOUND: The requested operation cannot be completed because the specified file is not found. | |
0x4800000E ERROR_FILE_ALREADY_EXISTS: The requested operation cannot be completed because the specified file already exists. | |
0x4800000F ERROR_INVALID_FILE_STATE: The requested operation cannot be completed because the specified file is in an invalid state. Close it using FileClose, and then try again. | |
0x48000010 ERROR_READWRITE_FAILURE: An operation of reading or writing the data from/to the cache has failed. | |
0x48000011 ERROR_OFFLINE: The requested operation cannot be completed because the external storage is offline. | |
0x48000012 ERROR_UNSUPPORTED: The specified combination of external storage capabilities is not supported by the cache. Please double-check that the ReadingCapabilities, WritingCapabilities, and ResizingCapabilities properties are set correctly. | |
0x48000013 ERROR_INTERNAL_OPERATION_CANCELED: The requested operation cannot be completed because it was canceled. | |
0x48000014 ERROR_INTERNAL_VAULT_CORRUPTED: The cache vault is corrupted. CheckAndRepair should be used to attempt to fix the vault. | |
0x48000015 ERROR_INTERNAL_VAULT_RECREATED: The cache vault has been corrupted beyond repair and has been recreated. This is not strictly an error but a nonplanned outcome. | |
0x49000001 ERROR_INTERNAL_ERROR_FIRST: An internal error has occurred. Please report the error details to the Callback Technologies support team. | |
0x4900000B ERROR_INTERNAL_ERROR_LAST: An internal error has occurred. Please report the error details to the Callback Technologies support team. |