2005-09-15 09:58:31 -04:00
|
|
|
/* Global history */
|
|
|
|
|
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
#define _GNU_SOURCE /* XXX: we _WANT_ strcasestr() ! */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "elinks.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#ifdef HAVE_TIME_H
|
|
|
|
#include <time.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "bfu/dialog.h"
|
|
|
|
#include "config/home.h"
|
|
|
|
#include "config/options.h"
|
|
|
|
#include "globhist/dialogs.h"
|
|
|
|
#include "globhist/globhist.h"
|
|
|
|
#include "intl/gettext/libintl.h"
|
|
|
|
#include "main/module.h"
|
|
|
|
#include "main/object.h"
|
|
|
|
#include "main/select.h"
|
|
|
|
#include "util/conv.h"
|
|
|
|
#include "util/file.h"
|
|
|
|
#include "util/hash.h"
|
|
|
|
#include "util/memory.h"
|
|
|
|
#include "util/secsave.h"
|
|
|
|
#include "util/string.h"
|
|
|
|
#include "util/lists.h"
|
|
|
|
#include "util/time.h"
|
|
|
|
|
|
|
|
#define GLOBAL_HISTORY_FILENAME "globhist"
|
|
|
|
|
|
|
|
|
|
|
|
INIT_INPUT_HISTORY(global_history);
|
2007-07-26 15:39:08 -04:00
|
|
|
INIT_LIST_OF(struct global_history_item, global_history_reap_list);
|
2005-09-15 09:58:31 -04:00
|
|
|
|
|
|
|
|
|
|
|
/* GUI stuff. Declared here because done_global_history() frees it. */
|
|
|
|
unsigned char *gh_last_searched_title = NULL;
|
|
|
|
unsigned char *gh_last_searched_url = NULL;
|
|
|
|
|
|
|
|
enum global_history_options {
|
|
|
|
GLOBHIST_TREE,
|
|
|
|
|
|
|
|
GLOBHIST_ENABLE,
|
|
|
|
GLOBHIST_MAX_ITEMS,
|
|
|
|
GLOBHIST_DISPLAY_TYPE,
|
|
|
|
|
|
|
|
GLOBHIST_OPTIONS,
|
|
|
|
};
|
|
|
|
|
bug 764: Initialize the right member of union option_value
INIT_OPTION used to initialize union option_value at compile time by
casting the default value to LIST_OF(struct option) *, which is the
type of the first member. On sparc64 and other big-endian systems
where sizeof(int) < sizeof(struct list_head *), this tended to leave
option->value.number as zero, thus messing up OPT_INT and OPT_BOOL
at least. OPT_LONG however tended to work right.
This would be easy to fix with C99 designated initializers,
but doc/hacking.txt says ELinks must be kept C89 compatible.
Another solution would be to make register_options() read the
value from option->value.tree (the first member), cast it back
to the right type, and write it to the appropriate member;
but that would still require somewhat dubious conversions
between integers, data pointers, and function pointers.
So here's a rather more invasive solution. Add struct option_init,
which is somewhat similar to struct option but has non-overlapping
members for different types of values, to ensure nothing is lost
in compile-time conversions. Move unsigned char *path from struct
option_info to struct option_init, and replace struct option_info
with a union that contains struct option_init and struct option.
Now, this union can be initialized with no portability problems,
and register_options() then moves the values from struct option_init
to their final places in struct option.
In my x86 ELinks build with plenty of options configured in, this
change bloated the text section by 340 bytes but compressed the data
section by 2784 bytes, presumably because union option_info is a
pointer smaller than struct option_info was.
(cherry picked from elinks-0.12 commit e5f6592ee20780a61f70feeb1f9e17631b9c5835)
Conflicts:
src/protocol/fsp/fsp.c: All options had been removed in 0.13.GIT.
src/protocol/smb/smb2.c: Ditto.
2009-08-15 15:39:07 -04:00
|
|
|
static union option_info global_history_options[] = {
|
2005-09-15 09:58:31 -04:00
|
|
|
INIT_OPT_TREE("document.history", N_("Global history"),
|
|
|
|
"global", 0,
|
|
|
|
N_("Global history options.")),
|
|
|
|
|
|
|
|
INIT_OPT_BOOL("document.history.global", N_("Enable"),
|
|
|
|
"enable", 0, 1,
|
Rewrap lines in option documentation.
Documentation strings of most options used to contain a "\n" at the
end of each source line. When the option manager displayed these
strings, it treated each "\n" as a hard newline. On 80x24 terminals
however, the option description window has only 60 columes available
for the text (with the default setup.h), and the hard newlines were
further apart, so the option manager wrapped the text a second time,
resulting in rather ugly output where long lones are interleaved with
short ones. This could also cause the text to take up too much
vertical space and not fit in the window.
Replace most of those hard newlines with spaces so that the option
manager (or perhaps BFU) will take care of the wrapping. At the same
time, rewrap the strings in source code so that the source lines are
at most 79 columns wide.
In some options though, there is a list of possible values and their
meanings. In those lists, if the description of one value does not
fit in one line, then continuation lines should be indented. The
option manager and BFU are not currently able to do that. So, keep
the hard newlines in those lists, but rewrap them to 60 columns so
that they are less likely to require further wrapping at runtime.
2009-03-07 13:48:38 -05:00
|
|
|
N_("Enable global history (\"history of all pages "
|
|
|
|
"visited\").")),
|
2005-09-15 09:58:31 -04:00
|
|
|
|
|
|
|
INIT_OPT_INT("document.history.global", N_("Maximum number of entries"),
|
|
|
|
"max_items", 0, 1, INT_MAX, 1024,
|
|
|
|
N_("Maximum number of entries in the global history.")),
|
|
|
|
|
|
|
|
INIT_OPT_INT("document.history.global", N_("Display style"),
|
|
|
|
"display_type", 0, 0, 1, 0,
|
|
|
|
N_("What to display in global history dialog:\n"
|
|
|
|
"0 is URLs\n"
|
|
|
|
"1 is page titles")),
|
|
|
|
|
|
|
|
/* Compatibility alias: added by jonas at 2004-07-16, 0.9.CVS. */
|
|
|
|
INIT_OPT_ALIAS("document.history.global", "write_interval", 0,
|
|
|
|
"infofiles.save_interval"),
|
|
|
|
|
|
|
|
NULL_OPTION_INFO,
|
|
|
|
};
|
|
|
|
|
|
|
|
#define get_opt_globhist(which) global_history_options[(which)].option.value
|
|
|
|
#define get_globhist_enable() get_opt_globhist(GLOBHIST_ENABLE).number
|
|
|
|
#define get_globhist_max_items() get_opt_globhist(GLOBHIST_MAX_ITEMS).number
|
|
|
|
#define get_globhist_display_type() get_opt_globhist(GLOBHIST_DISPLAY_TYPE).number
|
|
|
|
|
|
|
|
static struct hash *globhist_cache = NULL;
|
|
|
|
static int globhist_cache_entries = 0;
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
remove_item_from_global_history(struct global_history_item *history_item)
|
|
|
|
{
|
|
|
|
del_from_history_list(&global_history, history_item);
|
|
|
|
|
|
|
|
if (globhist_cache) {
|
|
|
|
struct hash_item *item;
|
|
|
|
|
|
|
|
item = get_hash_item(globhist_cache, history_item->url, strlen(history_item->url));
|
|
|
|
if (item) {
|
|
|
|
del_hash_item(globhist_cache, item);
|
|
|
|
globhist_cache_entries--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-03 09:50:38 -04:00
|
|
|
static void
|
|
|
|
reap_deleted_globhist_items(void)
|
|
|
|
{
|
|
|
|
struct global_history_item *history_item, *next;
|
|
|
|
|
|
|
|
foreachsafe(history_item, next, global_history_reap_list) {
|
|
|
|
if (!is_object_used(history_item)) {
|
|
|
|
del_from_list(history_item);
|
|
|
|
mem_free(history_item->title);
|
|
|
|
mem_free(history_item->url);
|
|
|
|
mem_free(history_item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
static void
|
|
|
|
done_global_history_item(struct global_history_item *history_item)
|
|
|
|
{
|
|
|
|
done_listbox_item(&globhist_browser, history_item->box_item);
|
2006-05-03 09:50:38 -04:00
|
|
|
|
|
|
|
history_item->box_item = NULL;
|
|
|
|
|
|
|
|
add_to_list(global_history_reap_list, history_item);
|
2005-09-15 09:58:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
delete_global_history_item(struct global_history_item *history_item)
|
|
|
|
{
|
|
|
|
remove_item_from_global_history(history_item);
|
|
|
|
|
|
|
|
done_global_history_item(history_item);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Search global history for item matching url. */
|
|
|
|
struct global_history_item *
|
|
|
|
get_global_history_item(unsigned char *url)
|
|
|
|
{
|
|
|
|
struct hash_item *item;
|
|
|
|
|
|
|
|
if (!url || !globhist_cache) return NULL;
|
|
|
|
|
|
|
|
/* Search for cached entry. */
|
|
|
|
|
|
|
|
item = get_hash_item(globhist_cache, url, strlen(url));
|
|
|
|
|
|
|
|
return item ? (struct global_history_item *) item->value : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
/* Search global history for certain item. There must be full match with the
|
|
|
|
* parameter or the parameter must be NULL/zero. */
|
|
|
|
struct global_history_item *
|
|
|
|
multiget_global_history_item(unsigned char *url, unsigned char *title, time_t time)
|
|
|
|
{
|
|
|
|
struct global_history_item *history_item;
|
|
|
|
|
|
|
|
/* Code duplication vs performance, since this function is called most
|
|
|
|
* of time for url matching only... Execution time is divided by 2. */
|
|
|
|
if (url && !title && !time) {
|
|
|
|
return get_global_history_item(url);
|
|
|
|
} else {
|
|
|
|
foreach (history_item, global_history.items) {
|
|
|
|
if ((!url || !strcmp(history_item->url, url)) &&
|
|
|
|
(!title || !strcmp(history_item->title, title)) &&
|
|
|
|
(!time || history_item->last_visit == time)) {
|
|
|
|
return history_item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static struct global_history_item *
|
|
|
|
init_global_history_item(unsigned char *url, unsigned char *title, time_t vtime)
|
|
|
|
{
|
|
|
|
struct global_history_item *history_item;
|
|
|
|
|
|
|
|
history_item = mem_calloc(1, sizeof(*history_item));
|
|
|
|
if (!history_item)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
history_item->last_visit = vtime;
|
|
|
|
history_item->title = stracpy(empty_string_or_(title));
|
|
|
|
if (!history_item->title) {
|
|
|
|
mem_free(history_item);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
sanitize_title(history_item->title);
|
|
|
|
|
|
|
|
history_item->url = stracpy(url);
|
|
|
|
if (!history_item->url || !sanitize_url(history_item->url)) {
|
|
|
|
mem_free_if(history_item->url);
|
|
|
|
mem_free(history_item->title);
|
|
|
|
mem_free(history_item);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
history_item->box_item = add_listbox_leaf(&globhist_browser, NULL,
|
|
|
|
history_item);
|
|
|
|
if (!history_item->box_item) {
|
|
|
|
mem_free(history_item->url);
|
|
|
|
mem_free(history_item->title);
|
|
|
|
mem_free(history_item);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
object_nolock(history_item, "globhist");
|
|
|
|
|
|
|
|
return history_item;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
cap_global_history(int max_globhist_items)
|
|
|
|
{
|
|
|
|
while (global_history.size >= max_globhist_items) {
|
|
|
|
struct global_history_item *history_item;
|
|
|
|
|
|
|
|
history_item = global_history.entries.prev;
|
|
|
|
|
|
|
|
if ((void *) history_item == &global_history.entries) {
|
|
|
|
INTERNAL("global history is empty");
|
|
|
|
global_history.size = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete_global_history_item(history_item);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
add_item_to_global_history(struct global_history_item *history_item,
|
|
|
|
int max_globhist_items)
|
|
|
|
{
|
|
|
|
add_to_history_list(&global_history, history_item);
|
|
|
|
|
|
|
|
/* Hash creation if needed. */
|
|
|
|
if (!globhist_cache)
|
2006-05-31 13:17:01 -04:00
|
|
|
globhist_cache = init_hash8();
|
2005-09-15 09:58:31 -04:00
|
|
|
|
|
|
|
if (globhist_cache && globhist_cache_entries < max_globhist_items) {
|
|
|
|
int urllen = strlen(history_item->url);
|
|
|
|
|
|
|
|
/* Create a new entry. */
|
|
|
|
if (add_hash_item(globhist_cache, history_item->url, urllen, history_item)) {
|
|
|
|
globhist_cache_entries++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add a new entry in history list, take care of duplicate, respect history
|
|
|
|
* size limit, and update any open history dialogs. */
|
|
|
|
void
|
|
|
|
add_global_history_item(unsigned char *url, unsigned char *title, time_t vtime)
|
|
|
|
{
|
|
|
|
struct global_history_item *history_item;
|
|
|
|
int max_globhist_items;
|
|
|
|
|
|
|
|
if (!url || !get_globhist_enable()) return;
|
|
|
|
|
|
|
|
max_globhist_items = get_globhist_max_items();
|
|
|
|
|
|
|
|
history_item = get_global_history_item(url);
|
|
|
|
if (history_item) delete_global_history_item(history_item);
|
|
|
|
|
|
|
|
if (!cap_global_history(max_globhist_items)) return;
|
|
|
|
|
2006-05-03 09:50:38 -04:00
|
|
|
reap_deleted_globhist_items();
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
history_item = init_global_history_item(url, title, vtime);
|
|
|
|
if (!history_item) return;
|
|
|
|
|
|
|
|
add_item_to_global_history(history_item, max_globhist_items);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
globhist_simple_search(unsigned char *search_url, unsigned char *search_title)
|
|
|
|
{
|
|
|
|
struct global_history_item *history_item;
|
|
|
|
|
|
|
|
if (!search_title || !search_url)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Memorize last searched title */
|
|
|
|
mem_free_set(&gh_last_searched_title, stracpy(search_title));
|
|
|
|
if (!gh_last_searched_title) return 0;
|
|
|
|
|
|
|
|
/* Memorize last searched url */
|
|
|
|
mem_free_set(&gh_last_searched_url, stracpy(search_url));
|
2009-04-19 13:19:07 -04:00
|
|
|
if (!gh_last_searched_url) return 0;
|
2005-09-15 09:58:31 -04:00
|
|
|
|
|
|
|
if (!*search_title && !*search_url) {
|
|
|
|
/* No search terms, make all entries visible. */
|
|
|
|
foreach (history_item, global_history.entries) {
|
|
|
|
history_item->box_item->visible = 1;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (history_item, global_history.entries) {
|
|
|
|
/* Make matching entries visible, hide others. */
|
|
|
|
if ((*search_title
|
2016-04-20 14:11:08 -04:00
|
|
|
&& strcasestr((const char *)history_item->title, (const char *)search_title))
|
2005-09-15 09:58:31 -04:00
|
|
|
|| (*search_url
|
2016-04-20 14:11:08 -04:00
|
|
|
&& c_strcasestr((const char *)history_item->url, (const char *)search_url))) {
|
2005-09-15 09:58:31 -04:00
|
|
|
history_item->box_item->visible = 1;
|
|
|
|
} else {
|
|
|
|
history_item->box_item->visible = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
read_global_history(void)
|
|
|
|
{
|
|
|
|
unsigned char in_buffer[MAX_STR_LEN * 3];
|
|
|
|
unsigned char *file_name = GLOBAL_HISTORY_FILENAME;
|
|
|
|
unsigned char *title;
|
|
|
|
FILE *f;
|
|
|
|
|
|
|
|
if (!get_globhist_enable()
|
|
|
|
|| get_cmd_opt_bool("anonymous"))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (elinks_home) {
|
2007-03-11 06:59:11 -04:00
|
|
|
file_name = straconcat(elinks_home, file_name,
|
|
|
|
(unsigned char *) NULL);
|
2005-09-15 09:58:31 -04:00
|
|
|
if (!file_name) return;
|
|
|
|
}
|
|
|
|
f = fopen(file_name, "rb");
|
|
|
|
if (elinks_home) mem_free(file_name);
|
|
|
|
if (!f) return;
|
|
|
|
|
|
|
|
title = in_buffer;
|
|
|
|
global_history.nosave = 1;
|
|
|
|
|
|
|
|
while (fgets(in_buffer, sizeof(in_buffer), f)) {
|
|
|
|
unsigned char *url, *last_visit, *eol;
|
|
|
|
|
2016-04-20 13:43:37 -04:00
|
|
|
url = strchr((const char *)title, '\t');
|
2005-09-15 09:58:31 -04:00
|
|
|
if (!url) continue;
|
|
|
|
*url++ = '\0'; /* Now url points to the character after \t. */
|
|
|
|
|
2016-04-20 13:43:37 -04:00
|
|
|
last_visit = strchr((const char *)url, '\t');
|
2005-09-15 09:58:31 -04:00
|
|
|
if (!last_visit) continue;
|
|
|
|
*last_visit++ = '\0';
|
|
|
|
|
2016-04-20 13:43:37 -04:00
|
|
|
eol = strchr((const char *)last_visit, '\n');
|
2005-09-15 09:58:31 -04:00
|
|
|
if (!eol) continue;
|
|
|
|
*eol = '\0'; /* Drop ending '\n'. */
|
|
|
|
|
|
|
|
add_global_history_item(url, title, str_to_time_t(last_visit));
|
|
|
|
}
|
|
|
|
|
|
|
|
global_history.nosave = 0;
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
write_global_history(void)
|
|
|
|
{
|
|
|
|
struct global_history_item *history_item;
|
|
|
|
unsigned char *file_name;
|
|
|
|
struct secure_save_info *ssi;
|
|
|
|
|
|
|
|
if (!global_history.dirty || !elinks_home
|
|
|
|
|| !get_globhist_enable()
|
|
|
|
|| get_cmd_opt_bool("anonymous"))
|
|
|
|
return;
|
|
|
|
|
2007-03-11 06:59:11 -04:00
|
|
|
file_name = straconcat(elinks_home, GLOBAL_HISTORY_FILENAME,
|
|
|
|
(unsigned char *) NULL);
|
2005-09-15 09:58:31 -04:00
|
|
|
if (!file_name) return;
|
|
|
|
|
2006-01-10 17:49:35 -05:00
|
|
|
ssi = secure_open(file_name);
|
2005-09-15 09:58:31 -04:00
|
|
|
mem_free(file_name);
|
|
|
|
if (!ssi) return;
|
|
|
|
|
|
|
|
foreachback (history_item, global_history.entries) {
|
2007-01-12 16:47:45 -05:00
|
|
|
if (secure_fprintf(ssi, "%s\t%s\t%"TIME_PRINT_FORMAT"\n",
|
2005-09-15 09:58:31 -04:00
|
|
|
history_item->title,
|
|
|
|
history_item->url,
|
2007-01-12 16:47:45 -05:00
|
|
|
(time_print_T) history_item->last_visit) < 0)
|
|
|
|
break;
|
2005-09-15 09:58:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!secure_close(ssi)) global_history.dirty = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
free_global_history(void)
|
|
|
|
{
|
|
|
|
if (globhist_cache) {
|
2006-05-31 13:33:36 -04:00
|
|
|
free_hash(&globhist_cache);
|
2005-09-15 09:58:31 -04:00
|
|
|
globhist_cache_entries = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (!list_empty(global_history.entries))
|
|
|
|
delete_global_history_item(global_history.entries.next);
|
2006-05-03 09:50:38 -04:00
|
|
|
|
|
|
|
reap_deleted_globhist_items();
|
2005-09-15 09:58:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static enum evhook_status
|
|
|
|
global_history_write_hook(va_list ap, void *data)
|
|
|
|
{
|
|
|
|
write_global_history();
|
|
|
|
return EVENT_HOOK_STATUS_NEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct event_hook_info global_history_hooks[] = {
|
|
|
|
{ "periodic-saving", 0, global_history_write_hook, NULL },
|
|
|
|
|
|
|
|
NULL_EVENT_HOOK_INFO,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
init_global_history(struct module *module)
|
|
|
|
{
|
|
|
|
read_global_history();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
done_global_history(struct module *module)
|
|
|
|
{
|
|
|
|
write_global_history();
|
|
|
|
free_global_history();
|
|
|
|
mem_free_if(gh_last_searched_title);
|
|
|
|
mem_free_if(gh_last_searched_url);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct module global_history_module = struct_module(
|
|
|
|
/* name: */ N_("Global History"),
|
|
|
|
/* options: */ global_history_options,
|
|
|
|
/* events: */ global_history_hooks,
|
|
|
|
/* submodules: */ NULL,
|
|
|
|
/* data: */ NULL,
|
|
|
|
/* init: */ init_global_history,
|
|
|
|
/* done: */ done_global_history
|
|
|
|
);
|