2012-06-01 10:21:12 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
|
|
/* 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_indexeddatabase_h__
|
|
|
|
#error Must include IndexedDatabase.h first
|
|
|
|
#endif
|
|
|
|
|
|
|
|
BEGIN_INDEXEDDB_NAMESPACE
|
|
|
|
|
2012-06-03 09:33:52 -07:00
|
|
|
inline
|
|
|
|
StructuredCloneWriteInfo::StructuredCloneWriteInfo()
|
2012-07-30 07:20:58 -07:00
|
|
|
: mTransaction(nullptr),
|
2012-06-03 09:33:52 -07:00
|
|
|
mOffsetToKeyProp(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-06-01 10:21:12 -07:00
|
|
|
inline
|
|
|
|
bool
|
|
|
|
StructuredCloneWriteInfo::SetFromSerialized(
|
|
|
|
const SerializedStructuredCloneWriteInfo& aOther)
|
|
|
|
{
|
|
|
|
if (!aOther.dataLength) {
|
|
|
|
mCloneBuffer.clear();
|
|
|
|
}
|
|
|
|
else if (!mCloneBuffer.copy(aOther.data, aOther.dataLength)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-06-03 09:33:52 -07:00
|
|
|
mFiles.Clear();
|
2012-06-01 10:21:12 -07:00
|
|
|
mOffsetToKeyProp = aOther.offsetToKeyProp;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-06-03 09:33:52 -07:00
|
|
|
inline
|
|
|
|
StructuredCloneReadInfo::StructuredCloneReadInfo()
|
2012-07-30 07:20:58 -07:00
|
|
|
: mDatabase(nullptr)
|
2012-06-03 09:33:52 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-06-01 10:21:12 -07:00
|
|
|
inline
|
|
|
|
bool
|
|
|
|
StructuredCloneReadInfo::SetFromSerialized(
|
|
|
|
const SerializedStructuredCloneReadInfo& aOther)
|
|
|
|
{
|
|
|
|
if (aOther.dataLength &&
|
|
|
|
!mCloneBuffer.copy(aOther.data, aOther.dataLength)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-08-01 23:02:29 -07:00
|
|
|
mFiles.Clear();
|
2012-06-01 10:21:12 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
void
|
|
|
|
AppendConditionClause(const nsACString& aColumnName,
|
|
|
|
const nsACString& aArgName,
|
|
|
|
bool aLessThan,
|
|
|
|
bool aEquals,
|
|
|
|
nsACString& aResult)
|
|
|
|
{
|
|
|
|
aResult += NS_LITERAL_CSTRING(" AND ") + aColumnName +
|
|
|
|
NS_LITERAL_CSTRING(" ");
|
|
|
|
|
|
|
|
if (aLessThan) {
|
|
|
|
aResult.AppendLiteral("<");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
aResult.AppendLiteral(">");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aEquals) {
|
|
|
|
aResult.AppendLiteral("=");
|
|
|
|
}
|
|
|
|
|
|
|
|
aResult += NS_LITERAL_CSTRING(" :") + aArgName;
|
|
|
|
}
|
|
|
|
|
|
|
|
END_INDEXEDDB_NAMESPACE
|