2012-03-08 18:45:21 -05:00
|
|
|
/*
|
|
|
|
* contact_list.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 James Booth <boothj5@gmail.com>
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-03-10 16:37:46 -05:00
|
|
|
#include <stdio.h>
|
2012-03-07 19:46:24 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2012-05-03 20:00:01 -04:00
|
|
|
#include "contact.h"
|
2012-03-07 19:46:24 -05:00
|
|
|
#include "contact_list.h"
|
|
|
|
|
2012-03-19 20:05:33 -04:00
|
|
|
// internal contact list
|
|
|
|
static struct contact_node_t * _contact_list = NULL;
|
2012-03-07 19:46:24 -05:00
|
|
|
|
2012-03-19 20:05:33 -04:00
|
|
|
// state of current tab completion, currrent node
|
|
|
|
static struct contact_node_t * _last_found = NULL;
|
|
|
|
// and current search pattern
|
2012-03-10 18:48:10 -05:00
|
|
|
static char * _search_str = NULL;
|
2012-03-10 18:01:59 -05:00
|
|
|
|
2012-03-19 20:05:33 -04:00
|
|
|
static char * _search_contact_list_from(struct contact_node_t * curr);
|
|
|
|
static struct contact_node_t * _make_contact_node(const char * const name,
|
2012-03-09 19:22:57 -05:00
|
|
|
const char * const show, const char * const status);
|
2012-03-19 20:05:33 -04:00
|
|
|
static struct contact_node_t * _copy_contact_list(struct contact_node_t *node);
|
2012-04-23 17:43:12 -04:00
|
|
|
static void _insert_contact(struct contact_node_t *curr,
|
|
|
|
struct contact_node_t *prev, const char * const name,
|
|
|
|
const char * const show, const char * const status);
|
2012-03-08 17:43:28 -05:00
|
|
|
|
2012-03-07 19:46:24 -05:00
|
|
|
void contact_list_clear(void)
|
|
|
|
{
|
2012-03-19 20:05:33 -04:00
|
|
|
struct contact_node_t *curr = _contact_list;
|
2012-03-08 17:43:28 -05:00
|
|
|
|
|
|
|
if (curr) {
|
|
|
|
while(curr) {
|
2012-05-03 20:00:01 -04:00
|
|
|
PContact contact = curr->contact;
|
|
|
|
p_contact_free(contact);
|
2012-03-07 19:46:24 -05:00
|
|
|
curr = curr->next;
|
|
|
|
}
|
2012-03-08 17:43:28 -05:00
|
|
|
|
2012-03-07 19:46:24 -05:00
|
|
|
free(_contact_list);
|
2012-03-08 17:43:28 -05:00
|
|
|
_contact_list = NULL;
|
2012-03-10 18:48:10 -05:00
|
|
|
|
|
|
|
reset_search_attempts();
|
2012-03-07 19:46:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-19 20:05:33 -04:00
|
|
|
void destroy_list(struct contact_node_t *list)
|
|
|
|
{
|
|
|
|
while(list) {
|
2012-05-03 20:00:01 -04:00
|
|
|
PContact contact = list->contact;
|
|
|
|
p_contact_free(contact);
|
2012-03-19 20:05:33 -04:00
|
|
|
list = list->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(list);
|
|
|
|
list = NULL;
|
|
|
|
}
|
|
|
|
|
2012-03-10 18:01:59 -05:00
|
|
|
void reset_search_attempts(void)
|
|
|
|
{
|
2012-03-10 18:48:10 -05:00
|
|
|
_last_found = NULL;
|
|
|
|
if (_search_str != NULL) {
|
|
|
|
free(_search_str);
|
|
|
|
_search_str = NULL;
|
|
|
|
}
|
2012-03-10 18:01:59 -05:00
|
|
|
}
|
|
|
|
|
2012-03-09 18:07:53 -05:00
|
|
|
int contact_list_remove(const char * const name)
|
2012-03-07 19:46:24 -05:00
|
|
|
{
|
2012-03-08 18:03:26 -05:00
|
|
|
if (!_contact_list) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
2012-03-19 20:05:33 -04:00
|
|
|
struct contact_node_t *curr = _contact_list;
|
|
|
|
struct contact_node_t *prev = NULL;
|
2012-03-08 18:03:26 -05:00
|
|
|
|
|
|
|
while(curr) {
|
2012-05-03 20:00:01 -04:00
|
|
|
PContact contact = curr->contact;
|
|
|
|
if (strcmp(p_contact_name(contact), name) == 0) {
|
2012-03-08 18:03:26 -05:00
|
|
|
if (prev)
|
|
|
|
prev->next = curr->next;
|
|
|
|
else
|
|
|
|
_contact_list = curr->next;
|
2012-03-09 18:07:53 -05:00
|
|
|
|
2012-03-10 18:48:10 -05:00
|
|
|
// reset last found if it points at the node to be removed
|
|
|
|
if (_last_found != NULL)
|
2012-05-03 20:00:01 -04:00
|
|
|
if (strcmp(p_contact_name(_last_found->contact),
|
|
|
|
p_contact_name(contact)) == 0)
|
2012-03-10 18:48:10 -05:00
|
|
|
_last_found = NULL;
|
|
|
|
|
2012-05-03 20:00:01 -04:00
|
|
|
p_contact_free(contact);
|
2012-03-08 18:03:26 -05:00
|
|
|
free(curr);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
prev = curr;
|
|
|
|
curr = curr->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2012-03-08 17:43:28 -05:00
|
|
|
}
|
2012-03-07 19:46:24 -05:00
|
|
|
|
2012-03-09 19:22:57 -05:00
|
|
|
int contact_list_add(const char * const name, const char * const show,
|
|
|
|
const char * const status)
|
2012-03-08 17:43:28 -05:00
|
|
|
{
|
2012-03-09 18:07:53 -05:00
|
|
|
|
2012-03-08 17:43:28 -05:00
|
|
|
if (!_contact_list) {
|
2012-03-09 19:22:57 -05:00
|
|
|
_contact_list = _make_contact_node(name, show, status);
|
2012-03-08 17:43:28 -05:00
|
|
|
|
|
|
|
return 1;
|
2012-03-07 19:46:24 -05:00
|
|
|
} else {
|
2012-03-19 20:05:33 -04:00
|
|
|
struct contact_node_t *curr = _contact_list;
|
|
|
|
struct contact_node_t *prev = NULL;
|
2012-03-08 17:43:28 -05:00
|
|
|
|
|
|
|
while(curr) {
|
2012-05-03 20:00:01 -04:00
|
|
|
PContact curr_contact = curr->contact;
|
2012-03-10 16:15:30 -05:00
|
|
|
|
|
|
|
// insert
|
2012-05-03 20:00:01 -04:00
|
|
|
if (strcmp(p_contact_name(curr_contact), name) > 0) {
|
2012-04-23 17:43:12 -04:00
|
|
|
_insert_contact(curr, prev, name, show, status);
|
2012-03-10 16:15:30 -05:00
|
|
|
return 0;
|
|
|
|
// update
|
2012-05-03 20:00:01 -04:00
|
|
|
} else if (strcmp(p_contact_name(curr_contact), name) == 0) {
|
|
|
|
p_contact_free(curr->contact);
|
|
|
|
curr->contact = p_contact_new(name, show, status);
|
2012-03-08 17:43:28 -05:00
|
|
|
return 0;
|
2012-03-09 18:33:26 -05:00
|
|
|
}
|
2012-03-07 19:46:24 -05:00
|
|
|
|
2012-03-10 16:15:30 -05:00
|
|
|
// move on
|
2012-03-08 17:43:28 -05:00
|
|
|
prev = curr;
|
|
|
|
curr = curr->next;
|
2012-03-07 19:46:24 -05:00
|
|
|
}
|
|
|
|
|
2012-03-09 19:22:57 -05:00
|
|
|
curr = _make_contact_node(name, show, status);
|
2012-03-08 17:43:28 -05:00
|
|
|
|
|
|
|
if (prev)
|
|
|
|
prev->next = curr;
|
2012-03-07 19:46:24 -05:00
|
|
|
|
2012-03-08 17:43:28 -05:00
|
|
|
return 1;
|
2012-03-07 19:46:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-19 20:05:33 -04:00
|
|
|
struct contact_node_t * get_contact_list(void)
|
2012-03-07 19:46:24 -05:00
|
|
|
{
|
2012-03-19 20:05:33 -04:00
|
|
|
struct contact_node_t *copy = NULL;
|
|
|
|
struct contact_node_t *curr = _contact_list;
|
2012-03-08 17:43:28 -05:00
|
|
|
|
2012-03-19 20:05:33 -04:00
|
|
|
copy = _copy_contact_list(curr);
|
2012-03-07 19:46:24 -05:00
|
|
|
|
2012-03-19 20:05:33 -04:00
|
|
|
return copy;
|
|
|
|
}
|
2012-03-08 17:43:28 -05:00
|
|
|
|
2012-03-19 20:05:33 -04:00
|
|
|
struct contact_node_t * _copy_contact_list(struct contact_node_t *node)
|
|
|
|
{
|
|
|
|
if (node == NULL) {
|
|
|
|
return NULL;
|
|
|
|
} else {
|
2012-05-03 20:00:01 -04:00
|
|
|
PContact curr_contact = node->contact;
|
2012-03-19 20:05:33 -04:00
|
|
|
struct contact_node_t *copy =
|
2012-05-03 20:00:01 -04:00
|
|
|
_make_contact_node(p_contact_name(curr_contact),
|
|
|
|
p_contact_show(curr_contact),
|
|
|
|
p_contact_status(curr_contact));
|
2012-03-08 17:43:28 -05:00
|
|
|
|
2012-03-19 20:05:33 -04:00
|
|
|
copy->next = _copy_contact_list(node->next);
|
2012-03-08 17:43:28 -05:00
|
|
|
|
2012-03-19 20:05:33 -04:00
|
|
|
return copy;
|
|
|
|
}
|
2012-03-07 19:46:24 -05:00
|
|
|
}
|
2012-03-08 17:43:28 -05:00
|
|
|
|
2012-03-19 20:05:33 -04:00
|
|
|
char * find_contact(char *search_str)
|
2012-03-10 16:37:46 -05:00
|
|
|
{
|
2012-03-10 19:12:08 -05:00
|
|
|
char *found = NULL;
|
2012-03-10 16:37:46 -05:00
|
|
|
|
2012-03-10 19:12:08 -05:00
|
|
|
// no contacts to search
|
|
|
|
if (!_contact_list)
|
2012-03-10 16:37:46 -05:00
|
|
|
return NULL;
|
2012-03-10 18:48:10 -05:00
|
|
|
|
2012-03-10 19:12:08 -05:00
|
|
|
// first search attempt
|
|
|
|
if (_last_found == NULL) {
|
|
|
|
_search_str = (char *) malloc((strlen(search_str) + 1) * sizeof(char));
|
|
|
|
strcpy(_search_str, search_str);
|
2012-03-10 18:48:10 -05:00
|
|
|
|
2012-03-10 19:12:08 -05:00
|
|
|
found = _search_contact_list_from(_contact_list);
|
|
|
|
return found;
|
2012-03-10 18:48:10 -05:00
|
|
|
|
2012-03-10 19:12:08 -05:00
|
|
|
// subsequent search attempt
|
|
|
|
} else {
|
|
|
|
// search from here+1 to end
|
|
|
|
found = _search_contact_list_from(_last_found->next);
|
|
|
|
if (found != NULL)
|
|
|
|
return found;
|
2012-03-10 18:48:10 -05:00
|
|
|
|
2012-03-10 19:12:08 -05:00
|
|
|
// search from beginning
|
|
|
|
found = _search_contact_list_from(_contact_list);
|
|
|
|
if (found != NULL)
|
|
|
|
return found;
|
2012-03-10 18:48:10 -05:00
|
|
|
|
2012-03-10 19:12:08 -05:00
|
|
|
// we found nothing, reset search
|
2012-03-10 18:48:10 -05:00
|
|
|
reset_search_attempts();
|
|
|
|
return NULL;
|
2012-03-10 19:12:08 -05:00
|
|
|
}
|
|
|
|
}
|
2012-03-10 18:48:10 -05:00
|
|
|
|
2012-03-19 20:05:33 -04:00
|
|
|
int get_size(struct contact_node_t *list)
|
|
|
|
{
|
|
|
|
int size = 0;
|
|
|
|
|
|
|
|
while(list) {
|
|
|
|
size++;
|
|
|
|
list = list->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char * _search_contact_list_from(struct contact_node_t * curr)
|
2012-03-10 19:12:08 -05:00
|
|
|
{
|
|
|
|
while(curr) {
|
2012-05-03 20:00:01 -04:00
|
|
|
PContact curr_contact = curr->contact;
|
2012-03-10 19:12:08 -05:00
|
|
|
|
|
|
|
// match found
|
2012-05-03 20:00:01 -04:00
|
|
|
if (strncmp(p_contact_name(curr_contact),
|
|
|
|
_search_str,
|
|
|
|
strlen(_search_str)) == 0) {
|
2012-03-10 19:12:08 -05:00
|
|
|
char *result =
|
2012-05-03 20:00:01 -04:00
|
|
|
(char *) malloc((strlen(p_contact_name(curr_contact)) + 1)
|
|
|
|
* sizeof(char));
|
2012-03-10 16:37:46 -05:00
|
|
|
|
2012-03-10 19:12:08 -05:00
|
|
|
// set pointer to last found
|
|
|
|
_last_found = curr;
|
|
|
|
|
|
|
|
// return the contact, must be free'd by caller
|
2012-05-03 20:00:01 -04:00
|
|
|
strcpy(result, p_contact_name(curr_contact));
|
2012-03-10 19:12:08 -05:00
|
|
|
return result;
|
2012-03-10 16:37:46 -05:00
|
|
|
}
|
|
|
|
|
2012-03-10 19:12:08 -05:00
|
|
|
curr = curr->next;
|
2012-03-10 16:37:46 -05:00
|
|
|
}
|
2012-03-10 19:12:08 -05:00
|
|
|
|
|
|
|
return NULL;
|
2012-03-10 16:37:46 -05:00
|
|
|
}
|
|
|
|
|
2012-03-19 20:05:33 -04:00
|
|
|
static struct contact_node_t * _make_contact_node(const char * const name,
|
2012-03-09 19:22:57 -05:00
|
|
|
const char * const show, const char * const status)
|
2012-03-08 17:43:28 -05:00
|
|
|
{
|
2012-03-19 20:05:33 -04:00
|
|
|
struct contact_node_t *new =
|
|
|
|
(struct contact_node_t *) malloc(sizeof(struct contact_node_t));
|
2012-05-03 20:00:01 -04:00
|
|
|
new->contact = p_contact_new(name, show, status);
|
2012-03-08 17:43:28 -05:00
|
|
|
new->next = NULL;
|
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
2012-04-23 17:43:12 -04:00
|
|
|
static void _insert_contact(struct contact_node_t *curr,
|
|
|
|
struct contact_node_t *prev, const char * const name,
|
|
|
|
const char * const show, const char * const status)
|
|
|
|
{
|
|
|
|
if (prev) {
|
|
|
|
struct contact_node_t *new = _make_contact_node(name, show, status);
|
|
|
|
new->next = curr;
|
|
|
|
prev->next = new;
|
|
|
|
} else {
|
|
|
|
struct contact_node_t *new = _make_contact_node(name, show, status);
|
|
|
|
new->next = _contact_list;
|
|
|
|
_contact_list = new;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|