2020-06-22 21:35:22 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-22 21:35:22 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <AK/HashMap.h>
|
|
|
|
|
#include <ImageDecoder/Forward.h>
|
2020-09-12 11:44:00 +02:00
|
|
|
#include <ImageDecoder/ImageDecoderClientEndpoint.h>
|
2020-06-22 21:35:22 +02:00
|
|
|
#include <ImageDecoder/ImageDecoderServerEndpoint.h>
|
2022-02-25 12:18:30 +02:00
|
|
|
#include <LibIPC/ConnectionFromClient.h>
|
2020-06-22 21:35:22 +02:00
|
|
|
|
|
|
|
|
namespace ImageDecoder {
|
|
|
|
|
|
2022-02-25 12:18:30 +02:00
|
|
|
class ConnectionFromClient final
|
|
|
|
|
: public IPC::ConnectionFromClient<ImageDecoderClientEndpoint, ImageDecoderServerEndpoint> {
|
|
|
|
|
C_OBJECT(ConnectionFromClient);
|
2020-06-22 21:35:22 +02:00
|
|
|
|
|
|
|
|
public:
|
2022-03-23 20:58:03 -06:00
|
|
|
~ConnectionFromClient() override = default;
|
2020-06-22 21:35:22 +02:00
|
|
|
|
|
|
|
|
virtual void die() override;
|
|
|
|
|
|
|
|
|
|
private:
|
2023-02-08 23:05:44 +01:00
|
|
|
explicit ConnectionFromClient(NonnullOwnPtr<Core::LocalSocket>);
|
2021-10-31 23:38:04 +01:00
|
|
|
|
2023-12-23 13:56:23 -05:00
|
|
|
virtual Messages::ImageDecoderServer::DecodeImageResponse decode_image(Core::AnonymousBuffer const&, Optional<Gfx::IntSize> const& ideal_size, Optional<ByteString> const& mime_type) override;
|
2020-06-22 21:35:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|