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