2001-03-20 22:42:03 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2001-03-20 22:42:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Cache Service Utility Functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _nsCache_h_
|
|
|
|
#define _nsCache_h_
|
|
|
|
|
2012-10-01 16:10:21 +00:00
|
|
|
#if defined(MOZ_LOGGING)
|
|
|
|
#define FORCE_PR_LOG
|
|
|
|
#endif
|
|
|
|
|
2012-11-22 01:14:00 +00:00
|
|
|
#if defined(PR_LOG)
|
|
|
|
#error "If nsCache.h #included it must come before any files that #include prlog.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "prlog.h"
|
2002-08-07 01:13:29 +00:00
|
|
|
#include "nsISupports.h"
|
2003-03-10 23:19:05 +00:00
|
|
|
#include "nsIFile.h"
|
2002-03-23 21:35:01 +00:00
|
|
|
#include "nsAString.h"
|
2001-03-25 21:33:50 +00:00
|
|
|
#include "prtime.h"
|
|
|
|
#include "nsError.h"
|
2001-04-04 03:30:45 +00:00
|
|
|
|
|
|
|
// PR_LOG args = "format string", arg, arg, ...
|
|
|
|
#if defined(PR_LOGGING)
|
|
|
|
extern PRLogModuleInfo * gCacheLog;
|
|
|
|
void CacheLogInit();
|
2003-03-10 23:19:05 +00:00
|
|
|
void CacheLogPrintPath(PRLogModuleLevel level,
|
2009-05-26 08:53:15 +00:00
|
|
|
const char * format,
|
2003-03-10 23:19:05 +00:00
|
|
|
nsIFile * item);
|
2001-04-04 03:30:45 +00:00
|
|
|
#define CACHE_LOG_INIT() CacheLogInit()
|
|
|
|
#define CACHE_LOG_ALWAYS(args) PR_LOG(gCacheLog, PR_LOG_ALWAYS, args)
|
|
|
|
#define CACHE_LOG_ERROR(args) PR_LOG(gCacheLog, PR_LOG_ERROR, args)
|
|
|
|
#define CACHE_LOG_WARNING(args) PR_LOG(gCacheLog, PR_LOG_WARNING, args)
|
|
|
|
#define CACHE_LOG_DEBUG(args) PR_LOG(gCacheLog, PR_LOG_DEBUG, args)
|
2003-03-10 23:19:05 +00:00
|
|
|
#define CACHE_LOG_PATH(level, format, item) \
|
|
|
|
CacheLogPrintPath(level, format, item)
|
2001-04-04 03:30:45 +00:00
|
|
|
#else
|
|
|
|
#define CACHE_LOG_INIT() {}
|
|
|
|
#define CACHE_LOG_ALWAYS(args) {}
|
|
|
|
#define CACHE_LOG_ERROR(args) {}
|
|
|
|
#define CACHE_LOG_WARNING(args) {}
|
|
|
|
#define CACHE_LOG_DEBUG(args) {}
|
2003-03-10 23:19:05 +00:00
|
|
|
#define CACHE_LOG_PATH(level, format, item) {}
|
2001-03-20 22:42:03 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
extern uint32_t SecondsFromPRTime(PRTime prTime);
|
|
|
|
extern PRTime PRTimeFromSeconds(uint32_t seconds);
|
2001-03-20 22:42:03 +00:00
|
|
|
|
|
|
|
|
2002-03-23 21:35:01 +00:00
|
|
|
extern nsresult ClientIDFromCacheKey(const nsACString& key, char ** result);
|
2005-01-13 03:25:28 +00:00
|
|
|
extern nsresult ClientKeyFromCacheKey(const nsCString& key, nsACString &result);
|
2001-03-20 22:42:03 +00:00
|
|
|
|
2002-08-07 01:13:29 +00:00
|
|
|
|
2001-03-20 22:42:03 +00:00
|
|
|
#endif // _nsCache_h
|