Cache Unicode C Reference Documentation

Cache

Current Version: 9.5.0.98

Create/Dispose

HCkCacheW instance = CkCacheW_Create();
// ...
CkCacheW_Dispose(instance);
HCkCacheW CkCacheW_Create(void);

Creates an instance of the HCkCacheW object and returns a handle ("void *" pointer). The handle is passed in the 1st argument for the functions listed on this page.

void CkCacheW_Dispose(HCkCacheW handle);

Objects created by calling CkCacheW_Create must be freed by calling this method. A memory leak occurs if a handle is not disposed by calling this function. Also, any handle returned by a Chilkat "C" function must also be freed by the application by calling the appropriate Dispose method, such as CkCacheW_Dispose.

Properties

DebugLogFilePath
void CkCacheW_getDebugLogFilePath(HCkCacheW cHandle, HCkString retval);
void CkCacheW_putDebugLogFilePath(HCkCacheW cHandle, const wchar_t *newVal);
const wchar_t *CkCacheW_debugLogFilePath(HCkCacheW cHandle);

If set to a file path, causes each Chilkat method or property call to automatically append it's LastErrorText to the specified log file. The information is appended such that if a hang or crash occurs, it is possible to see the context in which the problem occurred, as well as a history of all Chilkat calls up to the point of the problem. The VerboseLogging property can be set to provide more detailed information.

This property is typically used for debugging the rare cases where a Chilkat method call hangs or generates an exception that halts program execution (i.e. crashes). A hang or crash should generally never happen. The typical causes of a hang are:

  1. a timeout related property was set to 0 to explicitly indicate that an infinite timeout is desired,
  2. the hang is actually a hang within an event callback (i.e. it is a hang within the application code), or
  3. there is an internal problem (bug) in the Chilkat code that causes the hang.

More Information and Examples
top
LastErrorHtml
void CkCacheW_getLastErrorHtml(HCkCacheW cHandle, HCkString retval);
const wchar_t *CkCacheW_lastErrorHtml(HCkCacheW cHandle);

Provides information in HTML format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastErrorText
void CkCacheW_getLastErrorText(HCkCacheW cHandle, HCkString retval);
const wchar_t *CkCacheW_lastErrorText(HCkCacheW cHandle);

Provides information in plain-text format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastErrorXml
void CkCacheW_getLastErrorXml(HCkCacheW cHandle, HCkString retval);
const wchar_t *CkCacheW_lastErrorXml(HCkCacheW cHandle);

Provides information in XML format about the last method/property called. If a method call returns a value indicating failure, or behaves unexpectedly, examine this property to get more information.

top
LastEtagFetched
void CkCacheW_getLastEtagFetched(HCkCacheW cHandle, HCkString retval);
const wchar_t *CkCacheW_lastEtagFetched(HCkCacheW cHandle);

The ETag of the last item fetched from cache.

top
LastExpirationFetchedStr
void CkCacheW_getLastExpirationFetchedStr(HCkCacheW cHandle, HCkString retval);
const wchar_t *CkCacheW_lastExpirationFetchedStr(HCkCacheW cHandle);

Expiration date/time of the last item fetched from cache in RFC822 string format.

top
LastHitExpired
BOOL CkCacheW_getLastHitExpired(HCkCacheW cHandle);

TRUE if the LastExpirationFetched is before the current date/time. Otherwise FALSE.

top
LastKeyFetched
void CkCacheW_getLastKeyFetched(HCkCacheW cHandle, HCkString retval);
const wchar_t *CkCacheW_lastKeyFetched(HCkCacheW cHandle);

The key of the last item fetched from cache. (For web pages, the key is typically the canonicalized URL. Otherwise, the key is a unique identifer used to access the cached item.)

top
LastMethodSuccess
BOOL CkCacheW_getLastMethodSuccess(HCkCacheW cHandle);
void CkCacheW_putLastMethodSuccess(HCkCacheW cHandle, BOOL newVal);

Indicate whether the last method call succeeded or failed. A value of TRUE indicates success, a value of FALSE indicates failure. This property is automatically set for method calls. It is not modified by property accesses. The property is automatically set to indicate success for the following types of method calls:

  • Any method that returns a string.
  • Any method returning a Chilkat object, binary bytes, or a date/time.
  • Any method returning a standard boolean status value where success = TRUE and failure = FALSE.
  • Any method returning an integer where failure is defined by a return value less than zero.

Note: Methods that do not fit the above requirements will always set this property equal to TRUE. For example, a method that returns no value (such as a "void" in C++) will technically always succeed.

