mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-10 02:01:03 +00:00
51 lines
1.3 KiB
C
51 lines
1.3 KiB
C
|
|
/*
|
||
|
|
* Copyright (c) 2024, Andrew Kaster <andrew@ladybird.org>
|
||
|
|
* Copyright (c) 2025, stasoid <stasoid@yahoo.com>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <LibCore/Socket.h>
|
||
|
|
#include <LibIPC/File.h>
|
||
|
|
|
||
|
|
namespace IPC {
|
||
|
|
|
||
|
|
class TransportSocketWindows {
|
||
|
|
AK_MAKE_NONCOPYABLE(TransportSocketWindows);
|
||
|
|
AK_MAKE_DEFAULT_MOVABLE(TransportSocketWindows);
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit TransportSocketWindows(NonnullOwnPtr<Core::LocalSocket> socket);
|
||
|
|
|
||
|
|
void set_peer_pid(int pid);
|
||
|
|
void set_up_read_hook(Function<void()>);
|
||
|
|
bool is_open() const;
|
||
|
|
void close();
|
||
|
|
|
||
|
|
void wait_until_readable();
|
||
|
|
|
||
|
|
ErrorOr<void> transfer(Bytes, Vector<size_t> const& handle_offsets);
|
||
|
|
|
||
|
|
struct [[nodiscard]] ReadResult {
|
||
|
|
Vector<u8> bytes;
|
||
|
|
Vector<int> fds; // always empty, present to avoid OS #ifdefs in Connection.cpp
|
||
|
|
};
|
||
|
|
ReadResult read_as_much_as_possible_without_blocking(Function<void()> schedule_shutdown);
|
||
|
|
|
||
|
|
// Obnoxious name to make it clear that this is a dangerous operation.
|
||
|
|
ErrorOr<int> release_underlying_transport_for_transfer();
|
||
|
|
|
||
|
|
ErrorOr<IPC::File> clone_for_transfer();
|
||
|
|
|
||
|
|
private:
|
||
|
|
ErrorOr<void> duplicate_handles(Bytes, Vector<size_t> const& handle_offsets);
|
||
|
|
|
||
|
|
private:
|
||
|
|
NonnullOwnPtr<Core::LocalSocket> m_socket;
|
||
|
|
int m_peer_pid = -1;
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|