ladish/daemon/cmd_delete_room.c

133 lines
3.5 KiB
C

/* -*- Mode: C ; c-basic-offset: 2 -*- */
/*
* LADI Session Handler (ladish)
*
* Copyright (C) 2010,2011 Nedko Arnaudov <nedko@arnaudov.name>
*
**************************************************************************
* This file contains implementation of the "delete room" command
**************************************************************************
*
* LADI Session Handler is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* LADI Session Handler is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LADI Session Handler. If not, see <http://www.gnu.org/licenses/>
* or write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "cmd.h"
#include "studio_internal.h"
struct ladish_command_delete_room
{
struct ladish_command command; /* must be the first member */
char * name;
};
#define cmd_ptr ((struct ladish_command_delete_room *)context)
static bool run(void * context)
{
struct list_head * node_ptr;
ladish_room_handle room;
if (cmd_ptr->command.state == LADISH_COMMAND_STATE_PENDING)
{
log_info("Delete studio room request (%s)", cmd_ptr->name);
}
list_for_each(node_ptr, &g_studio.rooms)
{
room = ladish_room_from_list_node(node_ptr);
if (strcmp(ladish_room_get_name(room), cmd_ptr->name) == 0)
{
goto found;
}
}
log_error("Cannot delete room with name \"%s\" because it is unknown", cmd_ptr->name);
return false;
found:
if (cmd_ptr->command.state == LADISH_COMMAND_STATE_PENDING)
{
ladish_room_initiate_stop(room, true);
cmd_ptr->command.state = LADISH_COMMAND_STATE_WAITING;
return true;
}
ASSERT(cmd_ptr->command.state == LADISH_COMMAND_STATE_WAITING);
if (!ladish_room_stopped(room))
{
return true;
}
/* ladish_graph_dump(g_studio.studio_graph); */
/* ladish_graph_dump(g_studio.jack_graph); */
ladish_room_destroy(room);
ladish_graph_dump(g_studio.studio_graph);
ladish_graph_dump(g_studio.jack_graph);
cmd_ptr->command.state = LADISH_COMMAND_STATE_DONE;
return true;
}
static void destructor(void * context)
{
log_info("delete_room command destructor");
free(cmd_ptr->name);
}
#undef cmd_ptr
bool ladish_command_delete_room(void * call_ptr, struct ladish_cqueue * queue_ptr, const char * room_name)
{
struct ladish_command_delete_room * cmd_ptr;
char * room_name_dup;
room_name_dup = strdup(room_name);
if (room_name_dup == NULL)
{
cdbus_error(call_ptr, DBUS_ERROR_FAILED, "strdup('%s') failed.", room_name);
goto fail;
}
cmd_ptr = ladish_command_new(sizeof(struct ladish_command_delete_room));
if (cmd_ptr == NULL)
{
cdbus_error(call_ptr, DBUS_ERROR_FAILED, "ladish_command_new() failed.");
goto fail_free_name;
}
cmd_ptr->command.run = run;
cmd_ptr->command.destructor = destructor;
cmd_ptr->name = room_name_dup;
if (!ladish_cqueue_add_command(queue_ptr, &cmd_ptr->command))
{
cdbus_error(call_ptr, DBUS_ERROR_FAILED, "ladish_cqueue_add_command() failed.");
goto fail_destroy_command;
}
return true;
fail_destroy_command:
free(cmd_ptr);
fail_free_name:
free(room_name_dup);
fail:
return false;
}