2022-07-24 21:32:18 +02:00
|
|
|
/*
|
2024-02-23 22:14:18 +01:00
|
|
|
* Copyright (c) 2022-2024, Kenneth Myhra <kennethmyhra@serenityos.org>
|
2022-07-24 21:32:18 +02:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibWeb/FileAPI/Blob.h>
|
|
|
|
|
|
|
|
namespace Web::FileAPI {
|
|
|
|
|
|
|
|
struct FilePropertyBag : BlobPropertyBag {
|
|
|
|
Optional<i64> last_modified;
|
|
|
|
};
|
|
|
|
|
|
|
|
class File : public Blob {
|
2022-09-04 11:44:38 +02:00
|
|
|
WEB_PLATFORM_OBJECT(File, Blob);
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_DECLARE_ALLOCATOR(File);
|
2022-07-24 21:32:18 +02:00
|
|
|
|
|
|
|
public:
|
2024-11-15 04:01:23 +13:00
|
|
|
static GC::Ref<File> create(JS::Realm& realm);
|
2025-09-03 18:13:57 +02:00
|
|
|
static WebIDL::ExceptionOr<GC::Ref<File>> create(JS::Realm&, BlobParts const& file_bits, String const& file_name, Optional<FilePropertyBag> const& options = {});
|
|
|
|
static WebIDL::ExceptionOr<GC::Ref<File>> construct_impl(JS::Realm&, BlobParts const& file_bits, String const& file_name, Optional<FilePropertyBag> const& options = {});
|
2022-07-24 21:32:18 +02:00
|
|
|
|
2022-09-04 11:44:38 +02:00
|
|
|
virtual ~File() override;
|
2022-07-24 21:32:18 +02:00
|
|
|
|
|
|
|
// https://w3c.github.io/FileAPI/#dfn-name
|
2023-02-25 10:27:38 +01:00
|
|
|
String const& name() const { return m_name; }
|
2022-07-24 21:32:18 +02:00
|
|
|
// https://w3c.github.io/FileAPI/#dfn-lastModified
|
|
|
|
i64 last_modified() const { return m_last_modified; }
|
|
|
|
|
2025-07-14 17:15:09 +01:00
|
|
|
virtual HTML::SerializeType serialize_type() const override { return HTML::SerializeType::File; }
|
2024-02-23 22:14:18 +01:00
|
|
|
|
2025-07-17 09:51:04 -04:00
|
|
|
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;
|
2024-02-23 22:14:18 +01:00
|
|
|
|
2022-07-24 21:32:18 +02:00
|
|
|
private:
|
2023-02-25 10:27:38 +01:00
|
|
|
File(JS::Realm&, ByteBuffer, String file_name, String type, i64 last_modified);
|
2024-02-23 22:14:18 +01:00
|
|
|
explicit File(JS::Realm&);
|
2022-07-24 21:32:18 +02:00
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
virtual void initialize(JS::Realm&) override;
|
2023-01-10 06:28:20 -05:00
|
|
|
|
2023-02-25 10:27:38 +01:00
|
|
|
String m_name;
|
2022-07-24 21:32:18 +02:00
|
|
|
i64 m_last_modified { 0 };
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|