mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 05:27:14 +09:00

It turned out that some web applications want to send fairly large messages to WebWorker through IPC (for example, MapLibre GL sends ~1200KiB), which led to failures (at least on macOS) because buffer size of TransportSocket is limited to 128KiB. This change solves the problem by wrapping messages that exceed socket buffer size into another message that holds wrapped message content in shared memory. Co-Authored-By: Luke Wilde <luke@ladybird.org>
34 lines
509 B
C++
34 lines
509 B
C++
/*
|
|
* Copyright (c) 2025, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibIPC/File.h>
|
|
|
|
namespace IPC {
|
|
|
|
class UnprocessedFileDescriptors {
|
|
public:
|
|
void enqueue(File&& fd)
|
|
{
|
|
m_fds.append(move(fd));
|
|
}
|
|
|
|
File dequeue()
|
|
{
|
|
return m_fds.take_first();
|
|
}
|
|
|
|
void return_fds_to_front_of_queue(Vector<File>&& fds)
|
|
{
|
|
m_fds.prepend(move(fds));
|
|
}
|
|
|
|
private:
|
|
Vector<File> m_fds;
|
|
};
|
|
|
|
}
|