2012-05-01 19:15:56 -04:00
|
|
|
/*
|
|
|
|
* prof_history.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 James Booth <boothj5@gmail.com>
|
|
|
|
*
|
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Profanity is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-04-29 20:09:42 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include "prof_history.h"
|
|
|
|
|
2012-05-01 19:07:40 -04:00
|
|
|
struct p_history_session_t {
|
|
|
|
GList *items;
|
|
|
|
GList *sess_curr;
|
|
|
|
GList *sess_new;
|
|
|
|
GList *orig_curr;
|
|
|
|
};
|
|
|
|
|
2012-04-29 20:09:42 -04:00
|
|
|
struct p_history_t {
|
2012-05-01 19:07:40 -04:00
|
|
|
GList *items;
|
2012-04-29 20:09:42 -04:00
|
|
|
guint max_size;
|
2012-05-01 19:07:40 -04:00
|
|
|
struct p_history_session_t session;
|
2012-04-29 20:09:42 -04:00
|
|
|
};
|
|
|
|
|
2012-04-29 21:36:45 -04:00
|
|
|
static void _replace_history_with_session(PHistory history);
|
2012-05-01 17:09:33 -04:00
|
|
|
static gboolean _adding_new(PHistory history);
|
2012-05-01 19:07:40 -04:00
|
|
|
static void _reset_session(PHistory history);
|
|
|
|
static gboolean _has_session(PHistory history);
|
|
|
|
static void _remove_first(PHistory history);
|
|
|
|
static void _update_current_session_item(PHistory history, char *item);
|
|
|
|
static void _add_to_history(PHistory history, char *item);
|
|
|
|
static void _remove_last_session_item(PHistory history);
|
|
|
|
static void _replace_current_with_original(PHistory history);
|
|
|
|
static void _create_session(PHistory history);
|
|
|
|
static void _session_previous(PHistory history);
|
|
|
|
static void _session_next(PHistory history);
|
2012-04-29 21:36:45 -04:00
|
|
|
|
2012-04-29 20:09:42 -04:00
|
|
|
PHistory p_history_new(unsigned int size)
|
|
|
|
{
|
|
|
|
PHistory new_history = malloc(sizeof(struct p_history_t));
|
|
|
|
new_history->items = NULL;
|
|
|
|
new_history->max_size = size;
|
2012-05-01 19:07:40 -04:00
|
|
|
|
|
|
|
_reset_session(new_history);
|
2012-04-29 20:09:42 -04:00
|
|
|
|
|
|
|
return new_history;
|
|
|
|
}
|
|
|
|
|
|
|
|
void p_history_append(PHistory history, char *item)
|
|
|
|
{
|
2012-04-30 14:52:56 -04:00
|
|
|
char *copied = "";
|
|
|
|
if (item != NULL) {
|
|
|
|
copied = strdup(item);
|
|
|
|
}
|
2012-04-29 20:09:42 -04:00
|
|
|
|
2012-04-30 14:52:56 -04:00
|
|
|
if (history->items == NULL) {
|
2012-05-01 19:07:40 -04:00
|
|
|
_add_to_history(history, copied);
|
2012-04-30 14:52:56 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-05-01 19:07:40 -04:00
|
|
|
if (!_has_session(history)) {
|
2012-04-29 21:36:45 -04:00
|
|
|
if (g_list_length(history->items) == history->max_size) {
|
2012-05-01 19:07:40 -04:00
|
|
|
_remove_first(history);
|
2012-04-29 21:36:45 -04:00
|
|
|
}
|
|
|
|
|
2012-05-01 19:07:40 -04:00
|
|
|
_add_to_history(history, copied);
|
2012-04-29 21:36:45 -04:00
|
|
|
|
|
|
|
} else {
|
2012-05-01 19:07:40 -04:00
|
|
|
_update_current_session_item(history, copied);
|
2012-04-30 14:52:56 -04:00
|
|
|
|
2012-05-01 17:09:33 -04:00
|
|
|
if (_adding_new(history)) {
|
2012-05-01 19:07:40 -04:00
|
|
|
if (strcmp(history->session.sess_curr->data, "") == 0) {
|
|
|
|
_remove_last_session_item(history);
|
2012-05-01 17:09:33 -04:00
|
|
|
}
|
|
|
|
|
2012-04-29 21:36:45 -04:00
|
|
|
_replace_history_with_session(history);
|
|
|
|
|
|
|
|
} else {
|
2012-05-01 19:07:40 -04:00
|
|
|
_remove_last_session_item(history);
|
2012-04-30 19:24:31 -04:00
|
|
|
|
2012-05-01 19:07:40 -04:00
|
|
|
char *new = strdup(history->session.sess_curr->data);
|
|
|
|
history->session.items = g_list_append(history->session.items, new);
|
2012-04-29 21:36:45 -04:00
|
|
|
|
2012-05-01 19:07:40 -04:00
|
|
|
_replace_current_with_original(history);
|
2012-04-29 21:36:45 -04:00
|
|
|
_replace_history_with_session(history);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char * p_history_previous(PHistory history, char *item)
|
2012-04-29 20:09:42 -04:00
|
|
|
{
|
2012-04-30 14:52:56 -04:00
|
|
|
// no history
|
2012-04-29 20:09:42 -04:00
|
|
|
if (history->items == NULL) {
|
2012-04-30 19:24:31 -04:00
|
|
|
return NULL;
|
2012-04-29 20:09:42 -04:00
|
|
|
}
|
|
|
|
|
2012-04-30 14:52:56 -04:00
|
|
|
char *copied = "";
|
|
|
|
if (item != NULL) {
|
|
|
|
copied = strdup(item);
|
|
|
|
}
|
|
|
|
|
2012-05-01 19:07:40 -04:00
|
|
|
if (!_has_session(history)) {
|
|
|
|
_create_session(history);
|
2012-04-30 14:52:56 -04:00
|
|
|
|
2012-05-01 19:07:40 -04:00
|
|
|
// add the new item
|
|
|
|
g_list_append(history->session.items, copied);
|
|
|
|
history->session.sess_new = g_list_last(history->session.items);
|
2012-04-30 14:52:56 -04:00
|
|
|
|
2012-05-01 19:07:40 -04:00
|
|
|
char *result = strdup(history->session.sess_curr->data);
|
2012-04-30 14:52:56 -04:00
|
|
|
return result;
|
2012-04-29 20:09:42 -04:00
|
|
|
} else {
|
2012-05-01 19:07:40 -04:00
|
|
|
_update_current_session_item(history, copied);
|
|
|
|
_session_previous(history);
|
2012-04-29 20:09:42 -04:00
|
|
|
}
|
|
|
|
|
2012-05-01 19:07:40 -04:00
|
|
|
char *result = strdup(history->session.sess_curr->data);
|
2012-04-29 20:09:42 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-04-29 21:36:45 -04:00
|
|
|
char * p_history_next(PHistory history, char *item)
|
2012-04-29 20:09:42 -04:00
|
|
|
{
|
2012-05-01 17:09:33 -04:00
|
|
|
// no history, or no session, return NULL
|
2012-05-01 19:07:40 -04:00
|
|
|
if ((history->items == NULL) || (history->session.items == NULL)) {
|
2012-04-30 19:24:31 -04:00
|
|
|
return NULL;
|
2012-04-30 14:52:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
char *copied = "";
|
|
|
|
if (item != NULL) {
|
|
|
|
copied = strdup(item);
|
2012-04-29 20:09:42 -04:00
|
|
|
}
|
|
|
|
|
2012-05-01 19:07:40 -04:00
|
|
|
_update_current_session_item(history, copied);
|
|
|
|
_session_next(history);
|
2012-04-30 14:52:56 -04:00
|
|
|
|
2012-05-01 19:07:40 -04:00
|
|
|
char *result = strdup(history->session.sess_curr->data);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _replace_history_with_session(PHistory history)
|
|
|
|
{
|
|
|
|
g_list_free(history->items);
|
|
|
|
history->items = g_list_copy(history->session.items);
|
2012-04-30 14:52:56 -04:00
|
|
|
|
2012-05-01 19:07:40 -04:00
|
|
|
if (g_list_length(history->items) > history->max_size) {
|
|
|
|
_remove_first(history);
|
2012-04-29 20:09:42 -04:00
|
|
|
}
|
|
|
|
|
2012-05-01 19:07:40 -04:00
|
|
|
_reset_session(history);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean _adding_new(PHistory history)
|
|
|
|
{
|
|
|
|
return (history->session.sess_curr ==
|
|
|
|
g_list_last(history->session.items));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _reset_session(PHistory history)
|
|
|
|
{
|
|
|
|
history->session.items = NULL;
|
|
|
|
history->session.sess_curr = NULL;
|
|
|
|
history->session.sess_new = NULL;
|
|
|
|
history->session.orig_curr = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean _has_session(PHistory history)
|
|
|
|
{
|
|
|
|
return (history->session.items != NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _remove_first(PHistory history)
|
|
|
|
{
|
|
|
|
GList *first = g_list_first(history->items);
|
|
|
|
char *first_item = first->data;
|
|
|
|
history->items = g_list_remove(history->items, first_item);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _update_current_session_item(PHistory history, char *item)
|
|
|
|
{
|
|
|
|
history->session.sess_curr->data = item;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _add_to_history(PHistory history, char *item)
|
|
|
|
{
|
|
|
|
history->items = g_list_append(history->items, item);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _remove_last_session_item(PHistory history)
|
|
|
|
{
|
|
|
|
history->session.items = g_list_reverse(history->session.items);
|
|
|
|
GList *first = g_list_first(history->session.items);
|
|
|
|
history->session.items =
|
|
|
|
g_list_remove(history->session.items, first->data);
|
|
|
|
history->session.items = g_list_reverse(history->session.items);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _replace_current_with_original(PHistory history)
|
|
|
|
{
|
|
|
|
history->session.sess_curr->data = strdup(history->session.orig_curr->data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _create_session(PHistory history)
|
|
|
|
{
|
|
|
|
history->session.items = g_list_copy(history->items);
|
|
|
|
history->session.sess_curr = g_list_last(history->session.items);
|
|
|
|
history->session.orig_curr = g_list_last(history->items);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _session_previous(PHistory history)
|
|
|
|
{
|
|
|
|
history->session.sess_curr =
|
|
|
|
g_list_previous(history->session.sess_curr);
|
|
|
|
if (history->session.orig_curr == NULL)
|
|
|
|
history->session.orig_curr = g_list_last(history->items);
|
|
|
|
else
|
|
|
|
history->session.orig_curr =
|
|
|
|
g_list_previous(history->session.orig_curr);
|
|
|
|
|
|
|
|
if (history->session.sess_curr == NULL) {
|
|
|
|
history->session.sess_curr = g_list_first(history->session.items);
|
|
|
|
history->session.orig_curr = g_list_first(history->items);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _session_next(PHistory history)
|
|
|
|
{
|
|
|
|
history->session.sess_curr = g_list_next(history->session.sess_curr);
|
|
|
|
history->session.orig_curr = g_list_next(history->session.orig_curr);
|
|
|
|
|
|
|
|
if (history->session.sess_curr == NULL) {
|
|
|
|
history->session.sess_curr = g_list_last(history->session.items);
|
|
|
|
history->session.orig_curr = NULL;
|
|
|
|
}
|
2012-04-29 20:09:42 -04:00
|
|
|
}
|