ccc/file.c

142 lines
3.6 KiB
C
Raw Normal View History

#include <string.h>
2024-03-11 22:54:14 +01:00
#include <stdlib.h>
#include <stdbool.h>
#include <libgen.h>
#include <wchar.h>
#include "util.h"
#include "file.h"
2024-03-20 21:29:04 +01:00
ArrayList *arraylist_init(size_t capacity)
{
2024-03-20 21:29:04 +01:00
ArrayList *list = memalloc(sizeof(ArrayList));
list->length = 0;
list->capacity = capacity;
list->items = memalloc(capacity * sizeof(file));
2024-03-20 21:29:04 +01:00
return list;
}
2024-03-20 21:29:04 +01:00
void arraylist_free(ArrayList *list)
{
2024-03-20 21:29:04 +01:00
for (size_t i = 0; i < list->length; i++) {
if (list->items[i].name != NULL)
free(list->items[i].name);
2024-03-20 21:29:04 +01:00
if (list->items[i].path != NULL)
free(list->items[i].path);
if (list->items[i].type != NULL)
free(list->items[i].type);
2024-03-20 21:29:04 +01:00
if (list->items[i].stats != NULL)
free(list->items[i].stats);
if (list->items[i].icon != NULL)
free(list->items[i].icon);
2024-03-20 21:29:04 +01:00
}
2024-03-20 21:29:04 +01:00
free(list->items);
free(list);
}
/*
* Check if the file is in the arraylist
* Treat filepath as base name if bname is true
*/
long arraylist_search(ArrayList *list, char *filepath, bool bname)
{
2024-03-31 01:20:29 +01:00
for (long i = 0; i < list->length; i++) {
if (!bname && strcmp(list->items[i].path, filepath) == 0) {
2024-03-31 01:20:29 +01:00
return i;
}
if (bname) {
if (strcmp(list->items[i].name, filepath) == 0) {
2024-03-31 01:20:29 +01:00
return i;
}
2024-03-20 21:29:04 +01:00
}
}
2024-03-31 01:20:29 +01:00
return -1;
}
2024-03-20 21:29:04 +01:00
void arraylist_remove(ArrayList *list, long index)
{
if (index >= list->length)
return;
free(list->items[index].name);
2024-03-20 21:29:04 +01:00
free(list->items[index].path);
free(list->items[index].type);
free(list->items[index].stats);
free(list->items[index].icon);
for (long i = index; i < list->length - 1; i++)
2024-03-20 21:29:04 +01:00
list->items[i] = list->items[i + 1];
list->length--;
}
/*
* Force will not remove duplicate marked files, instead it just skip adding
*/
void arraylist_add(ArrayList *list, char *name, char *path, char *stats, char *type, wchar_t *icon, int color, bool marked, bool force)
{
/* name, path, stats, type, icon, color */
2024-04-06 22:52:31 +02:00
file new_file = { name, path, type, stats, icon, color };
2024-03-20 21:29:04 +01:00
if (list->capacity != list->length) {
if (marked) {
for (int i = 0; i < list->length; i++) {
if (strcmp(list->items[i].path, new_file.path) == 0) {
if (!force)
2024-03-20 21:29:04 +01:00
arraylist_remove(list, i);
2024-03-20 21:32:43 +01:00
return;
2024-03-20 21:29:04 +01:00
}
}
}
2024-03-20 21:29:04 +01:00
list->items[list->length] = new_file;
} else {
2024-03-20 21:29:04 +01:00
int new_cap = list->capacity * 2;
file *new_items = memalloc(new_cap * sizeof(file));
file *old_items = list->items;
list->capacity = new_cap;
list->items = new_items;
for (int i = 0; i < list->length; i++)
2024-03-20 21:29:04 +01:00
new_items[i] = old_items[i];
2024-03-20 21:29:04 +01:00
free(old_items);
list->items[list->length] = new_file;
}
2024-03-20 21:29:04 +01:00
list->length++;
}
/*
* Construct a formatted line for display
*/
2024-04-02 02:18:34 +02:00
char *get_line(ArrayList *list, long index, bool detail, bool icons)
2024-03-11 22:54:14 +01:00
{
2024-03-20 21:29:04 +01:00
file file = list->items[index];
2024-03-31 00:47:51 +01:00
size_t name_len = strlen(file.name);
2024-03-29 15:05:01 +01:00
size_t length;
if (detail) {
length = name_len + strlen(file.stats) + 7; /* 4 for icon, 2 for space and 1 for null */
2024-03-29 15:05:01 +01:00
} else {
length = name_len + 6; /* 4 for icon, 1 for space and 1 for null */
2024-03-29 15:05:01 +01:00
}
2024-03-20 21:29:04 +01:00
char *line = memalloc(length * sizeof(char));
2024-04-02 02:18:34 +02:00
line[0] = '\0';
2024-03-29 15:05:01 +01:00
if (detail) {
strcat(line, file.stats);
2024-04-02 02:18:34 +02:00
strcat(line, " ");
2024-03-29 15:05:01 +01:00
}
2024-04-02 02:18:34 +02:00
if (icons) {
char *tmp = memalloc(8 * sizeof(char));
snprintf(tmp, 8, "%ls", file.icon);
2024-04-02 02:18:34 +02:00
strcat(line, tmp);
strcat(line, " ");
free(tmp);
}
strcat(line, file.name);
2024-04-02 02:18:34 +02:00
2024-03-20 21:29:04 +01:00
return line;
2024-03-11 22:54:14 +01:00
}