top
Level
int CkCacheW_getLevel(HCkCacheW cHandle);
void CkCacheW_putLevel(HCkCacheW cHandle, int newVal);

The number of directory levels in the cache. Possible values are:

0: All cache files are in a single directory (the cache root).

1: Cache files are located in 256 sub-directories numbered 0 .. 255 directly under the cache root.

2: There are two levels of sub-directories under the cache root. The 1st level has 256 sub-directories numbered 0 .. 255 directly under the cache root. The 2nd level allows for up to 256 sub-directories (0..255) under each level-1 directory. Cache files are stored in the leaf directories.

top
NumRoots
int CkCacheW_getNumRoots(HCkCacheW cHandle);

The number of root directories composing the cache. A typical multi-root cache would place each root on a separate hard drive.

top
VerboseLogging
BOOL CkCacheW_getVerboseLogging(HCkCacheW cHandle);
void CkCacheW_putVerboseLogging(HCkCacheW cHandle, BOOL newVal);

If set to TRUE, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is FALSE. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.

top
Version
void CkCacheW_getVersion(HCkCacheW cHandle, HCkString retval);
const wchar_t *CkCacheW_version(HCkCacheW cHandle);

Version of the component/library, such as "9.5.0.94"

More Information and Examples
top

Methods

AddRoot
void CkCacheW_AddRoot(HCkCacheW cHandle, const wchar_t *path);

Must be called once for each cache root. For example, if the cache is spread across D:\cacheRoot, E:\cacheRoot, and F:\cacheRoot, an application would setup the cache object by calling AddRoot three times -- once with "D:\cacheRoot", once with "E:\cacheRoot", and once with "F:\cacheRoot".

More Information and Examples
top
DeleteAll
int CkCacheW_DeleteAll(HCkCacheW cHandle);

Deletes all items in the cache. This method completely clears the cache. All files in the cache are deleted. (If the cache is multi-level, existing sub-directories are not deleted.)

Returns the number of items (i.e. cache files) deleted.

top
DeleteAllExpired
int CkCacheW_DeleteAllExpired(HCkCacheW cHandle);

Deletes all expired items from the cache.

Returns the number of items (i.e. cache files) deleted.

top
DeleteFromCache
BOOL CkCacheW_DeleteFromCache(HCkCacheW cHandle, const wchar_t *key);

Deletes a single item from the disk cache. Returns FALSE if the item exists in cache but could not be deleted. Otherwise returns TRUE.

Returns TRUE for success, FALSE for failure.

top
DeleteOlderDt
int CkCacheW_DeleteOlderDt(HCkCacheW cHandle, HCkDateTimeW dateTime);

The same as DeleteOlder, except the dateTime is passed as a CkDateTime.

top
DeleteOlderStr
int CkCacheW_DeleteOlderStr(HCkCacheW cHandle, const wchar_t *dateTimeStr);

The same as DeleteOlder, except the dateTimeStr is passed as a date/time in RFC822 format.

top
FetchBd
BOOL CkCacheW_FetchBd(HCkCacheW cHandle, const wchar_t *key, HCkBinDataW bd);
Introduced in version 9.5.0.91

Fetches an item from cache and returns in bd.

The key may be any length and may include any characters. It should uniquely identify the cached item. (No two items in the cache should have the same key.)

Returns TRUE for success, FALSE for failure.

top
FetchFromCache
BOOL CkCacheW_FetchFromCache(HCkCacheW cHandle, const wchar_t *key, const unsigned char * outBytes);

Fetches an item from cache.

The key may be any length and may include any characters. It should uniquely identify the cached item. (No two items in the cache should have the same key.)

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
FetchSb
BOOL CkCacheW_FetchSb(HCkCacheW cHandle, const wchar_t *key, HCkStringBuilderW sb);
Introduced in version 9.5.0.91

Fetches a text item from the cache and returns in sb.

The key may be any length and may include any characters. It should uniquely identify the cached item. (No two items in the cache should have the same key.)

Returns TRUE for success, FALSE for failure.

top
FetchText
BOOL CkCacheW_FetchText(HCkCacheW cHandle, const wchar_t *key, const wchar_t *outStr);
const wchar_t *CkCacheW_fetchText(HCkCacheW cHandle, const wchar_t *key);

Fetches a text item from the cache and returns it's text content.

The key may be any length and may include any characters. It should uniquely identify the cached item. (No two items in the cache should have the same key.)

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
GetEtag
BOOL CkCacheW_GetEtag(HCkCacheW cHandle, const wchar_t *key, const wchar_t *outStr);
const wchar_t *CkCacheW_getEtag(HCkCacheW cHandle, const wchar_t *key);

