mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-09 14:51:30 +01:00
114 lines
2.9 KiB
C
114 lines
2.9 KiB
C
#include "terminal.h"
|
|
|
|
string_t terminal_input() {
|
|
char character;
|
|
size_t length = 1;
|
|
string_t string_value = malloc(length * sizeof(char));
|
|
if (string_value == NULL) {
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
*string_value = '\0';
|
|
while ((character = getchar()) != '\n' && character != EOF) {
|
|
length++;
|
|
string_value = realloc(string_value, length * sizeof(char));
|
|
if (string_value == NULL) {
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
character_append(string_value, character);
|
|
}
|
|
return string_value;
|
|
}
|
|
|
|
void terminal_print_array(void* array, size_t array_size, size_t element_size, void (*print_element)(void*)) {
|
|
printf("[");
|
|
for (size_t index = 0; index < array_size; index++) {
|
|
void* element = (char*)array + index * element_size;
|
|
print_element(element);
|
|
bool is_last = index == array_size - 1;
|
|
if (!is_last) {
|
|
printf(", ");
|
|
}
|
|
}
|
|
printf("]\n");
|
|
}
|
|
|
|
void terminal_print_int(void* value) {
|
|
printf("%d", *(int*)value);
|
|
}
|
|
|
|
void terminal_print_long(void* value) {
|
|
printf("%ld", *(long*)value);
|
|
}
|
|
|
|
void terminal_print_unsigned_long(void* value) {
|
|
printf("%lu", *(unsigned long*)value);
|
|
}
|
|
|
|
void terminal_print_char(void* value) {
|
|
printf("%c", *(char*)value);
|
|
}
|
|
|
|
void terminal_print_string(void* value) {
|
|
printf("%s", (char*)value);
|
|
}
|
|
|
|
void terminal_print_stack(struct stack* stack, void (*print_element)(void*)) {
|
|
if (stack == NULL) {
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
struct stack_node* node_current = stack->first;
|
|
while (node_current != NULL) {
|
|
printf("|\t");
|
|
void* element = (char*)node_current->data;
|
|
print_element(&element);
|
|
node_current = node_current->next;
|
|
printf("\t|\n");
|
|
}
|
|
}
|
|
|
|
void terminal_print_queue(struct queue* queue, void (*print_element)(void*)) {
|
|
if (queue == NULL) {
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
struct queue_node* node_current = queue->first;
|
|
while (node_current != NULL) {
|
|
printf("|\t");
|
|
void* element = (char*)node_current->data;
|
|
print_element(&element);
|
|
node_current = node_current->next;
|
|
printf("\t|\n");
|
|
}
|
|
}
|
|
|
|
void terminal_print_linked_list(struct linked_list* linked_list, void (*print_element)(void*)) {
|
|
if (linked_list == NULL) {
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
struct linked_list_node* node_current = linked_list->head;
|
|
while (node_current != NULL) {
|
|
void* element = (char*)node_current->data;
|
|
node_current = node_current->next;
|
|
print_element(&element);
|
|
printf(" -> ");
|
|
}
|
|
printf("NULL\n");
|
|
}
|
|
|
|
void terminal_print_hash_map(struct hash_map* hash_map, void (*print_element)(void*)) {
|
|
if (hash_map == NULL) {
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
printf("{\n");
|
|
string_t* keys = hash_map_get_keys(hash_map);
|
|
for (size_t index = 0; index < hash_map->length; index++) {
|
|
string_t key = keys[index];
|
|
void* value = hash_map_get(hash_map, key);
|
|
printf("\t\"");
|
|
terminal_print_string(key);
|
|
printf("\" -> ");
|
|
print_element(&value);
|
|
printf("\n");
|
|
}
|
|
printf("}\n");
|
|
}
|