You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			119 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
			
		
		
	
	
			119 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
| // SPDX-License-Identifier: GPL-2.0-or-later
 | |
| // Copyright The Music Player Daemon Project
 | |
| 
 | |
| #include "MessageCommands.hxx"
 | |
| #include "Request.hxx"
 | |
| #include "client/Client.hxx"
 | |
| #include "client/List.hxx"
 | |
| #include "client/Response.hxx"
 | |
| #include "Partition.hxx"
 | |
| 
 | |
| #include <fmt/format.h>
 | |
| 
 | |
| #include <cassert>
 | |
| #include <set>
 | |
| #include <string>
 | |
| #include <utility> // for std::unreachable()
 | |
| 
 | |
| CommandResult
 | |
| handle_subscribe(Client &client, Request args, Response &r)
 | |
| {
 | |
| 	assert(args.size() == 1);
 | |
| 	const char *const channel_name = args[0];
 | |
| 
 | |
| 	switch (client.Subscribe(channel_name)) {
 | |
| 	case Client::SubscribeResult::OK:
 | |
| 		return CommandResult::OK;
 | |
| 
 | |
| 	case Client::SubscribeResult::INVALID:
 | |
| 		r.Error(ACK_ERROR_ARG, "invalid channel name");
 | |
| 		return CommandResult::ERROR;
 | |
| 
 | |
| 	case Client::SubscribeResult::ALREADY:
 | |
| 		r.Error(ACK_ERROR_EXIST, "already subscribed to this channel");
 | |
| 		return CommandResult::ERROR;
 | |
| 
 | |
| 	case Client::SubscribeResult::FULL:
 | |
| 		r.Error(ACK_ERROR_EXIST, "subscription list is full");
 | |
| 		return CommandResult::ERROR;
 | |
| 	}
 | |
| 
 | |
| 	std::unreachable();
 | |
| }
 | |
| 
 | |
| CommandResult
 | |
| handle_unsubscribe(Client &client, Request args, Response &r)
 | |
| {
 | |
| 	assert(args.size() == 1);
 | |
| 	const char *const channel_name = args[0];
 | |
| 
 | |
| 	if (client.Unsubscribe(channel_name))
 | |
| 		return CommandResult::OK;
 | |
| 	else {
 | |
| 		r.Error(ACK_ERROR_NO_EXIST, "not subscribed to this channel");
 | |
| 		return CommandResult::ERROR;
 | |
| 	}
 | |
| }
 | |
| 
 | |
| CommandResult
 | |
| handle_channels(Client &client, [[maybe_unused]] Request args, Response &r)
 | |
| {
 | |
| 	assert(args.empty());
 | |
| 
 | |
| 	std::set<std::string, std::less<>> channels;
 | |
| 
 | |
| 	for (const auto &c : client.GetPartition().clients) {
 | |
| 		const auto &subscriptions = c.GetSubscriptions();
 | |
| 		channels.insert(subscriptions.begin(),
 | |
| 				subscriptions.end());
 | |
| 	}
 | |
| 
 | |
| 	for (const auto &channel : channels)
 | |
| 		r.Fmt("channel: {}\n", channel);
 | |
| 
 | |
| 	return CommandResult::OK;
 | |
| }
 | |
| 
 | |
| CommandResult
 | |
| handle_read_messages(Client &client,
 | |
| 		     [[maybe_unused]] Request args, Response &r)
 | |
| {
 | |
| 	assert(args.empty());
 | |
| 
 | |
| 	client.ConsumeMessages([&r](const auto &msg){
 | |
| 		r.Fmt("channel: {}\nmessage: {}\n",
 | |
| 		      msg.GetChannel(), msg.GetMessage());
 | |
| 	});
 | |
| 
 | |
| 	return CommandResult::OK;
 | |
| }
 | |
| 
 | |
| CommandResult
 | |
| handle_send_message(Client &client, Request args, Response &r)
 | |
| {
 | |
| 	assert(args.size() == 2);
 | |
| 
 | |
| 	const char *const channel_name = args[0];
 | |
| 	const char *const message_text = args[1];
 | |
| 
 | |
| 	if (!client_message_valid_channel_name(channel_name)) {
 | |
| 		r.Error(ACK_ERROR_ARG, "invalid channel name");
 | |
| 		return CommandResult::ERROR;
 | |
| 	}
 | |
| 
 | |
| 	bool sent = false;
 | |
| 	const ClientMessage msg(channel_name, message_text);
 | |
| 
 | |
| 	for (auto &c : client.GetPartition().clients)
 | |
| 		if (c.PushMessage(msg))
 | |
| 			sent = true;
 | |
| 
 | |
| 	if (sent)
 | |
| 		return CommandResult::OK;
 | |
| 	else {
 | |
| 		r.Error(ACK_ERROR_NO_EXIST,
 | |
| 			"nobody is subscribed to this channel");
 | |
| 		return CommandResult::ERROR;
 | |
| 	}
 | |
| }
 |