1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-11-03 19:37:16 -05:00
profanity/contact_list.c

104 lines
2.1 KiB
C
Raw Normal View History

2012-03-08 17:43:28 -05:00
#include <stdio.h>
2012-03-07 19:46:24 -05:00
#include <stdlib.h>
#include <string.h>
#include "contact_list.h"
2012-03-08 17:43:28 -05:00
// contact list node
2012-03-07 19:46:24 -05:00
struct _contact_t {
char *contact;
struct _contact_t *next;
};
// the contact list
static struct _contact_t *_contact_list = NULL;
2012-03-08 17:43:28 -05:00
static struct _contact_t * _make_contact(char *contact);
2012-03-07 19:46:24 -05:00
void contact_list_clear(void)
{
2012-03-08 17:43:28 -05:00
struct _contact_t *curr = _contact_list;
if (curr) {
while(curr) {
2012-03-07 19:46:24 -05:00
free(curr->contact);
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-07 19:46:24 -05:00
}
}
2012-03-08 17:43:28 -05:00
int contact_list_remove(char *contact)
2012-03-07 19:46:24 -05:00
{
2012-03-08 17:43:28 -05:00
return 0;
}
2012-03-07 19:46:24 -05:00
2012-03-08 17:43:28 -05:00
int contact_list_add(char *contact)
{
if (!_contact_list) {
_contact_list = _make_contact(contact);
return 1;
2012-03-07 19:46:24 -05:00
} else {
struct _contact_t *curr = _contact_list;
2012-03-08 17:43:28 -05:00
struct _contact_t *prev = NULL;
while(curr) {
2012-03-07 19:46:24 -05:00
if (strcmp(curr->contact, contact) == 0)
2012-03-08 17:43:28 -05:00
return 0;
2012-03-07 19:46:24 -05:00
2012-03-08 17:43:28 -05:00
prev = curr;
curr = curr->next;
2012-03-07 19:46:24 -05:00
}
2012-03-08 17:43:28 -05:00
curr = _make_contact(contact);
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
}
}
struct contact_list *get_contact_list(void)
{
2012-03-08 17:43:28 -05:00
int count = 0;
2012-03-07 19:46:24 -05:00
struct contact_list *list =
(struct contact_list *) malloc(sizeof(struct contact_list));
2012-03-08 17:43:28 -05:00
struct _contact_t *curr = _contact_list;
if (!curr) {
2012-03-07 19:46:24 -05:00
list->contacts = NULL;
} else {
list->contacts = (char **) malloc(sizeof(char **));
2012-03-08 17:43:28 -05:00
while(curr) {
2012-03-07 19:46:24 -05:00
list->contacts[count] =
2012-03-08 17:43:28 -05:00
(char *) malloc((strlen(curr->contact) + 1) * sizeof(char));
2012-03-07 19:46:24 -05:00
strcpy(list->contacts[count], curr->contact);
count++;
2012-03-08 17:43:28 -05:00
curr = curr->next;
2012-03-07 19:46:24 -05:00
}
}
2012-03-08 17:43:28 -05:00
list->size = count;
return list;
2012-03-07 19:46:24 -05:00
}
2012-03-08 17:43:28 -05:00
static struct _contact_t * _make_contact(char *contact)
{
struct _contact_t *new = (struct _contact_t *) malloc(sizeof(struct _contact_t));
new->contact = (char *) malloc((strlen(contact) + 1) * sizeof(char));
strcpy(new->contact, contact);
new->next = NULL;
return new;
}