Returns the eTag for an item in the cache.

Returns TRUE for success, FALSE for failure.

top
GetExpirationDt
HCkDateTimeW CkCacheW_GetExpirationDt(HCkCacheW cHandle, const wchar_t *key);

Returns the expiration date/time for an item in the cache as a CkDateTime object.

Returns NULL on failure

top
GetExpirationStr
BOOL CkCacheW_GetExpirationStr(HCkCacheW cHandle, const wchar_t *url, const wchar_t *outStr);
const wchar_t *CkCacheW_getExpirationStr(HCkCacheW cHandle, const wchar_t *url);

Returns the expiration date/time for an item in the cache in RFC822 string format.

Returns TRUE for success, FALSE for failure.

top
GetFilename
BOOL CkCacheW_GetFilename(HCkCacheW cHandle, const wchar_t *key, const wchar_t *outStr);
const wchar_t *CkCacheW_getFilename(HCkCacheW cHandle, const wchar_t *key);

Returns the absolute file path of the cache file associated with the key.

Returns TRUE for success, FALSE for failure.

top
GetRoot
BOOL CkCacheW_GetRoot(HCkCacheW cHandle, int index, const wchar_t *outStr);
const wchar_t *CkCacheW_getRoot(HCkCacheW cHandle, int index);

Returns the directory path of the Nth cache root. (Indexing begins at 0.)

Returns TRUE for success, FALSE for failure.

top
IsCached
BOOL CkCacheW_IsCached(HCkCacheW cHandle, const wchar_t *key);

Returns TRUE if the item is found in the cache, otherwise returns FALSE.

top
SaveTextDt
BOOL CkCacheW_SaveTextDt(HCkCacheW cHandle, const wchar_t *key, HCkDateTimeW expireDateTime, const wchar_t *eTag, const wchar_t *itemTextData);

The same as SaveText, except the expire date/time is passed as a CkDateTime object.

Returns TRUE for success, FALSE for failure.

top
SaveTextNoExpire
BOOL CkCacheW_SaveTextNoExpire(HCkCacheW cHandle, const wchar_t *key, const wchar_t *eTag, const wchar_t *itemTextData);

Inserts or replaces an text item in the cache with no expiration date/time. The eTag is optional and may be set to a zero-length string. Applications may use it as a place to save additional information about the cached item.

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
SaveTextStr
BOOL CkCacheW_SaveTextStr(HCkCacheW cHandle, const wchar_t *key, const wchar_t *expireDateTime, const wchar_t *eTag, const wchar_t *itemTextData);

The same as SaveText, except the expire date/time is passed as a string in RFC822 format.

Returns TRUE for success, FALSE for failure.

top
SaveToCacheDt
BOOL CkCacheW_SaveToCacheDt(HCkCacheW cHandle, const wchar_t *key, HCkDateTimeW expireDateTime, const wchar_t *eTag, HCkByteData itemData);

The same as SaveToCache, except the expire date/time is passed as a CkDateTime object.

Returns TRUE for success, FALSE for failure.

top
SaveToCacheNoExpire
BOOL CkCacheW_SaveToCacheNoExpire(HCkCacheW cHandle, const wchar_t *key, const wchar_t *eTag, HCkByteData itemData);

Inserts or replaces an item in the cache. The cached item will have no expiration. The eTag is optional and may be set to a zero-length string. Applications may use it as a place to save additional information about the cached item.

Returns TRUE for success, FALSE for failure.

More Information and Examples
top
SaveToCacheStr
BOOL CkCacheW_SaveToCacheStr(HCkCacheW cHandle, const wchar_t *key, const wchar_t *expireDateTime, const wchar_t *eTag, HCkByteData itemData);

The same as SaveToCache, except the expire date/time is passed in RFC822 string format.

Returns TRUE for success, FALSE for failure.

top
UpdateExpirationDt
BOOL CkCacheW_UpdateExpirationDt(HCkCacheW cHandle, const wchar_t *key, HCkDateTimeW expireDateTime);

The same as UpdateExpiration, except the expireDateTime is passed as a CkDateTime.

Returns TRUE for success, FALSE for failure.

top
UpdateExpirationStr
BOOL CkCacheW_UpdateExpirationStr(HCkCacheW cHandle, const wchar_t *key, const wchar_t *expireDateTime);

The same as UpdateExpiration, except the expireDateTime is passed in RFC822 string format.

Returns TRUE for success, FALSE for failure.

top