mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-30 18:12:45 +00:00 
			
		
		
		
	 eb21aa65d1
			
		
	
	
		eb21aa65d1
		
	
	
	
	
		
			
			This changes client methods so that they return the IPC response's return value directly - instead of the response struct - for IPC methods which only have a single return value.
		
			
				
	
	
		
			55 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <LibAudio/Buffer.h>
 | |
| #include <LibAudio/ClientConnection.h>
 | |
| 
 | |
| namespace Audio {
 | |
| 
 | |
| ClientConnection::ClientConnection()
 | |
|     : IPC::ServerConnection<AudioClientEndpoint, AudioServerEndpoint>(*this, "/tmp/portal/audio")
 | |
| {
 | |
| }
 | |
| 
 | |
| void ClientConnection::handshake()
 | |
| {
 | |
|     greet();
 | |
| }
 | |
| 
 | |
| void ClientConnection::enqueue(const Buffer& buffer)
 | |
| {
 | |
|     for (;;) {
 | |
|         auto success = enqueue_buffer(buffer.anonymous_buffer(), buffer.id(), buffer.sample_count());
 | |
|         if (success)
 | |
|             break;
 | |
|         sleep(1);
 | |
|     }
 | |
| }
 | |
| 
 | |
| bool ClientConnection::try_enqueue(const Buffer& buffer)
 | |
| {
 | |
|     return enqueue_buffer(buffer.anonymous_buffer(), buffer.id(), buffer.sample_count());
 | |
| }
 | |
| 
 | |
| void ClientConnection::finished_playing_buffer(i32 buffer_id)
 | |
| {
 | |
|     if (on_finish_playing_buffer)
 | |
|         on_finish_playing_buffer(buffer_id);
 | |
| }
 | |
| 
 | |
| void ClientConnection::muted_state_changed(bool muted)
 | |
| {
 | |
|     if (on_muted_state_change)
 | |
|         on_muted_state_change(muted);
 | |
| }
 | |
| 
 | |
| void ClientConnection::main_mix_volume_changed(i32 volume)
 | |
| {
 | |
|     if (on_main_mix_volume_change)
 | |
|         on_main_mix_volume_change(volume);
 | |
| }
 | |
| 
 | |
| }
 |