2013-01-29 13:38:37 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim: sw=2 ts=2 et lcs=trail\:.,tab\:>~ :
|
|
|
|
* 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/. */
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include "mozilla/Telemetry.h"
|
|
|
|
#include "mozilla/Preferences.h"
|
|
|
|
#include "sqlite3.h"
|
|
|
|
#include "nsThreadUtils.h"
|
|
|
|
#include "mozilla/Util.h"
|
2013-09-10 21:18:36 -07:00
|
|
|
#include "mozilla/dom/quota/PersistenceType.h"
|
2013-01-29 13:38:37 -08:00
|
|
|
#include "mozilla/dom/quota/QuotaManager.h"
|
2013-03-26 04:13:17 -07:00
|
|
|
#include "mozilla/dom/quota/QuotaObject.h"
|
2013-09-12 07:47:37 -07:00
|
|
|
#include "mozilla/IOInterposer.h"
|
2013-01-29 13:38:37 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This preference is a workaround to allow users/sysadmins to identify
|
|
|
|
* that the profile exists on an NFS share whose implementation
|
|
|
|
* is incompatible with SQLite's default locking implementation.
|
|
|
|
* Bug 433129 attempted to automatically identify such file-systems,
|
|
|
|
* but a reliable way was not found and it was determined that the fallback
|
|
|
|
* locking is slower than POSIX locking, so we do not want to do it by default.
|
|
|
|
*/
|
|
|
|
#define PREF_NFS_FILESYSTEM "storage.nfs_filesystem"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
using namespace mozilla::dom::quota;
|
|
|
|
|
|
|
|
struct Histograms {
|
|
|
|
const char *name;
|
|
|
|
const Telemetry::ID readB;
|
|
|
|
const Telemetry::ID writeB;
|
|
|
|
const Telemetry::ID readMS;
|
|
|
|
const Telemetry::ID writeMS;
|
|
|
|
const Telemetry::ID syncMS;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define SQLITE_TELEMETRY(FILENAME, HGRAM) \
|
|
|
|
{ FILENAME, \
|
|
|
|
Telemetry::MOZ_SQLITE_ ## HGRAM ## _READ_B, \
|
|
|
|
Telemetry::MOZ_SQLITE_ ## HGRAM ## _WRITE_B, \
|
|
|
|
Telemetry::MOZ_SQLITE_ ## HGRAM ## _READ_MS, \
|
|
|
|
Telemetry::MOZ_SQLITE_ ## HGRAM ## _WRITE_MS, \
|
|
|
|
Telemetry::MOZ_SQLITE_ ## HGRAM ## _SYNC_MS \
|
|
|
|
}
|
|
|
|
|
|
|
|
Histograms gHistograms[] = {
|
|
|
|
SQLITE_TELEMETRY("places.sqlite", PLACES),
|
|
|
|
SQLITE_TELEMETRY("cookies.sqlite", COOKIES),
|
|
|
|
SQLITE_TELEMETRY("webappsstore.sqlite", WEBAPPS),
|
2013-07-31 08:44:58 -07:00
|
|
|
SQLITE_TELEMETRY(nullptr, OTHER)
|
2013-01-29 13:38:37 -08:00
|
|
|
};
|
|
|
|
#undef SQLITE_TELEMETRY
|
|
|
|
|
|
|
|
/** RAII class for measuring how long io takes on/off main thread
|
|
|
|
*/
|
|
|
|
class IOThreadAutoTimer {
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* IOThreadAutoTimer measures time spent in IO. Additionally it
|
|
|
|
* automatically determines whether IO is happening on the main
|
|
|
|
* thread and picks an appropriate histogram.
|
|
|
|
*
|
|
|
|
* @param id takes a telemetry histogram id. The id+1 must be an
|
|
|
|
* equivalent histogram for the main thread. Eg, MOZ_SQLITE_OPEN_MS
|
|
|
|
* is followed by MOZ_SQLITE_OPEN_MAIN_THREAD_MS.
|
2013-06-14 11:01:02 -07:00
|
|
|
*
|
2013-09-12 07:47:37 -07:00
|
|
|
* @param aOp optionally takes an IO operation to report through the
|
|
|
|
* IOInterposer. Filename will be reported as NULL, and reference will be
|
|
|
|
* either "sqlite-mainthread" or "sqlite-otherthread".
|
2013-01-29 13:38:37 -08:00
|
|
|
*/
|
2013-06-14 11:01:02 -07:00
|
|
|
IOThreadAutoTimer(Telemetry::ID id,
|
2013-09-12 07:47:37 -07:00
|
|
|
IOInterposeObserver::Operation aOp = IOInterposeObserver::OpNone)
|
2013-01-29 13:38:37 -08:00
|
|
|
: start(TimeStamp::Now()),
|
2013-06-14 11:01:02 -07:00
|
|
|
id(id),
|
2013-09-12 07:47:37 -07:00
|
|
|
op(aOp)
|
2013-01-29 13:38:37 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
~IOThreadAutoTimer() {
|
2013-06-14 11:01:02 -07:00
|
|
|
TimeStamp end(TimeStamp::Now());
|
2013-01-29 13:38:37 -08:00
|
|
|
uint32_t mainThread = NS_IsMainThread() ? 1 : 0;
|
|
|
|
Telemetry::AccumulateTimeDelta(static_cast<Telemetry::ID>(id + mainThread),
|
2013-06-14 11:01:02 -07:00
|
|
|
start, end);
|
2013-09-14 19:08:11 -07:00
|
|
|
#ifdef MOZ_ENABLE_PROFILER_SPS
|
2013-09-12 07:47:37 -07:00
|
|
|
if (IOInterposer::IsObservedOperation(op)) {
|
|
|
|
const char* main_ref = "sqlite-mainthread";
|
|
|
|
const char* other_ref = "sqlite-otherthread";
|
|
|
|
|
|
|
|
// Create observation
|
|
|
|
IOInterposeObserver::Observation ob(op, start, end,
|
|
|
|
(mainThread ? main_ref : other_ref));
|
|
|
|
// Report observation
|
|
|
|
IOInterposer::Report(ob);
|
2013-06-14 11:01:02 -07:00
|
|
|
}
|
2013-09-14 19:08:11 -07:00
|
|
|
#endif /* MOZ_ENABLE_PROFILER_SPS */
|
2013-01-29 13:38:37 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const TimeStamp start;
|
|
|
|
const Telemetry::ID id;
|
2013-09-12 07:47:37 -07:00
|
|
|
IOInterposeObserver::Operation op;
|
2013-01-29 13:38:37 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct telemetry_file {
|
|
|
|
// Base class. Must be first
|
|
|
|
sqlite3_file base;
|
|
|
|
|
|
|
|
// histograms pertaining to this file
|
|
|
|
Histograms *histograms;
|
|
|
|
|
|
|
|
// quota object for this file
|
|
|
|
nsRefPtr<QuotaObject> quotaObject;
|
|
|
|
|
|
|
|
// This contains the vfs that actually does work
|
|
|
|
sqlite3_file pReal[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Close a telemetry_file.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
xClose(sqlite3_file *pFile)
|
|
|
|
{
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
|
|
|
int rc;
|
|
|
|
rc = p->pReal->pMethods->xClose(p->pReal);
|
|
|
|
if( rc==SQLITE_OK ){
|
|
|
|
delete p->base.pMethods;
|
2013-07-31 08:44:58 -07:00
|
|
|
p->base.pMethods = nullptr;
|
2013-01-29 13:38:37 -08:00
|
|
|
p->quotaObject = nullptr;
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Read data from a telemetry_file.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
xRead(sqlite3_file *pFile, void *zBuf, int iAmt, sqlite_int64 iOfst)
|
|
|
|
{
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
2013-09-12 07:47:37 -07:00
|
|
|
IOThreadAutoTimer ioTimer(p->histograms->readMS, IOInterposeObserver::OpRead);
|
2013-01-29 13:38:37 -08:00
|
|
|
int rc;
|
|
|
|
rc = p->pReal->pMethods->xRead(p->pReal, zBuf, iAmt, iOfst);
|
|
|
|
// sqlite likes to read from empty files, this is normal, ignore it.
|
|
|
|
if (rc != SQLITE_IOERR_SHORT_READ)
|
|
|
|
Telemetry::Accumulate(p->histograms->readB, rc == SQLITE_OK ? iAmt : 0);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Write data to a telemetry_file.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
xWrite(sqlite3_file *pFile, const void *zBuf, int iAmt, sqlite_int64 iOfst)
|
|
|
|
{
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
|
|
|
if (p->quotaObject && !p->quotaObject->MaybeAllocateMoreSpace(iOfst, iAmt)) {
|
|
|
|
return SQLITE_FULL;
|
|
|
|
}
|
2013-09-12 07:47:37 -07:00
|
|
|
IOThreadAutoTimer ioTimer(p->histograms->writeMS, IOInterposeObserver::OpWrite);
|
2013-01-29 13:38:37 -08:00
|
|
|
int rc;
|
|
|
|
rc = p->pReal->pMethods->xWrite(p->pReal, zBuf, iAmt, iOfst);
|
|
|
|
Telemetry::Accumulate(p->histograms->writeB, rc == SQLITE_OK ? iAmt : 0);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Truncate a telemetry_file.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
xTruncate(sqlite3_file *pFile, sqlite_int64 size)
|
|
|
|
{
|
|
|
|
IOThreadAutoTimer ioTimer(Telemetry::MOZ_SQLITE_TRUNCATE_MS);
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
|
|
|
int rc;
|
|
|
|
Telemetry::AutoTimer<Telemetry::MOZ_SQLITE_TRUNCATE_MS> timer;
|
|
|
|
rc = p->pReal->pMethods->xTruncate(p->pReal, size);
|
|
|
|
if (rc == SQLITE_OK && p->quotaObject) {
|
|
|
|
p->quotaObject->UpdateSize(size);
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Sync a telemetry_file.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
xSync(sqlite3_file *pFile, int flags)
|
|
|
|
{
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
2013-09-12 07:47:37 -07:00
|
|
|
IOThreadAutoTimer ioTimer(p->histograms->syncMS, IOInterposeObserver::OpFSync);
|
2013-01-29 13:38:37 -08:00
|
|
|
return p->pReal->pMethods->xSync(p->pReal, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Return the current file-size of a telemetry_file.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
xFileSize(sqlite3_file *pFile, sqlite_int64 *pSize)
|
|
|
|
{
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
|
|
|
int rc;
|
|
|
|
rc = p->pReal->pMethods->xFileSize(p->pReal, pSize);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Lock a telemetry_file.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
xLock(sqlite3_file *pFile, int eLock)
|
|
|
|
{
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
|
|
|
int rc;
|
|
|
|
rc = p->pReal->pMethods->xLock(p->pReal, eLock);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Unlock a telemetry_file.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
xUnlock(sqlite3_file *pFile, int eLock)
|
|
|
|
{
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
|
|
|
int rc;
|
|
|
|
rc = p->pReal->pMethods->xUnlock(p->pReal, eLock);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Check if another file-handle holds a RESERVED lock on a telemetry_file.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
xCheckReservedLock(sqlite3_file *pFile, int *pResOut)
|
|
|
|
{
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
|
|
|
int rc = p->pReal->pMethods->xCheckReservedLock(p->pReal, pResOut);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** File control method. For custom operations on a telemetry_file.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
xFileControl(sqlite3_file *pFile, int op, void *pArg)
|
|
|
|
{
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
|
|
|
int rc = p->pReal->pMethods->xFileControl(p->pReal, op, pArg);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Return the sector-size in bytes for a telemetry_file.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
xSectorSize(sqlite3_file *pFile)
|
|
|
|
{
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
|
|
|
int rc;
|
|
|
|
rc = p->pReal->pMethods->xSectorSize(p->pReal);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Return the device characteristic flags supported by a telemetry_file.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
xDeviceCharacteristics(sqlite3_file *pFile)
|
|
|
|
{
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
|
|
|
int rc;
|
|
|
|
rc = p->pReal->pMethods->xDeviceCharacteristics(p->pReal);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Shared-memory operations.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
xShmLock(sqlite3_file *pFile, int ofst, int n, int flags)
|
|
|
|
{
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
|
|
|
return p->pReal->pMethods->xShmLock(p->pReal, ofst, n, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
xShmMap(sqlite3_file *pFile, int iRegion, int szRegion, int isWrite, void volatile **pp)
|
|
|
|
{
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
|
|
|
int rc;
|
|
|
|
rc = p->pReal->pMethods->xShmMap(p->pReal, iRegion, szRegion, isWrite, pp);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
xShmBarrier(sqlite3_file *pFile){
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
|
|
|
p->pReal->pMethods->xShmBarrier(p->pReal);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
xShmUnmap(sqlite3_file *pFile, int delFlag){
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
|
|
|
int rc;
|
|
|
|
rc = p->pReal->pMethods->xShmUnmap(p->pReal, delFlag);
|
|
|
|
return rc;
|
|
|
|
}
|
2013-06-01 09:26:17 -07:00
|
|
|
|
|
|
|
int
|
|
|
|
xFetch(sqlite3_file *pFile, sqlite3_int64 iOff, int iAmt, void **pp)
|
|
|
|
{
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
|
|
|
MOZ_ASSERT(p->pReal->pMethods->iVersion >= 3);
|
|
|
|
return p->pReal->pMethods->xFetch(p->pReal, iOff, iAmt, pp);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
xUnfetch(sqlite3_file *pFile, sqlite3_int64 iOff, void *pResOut)
|
|
|
|
{
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
|
|
|
MOZ_ASSERT(p->pReal->pMethods->iVersion >= 3);
|
|
|
|
return p->pReal->pMethods->xUnfetch(p->pReal, iOff, pResOut);
|
|
|
|
}
|
|
|
|
|
2013-01-29 13:38:37 -08:00
|
|
|
int
|
|
|
|
xOpen(sqlite3_vfs* vfs, const char *zName, sqlite3_file* pFile,
|
|
|
|
int flags, int *pOutFlags)
|
|
|
|
{
|
|
|
|
IOThreadAutoTimer ioTimer(Telemetry::MOZ_SQLITE_OPEN_MS);
|
|
|
|
Telemetry::AutoTimer<Telemetry::MOZ_SQLITE_OPEN_MS> timer;
|
|
|
|
sqlite3_vfs *orig_vfs = static_cast<sqlite3_vfs*>(vfs->pAppData);
|
|
|
|
int rc;
|
|
|
|
telemetry_file *p = (telemetry_file *)pFile;
|
2013-07-31 08:44:58 -07:00
|
|
|
Histograms *h = nullptr;
|
2013-01-29 13:38:37 -08:00
|
|
|
// check if the filename is one we are probing for
|
|
|
|
for(size_t i = 0;i < sizeof(gHistograms)/sizeof(gHistograms[0]);i++) {
|
|
|
|
h = &gHistograms[i];
|
|
|
|
// last probe is the fallback probe
|
|
|
|
if (!h->name)
|
|
|
|
break;
|
|
|
|
if (!zName)
|
|
|
|
continue;
|
|
|
|
const char *match = strstr(zName, h->name);
|
|
|
|
if (!match)
|
|
|
|
continue;
|
|
|
|
char c = match[strlen(h->name)];
|
|
|
|
// include -wal/-journal too
|
|
|
|
if (!c || c == '-')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
p->histograms = h;
|
|
|
|
|
2013-09-10 21:18:36 -07:00
|
|
|
const char* persistenceType;
|
|
|
|
const char* group;
|
2013-01-29 13:38:37 -08:00
|
|
|
const char* origin;
|
|
|
|
if ((flags & SQLITE_OPEN_URI) &&
|
2013-09-10 21:18:36 -07:00
|
|
|
(persistenceType = sqlite3_uri_parameter(zName, "persistenceType")) &&
|
|
|
|
(group = sqlite3_uri_parameter(zName, "group")) &&
|
2013-01-29 13:38:37 -08:00
|
|
|
(origin = sqlite3_uri_parameter(zName, "origin"))) {
|
|
|
|
QuotaManager* quotaManager = QuotaManager::Get();
|
|
|
|
MOZ_ASSERT(quotaManager);
|
|
|
|
|
2013-09-10 21:18:36 -07:00
|
|
|
p->quotaObject = quotaManager->GetQuotaObject(PersistenceTypeFromText(
|
|
|
|
nsDependentCString(persistenceType)), nsDependentCString(group),
|
|
|
|
nsDependentCString(origin), NS_ConvertUTF8toUTF16(zName));
|
2013-01-29 13:38:37 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
rc = orig_vfs->xOpen(orig_vfs, zName, p->pReal, flags, pOutFlags);
|
|
|
|
if( rc != SQLITE_OK )
|
|
|
|
return rc;
|
|
|
|
if( p->pReal->pMethods ){
|
|
|
|
sqlite3_io_methods *pNew = new sqlite3_io_methods;
|
|
|
|
const sqlite3_io_methods *pSub = p->pReal->pMethods;
|
|
|
|
memset(pNew, 0, sizeof(*pNew));
|
2013-06-01 09:26:17 -07:00
|
|
|
// If you update this version number, you must add appropriate IO methods
|
|
|
|
// for any methods added in the version change.
|
|
|
|
pNew->iVersion = 3;
|
|
|
|
MOZ_ASSERT(pNew->iVersion >= pSub->iVersion);
|
2013-01-29 13:38:37 -08:00
|
|
|
pNew->xClose = xClose;
|
|
|
|
pNew->xRead = xRead;
|
|
|
|
pNew->xWrite = xWrite;
|
|
|
|
pNew->xTruncate = xTruncate;
|
|
|
|
pNew->xSync = xSync;
|
|
|
|
pNew->xFileSize = xFileSize;
|
|
|
|
pNew->xLock = xLock;
|
|
|
|
pNew->xUnlock = xUnlock;
|
|
|
|
pNew->xCheckReservedLock = xCheckReservedLock;
|
|
|
|
pNew->xFileControl = xFileControl;
|
|
|
|
pNew->xSectorSize = xSectorSize;
|
|
|
|
pNew->xDeviceCharacteristics = xDeviceCharacteristics;
|
2013-06-01 09:26:17 -07:00
|
|
|
// Methods added in version 2.
|
|
|
|
pNew->xShmMap = pSub->xShmMap ? xShmMap : 0;
|
|
|
|
pNew->xShmLock = pSub->xShmLock ? xShmLock : 0;
|
|
|
|
pNew->xShmBarrier = pSub->xShmBarrier ? xShmBarrier : 0;
|
|
|
|
pNew->xShmUnmap = pSub->xShmUnmap ? xShmUnmap : 0;
|
|
|
|
// Methods added in version 3.
|
2013-07-31 08:44:58 -07:00
|
|
|
// SQLite 3.7.17 calls these methods without checking for nullptr first,
|
2013-06-01 09:26:17 -07:00
|
|
|
// so we always define them. Verify that we're not going to call
|
2013-07-31 08:44:58 -07:00
|
|
|
// nullptrs, though.
|
2013-06-01 09:26:17 -07:00
|
|
|
MOZ_ASSERT(pSub->xFetch);
|
|
|
|
pNew->xFetch = xFetch;
|
|
|
|
MOZ_ASSERT(pSub->xUnfetch);
|
|
|
|
pNew->xUnfetch = xUnfetch;
|
2013-01-29 13:38:37 -08:00
|
|
|
pFile->pMethods = pNew;
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
xDelete(sqlite3_vfs* vfs, const char *zName, int syncDir)
|
|
|
|
{
|
|
|
|
sqlite3_vfs *orig_vfs = static_cast<sqlite3_vfs*>(vfs->pAppData);
|
|
|
|
return orig_vfs->xDelete(orig_vfs, zName, syncDir);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
xAccess(sqlite3_vfs *vfs, const char *zName, int flags, int *pResOut)
|
|
|
|
{
|
|
|
|
sqlite3_vfs *orig_vfs = static_cast<sqlite3_vfs*>(vfs->pAppData);
|
|
|
|
return orig_vfs->xAccess(orig_vfs, zName, flags, pResOut);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
xFullPathname(sqlite3_vfs *vfs, const char *zName, int nOut, char *zOut)
|
|
|
|
{
|
|
|
|
sqlite3_vfs *orig_vfs = static_cast<sqlite3_vfs*>(vfs->pAppData);
|
|
|
|
return orig_vfs->xFullPathname(orig_vfs, zName, nOut, zOut);
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
|
|
|
xDlOpen(sqlite3_vfs *vfs, const char *zFilename)
|
|
|
|
{
|
|
|
|
sqlite3_vfs *orig_vfs = static_cast<sqlite3_vfs*>(vfs->pAppData);
|
|
|
|
return orig_vfs->xDlOpen(orig_vfs, zFilename);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
xDlError(sqlite3_vfs *vfs, int nByte, char *zErrMsg)
|
|
|
|
{
|
|
|
|
sqlite3_vfs *orig_vfs = static_cast<sqlite3_vfs*>(vfs->pAppData);
|
|
|
|
orig_vfs->xDlError(orig_vfs, nByte, zErrMsg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
(*xDlSym(sqlite3_vfs *vfs, void *pHdle, const char *zSym))(void){
|
|
|
|
sqlite3_vfs *orig_vfs = static_cast<sqlite3_vfs*>(vfs->pAppData);
|
|
|
|
return orig_vfs->xDlSym(orig_vfs, pHdle, zSym);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
xDlClose(sqlite3_vfs *vfs, void *pHandle)
|
|
|
|
{
|
|
|
|
sqlite3_vfs *orig_vfs = static_cast<sqlite3_vfs*>(vfs->pAppData);
|
|
|
|
orig_vfs->xDlClose(orig_vfs, pHandle);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
xRandomness(sqlite3_vfs *vfs, int nByte, char *zOut)
|
|
|
|
{
|
|
|
|
sqlite3_vfs *orig_vfs = static_cast<sqlite3_vfs*>(vfs->pAppData);
|
|
|
|
return orig_vfs->xRandomness(orig_vfs, nByte, zOut);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
xSleep(sqlite3_vfs *vfs, int microseconds)
|
|
|
|
{
|
|
|
|
sqlite3_vfs *orig_vfs = static_cast<sqlite3_vfs*>(vfs->pAppData);
|
|
|
|
return orig_vfs->xSleep(orig_vfs, microseconds);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
xCurrentTime(sqlite3_vfs *vfs, double *prNow)
|
|
|
|
{
|
|
|
|
sqlite3_vfs *orig_vfs = static_cast<sqlite3_vfs*>(vfs->pAppData);
|
|
|
|
return orig_vfs->xCurrentTime(orig_vfs, prNow);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
xGetLastError(sqlite3_vfs *vfs, int nBuf, char *zBuf)
|
|
|
|
{
|
|
|
|
sqlite3_vfs *orig_vfs = static_cast<sqlite3_vfs*>(vfs->pAppData);
|
|
|
|
return orig_vfs->xGetLastError(orig_vfs, nBuf, zBuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
xCurrentTimeInt64(sqlite3_vfs *vfs, sqlite3_int64 *piNow)
|
|
|
|
{
|
|
|
|
sqlite3_vfs *orig_vfs = static_cast<sqlite3_vfs*>(vfs->pAppData);
|
|
|
|
return orig_vfs->xCurrentTimeInt64(orig_vfs, piNow);
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
int
|
|
|
|
xSetSystemCall(sqlite3_vfs *vfs, const char *zName, sqlite3_syscall_ptr pFunc)
|
|
|
|
{
|
|
|
|
sqlite3_vfs *orig_vfs = static_cast<sqlite3_vfs*>(vfs->pAppData);
|
|
|
|
return orig_vfs->xSetSystemCall(orig_vfs, zName, pFunc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
sqlite3_syscall_ptr
|
|
|
|
xGetSystemCall(sqlite3_vfs *vfs, const char *zName)
|
|
|
|
{
|
|
|
|
sqlite3_vfs *orig_vfs = static_cast<sqlite3_vfs*>(vfs->pAppData);
|
|
|
|
return orig_vfs->xGetSystemCall(orig_vfs, zName);
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
const char *
|
|
|
|
xNextSystemCall(sqlite3_vfs *vfs, const char *zName)
|
|
|
|
{
|
|
|
|
sqlite3_vfs *orig_vfs = static_cast<sqlite3_vfs*>(vfs->pAppData);
|
|
|
|
return orig_vfs->xNextSystemCall(orig_vfs, zName);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace storage {
|
|
|
|
|
|
|
|
sqlite3_vfs* ConstructTelemetryVFS()
|
|
|
|
{
|
|
|
|
#if defined(XP_WIN)
|
|
|
|
#define EXPECTED_VFS "win32"
|
|
|
|
#define EXPECTED_VFS_NFS "win32"
|
|
|
|
#else
|
|
|
|
#define EXPECTED_VFS "unix"
|
|
|
|
#define EXPECTED_VFS_NFS "unix-excl"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
bool expected_vfs;
|
|
|
|
sqlite3_vfs *vfs;
|
|
|
|
if (Preferences::GetBool(PREF_NFS_FILESYSTEM)) {
|
|
|
|
vfs = sqlite3_vfs_find(EXPECTED_VFS_NFS);
|
|
|
|
expected_vfs = (vfs != nullptr);
|
|
|
|
}
|
|
|
|
else {
|
2013-07-31 08:44:58 -07:00
|
|
|
vfs = sqlite3_vfs_find(nullptr);
|
2013-01-29 13:38:37 -08:00
|
|
|
expected_vfs = vfs->zName && !strcmp(vfs->zName, EXPECTED_VFS);
|
|
|
|
}
|
|
|
|
if (!expected_vfs) {
|
2013-07-31 08:44:58 -07:00
|
|
|
return nullptr;
|
2013-01-29 13:38:37 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
sqlite3_vfs *tvfs = new ::sqlite3_vfs;
|
|
|
|
memset(tvfs, 0, sizeof(::sqlite3_vfs));
|
2013-06-01 09:26:17 -07:00
|
|
|
// If you update this version number, you must add appropriate VFS methods
|
|
|
|
// for any methods added in the version change.
|
2013-01-29 13:38:37 -08:00
|
|
|
tvfs->iVersion = 3;
|
|
|
|
MOZ_ASSERT(vfs->iVersion == tvfs->iVersion);
|
|
|
|
tvfs->szOsFile = sizeof(telemetry_file) - sizeof(sqlite3_file) + vfs->szOsFile;
|
|
|
|
tvfs->mxPathname = vfs->mxPathname;
|
|
|
|
tvfs->zName = "telemetry-vfs";
|
|
|
|
tvfs->pAppData = vfs;
|
|
|
|
tvfs->xOpen = xOpen;
|
|
|
|
tvfs->xDelete = xDelete;
|
|
|
|
tvfs->xAccess = xAccess;
|
|
|
|
tvfs->xFullPathname = xFullPathname;
|
|
|
|
tvfs->xDlOpen = xDlOpen;
|
|
|
|
tvfs->xDlError = xDlError;
|
|
|
|
tvfs->xDlSym = xDlSym;
|
|
|
|
tvfs->xDlClose = xDlClose;
|
|
|
|
tvfs->xRandomness = xRandomness;
|
|
|
|
tvfs->xSleep = xSleep;
|
|
|
|
tvfs->xCurrentTime = xCurrentTime;
|
|
|
|
tvfs->xGetLastError = xGetLastError;
|
2013-06-01 09:26:17 -07:00
|
|
|
// Methods added in version 2.
|
2013-01-29 13:38:37 -08:00
|
|
|
tvfs->xCurrentTimeInt64 = xCurrentTimeInt64;
|
2013-06-01 09:26:17 -07:00
|
|
|
// Methods added in version 3.
|
2013-01-29 13:38:37 -08:00
|
|
|
tvfs->xSetSystemCall = xSetSystemCall;
|
|
|
|
tvfs->xGetSystemCall = xGetSystemCall;
|
|
|
|
tvfs->xNextSystemCall = xNextSystemCall;
|
|
|
|
|
|
|
|
return tvfs;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|