mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
Add IPC::TransportHandle as an abstraction for passing IPC transports through .ipc messages. This replaces IPC::File at all sites where a transport (not a generic file) is being transferred between processes. TransportHandle provides from_transport(), clone_from_transport(), and create_transport() methods that encapsulate the fd-to-socket-to-transport conversion in one place. This is preparatory work for Mach port support on macOS -- when that lands, only TransportHandle's internals need to change while all .ipc definitions and call sites remain untouched.
76 lines
2.6 KiB
C++
76 lines
2.6 KiB
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/HashMap.h>
|
|
#include <ImageDecoder/Forward.h>
|
|
#include <ImageDecoder/ImageDecoderClientEndpoint.h>
|
|
#include <ImageDecoder/ImageDecoderServerEndpoint.h>
|
|
#include <LibCore/AnonymousBuffer.h>
|
|
#include <LibGfx/BitmapSequence.h>
|
|
#include <LibGfx/ColorSpace.h>
|
|
#include <LibGfx/ImageFormats/ImageDecoder.h>
|
|
#include <LibIPC/ConnectionFromClient.h>
|
|
#include <LibThreading/BackgroundAction.h>
|
|
|
|
namespace ImageDecoder {
|
|
|
|
class ConnectionFromClient final
|
|
: public IPC::ConnectionFromClient<ImageDecoderClientEndpoint, ImageDecoderServerEndpoint> {
|
|
C_OBJECT(ConnectionFromClient);
|
|
|
|
public:
|
|
~ConnectionFromClient() override = default;
|
|
|
|
virtual void die() override;
|
|
|
|
struct DecodeResult {
|
|
bool is_animated = false;
|
|
u32 loop_count = 0;
|
|
u32 frame_count = 0;
|
|
Gfx::FloatPoint scale { 1, 1 };
|
|
Gfx::BitmapSequence bitmaps;
|
|
Vector<u32> durations;
|
|
Gfx::ColorSpace color_profile;
|
|
|
|
// Non-null for streaming animated sessions:
|
|
RefPtr<Gfx::ImageDecoder> decoder;
|
|
Core::AnonymousBuffer encoded_data;
|
|
};
|
|
|
|
struct AnimationSession {
|
|
Core::AnonymousBuffer encoded_data;
|
|
RefPtr<Gfx::ImageDecoder> decoder;
|
|
u32 frame_count { 0 };
|
|
};
|
|
|
|
private:
|
|
using Job = Threading::BackgroundAction<DecodeResult>;
|
|
using FrameDecodeResult = Vector<Gfx::ImageFrameDescriptor>;
|
|
using FrameDecodeJob = Threading::BackgroundAction<FrameDecodeResult>;
|
|
|
|
explicit ConnectionFromClient(NonnullOwnPtr<IPC::Transport>);
|
|
|
|
virtual void decode_image(Core::AnonymousBuffer, Optional<Gfx::IntSize> ideal_size, Optional<ByteString> mime_type, i64 request_id) override;
|
|
virtual void cancel_decoding(i64 request_id) override;
|
|
virtual void request_animation_frames(i64 session_id, u32 start_frame_index, u32 count) override;
|
|
virtual void stop_animation_decode(i64 session_id) override;
|
|
virtual Messages::ImageDecoderServer::ConnectNewClientsResponse connect_new_clients(size_t count) override;
|
|
virtual Messages::ImageDecoderServer::InitTransportResponse init_transport(int peer_pid) override;
|
|
|
|
ErrorOr<IPC::TransportHandle> connect_new_client();
|
|
|
|
NonnullRefPtr<Job> make_decode_image_job(i64 request_id, Core::AnonymousBuffer, Optional<Gfx::IntSize> ideal_size, Optional<ByteString> mime_type);
|
|
|
|
i64 m_next_session_id { 1 };
|
|
HashMap<i64, NonnullRefPtr<Job>> m_pending_jobs;
|
|
HashMap<i64, NonnullOwnPtr<AnimationSession>> m_animation_sessions;
|
|
HashMap<i64, NonnullRefPtr<FrameDecodeJob>> m_pending_frame_jobs;
|
|
};
|
|
|
|
}
|