2018-08-07 18:58:32 +00:00
|
|
|
/* Copyright (C) 2018 Curtis McEnroe <june@causal.agency>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <err.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sysexits.h>
|
|
|
|
|
|
|
|
#include "chat.h"
|
|
|
|
|
|
|
|
static struct Entry {
|
2018-08-11 23:30:30 +00:00
|
|
|
struct Tag tag;
|
2018-08-07 18:58:32 +00:00
|
|
|
char *word;
|
|
|
|
struct Entry *prev;
|
|
|
|
struct Entry *next;
|
|
|
|
} *head;
|
|
|
|
|
|
|
|
static void prepend(struct Entry *entry) {
|
|
|
|
entry->prev = NULL;
|
|
|
|
entry->next = head;
|
|
|
|
if (head) head->prev = entry;
|
|
|
|
head = entry;
|
|
|
|
}
|
|
|
|
|
2018-08-08 20:59:26 +00:00
|
|
|
static void unlink(struct Entry *entry) {
|
2018-08-07 18:58:32 +00:00
|
|
|
if (entry->prev) entry->prev->next = entry->next;
|
|
|
|
if (entry->next) entry->next->prev = entry->prev;
|
|
|
|
if (head == entry) head = entry->next;
|
|
|
|
}
|
|
|
|
|
2018-08-08 02:40:05 +00:00
|
|
|
static void touch(struct Entry *entry) {
|
|
|
|
if (head == entry) return;
|
2018-08-08 20:59:26 +00:00
|
|
|
unlink(entry);
|
2018-08-08 02:40:05 +00:00
|
|
|
prepend(entry);
|
|
|
|
}
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
void tabTouch(struct Tag tag, const char *word) {
|
2018-08-07 18:58:32 +00:00
|
|
|
for (struct Entry *entry = head; entry; entry = entry->next) {
|
2018-08-11 23:30:30 +00:00
|
|
|
if (entry->tag.id != tag.id) continue;
|
2018-08-07 18:58:32 +00:00
|
|
|
if (strcmp(entry->word, word)) continue;
|
2018-08-08 02:40:05 +00:00
|
|
|
touch(entry);
|
2018-08-07 18:58:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Entry *entry = malloc(sizeof(*entry));
|
|
|
|
if (!entry) err(EX_OSERR, "malloc");
|
2018-08-11 03:31:20 +00:00
|
|
|
|
2018-08-11 23:30:30 +00:00
|
|
|
entry->tag = tag;
|
2018-08-07 18:58:32 +00:00
|
|
|
entry->word = strdup(word);
|
2018-08-11 03:31:20 +00:00
|
|
|
if (!entry->word) err(EX_OSERR, "strdup");
|
|
|
|
|
2018-08-07 18:58:32 +00:00
|
|
|
prepend(entry);
|
|
|
|
}
|
|
|
|
|
2018-08-11 23:30:30 +00:00
|
|
|
void tabReplace(struct Tag tag, const char *prev, const char *next) {
|
|
|
|
tabTouch(tag, prev);
|
|
|
|
free(head->word);
|
|
|
|
head->word = strdup(next);
|
|
|
|
if (!head->word) err(EX_OSERR, "strdup");
|
2018-08-08 02:40:05 +00:00
|
|
|
}
|
|
|
|
|
2018-08-11 23:30:30 +00:00
|
|
|
static struct Entry *iter;
|
2018-08-08 02:40:05 +00:00
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
void tabRemove(struct Tag tag, const char *word) {
|
2018-08-07 18:58:32 +00:00
|
|
|
for (struct Entry *entry = head; entry; entry = entry->next) {
|
2018-08-11 23:30:30 +00:00
|
|
|
if (entry->tag.id != tag.id) continue;
|
2018-08-07 18:58:32 +00:00
|
|
|
if (strcmp(entry->word, word)) continue;
|
2018-08-11 23:30:30 +00:00
|
|
|
if (iter == entry) iter = entry->prev;
|
2018-08-08 20:59:26 +00:00
|
|
|
unlink(entry);
|
2018-08-07 18:58:32 +00:00
|
|
|
free(entry->word);
|
|
|
|
free(entry);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
void tabClear(struct Tag tag) {
|
|
|
|
for (struct Entry *entry = head; entry; entry = entry->next) {
|
2018-08-11 23:30:30 +00:00
|
|
|
if (entry->tag.id != tag.id) continue;
|
|
|
|
if (iter == entry) iter = entry->prev;
|
2018-08-11 03:31:20 +00:00
|
|
|
unlink(entry);
|
|
|
|
free(entry->word);
|
|
|
|
free(entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-11 23:30:30 +00:00
|
|
|
struct Tag tabTag(const char *word) {
|
|
|
|
struct Entry *start = (iter ? iter->next : head);
|
|
|
|
for (struct Entry *entry = start; entry; entry = entry->next) {
|
|
|
|
if (strcmp(entry->word, word)) continue;
|
|
|
|
iter = entry;
|
|
|
|
return entry->tag;
|
|
|
|
}
|
|
|
|
iter = NULL;
|
|
|
|
return TAG_NONE;
|
|
|
|
}
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
const char *tabNext(struct Tag tag, const char *prefix) {
|
2018-08-08 02:40:05 +00:00
|
|
|
size_t len = strlen(prefix);
|
2018-08-11 23:30:30 +00:00
|
|
|
struct Entry *start = (iter ? iter->next : head);
|
2018-08-08 02:40:05 +00:00
|
|
|
for (struct Entry *entry = start; entry; entry = entry->next) {
|
2018-08-11 23:30:30 +00:00
|
|
|
if (entry->tag.id != TAG_NONE.id && entry->tag.id != tag.id) continue;
|
2018-08-08 02:40:05 +00:00
|
|
|
if (strncasecmp(entry->word, prefix, len)) continue;
|
2018-08-11 23:30:30 +00:00
|
|
|
iter = entry;
|
2018-08-08 02:40:05 +00:00
|
|
|
return entry->word;
|
|
|
|
}
|
2018-08-11 23:30:30 +00:00
|
|
|
if (!iter) return NULL;
|
|
|
|
iter = NULL;
|
2018-08-11 03:31:20 +00:00
|
|
|
return tabNext(tag, prefix);
|
2018-08-08 02:40:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void tabAccept(void) {
|
2018-08-11 23:30:30 +00:00
|
|
|
if (iter) touch(iter);
|
|
|
|
iter = NULL;
|
2018-08-08 02:40:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void tabReject(void) {
|
2018-08-11 23:30:30 +00:00
|
|
|
iter = NULL;
|
2018-08-07 18:58:32 +00:00
|
|
|
}
|