2001-03-21 01:42:03 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
2012-05-21 15:12:37 +04: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-21 01:42:03 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Cache Service Utility Functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _nsCache_h_
|
|
|
|
#define _nsCache_h_
|
|
|
|
|
2015-05-19 21:15:34 +03:00
|
|
|
#include "mozilla/Logging.h"
|
2002-08-07 05:13:29 +04:00
|
|
|
#include "nsISupports.h"
|
2003-03-11 02:19:05 +03:00
|
|
|
#include "nsIFile.h"
|
2002-03-24 00:35:01 +03:00
|
|
|
#include "nsAString.h"
|
2001-03-26 01:33:50 +04:00
|
|
|
#include "prtime.h"
|
|
|
|
#include "nsError.h"
|
2001-04-04 07:30:45 +04:00
|
|
|
|
|
|
|
// PR_LOG args = "format string", arg, arg, ...
|
2015-11-03 07:35:29 +03:00
|
|
|
extern mozilla::LazyLogModule gCacheLog;
|
2015-06-04 01:25:57 +03:00
|
|
|
void CacheLogPrintPath(mozilla::LogLevel level,
|
2009-05-26 12:53:15 +04:00
|
|
|
const char * format,
|
2003-03-11 02:19:05 +03:00
|
|
|
nsIFile * item);
|
2015-06-04 01:25:57 +03:00
|
|
|
#define CACHE_LOG_INFO(args) MOZ_LOG(gCacheLog, mozilla::LogLevel::Info, args)
|
|
|
|
#define CACHE_LOG_ERROR(args) MOZ_LOG(gCacheLog, mozilla::LogLevel::Error, args)
|
|
|
|
#define CACHE_LOG_WARNING(args) MOZ_LOG(gCacheLog, mozilla::LogLevel::Warning, args)
|
|
|
|
#define CACHE_LOG_DEBUG(args) MOZ_LOG(gCacheLog, mozilla::LogLevel::Debug, args)
|
2003-03-11 02:19:05 +03:00
|
|
|
#define CACHE_LOG_PATH(level, format, item) \
|
|
|
|
CacheLogPrintPath(level, format, item)
|
2001-03-21 01:42:03 +03:00
|
|
|
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
extern uint32_t SecondsFromPRTime(PRTime prTime);
|
|
|
|
extern PRTime PRTimeFromSeconds(uint32_t seconds);
|
2001-03-21 01:42:03 +03:00
|
|
|
|
|
|
|
|
2002-03-24 00:35:01 +03:00
|
|
|
extern nsresult ClientIDFromCacheKey(const nsACString& key, char ** result);
|
2005-01-13 06:25:28 +03:00
|
|
|
extern nsresult ClientKeyFromCacheKey(const nsCString& key, nsACString &result);
|
2001-03-21 01:42:03 +03:00
|
|
|
|
2002-08-07 05:13:29 +04:00
|
|
|
|
2001-03-21 01:42:03 +03:00
|
|
|
#endif // _nsCache_h
|