bump to version 0.3

bug fixes, check commits for details
implemented new parser, altough it adds some lines it lowers the comlexity and
it should be faster especially for bigger config files
xkbcommon
Alessandro Mauri 4 years ago
parent 0507be14b6
commit 9871f375ed
  1. 303
      hkd.c
  2. 2
      makefile

303
hkd.c

@ -20,6 +20,7 @@
/* Value defines */ /* Value defines */
#define FILE_NAME_MAX_LENGTH 255 #define FILE_NAME_MAX_LENGTH 255
#define KEY_BUFFER_SIZE 16 #define KEY_BUFFER_SIZE 16
#define BLOCK_SIZE 512
/* ANSI colors escape codes */ /* ANSI colors escape codes */
#define ANSI_COLOR_RED "\x1b[31m" #define ANSI_COLOR_RED "\x1b[31m"
@ -224,11 +225,9 @@ void parse_config_file (void);
void update_descriptors_list (int **, int *); void update_descriptors_list (int **, int *);
int prepare_epoll (int *, int, int); int prepare_epoll (int *, int, int);
unsigned short key_to_code (char *); unsigned short key_to_code (char *);
int is_empty (const char *s);
/* hotkey list operations */ /* hotkey list operations */
void hotkey_list_add (struct hotkey_list_e *, struct key_buffer *, char *, int); void hotkey_list_add (struct hotkey_list_e *, struct key_buffer *, char *, int);
void hotkey_list_destroy (struct hotkey_list_e *); void hotkey_list_destroy (struct hotkey_list_e *);
void hotkey_list_append_command (struct hotkey_list_e *, char *);
int main (int argc, char *argv[]) int main (int argc, char *argv[])
{ {
@ -612,24 +611,25 @@ void hotkey_list_add (struct hotkey_list_e *head, struct key_buffer *kb, char *c
hotkey_list = tmp; hotkey_list = tmp;
} }
void hotkey_list_append_command (struct hotkey_list_e *head, char *cmd)
{
char *tmp;
if (!head)
return;
while (head->next)
head = head->next;
tmp = realloc(head->command, sizeof(head->command) + strlen(cmd) + 1);
if (!tmp)
die("realloc in hotkey_list_append_command()");
head->command = tmp;
strcat(head->command, cmd);
}
void parse_config_file (void) void parse_config_file (void)
{ {
wordexp_t result = {0}; wordexp_t result = {0};
FILE *fd; FILE *fd;
int remaining = 0;
char block[BLOCK_SIZE + 1] = {0};
char *bb = NULL;
// 0: normal, 1: skip line 2: get directive 3: get keys 4: get command 5: output
int state = 0;
char *keys = NULL;
char *cmd = NULL;
int alloc_tmp = 0, alloc_size = 0;
int fuzzy = 0;
struct key_buffer kb;
int i_tmp = 0, done = 0;
char *cp_tmp = NULL;
unsigned short us_tmp = 0;
if (ext_config_file) { if (ext_config_file) {
switch (wordexp(ext_config_file, &result, 0)) { switch (wordexp(ext_config_file, &result, 0)) {
case 0: case 0:
@ -675,131 +675,160 @@ void parse_config_file (void)
if (!fd) if (!fd)
die("could not open any config files, check the log for more details"); die("could not open any config files, check the log for more details");
} }
while (!done) {
int iscmd = 0; memset(block, 0, BLOCK_SIZE);
struct key_buffer kb; remaining = fread(block, sizeof(char), BLOCK_SIZE, fd);
for (int linenum = 1;; linenum++) { if (!remaining)
int fuzzy = 0, tmp;
char * linebegin = NULL;
char *line = NULL, *keys = NULL, *command = NULL;
size_t linelen = 0;
if (getline(&line, &linelen, fd) == -1)
break; break;
bb = block;
linelen = strlen(line); while (remaining > 0) {
if (linelen < 2) switch (state) {
continue; // First state
case 0:
linebegin = line; // remove whitespaces
while (isblank(*bb) && remaining > 0)
// Remove leading spaces bb++, remaining--;
while (isspace(line[0]) && linelen > 1) { if (remaining <= 0)
line = &line[1]; break;
linelen--; // get state
} switch (*bb) {
case '\n':
// Skip comments and blank lines case '#':
if (line[0] == '#' || !line[0]) state = 1;
goto parse_end_free; break;
case '\0':
for (size_t i = 1; i < linelen; i++) { done = 1;
if (line[i] == '#') break;
line[i] = '\0'; default:
} state = 2;
if (!iscmd) { break;
if (line[0] != '-' && line[0] != '*') { }
fprintf(stderr, red("Error at line %d: " break;
"Hotkey definitions must start with '*' or '-'\n"), linenum); // Skip line (comment)
exit(EXIT_FAILURE); case 1:
} while (*bb != '\n' && remaining > 0)
bb++, remaining--;
if (line[0] == '*') bb++, remaining--;
fuzzy = 1; if (remaining > 0)
line = &line[1]; state = 0;
linelen--; break;
// Remove leading spaces // Get compairson method
while (isspace(line[0]) && linelen > 1) { case 2:
line = &line[1]; switch (*bb) {
linelen--; case '-':
} fuzzy = 0;
keys = strtok(line, ":"); break;
command = strtok(NULL, ":"); case '*':
if (!command || !keys) { fuzzy = 1;
fprintf(stderr, red("Error at line %d: " break;
"No command or keys specified\n"), linenum); default:
exit(EXIT_FAILURE); die("invalid line")
} break;
// Check if keys and command are not blank }
if (is_empty(keys) || is_empty(command)) { bb++, remaining--;
fprintf(stderr, red("Error at line %d: " state = 3;
"command or keys not present\n"), linenum); break;
exit(EXIT_FAILURE); // Get keys
} case 3:
if (!keys) {
if (!(keys = malloc(alloc_size = (sizeof(char) * 64))))
die("malloc for keys in parse_config_file()");
memset(keys, 0, alloc_size);
alloc_tmp = 0;
} else if (alloc_tmp >= alloc_size) {
if (!(keys = realloc(keys, alloc_size *= 2)))
die("realloc for keys in parse_config_file()");
memset(&keys[alloc_size / 2], 0, alloc_size / 2);
}
// Remove whitespaces in keys for (; remaining > 0 &&
tmp = strlen(keys); (bb[alloc_tmp] != ':' && bb[alloc_tmp] != '\n') &&
for (int i = 0; i < tmp; i++) { alloc_tmp < alloc_size;
if (isspace(keys[i])) remaining--, alloc_tmp++);
memmove(&line[i], &line[i + 1], --tmp);
}
// Remove leading and trailing spaces in command if (remaining <= 0 || alloc_tmp == alloc_size) {
tmp = strlen(command); strncat(keys, bb, alloc_tmp);
while (isspace(command[0]) && tmp > 1) { bb += alloc_tmp;
command = &command[1]; break;
tmp--; } else if (bb[alloc_tmp] == ':') {
} strncat(keys, bb, alloc_tmp);
for (tmp = strlen(command) - 1; isspace(command[tmp]); tmp--) { bb += alloc_tmp + 1;
if (isblank(command[tmp])) remaining--;
command[tmp] = '\0'; state = 4;
} break;
} else {
die("no command");
}
break;
// Get command
case 4:
if (!cmd) {
if (!(cmd = malloc(alloc_size = (sizeof(char) * 128))))
die("malloc for cmd in parse_config_file()");
memset(cmd, 0, alloc_size);
alloc_tmp = 0;
} else if (alloc_tmp >= alloc_size) {
if (!(cmd = realloc(cmd, alloc_size *= 2)))
die("realloc for cmd in parse_config_file()");
memset(&cmd[alloc_size / 2], 0, alloc_size / 2);
}
if (command[strlen(command) - 2] == '\\') { for (; remaining > 0 &&
iscmd = 1; bb[alloc_tmp] != '\n' &&
} else { alloc_tmp < alloc_size;
iscmd = 0; remaining--, alloc_tmp++);
tmp = strlen(command) - 1;
while (isspace(command[tmp]))
command[tmp--] = '\0';
}
key_buffer_reset(&kb); if (remaining <= 0 || alloc_tmp == alloc_size) {
char *k = strtok(keys, ","); strncat(cmd, bb, alloc_tmp);
unsigned short kc; bb += alloc_tmp;
do { break;
if (!(kc = key_to_code(k))) { } else {
fprintf(stderr, red("Error at line %d: " strncat(cmd, bb, alloc_tmp);
"%s is not a valid key"), linenum, k); if (!(bb[alloc_tmp - 1] == '\\'))
exit(EXIT_FAILURE); state = 5;
bb += alloc_tmp + 1;
remaining--;
break;
} }
key_buffer_add(&kb, kc); break;
} while ((k = strtok(NULL, ","))); case 5:
hotkey_list_add(hotkey_list, &kb, command, fuzzy); i_tmp = strlen(keys);
hotkey_size_mask |= 1 << (kb.size - 1); for (int i = 0; i < i_tmp; i++) {
key_buffer_reset(&kb); if (isblank(keys[i])) {
} else { memmove(&keys[i], &keys[i + 1], --i_tmp);
for (tmp = strlen(line) - 1; isspace(line[tmp]); tmp--) { keys[i_tmp] = '\0';
if (isblank(line[tmp])) }
line[tmp] = '\0'; }
} cp_tmp = strtok(keys, ",");
linelen = strlen(line); if(!cp_tmp)
die("no keys");
// if line is blank skip do {
if (is_empty(line)) if (!(us_tmp = key_to_code(cp_tmp)))
goto parse_end_free; die("key not valid");
key_buffer_add(&kb, us_tmp);
if (line[linelen - 2] == '\\') { } while ((cp_tmp = strtok(NULL, ",")));
iscmd = 1;
} else { cp_tmp = cmd;
iscmd = 0; while (isblank(*cp_tmp))
while (isspace(line[linelen - 1])) cp_tmp++;
line[--linelen] = '\0';
hotkey_list_add(hotkey_list, &kb, cp_tmp, fuzzy);
hotkey_size_mask |= 1 << (kb.size - 1);
// DO STUFF
key_buffer_reset(&kb);
free(keys);
free(cmd);
cp_tmp = keys = cmd = NULL;
i_tmp = state = 0;
break;
default:
die("unknown state in parse_config_file");
break;
} }
hotkey_list_append_command(hotkey_list, line);
} }
parse_end_free:
free(linebegin);
} }
} }
@ -811,13 +840,3 @@ unsigned short key_to_code (char *key)
} }
return 0; return 0;
} }
int is_empty (const char *s)
{
while (*s != '\0') {
if (!isspace((unsigned char)*s))
return 0;
s++;
}
return 1;
}

@ -1,6 +1,6 @@
CC = gcc CC = gcc
CFLAGS = -Wall -Werror -pedantic --std=c99 -O2 CFLAGS = -Wall -Werror -pedantic --std=c99 -O2
VERSION = 0.2 VERSION = 0.3
PREFIX = /usr/local PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man MANPREFIX = ${PREFIX}/share/man

Loading…
Cancel
Save