2006-03-25 23:30:35 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2006 James Bursa <bursa@users.sourceforge.net>
|
|
|
|
* Copyright 2005 Richard Wilson <info@tinct.net>
|
2007-08-08 20:16:03 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf 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; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
2006-03-25 23:30:35 +03:00
|
|
|
*/
|
|
|
|
|
2014-11-09 18:48:38 +03:00
|
|
|
/**
|
|
|
|
* \file
|
2014-10-13 14:56:31 +04:00
|
|
|
* Browser history tree implementation.
|
2006-03-25 23:30:35 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
2014-01-30 01:35:53 +04:00
|
|
|
|
2014-10-13 14:56:31 +04:00
|
|
|
#include "utils/log.h"
|
|
|
|
#include "utils/utils.h"
|
2016-06-06 10:59:23 +03:00
|
|
|
#include "netsurf/layout.h"
|
|
|
|
#include "netsurf/content.h"
|
2017-09-20 20:58:19 +03:00
|
|
|
#include "netsurf/window.h"
|
2019-08-01 19:22:17 +03:00
|
|
|
#include "netsurf/browser_window.h"
|
2010-03-28 16:56:39 +04:00
|
|
|
#include "content/hlcache.h"
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "content/urldb.h"
|
2016-05-27 01:01:03 +03:00
|
|
|
#include "netsurf/bitmap.h"
|
2019-08-21 22:33:52 +03:00
|
|
|
#include "utils/corestrings.h"
|
2014-10-13 14:56:31 +04:00
|
|
|
|
2015-04-14 01:19:04 +03:00
|
|
|
#include "desktop/gui_internal.h"
|
2014-02-15 22:43:59 +04:00
|
|
|
#include "desktop/browser_private.h"
|
2021-03-24 01:03:33 +03:00
|
|
|
#include "desktop/local_history_private.h"
|
2019-08-01 19:22:17 +03:00
|
|
|
#include "desktop/browser_history.h"
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2006-04-22 20:38:13 +04:00
|
|
|
/**
|
|
|
|
* Clone a history entry
|
|
|
|
*
|
2014-11-09 18:48:38 +03:00
|
|
|
* \param history opaque history structure, as returned by history_create()
|
2017-09-10 18:05:41 +03:00
|
|
|
* \param entry entry to clone
|
2014-11-09 18:48:38 +03:00
|
|
|
* \return A cloned history entry or NULL on error
|
2006-04-22 20:38:13 +04:00
|
|
|
*/
|
2014-11-09 18:48:38 +03:00
|
|
|
static struct history_entry *
|
|
|
|
browser_window_history__clone_entry(struct history *history,
|
|
|
|
struct history_entry *entry)
|
2006-04-22 20:38:13 +04:00
|
|
|
{
|
|
|
|
struct history_entry *child;
|
2006-04-23 01:35:28 +04:00
|
|
|
struct history_entry *new_child;
|
|
|
|
struct history_entry *prev = NULL;
|
2006-04-22 20:38:13 +04:00
|
|
|
struct history_entry *new_entry;
|
|
|
|
|
2017-09-10 18:05:41 +03:00
|
|
|
assert(entry);
|
2007-04-18 06:52:26 +04:00
|
|
|
assert(entry->page.url);
|
|
|
|
assert(entry->page.title);
|
|
|
|
|
2006-04-22 20:38:13 +04:00
|
|
|
/* clone the entry */
|
2017-09-10 18:05:41 +03:00
|
|
|
new_entry = calloc(1, sizeof *entry);
|
|
|
|
if (!new_entry) {
|
2013-11-03 19:29:17 +04:00
|
|
|
return NULL;
|
2017-09-10 18:05:41 +03:00
|
|
|
}
|
2013-11-03 19:29:17 +04:00
|
|
|
|
2017-09-10 18:05:41 +03:00
|
|
|
/* copy page information */
|
2006-09-02 19:52:41 +04:00
|
|
|
new_entry->page.title = strdup(entry->page.title);
|
2017-09-10 18:05:41 +03:00
|
|
|
if (new_entry->page.title == NULL) {
|
|
|
|
free(new_entry);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
new_entry->page.url = nsurl_ref(entry->page.url);
|
|
|
|
if (new_entry->page.url == NULL) {
|
2006-09-02 19:52:41 +04:00
|
|
|
free(new_entry->page.title);
|
2006-06-29 02:45:48 +04:00
|
|
|
free(new_entry);
|
2013-11-03 19:29:17 +04:00
|
|
|
return NULL;
|
2006-04-22 22:24:18 +04:00
|
|
|
}
|
2006-11-27 18:35:18 +03:00
|
|
|
|
2017-09-10 18:05:41 +03:00
|
|
|
if (entry->page.frag_id == NULL) {
|
|
|
|
new_entry->page.frag_id = NULL;
|
|
|
|
} else {
|
|
|
|
new_entry->page.frag_id = lwc_string_ref(entry->page.frag_id);
|
|
|
|
if (new_entry->page.frag_id == NULL) {
|
|
|
|
nsurl_unref(new_entry->page.url);
|
|
|
|
free(new_entry);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (entry->page.bitmap == NULL) {
|
|
|
|
new_entry->page.bitmap = NULL;
|
|
|
|
} else {
|
|
|
|
/* create a new bitmap and copy original into it */
|
|
|
|
unsigned char *bmsrc_data;
|
|
|
|
unsigned char *bmdst_data;
|
|
|
|
size_t bmsize;
|
|
|
|
|
2019-08-02 23:23:06 +03:00
|
|
|
new_entry->page.bitmap = guit->bitmap->create(
|
|
|
|
LOCAL_HISTORY_WIDTH,
|
|
|
|
LOCAL_HISTORY_HEIGHT,
|
2022-03-24 21:09:28 +03:00
|
|
|
BITMAP_OPAQUE);
|
2017-09-10 18:05:41 +03:00
|
|
|
|
|
|
|
if (new_entry->page.bitmap != NULL) {
|
|
|
|
bmsrc_data = guit->bitmap->get_buffer(entry->page.bitmap);
|
|
|
|
bmdst_data = guit->bitmap->get_buffer(new_entry->page.bitmap);
|
|
|
|
bmsize = guit->bitmap->get_rowstride(new_entry->page.bitmap) *
|
|
|
|
guit->bitmap->get_height(new_entry->page.bitmap);
|
|
|
|
memcpy(bmdst_data, bmsrc_data, bmsize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* copy tree values */
|
|
|
|
new_entry->back = entry->back;
|
|
|
|
new_entry->next = entry->next;
|
|
|
|
new_entry->forward = entry->forward;
|
|
|
|
new_entry->forward_pref = entry->forward_pref;
|
|
|
|
new_entry->forward_last = entry->forward_last;
|
2006-04-22 20:38:13 +04:00
|
|
|
|
2006-04-23 01:35:28 +04:00
|
|
|
/* recurse for all children */
|
2017-09-10 18:05:41 +03:00
|
|
|
for (child = new_entry->forward; child != NULL; child = child->next) {
|
2014-02-15 22:43:59 +04:00
|
|
|
new_child = browser_window_history__clone_entry(history, child);
|
2017-09-10 18:05:41 +03:00
|
|
|
if (new_child == NULL) {
|
2013-11-03 19:29:17 +04:00
|
|
|
nsurl_unref(new_entry->page.url);
|
2017-09-10 18:05:41 +03:00
|
|
|
if (new_entry->page.frag_id) {
|
2013-11-03 19:29:17 +04:00
|
|
|
lwc_string_unref(new_entry->page.frag_id);
|
2017-09-10 18:05:41 +03:00
|
|
|
}
|
2013-11-03 19:29:17 +04:00
|
|
|
free(new_entry->page.title);
|
2017-09-10 18:05:41 +03:00
|
|
|
if (entry->page.bitmap != NULL) {
|
|
|
|
guit->bitmap->destroy(entry->page.bitmap);
|
|
|
|
}
|
2013-11-03 19:29:17 +04:00
|
|
|
free(new_entry);
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-09-10 18:05:41 +03:00
|
|
|
|
|
|
|
new_child->back = new_entry;
|
2006-04-23 01:35:28 +04:00
|
|
|
if (prev)
|
|
|
|
prev->next = new_child;
|
|
|
|
if (new_entry->forward == child)
|
|
|
|
new_entry->forward = new_child;
|
|
|
|
if (new_entry->forward_pref == child)
|
|
|
|
new_entry->forward_pref = new_child;
|
|
|
|
if (new_entry->forward_last == child)
|
|
|
|
new_entry->forward_last = new_child;
|
|
|
|
prev = new_child;
|
2006-04-22 20:38:13 +04:00
|
|
|
}
|
2017-09-10 18:05:41 +03:00
|
|
|
|
|
|
|
/* update references */
|
|
|
|
if (history->current == entry) {
|
|
|
|
history->current = new_entry;
|
|
|
|
}
|
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
return new_entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Free an entry in the tree recursively.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void browser_window_history__free_entry(struct history_entry *entry)
|
|
|
|
{
|
2017-09-10 18:05:41 +03:00
|
|
|
if (entry != NULL) {
|
|
|
|
browser_window_history__free_entry(entry->forward);
|
|
|
|
browser_window_history__free_entry(entry->next);
|
|
|
|
|
|
|
|
nsurl_unref(entry->page.url);
|
|
|
|
if (entry->page.frag_id) {
|
|
|
|
lwc_string_unref(entry->page.frag_id);
|
|
|
|
}
|
|
|
|
free(entry->page.title);
|
|
|
|
if (entry->page.bitmap != NULL) {
|
|
|
|
guit->bitmap->destroy(entry->page.bitmap);
|
|
|
|
}
|
|
|
|
free(entry);
|
|
|
|
}
|
2014-02-15 22:43:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Recursively position a subtree.
|
|
|
|
*
|
|
|
|
* \param history history being laid out
|
|
|
|
* \param entry subtree to position
|
|
|
|
* \param x x position for entry
|
|
|
|
* \param y smallest available y
|
|
|
|
* \return greatest y used by subtree
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int browser_window_history__layout_subtree(struct history *history,
|
2014-11-05 20:30:00 +03:00
|
|
|
struct history_entry *entry, int x, int y)
|
2014-02-15 22:43:59 +04:00
|
|
|
{
|
|
|
|
struct history_entry *child;
|
|
|
|
int y1 = y;
|
|
|
|
|
2019-08-02 23:23:06 +03:00
|
|
|
if (history->width < x + LOCAL_HISTORY_WIDTH)
|
|
|
|
history->width = x + LOCAL_HISTORY_WIDTH;
|
2014-02-15 22:43:59 +04:00
|
|
|
|
|
|
|
if (!entry->forward) {
|
|
|
|
entry->x = x;
|
|
|
|
entry->y = y;
|
2019-08-02 23:23:06 +03:00
|
|
|
return y + LOCAL_HISTORY_HEIGHT;
|
2014-02-15 22:43:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* layout child subtrees below each other */
|
|
|
|
for (child = entry->forward; child; child = child->next) {
|
|
|
|
y1 = browser_window_history__layout_subtree(history, child,
|
2019-08-02 23:23:06 +03:00
|
|
|
x + LOCAL_HISTORY_WIDTH + LOCAL_HISTORY_RIGHT_MARGIN, y1);
|
2014-02-15 22:43:59 +04:00
|
|
|
if (child->next)
|
2019-08-02 23:23:06 +03:00
|
|
|
y1 += LOCAL_HISTORY_BOTTOM_MARGIN;
|
2014-02-15 22:43:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* place ourselves in the middle */
|
|
|
|
entry->x = x;
|
2019-08-02 23:23:06 +03:00
|
|
|
entry->y = (y + y1) / 2 - LOCAL_HISTORY_HEIGHT / 2;
|
2014-02-15 22:43:59 +04:00
|
|
|
|
|
|
|
return y1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Compute node positions.
|
|
|
|
*
|
|
|
|
* \param history history to layout
|
|
|
|
*
|
|
|
|
* Each node's x and y are filled in.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void browser_window_history__layout(struct history *history)
|
|
|
|
{
|
|
|
|
if (!history)
|
|
|
|
return;
|
|
|
|
|
|
|
|
history->width = 0;
|
|
|
|
if (history->start)
|
|
|
|
history->height = browser_window_history__layout_subtree(
|
|
|
|
history, history->start,
|
2019-08-02 23:23:06 +03:00
|
|
|
LOCAL_HISTORY_RIGHT_MARGIN / 2,
|
|
|
|
LOCAL_HISTORY_BOTTOM_MARGIN / 2);
|
2014-02-15 22:43:59 +04:00
|
|
|
else
|
|
|
|
history->height = 0;
|
2014-11-05 20:30:00 +03:00
|
|
|
|
2019-08-02 23:23:06 +03:00
|
|
|
history->width += LOCAL_HISTORY_RIGHT_MARGIN / 2;
|
|
|
|
history->height += LOCAL_HISTORY_BOTTOM_MARGIN / 2;
|
2014-02-15 22:43:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enumerate subentries in history
|
|
|
|
* See also history_enumerate()
|
|
|
|
*
|
|
|
|
* \param bw The browser window to enumerate history of
|
|
|
|
* \param entry entry to start enumeration at
|
|
|
|
* \param cb callback function
|
|
|
|
* \param ud context pointer passed to cb
|
|
|
|
* \return true to continue enumeration, false to cancel
|
|
|
|
*/
|
|
|
|
static bool browser_window_history__enumerate_entry(
|
|
|
|
const struct browser_window *bw,
|
|
|
|
const struct history_entry *entry,
|
|
|
|
browser_window_history_enumerate_cb cb,
|
|
|
|
void *ud)
|
|
|
|
{
|
|
|
|
const struct history_entry *child;
|
|
|
|
|
|
|
|
if (!cb(bw, entry->x, entry->y,
|
2019-08-02 23:23:06 +03:00
|
|
|
entry->x + LOCAL_HISTORY_WIDTH,
|
|
|
|
entry->y + LOCAL_HISTORY_HEIGHT,
|
2014-02-15 22:43:59 +04:00
|
|
|
entry, ud))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for (child = entry->forward; child; child = child->next) {
|
|
|
|
if (!browser_window_history__enumerate_entry(bw, child,
|
|
|
|
cb, ud))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2014-02-15 22:43:59 +04:00
|
|
|
nserror browser_window_history_create(struct browser_window *bw)
|
|
|
|
{
|
|
|
|
struct history *history;
|
|
|
|
|
|
|
|
bw->history = NULL;
|
|
|
|
|
|
|
|
history = calloc(1, sizeof *history);
|
2014-10-30 01:14:48 +03:00
|
|
|
if (history == NULL) {
|
2014-02-15 22:43:59 +04:00
|
|
|
return NSERROR_NOMEM;
|
|
|
|
}
|
2014-10-30 01:14:48 +03:00
|
|
|
|
2019-08-02 23:23:06 +03:00
|
|
|
history->width = LOCAL_HISTORY_RIGHT_MARGIN / 2;
|
|
|
|
history->height = LOCAL_HISTORY_BOTTOM_MARGIN / 2;
|
2014-02-15 22:43:59 +04:00
|
|
|
|
|
|
|
bw->history = history;
|
2017-01-12 10:58:33 +03:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2014-02-19 18:08:52 +04:00
|
|
|
nserror browser_window_history_clone(const struct browser_window *existing,
|
|
|
|
struct browser_window *clone)
|
2014-02-15 22:43:59 +04:00
|
|
|
{
|
|
|
|
struct history *new_history;
|
|
|
|
|
2014-02-19 18:08:52 +04:00
|
|
|
clone->history = NULL;
|
2014-02-15 22:43:59 +04:00
|
|
|
|
2014-02-19 18:08:52 +04:00
|
|
|
if (existing == NULL || existing->history == NULL ||
|
|
|
|
existing->history->start == NULL)
|
|
|
|
/* Nothing to clone, create new history for clone window */
|
|
|
|
return browser_window_history_create(clone);
|
2014-02-15 22:43:59 +04:00
|
|
|
|
2014-02-19 18:08:52 +04:00
|
|
|
/* Make cloned history */
|
2014-02-15 22:43:59 +04:00
|
|
|
new_history = malloc(sizeof *new_history);
|
|
|
|
if (!new_history)
|
|
|
|
return NSERROR_NOMEM;
|
|
|
|
|
2014-02-19 18:08:52 +04:00
|
|
|
clone->history = new_history;
|
|
|
|
memcpy(new_history, existing->history, sizeof *new_history);
|
2014-02-15 22:43:59 +04:00
|
|
|
|
|
|
|
new_history->start = browser_window_history__clone_entry(new_history,
|
|
|
|
new_history->start);
|
|
|
|
if (!new_history->start) {
|
Use coccinelle to change logging macro calls in c files
for F in $(git ls-files '*.c');do spatch --sp-file foo.cocci --in-place ${F};done
@@ expression E; @@
-LOG(E);
+NSLOG(netsurf, INFO, E);
@@ expression E, E1; @@
-LOG(E, E1);
+NSLOG(netsurf, INFO, E, E1);
@@ expression E, E1, E2; @@
-LOG(E, E1, E2);
+NSLOG(netsurf, INFO, E, E1, E2);
@@ expression E, E1, E2, E3; @@
-LOG(E, E1, E2, E3);
+NSLOG(netsurf, INFO, E, E1, E2, E3);
@@ expression E, E1, E2, E3, E4; @@
-LOG(E, E1, E2, E3, E4);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4);
@@ expression E, E1, E2, E3, E4, E5; @@
-LOG(E, E1, E2, E3, E4, E5);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5);
@@ expression E, E1, E2, E3, E4, E5, E6; @@
-LOG(E, E1, E2, E3, E4, E5, E6);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6);
@@ expression E, E1, E2, E3, E4, E5, E6, E7; @@
-LOG(E, E1, E2, E3, E4, E5, E6, E7);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6, E7);
2017-09-06 20:28:12 +03:00
|
|
|
NSLOG(netsurf, INFO, "Insufficient memory to clone history");
|
2014-02-19 18:08:52 +04:00
|
|
|
browser_window_history_destroy(clone);
|
|
|
|
clone->history = NULL;
|
2014-02-15 22:43:59 +04:00
|
|
|
return NSERROR_NOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NSERROR_OK;
|
2006-04-22 20:38:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-30 01:47:25 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2017-09-10 18:05:41 +03:00
|
|
|
nserror
|
|
|
|
browser_window_history_add(struct browser_window *bw,
|
|
|
|
struct hlcache_handle *content,
|
|
|
|
lwc_string *frag_id)
|
2006-03-25 23:30:35 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
struct history *history;
|
2006-03-25 23:30:35 +03:00
|
|
|
struct history_entry *entry;
|
|
|
|
char *title;
|
2015-04-24 00:23:09 +03:00
|
|
|
nserror ret;
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
assert(bw);
|
|
|
|
assert(bw->history);
|
2006-03-25 23:30:35 +03:00
|
|
|
assert(content);
|
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
history = bw->history;
|
|
|
|
|
2006-03-25 23:30:35 +03:00
|
|
|
entry = malloc(sizeof *entry);
|
2014-10-30 01:47:25 +03:00
|
|
|
if (entry == NULL) {
|
|
|
|
return NSERROR_NOMEM;
|
|
|
|
}
|
2007-04-18 06:52:26 +04:00
|
|
|
|
2017-09-10 18:05:41 +03:00
|
|
|
/* page information */
|
2010-03-28 16:56:39 +04:00
|
|
|
title = strdup(content_get_title(content));
|
2009-11-22 17:10:39 +03:00
|
|
|
if (title == NULL) {
|
|
|
|
free(entry);
|
2014-10-30 01:47:25 +03:00
|
|
|
return NSERROR_NOMEM;
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
2017-09-10 18:05:41 +03:00
|
|
|
entry->page.url = nsurl_ref(hlcache_handle_get_url(content));
|
2017-09-10 12:30:27 +03:00
|
|
|
entry->page.frag_id = frag_id ? lwc_string_ref(frag_id) : NULL;
|
2006-09-02 19:52:41 +04:00
|
|
|
entry->page.title = title;
|
2017-09-20 20:58:19 +03:00
|
|
|
entry->page.scroll_x = 0.0f;
|
|
|
|
entry->page.scroll_y = 0.0f;
|
2017-09-10 12:30:27 +03:00
|
|
|
|
2017-09-10 18:05:41 +03:00
|
|
|
/* create thumbnail for localhistory view */
|
|
|
|
NSLOG(netsurf, DEBUG,
|
|
|
|
"Creating thumbnail for %s", nsurl_access(entry->page.url));
|
|
|
|
|
2019-08-02 23:23:06 +03:00
|
|
|
entry->page.bitmap = guit->bitmap->create(
|
|
|
|
LOCAL_HISTORY_WIDTH, LOCAL_HISTORY_HEIGHT,
|
2022-03-24 21:09:28 +03:00
|
|
|
BITMAP_CLEAR | BITMAP_OPAQUE);
|
2017-09-10 18:05:41 +03:00
|
|
|
if (entry->page.bitmap != NULL) {
|
|
|
|
ret = guit->bitmap->render(entry->page.bitmap, content);
|
|
|
|
if (ret != NSERROR_OK) {
|
|
|
|
/* Thumbnail render failed */
|
|
|
|
NSLOG(netsurf, WARNING, "Thumbnail render failed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* insert into tree */
|
2006-03-25 23:30:35 +03:00
|
|
|
entry->back = history->current;
|
2017-09-10 18:05:41 +03:00
|
|
|
entry->next = NULL;
|
|
|
|
entry->forward = entry->forward_pref = entry->forward_last = NULL;
|
2006-03-25 23:30:35 +03:00
|
|
|
entry->children = 0;
|
2017-09-10 12:30:27 +03:00
|
|
|
|
2006-03-25 23:30:35 +03:00
|
|
|
if (history->current) {
|
2017-09-10 12:30:27 +03:00
|
|
|
if (history->current->forward_last) {
|
2006-03-25 23:30:35 +03:00
|
|
|
history->current->forward_last->next = entry;
|
2017-09-10 12:30:27 +03:00
|
|
|
} else {
|
2006-03-25 23:30:35 +03:00
|
|
|
history->current->forward = entry;
|
2017-09-10 12:30:27 +03:00
|
|
|
}
|
2006-03-25 23:30:35 +03:00
|
|
|
history->current->forward_pref = entry;
|
|
|
|
history->current->forward_last = entry;
|
|
|
|
history->current->children++;
|
|
|
|
} else {
|
|
|
|
history->start = entry;
|
|
|
|
}
|
|
|
|
history->current = entry;
|
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
browser_window_history__layout(history);
|
2014-10-30 01:47:25 +03:00
|
|
|
|
|
|
|
return NSERROR_OK;
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-30 02:15:51 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
|
|
|
nserror browser_window_history_update(struct browser_window *bw,
|
2014-02-15 22:43:59 +04:00
|
|
|
struct hlcache_handle *content)
|
2006-03-25 23:30:35 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
struct history *history;
|
2007-04-18 06:52:26 +04:00
|
|
|
char *title;
|
2017-09-20 20:58:19 +03:00
|
|
|
int sx, sy;
|
2007-04-18 06:52:26 +04:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
assert(bw != NULL);
|
|
|
|
|
|
|
|
history = bw->history;
|
|
|
|
|
2021-03-24 01:04:36 +03:00
|
|
|
if ((history == NULL) || (history->current == NULL)) {
|
2014-10-30 02:15:51 +03:00
|
|
|
return NSERROR_INVALID;
|
|
|
|
}
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2007-04-18 06:52:26 +04:00
|
|
|
assert(history->current->page.url);
|
|
|
|
assert(history->current->page.title);
|
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
title = strdup(content_get_title(content));
|
2014-10-30 02:15:51 +03:00
|
|
|
if (title == NULL) {
|
|
|
|
return NSERROR_NOMEM;
|
2007-04-18 06:52:26 +04:00
|
|
|
}
|
2017-09-20 20:58:19 +03:00
|
|
|
NSLOG(netsurf, INFO, "Updating history entry for %s", title);
|
2007-04-18 06:52:26 +04:00
|
|
|
free(history->current->page.title);
|
|
|
|
history->current->page.title = title;
|
2006-11-27 18:35:18 +03:00
|
|
|
|
2017-09-10 18:05:41 +03:00
|
|
|
if (history->current->page.bitmap != NULL) {
|
|
|
|
guit->bitmap->render(history->current->page.bitmap, content);
|
|
|
|
}
|
2014-10-30 02:15:51 +03:00
|
|
|
|
2021-03-24 01:04:36 +03:00
|
|
|
if ((bw->window != NULL) &&
|
2017-09-23 18:10:45 +03:00
|
|
|
guit->window->get_scroll(bw->window, &sx, &sy)) {
|
2019-08-01 11:29:22 +03:00
|
|
|
int content_height = content_get_height(content);
|
|
|
|
int content_width = content_get_width(content);
|
2019-08-01 16:38:20 +03:00
|
|
|
/* clamp width and height values */
|
2019-08-01 11:29:22 +03:00
|
|
|
if (content_height < 1) {
|
|
|
|
content_height = 1;
|
|
|
|
}
|
|
|
|
if (content_width < 1) {
|
2019-08-01 16:38:20 +03:00
|
|
|
content_width = 1;
|
2019-08-01 11:29:22 +03:00
|
|
|
}
|
2017-09-20 20:58:19 +03:00
|
|
|
/* Successfully got scroll offsets, update the entry */
|
|
|
|
history->current->page.scroll_x = \
|
2019-08-01 11:29:22 +03:00
|
|
|
(float)sx / (float)content_width;
|
2017-09-20 20:58:19 +03:00
|
|
|
history->current->page.scroll_y = \
|
2019-08-01 11:29:22 +03:00
|
|
|
(float)sy / (float)content_height;
|
2017-09-20 20:58:19 +03:00
|
|
|
NSLOG(netsurf, INFO, "Updated scroll offsets to %g by %g",
|
|
|
|
history->current->page.scroll_x,
|
|
|
|
history->current->page.scroll_y);
|
|
|
|
}
|
2014-10-30 02:15:51 +03:00
|
|
|
return NSERROR_OK;
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
2017-09-20 20:58:19 +03:00
|
|
|
/* exported interface documented in desktop/browser_private.h */
|
|
|
|
nserror
|
|
|
|
browser_window_history_get_scroll(struct browser_window *bw,
|
|
|
|
float *sx, float *sy)
|
|
|
|
{
|
|
|
|
struct history *history;
|
|
|
|
|
|
|
|
assert(bw != NULL);
|
|
|
|
|
|
|
|
history = bw->history;
|
|
|
|
|
2021-03-24 01:04:36 +03:00
|
|
|
if ((history== NULL) || (history->current == NULL)) {
|
2017-09-20 20:58:19 +03:00
|
|
|
return NSERROR_INVALID;
|
|
|
|
}
|
|
|
|
|
|
|
|
*sx = history->current->page.scroll_x;
|
|
|
|
*sy = history->current->page.scroll_y;
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2017-09-20 20:58:19 +03:00
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2014-02-15 22:43:59 +04:00
|
|
|
void browser_window_history_destroy(struct browser_window *bw)
|
2006-03-25 23:30:35 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
assert(bw != NULL);
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
if (bw->history == NULL)
|
|
|
|
return;
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
browser_window_history__free_entry(bw->history->start);
|
|
|
|
free(bw->history);
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
bw->history = NULL;
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
|
|
|
nserror browser_window_history_back(struct browser_window *bw, bool new_window)
|
2006-03-25 23:30:35 +03:00
|
|
|
{
|
2019-08-21 22:33:52 +03:00
|
|
|
if (bw != NULL && bw->internal_nav) {
|
|
|
|
/* All internal nav back operations ignore new_window */
|
|
|
|
if (bw->current_parameters.url != NULL) {
|
|
|
|
/* There are some internal parameters, restart from there */
|
|
|
|
return browser_window__reload_current_parameters(bw);
|
|
|
|
} else {
|
|
|
|
/* No internal parameters, just navigate to about:blank */
|
|
|
|
return browser_window_navigate(
|
|
|
|
bw,
|
|
|
|
corestring_nsurl_about_blank,
|
|
|
|
NULL, /* Referer */
|
|
|
|
BW_NAVIGATE_HISTORY,
|
|
|
|
NULL, /* Post */
|
|
|
|
NULL, /* Post */
|
|
|
|
NULL /* parent fetch */);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
if (!bw || !bw->history || !bw->history->current ||
|
2014-10-31 01:19:42 +03:00
|
|
|
!bw->history->current->back) {
|
|
|
|
return NSERROR_BAD_PARAMETER;
|
|
|
|
}
|
|
|
|
return browser_window_history_go(bw, bw->history->current->back,
|
|
|
|
new_window);
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
|
|
|
nserror browser_window_history_forward(struct browser_window *bw,
|
|
|
|
bool new_window)
|
2006-03-25 23:30:35 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
if (!bw || !bw->history || !bw->history->current ||
|
2014-10-31 01:19:42 +03:00
|
|
|
!bw->history->current->forward_pref) {
|
|
|
|
return NSERROR_BAD_PARAMETER;
|
|
|
|
}
|
|
|
|
return browser_window_history_go(bw, bw->history->current->forward_pref,
|
|
|
|
new_window);
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2014-02-15 22:43:59 +04:00
|
|
|
bool browser_window_history_back_available(struct browser_window *bw)
|
2006-03-25 23:30:35 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
return (bw && bw->history && bw->history->current &&
|
|
|
|
bw->history->current->back);
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2014-02-15 22:43:59 +04:00
|
|
|
bool browser_window_history_forward_available(struct browser_window *bw)
|
2006-03-25 23:30:35 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
return (bw && bw->history && bw->history->current &&
|
|
|
|
bw->history->current->forward_pref);
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
2017-09-10 18:05:41 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
|
|
|
nserror
|
|
|
|
browser_window_history_get_thumbnail(struct browser_window *bw,
|
|
|
|
struct bitmap **bitmap_out)
|
|
|
|
{
|
|
|
|
struct bitmap *bitmap;
|
|
|
|
|
|
|
|
if (!bw || !bw->history || !bw->history->current) {
|
|
|
|
return NSERROR_INVALID;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bw->history->current->page.bitmap == NULL) {
|
|
|
|
bitmap = content_get_bitmap(bw->current_content);
|
|
|
|
} else {
|
|
|
|
bitmap = bw->history->current->page.bitmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
*bitmap_out = bitmap;
|
|
|
|
|
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
|
|
|
nserror browser_window_history_go(struct browser_window *bw,
|
2014-02-15 22:43:59 +04:00
|
|
|
struct history_entry *entry, bool new_window)
|
2006-03-25 23:30:35 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
struct history *history;
|
2013-02-14 19:09:28 +04:00
|
|
|
nsurl *url;
|
2006-04-22 22:24:18 +04:00
|
|
|
struct history_entry *current;
|
2013-02-14 19:09:28 +04:00
|
|
|
nserror error;
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
assert(bw != NULL);
|
|
|
|
history = bw->history;
|
2007-04-07 21:58:42 +04:00
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
if (entry->page.frag_id) {
|
2013-07-12 02:38:32 +04:00
|
|
|
error = nsurl_refragment(entry->page.url,
|
|
|
|
entry->page.frag_id, &url);
|
|
|
|
|
|
|
|
if (error != NSERROR_OK) {
|
2014-10-31 01:19:42 +03:00
|
|
|
return error;
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
2013-02-14 19:09:28 +04:00
|
|
|
} else {
|
2013-07-12 02:38:32 +04:00
|
|
|
url = nsurl_ref(entry->page.url);
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
2006-04-22 22:24:18 +04:00
|
|
|
if (new_window) {
|
|
|
|
current = history->current;
|
|
|
|
history->current = entry;
|
2013-02-14 22:21:11 +04:00
|
|
|
|
2014-02-17 16:31:02 +04:00
|
|
|
error = browser_window_create(BW_CREATE_CLONE,
|
2014-02-15 22:43:59 +04:00
|
|
|
url, NULL, bw, NULL);
|
2006-04-22 22:24:18 +04:00
|
|
|
history->current = current;
|
|
|
|
} else {
|
2018-01-20 21:47:26 +03:00
|
|
|
if (bw->current_content != NULL) {
|
|
|
|
browser_window_history_update(bw, bw->current_content);
|
|
|
|
}
|
2006-03-25 23:30:35 +03:00
|
|
|
history->current = entry;
|
2014-10-31 01:19:42 +03:00
|
|
|
error = browser_window_navigate(bw, url, NULL,
|
2017-09-20 20:58:19 +03:00
|
|
|
BW_NAVIGATE_NO_TERMINAL_HISTORY_UPDATE,
|
|
|
|
NULL, NULL, NULL);
|
2006-03-25 23:30:35 +03:00
|
|
|
}
|
|
|
|
|
2013-02-14 19:09:28 +04:00
|
|
|
nsurl_unref(url);
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
return error;
|
|
|
|
}
|
2006-03-25 23:30:35 +03:00
|
|
|
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2017-09-10 18:05:41 +03:00
|
|
|
void browser_window_history_enumerate_forward(const struct browser_window *bw,
|
2014-02-15 22:43:59 +04:00
|
|
|
browser_window_history_enumerate_cb cb, void *user_data)
|
2006-03-25 23:30:35 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
struct history_entry *e;
|
2006-03-25 23:30:35 +03:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
if (bw == NULL || bw->history == NULL || bw->history->current == NULL)
|
|
|
|
return;
|
2011-02-28 18:24:02 +03:00
|
|
|
|
2014-02-15 22:43:59 +04:00
|
|
|
e = bw->history->current->forward_pref;
|
|
|
|
for (; e != NULL; e = e->forward_pref) {
|
2019-08-02 23:23:06 +03:00
|
|
|
if (!cb(bw, e->x, e->y, e->x + LOCAL_HISTORY_WIDTH,
|
|
|
|
e->y + LOCAL_HISTORY_HEIGHT,
|
2014-02-15 22:43:59 +04:00
|
|
|
e, user_data))
|
2011-02-28 18:24:30 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
|
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2017-09-10 18:05:41 +03:00
|
|
|
void browser_window_history_enumerate_back(const struct browser_window *bw,
|
2014-02-15 22:43:59 +04:00
|
|
|
browser_window_history_enumerate_cb cb, void *user_data)
|
2011-02-28 18:24:30 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
struct history_entry *e;
|
|
|
|
|
|
|
|
if (bw == NULL || bw->history == NULL || bw->history->current == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (e = bw->history->current->back; e != NULL; e = e->back) {
|
2019-08-02 23:23:06 +03:00
|
|
|
if (!cb(bw, e->x, e->y, e->x + LOCAL_HISTORY_WIDTH,
|
|
|
|
e->y + LOCAL_HISTORY_HEIGHT,
|
2014-02-15 22:43:59 +04:00
|
|
|
e, user_data))
|
2011-02-28 18:24:30 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
|
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2014-02-15 22:43:59 +04:00
|
|
|
void browser_window_history_enumerate(const struct browser_window *bw,
|
|
|
|
browser_window_history_enumerate_cb cb, void *user_data)
|
2011-02-28 18:24:02 +03:00
|
|
|
{
|
2014-02-15 22:43:59 +04:00
|
|
|
if (bw == NULL || bw->history == NULL)
|
|
|
|
return;
|
|
|
|
browser_window_history__enumerate_entry(bw,
|
|
|
|
bw->history->start, cb, user_data);
|
2011-02-28 18:24:02 +03:00
|
|
|
}
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
|
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2017-06-10 20:34:05 +03:00
|
|
|
nsurl *browser_window_history_entry_get_url(const struct history_entry *entry)
|
2011-02-28 18:24:02 +03:00
|
|
|
{
|
2017-06-10 20:34:05 +03:00
|
|
|
return nsurl_ref(entry->page.url);
|
2011-02-28 18:24:02 +03:00
|
|
|
}
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
|
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2014-02-15 22:43:59 +04:00
|
|
|
const char *browser_window_history_entry_get_fragment_id(
|
|
|
|
const struct history_entry *entry)
|
2011-02-28 18:24:02 +03:00
|
|
|
{
|
2013-07-12 02:38:32 +04:00
|
|
|
return (entry->page.frag_id) ? lwc_string_data(entry->page.frag_id) : 0;
|
2011-02-28 18:24:02 +03:00
|
|
|
}
|
|
|
|
|
2014-10-31 01:19:42 +03:00
|
|
|
|
|
|
|
/* exported interface documented in desktop/browser_history.h */
|
2014-02-15 22:43:59 +04:00
|
|
|
const char *browser_window_history_entry_get_title(
|
|
|
|
const struct history_entry *entry)
|
2011-02-28 18:24:02 +03:00
|
|
|
{
|
|
|
|
return entry->page.title;
|
2011-02-28 18:24:30 +03:00
|
|
|
}
|