2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2014-09-27 03:21:57 +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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_indexeddb_serializationhelpers_h__
|
|
|
|
#define mozilla_dom_indexeddb_serializationhelpers_h__
|
|
|
|
|
|
|
|
#include "ipc/IPCMessageUtils.h"
|
|
|
|
|
|
|
|
#include "mozilla/dom/indexedDB/Key.h"
|
|
|
|
#include "mozilla/dom/indexedDB/KeyPath.h"
|
2016-02-17 00:46:08 +03:00
|
|
|
#include "mozilla/dom/IDBCursor.h"
|
|
|
|
#include "mozilla/dom/IDBTransaction.h"
|
2014-09-27 03:21:57 +04:00
|
|
|
|
|
|
|
namespace IPC {
|
|
|
|
|
2016-10-25 22:18:44 +03:00
|
|
|
template <>
|
2020-03-19 14:35:03 +03:00
|
|
|
struct ParamTraits<mozilla::dom::indexedDB::StructuredCloneFileBase::FileType>
|
2016-10-25 22:18:44 +03:00
|
|
|
: public ContiguousEnumSerializer<
|
2020-03-19 14:35:03 +03:00
|
|
|
mozilla::dom::indexedDB::StructuredCloneFileBase::FileType,
|
|
|
|
mozilla::dom::indexedDB::StructuredCloneFileBase::eBlob,
|
|
|
|
mozilla::dom::indexedDB::StructuredCloneFileBase::eEndGuard> {};
|
2016-10-25 22:18:44 +03:00
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
template <>
|
|
|
|
struct ParamTraits<mozilla::dom::indexedDB::Key> {
|
|
|
|
typedef mozilla::dom::indexedDB::Key paramType;
|
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam) {
|
|
|
|
WriteParam(aMsg, aParam.mBuffer);
|
|
|
|
}
|
|
|
|
|
2016-04-21 07:09:15 +03:00
|
|
|
static bool Read(const Message* aMsg, PickleIterator* aIter,
|
|
|
|
paramType* aResult) {
|
2014-09-27 03:21:57 +04:00
|
|
|
return ReadParam(aMsg, aIter, &aResult->mBuffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void Log(const paramType& aParam, std::wstring* aLog) {
|
|
|
|
LogParam(aParam.mBuffer, aLog);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct ParamTraits<mozilla::dom::indexedDB::KeyPath::KeyPathType>
|
|
|
|
: public ContiguousEnumSerializer<
|
|
|
|
mozilla::dom::indexedDB::KeyPath::KeyPathType,
|
|
|
|
mozilla::dom::indexedDB::KeyPath::NONEXISTENT,
|
|
|
|
mozilla::dom::indexedDB::KeyPath::ENDGUARD> {};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct ParamTraits<mozilla::dom::indexedDB::KeyPath> {
|
|
|
|
typedef mozilla::dom::indexedDB::KeyPath paramType;
|
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam) {
|
|
|
|
WriteParam(aMsg, aParam.mType);
|
|
|
|
WriteParam(aMsg, aParam.mStrings);
|
|
|
|
}
|
|
|
|
|
2016-04-21 07:09:15 +03:00
|
|
|
static bool Read(const Message* aMsg, PickleIterator* aIter,
|
|
|
|
paramType* aResult) {
|
2014-09-27 03:21:57 +04:00
|
|
|
return ReadParam(aMsg, aIter, &aResult->mType) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mStrings);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void Log(const paramType& aParam, std::wstring* aLog) {
|
|
|
|
LogParam(aParam.mStrings, aLog);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
2016-02-17 00:46:08 +03:00
|
|
|
struct ParamTraits<mozilla::dom::IDBCursor::Direction>
|
2014-09-27 03:21:57 +04:00
|
|
|
: public ContiguousEnumSerializer<
|
2020-01-06 17:19:39 +03:00
|
|
|
mozilla::dom::IDBCursor::Direction,
|
|
|
|
mozilla::dom::IDBCursor::Direction::Next,
|
2020-01-10 18:23:52 +03:00
|
|
|
mozilla::dom::IDBCursor::Direction::EndGuard_> {};
|
2014-09-27 03:21:57 +04:00
|
|
|
|
|
|
|
template <>
|
2016-02-17 00:46:08 +03:00
|
|
|
struct ParamTraits<mozilla::dom::IDBTransaction::Mode>
|
2014-09-27 03:21:57 +04:00
|
|
|
: public ContiguousEnumSerializer<
|
2016-02-17 00:46:08 +03:00
|
|
|
mozilla::dom::IDBTransaction::Mode,
|
2019-11-27 13:54:57 +03:00
|
|
|
mozilla::dom::IDBTransaction::Mode::ReadOnly,
|
|
|
|
mozilla::dom::IDBTransaction::Mode::Invalid> {};
|
2014-09-27 03:21:57 +04:00
|
|
|
|
|
|
|
} // namespace IPC
|
|
|
|
|
|
|
|
#endif // mozilla_dom_indexeddb_serializationhelpers_h__
|