2025-07-09 14:35:33 +02:00
|
|
|
|
/*
|
|
|
|
|
|
* Copyright (c) 2025, stelar7 <dudedbz@gmail.com>
|
|
|
|
|
|
*
|
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <LibWeb/Bindings/IDBRecordPrototype.h>
|
|
|
|
|
|
#include <LibWeb/IndexedDB/IDBRecord.h>
|
2025-10-28 18:48:39 +01:00
|
|
|
|
#include <LibWeb/IndexedDB/Internal/Algorithms.h>
|
2025-07-09 14:35:33 +02:00
|
|
|
|
|
|
|
|
|
|
namespace Web::IndexedDB {
|
|
|
|
|
|
|
|
|
|
|
|
GC_DEFINE_ALLOCATOR(IDBRecord);
|
|
|
|
|
|
|
|
|
|
|
|
IDBRecord::~IDBRecord() = default;
|
|
|
|
|
|
|
|
|
|
|
|
GC::Ref<IDBRecord> IDBRecord::create(JS::Realm& realm, GC::Ref<Key> key, JS::Value value, GC::Ref<Key> primary_key)
|
|
|
|
|
|
{
|
|
|
|
|
|
return realm.create<IDBRecord>(realm, move(key), move(value), move(primary_key));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
IDBRecord::IDBRecord(JS::Realm& realm, GC::Ref<Key> key, JS::Value value, GC::Ref<Key> primary_key)
|
|
|
|
|
|
: PlatformObject(realm)
|
|
|
|
|
|
, m_key(move(key))
|
|
|
|
|
|
, m_value(move(value))
|
|
|
|
|
|
, m_primary_key(move(primary_key))
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void IDBRecord::initialize(JS::Realm& realm)
|
|
|
|
|
|
{
|
|
|
|
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(IDBRecord);
|
|
|
|
|
|
Base::initialize(realm);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void IDBRecord::visit_edges(Visitor& visitor)
|
|
|
|
|
|
{
|
|
|
|
|
|
Base::visit_edges(visitor);
|
|
|
|
|
|
visitor.visit(m_key);
|
|
|
|
|
|
visitor.visit(m_value);
|
|
|
|
|
|
visitor.visit(m_primary_key);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-28 18:48:39 +01:00
|
|
|
|
// https://pr-preview.s3.amazonaws.com/w3c/IndexedDB/pull/461.html#dom-idbrecord-key
|
|
|
|
|
|
WebIDL::ExceptionOr<JS::Value> IDBRecord::key() const
|
|
|
|
|
|
{
|
|
|
|
|
|
// The key getter steps are to return the result of converting a key to a value with this’s key.
|
|
|
|
|
|
return convert_a_key_to_a_value(realm(), m_key);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// https://pr-preview.s3.amazonaws.com/w3c/IndexedDB/pull/461.html#dom-idbrecord-primarykey
|
|
|
|
|
|
WebIDL::ExceptionOr<JS::Value> IDBRecord::primary_key() const
|
|
|
|
|
|
{
|
|
|
|
|
|
// The primaryKey getter steps are to return the result of converting a key to a value with this’s primary key.
|
|
|
|
|
|
return convert_a_key_to_a_value(realm(), m_primary_key);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-09 14:35:33 +02:00
|
|
|
|
}
|