137 lines
3.0 KiB
C
137 lines
3.0 KiB
C
#include "key_value_pair.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
key_value_pair *head = NULL;
|
|
key_value_pair *tail = NULL;
|
|
|
|
char *key_value_pair_to_string(key_value_pair *kv)
|
|
{
|
|
char *str = malloc(sizeof(char) * (strlen(kv->key) + strlen(kv->value) + 1));
|
|
if (str == NULL) return NULL;
|
|
|
|
strcpy(str, kv->key);
|
|
strcat(str, kv->value);
|
|
|
|
return str;
|
|
}
|
|
|
|
// initializes a new instance of key_value_pair with given values on given pointer
|
|
key_value_pair *init_key_value_pair(const char *key, const char *value)
|
|
{
|
|
key_value_pair *kv = (key_value_pair*)malloc(sizeof(key_value_pair));
|
|
if (kv == NULL)
|
|
{
|
|
perror("Failed to allocate memory for key_value_pair");
|
|
return NULL;
|
|
}
|
|
kv->key = strdup(key);
|
|
if (kv->key == NULL)
|
|
{
|
|
free(kv);
|
|
perror("Failed to allocate memory for key_value_pair->key");
|
|
return NULL;
|
|
}
|
|
kv->value = strdup(value);
|
|
if (kv->value == NULL)
|
|
{
|
|
free(kv->key);
|
|
free(kv);
|
|
perror("Failed to allocate memory for key_value_pair->value");
|
|
return NULL;
|
|
}
|
|
|
|
kv->next = NULL;
|
|
kv->toString = key_value_pair_to_string;
|
|
|
|
return kv;
|
|
}
|
|
|
|
// frees the given instance of struct key_value_pair
|
|
void free_key_value_pair(key_value_pair **kv)
|
|
{
|
|
if (*kv == NULL) return;
|
|
|
|
free((*kv)->key);
|
|
free((*kv)->value);
|
|
free(*kv);
|
|
|
|
*kv = NULL;
|
|
}
|
|
|
|
// frees whole key_value_pair list structure
|
|
void free_key_value_pairs()
|
|
{
|
|
while (head != NULL)
|
|
{
|
|
key_value_pair *toFree = head;
|
|
head = head->next;
|
|
free_key_value_pair(&toFree);
|
|
}
|
|
tail = NULL;
|
|
}
|
|
|
|
|
|
// adds given key_value_pair to list
|
|
int add_key_value_pair(key_value_pair *kv)
|
|
{
|
|
if (head == NULL)
|
|
{
|
|
head = kv;
|
|
tail = kv;
|
|
}
|
|
else
|
|
{
|
|
key_value_pair *iterator = head;
|
|
while (iterator->next != NULL)
|
|
{
|
|
if (strcmp(kv->key, iterator->key) == 0)
|
|
{
|
|
char *bak = iterator->value;
|
|
iterator->value = (char*)realloc(iterator->value, strlen(iterator->value) + strlen(kv->value) + 1);
|
|
if (iterator->value == NULL)
|
|
{
|
|
iterator->value = bak;
|
|
return -1;
|
|
}
|
|
strcat(iterator->value, kv->value);
|
|
free_key_value_pair(&kv);
|
|
return 0;
|
|
}
|
|
iterator = iterator->next;
|
|
}
|
|
iterator->next = kv;
|
|
tail = kv;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
// removes given key_value_pair from list
|
|
void remove_key_value_pair(key_value_pair *kv)
|
|
{
|
|
if (head == NULL || kv == NULL) return;
|
|
if (head == kv)
|
|
{
|
|
head = head->next;
|
|
if (tail == kv) tail = NULL;
|
|
return;
|
|
}
|
|
|
|
key_value_pair *iterator = head;
|
|
if (iterator == NULL) return;
|
|
|
|
while (iterator != NULL)
|
|
{
|
|
if (iterator->next == kv)
|
|
{
|
|
iterator->next = kv->next;
|
|
if (tail == kv) tail = iterator;
|
|
return;
|
|
}
|
|
iterator = iterator->next;
|
|
}
|
|
}
|
|
|