X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fcommand_db.c;h=3837d2ab888bb6c8fdb0f86aad4f2964a9b9acb7;hb=0907037fc188c28471805286a67b786264ba3e2f;hp=27a3b6dc8d942552019a42e10c876daabc457ada;hpb=37fb9ef76174a83e27dd27a3250f4be5542e7452;p=plomrogue diff --git a/src/client/command_db.c b/src/client/command_db.c index 27a3b6d..3837d2a 100644 --- a/src/client/command_db.c +++ b/src/client/command_db.c @@ -3,30 +3,26 @@ #include "command_db.h" #include /* NULL */ #include /* uint8_t, uint32_t */ -#include /* FILE */ +#include /* FILE, sprintf() */ #include /* free() */ -#include /* memcpy(), strlen(), strtok(), strcmp() */ -#include "../common/readwrite.h" /* try_fopen(), try_fclose(), try_fgets() - * textfile_sizes() - */ -#include "../common/rexit.h" /* for exit_err() */ +#include /* memset(), strlen(), strcmp() */ +#include "../common/err_try_fgets.h" /* reset_err_try_fgets_counter() */ +#include "../common/readwrite.h" /* try_fopen(),try_fclose(),textfile_width() */ +#include "../common/rexit.h" /* exit_trouble() */ #include "../common/try_malloc.h" /* try_malloc() */ -#include "cleanup.h" /* set_cleanup_flag() */ +#include "misc.h" /* array_append() */ #include "world.h" /* global world */ +#include "cleanup.h" /* set_cleanup_flag() */ -/* Point "ch_ptr" to next strtok() string in "line" delimited by "delim".*/ -static void copy_tokenized_string(char * line, char ** ch_ptr, char * delim); - - - -static void copy_tokenized_string(char * line, char ** ch_ptr, char * delim) +/* Helper to init_command_db(). */ +static void write_line_to_target(char ** target, char * line) { - char * f_name = "copy_tokenized_string()"; - char * dsc_ptr = strtok(line, delim); - * ch_ptr = try_malloc(strlen(dsc_ptr) + 1, f_name); - memcpy(* ch_ptr, dsc_ptr, strlen(dsc_ptr) + 1); + char * f_name = "write_line_to_target()"; + *target = try_malloc(strlen(line), f_name); + line[strlen(line) - 1] = '\0'; + sprintf(*target, "%s", line); } @@ -39,16 +35,12 @@ extern struct Command * get_command(char * dsc_short) { if (0 == strcmp(dsc_short, cmd_ptr->dsc_short)) { - break; + return cmd_ptr; } cmd_ptr = &cmd_ptr[1]; i++; } - char * err_start = "get_command_data() failed on request for: "; - char err[strlen(err_start) + strlen(dsc_short) + 1]; - sprintf(err, "%s%s", err_start, dsc_short); - exit_err(i == world.commandDB.n, err); - return cmd_ptr; + return NULL; } @@ -56,36 +48,36 @@ extern struct Command * get_command(char * dsc_short) extern void init_command_db() { char * f_name = "init_command_db()"; + char * context = "Failed reading command DB file. "; FILE * file = try_fopen(world.path_commands, "r", f_name); - uint32_t lines; - uint32_t linemax = textfile_sizes(file, &lines); + uint32_t linemax = textfile_width(file); char line[linemax + 1]; + reset_err_try_fgets_counter(); uint8_t i = 0; - char * delim = " "; - while (try_fgets(line, linemax + 1, file, f_name)) + while (1) { - if ('\n' == line[0] || 0 == line[0]) + int test_for_end = try_fgetc(file, f_name); + if (EOF == test_for_end || '\n' == test_for_end) { break; } + exit_trouble(EOF == ungetc(test_for_end, file), f_name, "ungetc()"); struct Command cmd; - copy_tokenized_string(line, &cmd.dsc_short, delim); - copy_tokenized_string(NULL, &cmd.server_msg, delim); - if (!strcmp("0", cmd.server_msg)) - { /* A .server_msg == NULL helps control.c's */ - free(cmd.server_msg); /* try_key() and try_server_command() to */ - cmd.server_msg = NULL; /* differentiate server commands from */ - } /* non-server commands. */ - char * arg_string = strtok(NULL, delim); - cmd.arg = arg_string[0]; - copy_tokenized_string(NULL, &cmd.dsc_long, "\n"); - uint32_t old_size = i * sizeof(struct Command); - uint32_t new_size = old_size + sizeof(struct Command); - struct Command * new_cmds = try_malloc(new_size, f_name); - memcpy(new_cmds, world.commandDB.cmds, old_size); - new_cmds[i] = cmd; - free(world.commandDB.cmds); - world.commandDB.cmds = new_cmds; + memset(&cmd, 0, sizeof(struct Command)); + err_try_fgets(line, linemax, file, context, "nf"); + write_line_to_target(&cmd.dsc_short, line); + err_try_fgets(line, linemax, file, context, "0nf"); + write_line_to_target(&cmd.dsc_long, line); + err_try_fgets(line, linemax, file, context, "0nf"); + if (strcmp(world.delim, line)) + { + write_line_to_target(&cmd.server_msg, line); + err_try_fgets(line, linemax, file, context, "0nfs"); + cmd.arg = line[0]; + err_try_fgets(line, linemax, file, context, "d"); + } + array_append(i, sizeof(struct Command), (void *) &cmd, + (void **) &world.commandDB.cmds); i++; } try_fclose(file, f_name);