2012-10-29 21:38:08 -04:00
|
|
|
/*
|
2012-10-03 18:47:10 -04:00
|
|
|
* chat_session.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 James Booth <boothj5@gmail.com>
|
2012-10-29 21:38:08 -04:00
|
|
|
*
|
2012-10-03 18:47:10 -04:00
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Profanity 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 Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include "chat_session.h"
|
2012-10-29 21:38:08 -04:00
|
|
|
#include "log.h"
|
2012-10-03 18:47:10 -04:00
|
|
|
|
2012-10-29 21:38:08 -04:00
|
|
|
static ChatSession _chat_session_new(const char * const recipient,
|
|
|
|
gboolean recipient_supports);
|
2012-10-03 18:47:10 -04:00
|
|
|
static void _chat_session_free(ChatSession session);
|
|
|
|
|
|
|
|
struct chat_session_t {
|
|
|
|
char *recipient;
|
2012-10-29 21:38:08 -04:00
|
|
|
gboolean recipient_supports;
|
2012-10-03 18:47:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
static GHashTable *sessions;
|
|
|
|
|
|
|
|
void
|
2012-10-29 21:38:08 -04:00
|
|
|
chat_sessions_init(void)
|
2012-10-03 18:47:10 -04:00
|
|
|
{
|
2012-10-29 21:38:08 -04:00
|
|
|
sessions = g_hash_table_new_full(g_str_hash, g_str_equal, g_free,
|
2012-10-03 18:47:10 -04:00
|
|
|
(GDestroyNotify)_chat_session_free);
|
|
|
|
}
|
|
|
|
|
2012-10-03 19:34:03 -04:00
|
|
|
void
|
2012-10-29 21:38:08 -04:00
|
|
|
chat_sessions_clear(void)
|
|
|
|
{
|
|
|
|
g_hash_table_remove_all(sessions);
|
|
|
|
}
|
|
|
|
|
2012-10-29 21:50:39 -04:00
|
|
|
gboolean
|
|
|
|
chat_session_exists(const char * const recipient)
|
|
|
|
{
|
|
|
|
ChatSession session = g_hash_table_lookup(sessions, recipient);
|
|
|
|
|
|
|
|
if (session != NULL) {
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-29 21:38:08 -04:00
|
|
|
void
|
|
|
|
chat_session_start(const char * const recipient, gboolean recipient_supports)
|
2012-10-03 18:47:10 -04:00
|
|
|
{
|
2012-10-14 14:36:45 -04:00
|
|
|
char *key = strdup(recipient);
|
2012-10-29 21:38:08 -04:00
|
|
|
ChatSession session = _chat_session_new(key, recipient_supports);
|
2012-10-14 14:36:45 -04:00
|
|
|
g_hash_table_insert(sessions, key, session);
|
2012-10-03 18:47:10 -04:00
|
|
|
}
|
|
|
|
|
2012-10-03 19:34:03 -04:00
|
|
|
void
|
2012-10-14 14:36:45 -04:00
|
|
|
chat_session_end(const char * const recipient)
|
2012-10-03 18:47:10 -04:00
|
|
|
{
|
2012-10-03 19:34:03 -04:00
|
|
|
g_hash_table_remove(sessions, recipient);
|
2012-10-03 18:47:10 -04:00
|
|
|
}
|
|
|
|
|
2012-10-29 21:38:08 -04:00
|
|
|
gboolean
|
|
|
|
chat_session_recipient_supports(const char * const recipient)
|
2012-10-03 18:47:10 -04:00
|
|
|
{
|
2012-10-03 19:34:03 -04:00
|
|
|
ChatSession session = g_hash_table_lookup(sessions, recipient);
|
2012-10-29 21:38:08 -04:00
|
|
|
|
2012-10-03 19:34:03 -04:00
|
|
|
if (session == NULL) {
|
2012-10-29 21:38:08 -04:00
|
|
|
log_error("No chat session found for %s.", recipient);
|
|
|
|
return FALSE;
|
2012-10-03 19:34:03 -04:00
|
|
|
} else {
|
2012-10-29 21:38:08 -04:00
|
|
|
return session->recipient_supports;
|
2012-10-03 19:34:03 -04:00
|
|
|
}
|
2012-10-03 18:47:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static ChatSession
|
2012-10-29 21:38:08 -04:00
|
|
|
_chat_session_new(const char * const recipient, gboolean recipient_supports)
|
2012-10-03 18:47:10 -04:00
|
|
|
{
|
|
|
|
ChatSession new_session = malloc(sizeof(struct chat_session_t));
|
2012-10-14 14:36:45 -04:00
|
|
|
new_session->recipient = strdup(recipient);
|
2012-10-29 21:38:08 -04:00
|
|
|
new_session->recipient_supports = recipient_supports;
|
|
|
|
|
2012-10-03 18:47:10 -04:00
|
|
|
return new_session;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_chat_session_free(ChatSession session)
|
|
|
|
{
|
2012-10-03 19:34:03 -04:00
|
|
|
if (session != NULL) {
|
|
|
|
g_free(session->recipient);
|
|
|
|
g_free(session);
|
2012-10-03 18:47:10 -04:00
|
|
|
}
|
2012-10-14 14:36:45 -04:00
|
|
|
session = NULL;
|
2012-10-03 18:47:10 -04:00
|
|
|
}
|