2020-02-08 02:30:25 +00:00
|
|
|
/* Copyright (C) 2020 C. McEnroe <june@causal.agency>
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2020-06-08 21:48:07 +00:00
|
|
|
*
|
|
|
|
* Additional permission under GNU GPL version 3 section 7:
|
|
|
|
*
|
|
|
|
* If you modify this Program, or any covered work, by linking or
|
|
|
|
* combining it with LibreSSL (or a modified version of that library),
|
|
|
|
* containing parts covered by the terms of the OpenSSL License and the
|
|
|
|
* original SSLeay license, the licensors of this Program grant you
|
|
|
|
* additional permission to convey the resulting work. Corresponding
|
|
|
|
* Source for a non-source form of such a combination shall include the
|
|
|
|
* source code for the parts of LibreSSL used as well as that of the
|
|
|
|
* covered work.
|
2020-02-08 02:30:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <err.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sysexits.h>
|
|
|
|
|
|
|
|
#include "chat.h"
|
|
|
|
|
|
|
|
struct Node {
|
2020-02-16 03:19:55 +00:00
|
|
|
uint id;
|
2020-02-08 02:30:25 +00:00
|
|
|
char *str;
|
|
|
|
enum Color color;
|
|
|
|
struct Node *prev;
|
|
|
|
struct Node *next;
|
|
|
|
};
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static struct Node *alloc(uint id, const char *str, enum Color color) {
|
2020-02-08 02:30:25 +00:00
|
|
|
struct Node *node = malloc(sizeof(*node));
|
|
|
|
if (!node) err(EX_OSERR, "malloc");
|
|
|
|
node->id = id;
|
|
|
|
node->str = strdup(str);
|
|
|
|
node->color = color;
|
|
|
|
node->prev = NULL;
|
|
|
|
node->next = NULL;
|
2020-02-17 04:05:43 +00:00
|
|
|
if (!node->str) err(EX_OSERR, "strdup");
|
2020-02-08 02:30:25 +00:00
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct Node *head;
|
|
|
|
static struct Node *tail;
|
|
|
|
|
|
|
|
static struct Node *detach(struct Node *node) {
|
|
|
|
if (node->prev) node->prev->next = node->next;
|
|
|
|
if (node->next) node->next->prev = node->prev;
|
|
|
|
if (head == node) head = node->next;
|
|
|
|
if (tail == node) tail = node->prev;
|
|
|
|
node->prev = NULL;
|
|
|
|
node->next = NULL;
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct Node *prepend(struct Node *node) {
|
|
|
|
node->prev = NULL;
|
|
|
|
node->next = head;
|
|
|
|
if (head) head->prev = node;
|
|
|
|
head = node;
|
2020-04-03 21:10:52 +00:00
|
|
|
tail = (tail ?: node);
|
2020-02-08 02:30:25 +00:00
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct Node *append(struct Node *node) {
|
|
|
|
node->next = NULL;
|
|
|
|
node->prev = tail;
|
|
|
|
if (tail) tail->next = node;
|
|
|
|
tail = node;
|
2020-04-03 21:10:52 +00:00
|
|
|
head = (head ?: node);
|
2020-02-08 02:30:25 +00:00
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
static struct Node *find(uint id, const char *str) {
|
2020-02-08 02:30:25 +00:00
|
|
|
for (struct Node *node = head; node; node = node->next) {
|
2020-02-17 04:05:43 +00:00
|
|
|
if (node->id != id) continue;
|
|
|
|
if (strcmp(node->str, str)) continue;
|
|
|
|
return node;
|
2020-02-08 02:30:25 +00:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
void completeAdd(uint id, const char *str, enum Color color) {
|
2020-02-08 02:30:25 +00:00
|
|
|
if (!find(id, str)) append(alloc(id, str, color));
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
void completeTouch(uint id, const char *str, enum Color color) {
|
2020-02-08 02:30:25 +00:00
|
|
|
struct Node *node = find(id, str);
|
2020-02-17 04:05:43 +00:00
|
|
|
if (node) node->color = color;
|
2020-02-08 02:30:25 +00:00
|
|
|
prepend(node ? detach(node) : alloc(id, str, color));
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
enum Color completeColor(uint id, const char *str) {
|
2020-02-08 05:58:17 +00:00
|
|
|
struct Node *node = find(id, str);
|
|
|
|
return (node ? node->color : Default);
|
|
|
|
}
|
|
|
|
|
2020-02-08 02:30:25 +00:00
|
|
|
static struct Node *match;
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
const char *complete(uint id, const char *prefix) {
|
2020-02-08 02:30:25 +00:00
|
|
|
for (match = (match ? match->next : head); match; match = match->next) {
|
|
|
|
if (match->id && match->id != id) continue;
|
|
|
|
if (strncasecmp(match->str, prefix, strlen(prefix))) continue;
|
|
|
|
return match->str;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void completeAccept(void) {
|
|
|
|
if (match) prepend(detach(match));
|
|
|
|
match = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void completeReject(void) {
|
|
|
|
match = NULL;
|
|
|
|
}
|
2020-02-08 04:33:23 +00:00
|
|
|
|
2020-04-24 00:22:15 +00:00
|
|
|
static struct Node *iter;
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
uint completeID(const char *str) {
|
2020-04-24 00:22:15 +00:00
|
|
|
for (iter = (iter ? iter->next : head); iter; iter = iter->next) {
|
|
|
|
if (iter->id && !strcmp(iter->str, str)) return iter->id;
|
2020-02-08 05:01:59 +00:00
|
|
|
}
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
void completeReplace(uint id, const char *old, const char *new) {
|
2020-02-08 05:01:59 +00:00
|
|
|
struct Node *next = NULL;
|
2020-02-11 08:40:13 +00:00
|
|
|
for (struct Node *node = head; node; node = next) {
|
2020-02-08 05:01:59 +00:00
|
|
|
next = node->next;
|
|
|
|
if (id && node->id != id) continue;
|
|
|
|
if (strcmp(node->str, old)) continue;
|
|
|
|
free(node->str);
|
|
|
|
node->str = strdup(new);
|
|
|
|
prepend(detach(node));
|
2020-02-17 04:05:43 +00:00
|
|
|
if (!node->str) err(EX_OSERR, "strdup");
|
2020-02-08 05:01:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
void completeRemove(uint id, const char *str) {
|
2020-02-08 04:33:23 +00:00
|
|
|
struct Node *next = NULL;
|
|
|
|
for (struct Node *node = head; node; node = next) {
|
|
|
|
next = node->next;
|
|
|
|
if (id && node->id != id) continue;
|
|
|
|
if (strcmp(node->str, str)) continue;
|
|
|
|
if (match == node) match = NULL;
|
2020-04-24 00:22:15 +00:00
|
|
|
if (iter == node) iter = NULL;
|
2020-02-08 04:33:23 +00:00
|
|
|
detach(node);
|
|
|
|
free(node->str);
|
|
|
|
free(node);
|
|
|
|
}
|
|
|
|
}
|
2020-02-08 04:44:03 +00:00
|
|
|
|
2020-02-16 03:19:55 +00:00
|
|
|
void completeClear(uint id) {
|
2020-02-08 04:44:03 +00:00
|
|
|
struct Node *next = NULL;
|
|
|
|
for (struct Node *node = head; node; node = next) {
|
|
|
|
next = node->next;
|
|
|
|
if (node->id != id) continue;
|
|
|
|
if (match == node) match = NULL;
|
2020-04-24 00:22:15 +00:00
|
|
|
if (iter == node) iter = NULL;
|
2020-02-08 04:44:03 +00:00
|
|
|
detach(node);
|
|
|
|
free(node->str);
|
|
|
|
free(node);
|
|
|
|
}
|
|
|
|
}
|