mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-11 09:27:00 +02:00
Previously we were inconsistent by generating code for enum definitions but not generating code for dictionaries. With future changes to the IDL generator to expose helpers to convert to and from IDL values this produced circular depdendencies. To solve this problem, also generate the dictionary definitions in bindings headers.
44 lines
1.5 KiB
C++
44 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2022-2024, Kenneth Myhra <kennethmyhra@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Bindings/File.h>
|
|
#include <LibWeb/FileAPI/Blob.h>
|
|
|
|
namespace Web::FileAPI {
|
|
|
|
class File : public Blob {
|
|
WEB_PLATFORM_OBJECT(File, Blob);
|
|
GC_DECLARE_ALLOCATOR(File);
|
|
|
|
public:
|
|
static GC::Ref<File> create(JS::Realm& realm);
|
|
static WebIDL::ExceptionOr<GC::Ref<File>> create(JS::Realm&, BlobParts const& file_bits, String const& file_name, Optional<Bindings::FilePropertyBag> const& options = {});
|
|
static WebIDL::ExceptionOr<GC::Ref<File>> construct_impl(JS::Realm&, BlobParts const& file_bits, String const& file_name, Optional<Bindings::FilePropertyBag> const& options = {});
|
|
|
|
virtual ~File() override;
|
|
|
|
// https://w3c.github.io/FileAPI/#dfn-name
|
|
String const& name() const { return m_name; }
|
|
// https://w3c.github.io/FileAPI/#dfn-lastModified
|
|
i64 last_modified() const { return m_last_modified; }
|
|
|
|
virtual WebIDL::ExceptionOr<void> serialization_steps(HTML::TransferDataEncoder&, bool for_storage, HTML::SerializationMemory&) override;
|
|
virtual WebIDL::ExceptionOr<void> deserialization_steps(HTML::TransferDataDecoder&, HTML::DeserializationMemory&) override;
|
|
|
|
private:
|
|
File(JS::Realm&, ByteBuffer, String file_name, String type, i64 last_modified);
|
|
explicit File(JS::Realm&);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
String m_name;
|
|
i64 m_last_modified { 0 };
|
|
};
|
|
|
|
}
|