ladybird/Userland/Applications/Piano
sin-ack 2e1bbcb0fa LibCore+LibIPC+Everywhere: Return Stream::LocalSocket from LocalServer
This change unfortunately cannot be atomically made without a single
commit changing everything.

Most of the important changes are in LibIPC/Connection.cpp,
LibIPC/ServerConnection.cpp and LibCore/LocalServer.cpp.

The notable changes are:
- IPCCompiler now generates the decode and decode_message functions such
  that they take a Core::Stream::LocalSocket instead of the socket fd.
- IPC::Decoder now uses the receive_fd method of LocalSocket instead of
  doing system calls directly on the fd.
- IPC::ConnectionBase and related classes now use the Stream API
  functions.
- IPC::ServerConnection no longer constructs the socket itself; instead,
  a convenience macro, IPC_CLIENT_CONNECTION, is used in place of
  C_OBJECT and will generate a static try_create factory function for
  the ServerConnection subclass. The subclass is now responsible for
  passing the socket constructed in this function to its
  ServerConnection base; the socket is passed as the first argument to
  the constructor (as a NonnullOwnPtr<Core::Stream::LocalServer>) before
  any other arguments.
- The functionality regarding taking over sockets from SystemServer has
  been moved to LibIPC/SystemServerTakeover.cpp. The Core::LocalSocket
  implementation of this functionality hasn't been deleted due to my
  intention of removing this class in the near future and to reduce
  noise on this (already quite noisy) PR.
2022-01-15 13:29:48 +03:30
..
ProcessorParameterWidget Everywhere: Use my new serenityos.org e-mail :^) 2022-01-14 11:54:09 +01:00
AudioPlayerLoop.cpp LibCore+LibIPC+Everywhere: Return Stream::LocalSocket from LocalServer 2022-01-15 13:29:48 +03:30
AudioPlayerLoop.h Everywhere: Use my new serenityos.org e-mail :^) 2022-01-14 11:54:09 +01:00
CMakeLists.txt Piano: Port to LibMain 2021-11-22 23:56:22 +01:00
KeysWidget.cpp Piano: Move to LibDSP's Classic synthesizer 2021-11-22 22:26:17 +01:00
KeysWidget.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
KnobsWidget.cpp Piano: Move to LibDSP's Classic synthesizer 2021-11-22 22:26:17 +01:00
KnobsWidget.h Piano: Move to LibDSP's Classic synthesizer 2021-11-22 22:26:17 +01:00
main.cpp Everywhere: Use my new serenityos.org e-mail :^) 2022-01-14 11:54:09 +01:00
MainWidget.cpp Piano: Make Key_Space shortcut to toggle playback 2021-12-20 10:39:37 -08:00
MainWidget.h Piano: Add track controls to the player widget 2021-12-11 23:07:21 +01:00
Music.h Piano: Move to LibDSP's Classic synthesizer 2021-11-22 22:26:17 +01:00
PlayerWidget.cpp Piano: Make Key_Space shortcut to toggle playback 2021-12-20 10:39:37 -08:00
PlayerWidget.h Piano: Make Key_Space shortcut to toggle playback 2021-12-20 10:39:37 -08:00
RollWidget.cpp Everywhere: Use my new serenityos.org e-mail :^) 2022-01-14 11:54:09 +01:00
RollWidget.h Everywhere: Use my new serenityos.org e-mail :^) 2022-01-14 11:54:09 +01:00
SamplerWidget.cpp Piano: Move to LibDSP's Classic synthesizer 2021-11-22 22:26:17 +01:00
SamplerWidget.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
Track.cpp Everywhere: Use my new serenityos.org e-mail :^) 2022-01-14 11:54:09 +01:00
Track.h Everywhere: Use my new serenityos.org e-mail :^) 2022-01-14 11:54:09 +01:00
TrackManager.cpp Piano: Add track controls to the player widget 2021-12-11 23:07:21 +01:00
TrackManager.h Piano: Add track controls to the player widget 2021-12-11 23:07:21 +01:00
WaveWidget.cpp Piano: Move to LibDSP's Classic synthesizer 2021-11-22 22:26:17 +01:00
WaveWidget.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00