mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 13:52:43 +00:00 
			
		
		
		
	 3f3f45580a
			
		
	
	
		3f3f45580a
		
	
	
	
	
		
			
			Each of these strings would previously rely on StringView's char const* constructor overload, which would call __builtin_strlen on the string. Since we now have operator ""sv, we can replace these with much simpler versions. This opens the door to being able to remove StringView(char const*). No functional changes.
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
 | |
|  * Copyright (c) 2021, kleines Filmröllchen <filmroellchen@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include "Mixer.h"
 | |
| #include <LibCore/ConfigFile.h>
 | |
| #include <LibCore/LocalServer.h>
 | |
| #include <LibCore/System.h>
 | |
| #include <LibMain/Main.h>
 | |
| 
 | |
| ErrorOr<int> serenity_main(Main::Arguments)
 | |
| {
 | |
|     TRY(Core::System::pledge("stdio recvfd thread accept cpath rpath wpath unix"));
 | |
| 
 | |
|     auto config = TRY(Core::ConfigFile::open_for_app("Audio", Core::ConfigFile::AllowWriting::Yes));
 | |
|     TRY(Core::System::unveil(config->filename(), "rwc"sv));
 | |
|     TRY(Core::System::unveil("/dev/audio", "wc"));
 | |
|     TRY(Core::System::unveil(nullptr, nullptr));
 | |
| 
 | |
|     Core::EventLoop event_loop;
 | |
|     auto mixer = TRY(AudioServer::Mixer::try_create(config));
 | |
|     auto server = TRY(Core::LocalServer::try_create());
 | |
|     TRY(server->take_over_from_system_server());
 | |
| 
 | |
|     server->on_accept = [&](NonnullOwnPtr<Core::Stream::LocalSocket> client_socket) {
 | |
|         static int s_next_client_id = 0;
 | |
|         int client_id = ++s_next_client_id;
 | |
|         (void)IPC::new_client_connection<AudioServer::ConnectionFromClient>(move(client_socket), client_id, *mixer);
 | |
|     };
 | |
| 
 | |
|     TRY(Core::System::pledge("stdio recvfd thread accept cpath rpath wpath"));
 | |
|     TRY(Core::System::unveil(nullptr, nullptr));
 | |
| 
 | |
|     return event_loop.exec();
 | |
| }
 |