| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- // SPDX-License-Identifier: Apache-2.0
- /*
- * Copyright (C) 2013 Intel Corporation
- *
- */
- #include <stdlib.h>
- #include <string.h>
- #include <stdio.h>
- #include <ctype.h>
- #include "history.h"
- /* Very simple history storage for easy usage of tool */
- #define HISTORY_DEPTH 40
- #define LINE_SIZE 200
- static char lines[HISTORY_DEPTH][LINE_SIZE];
- static int last_line = 0;
- static int history_size = 0;
- /* TODO: Storing history not implemented yet */
- void history_store(const char *filename)
- {
- }
- /* Restoring history from file */
- void history_restore(const char *filename)
- {
- char line[1000];
- FILE *f = fopen(filename, "rt");
- if (f == NULL)
- return;
- for (;;) {
- if (fgets(line, 1000, f) != NULL) {
- int l = strlen(line);
- while (l > 0 && isspace(line[--l]))
- line[l] = 0;
- if (l > 0)
- history_add_line(line);
- } else
- break;
- }
- fclose(f);
- }
- /* Add new line to history buffer */
- void history_add_line(const char *line)
- {
- if (line == NULL || strlen(line) == 0)
- return;
- if (strcmp(line, lines[last_line]) == 0)
- return;
- last_line = (last_line + 1) % HISTORY_DEPTH;
- strncpy(&lines[last_line][0], line, LINE_SIZE - 1);
- if (history_size < HISTORY_DEPTH)
- history_size++;
- }
- /*
- * Get n-th line from history
- * 0 - means latest
- * -1 - means oldest
- * return -1 if there is no such line
- */
- int history_get_line(int n, char *buf, int buf_size)
- {
- if (n == -1)
- n = history_size - 1;
- if (n >= history_size || buf_size == 0 || n < 0)
- return -1;
- strncpy(buf,
- &lines[(HISTORY_DEPTH + last_line - n) % HISTORY_DEPTH][0],
- buf_size - 1);
- buf[buf_size - 1] = 0;
- return n;
- }
|