1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
/*
* File: history.c
*
* Copyright (C) 2001-2007 Jorge Arellano Cid <jcid@dillo.org>
*
* This program 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.
*/
/** @file
* Linear history (it also provides indexes for the navigation stack)
*/
#include "msg.h"
#include "list.h"
#include "history.h"
typedef struct {
DilloUrl *url;
char *title;
} H_Item;
/* Global history list */
static H_Item *history = NULL;
static int history_size = 0; /* [1 based] */
static int history_size_max = 16;
/**
* Debug procedure.
*/
void History_show()
{
int i;
MSG(" {");
for (i = 0; i < history_size; ++i)
MSG(" %s", URL_STR(history[i].url));
MSG(" }\n");
}
/**
* Add a new H_Item at the end of the history list
* (taking care of not making a duplicate entry)
*/
int a_History_add_url(DilloUrl *url)
{
int i, idx;
_MSG("a_History_add_url: '%s' ", URL_STR(url));
for (i = 0; i < history_size; ++i)
if (!a_Url_cmp(history[i].url, url) &&
!strcmp(URL_FRAGMENT(history[i].url), URL_FRAGMENT(url)))
break;
if (i < history_size) {
idx = i;
_MSG("FOUND at idx=%d\n", idx);
} else {
idx = history_size;
a_List_add(history, history_size, history_size_max);
history[idx].url = a_Url_dup(url);
history[idx].title = NULL;
++history_size;
_MSG("ADDED at idx=%d\n", idx);
}
/* History_show(); */
return idx;
}
/**
* Return the DilloUrl field (by index)
*/
const DilloUrl *a_History_get_url(int idx)
{
_MSG("a_History_get_url: ");
/* History_show(); */
dReturn_val_if_fail(idx >= 0 && idx < history_size, NULL);
return history[idx].url;
}
/**
* Return the title field (by index)
* ('force' returns URL_STR when there's no title)
*/
const char *a_History_get_title(int idx, int force)
{
dReturn_val_if_fail(idx >= 0 && idx < history_size, NULL);
if (history[idx].title)
return history[idx].title;
else if (force)
return URL_STR(history[idx].url);
else
return NULL;
}
/**
* Return the title field (by url)
* ('force' returns URL_STR when there's no title)
*/
const char *a_History_get_title_by_url(const DilloUrl *url, int force)
{
int i;
dReturn_val_if_fail(url != NULL, NULL);
for (i = 0; i < history_size; ++i)
if (a_Url_cmp(url, history[i].url) == 0)
break;
if (i < history_size && history[i].title)
return history[i].title;
else if (force)
return URL_STR_(url);
return NULL;
}
/**
* Set the page-title for a given URL
*/
void a_History_set_title_by_url(const DilloUrl *url, const char *title)
{
int i;
dReturn_if (url == NULL);
for (i = history_size - 1; i >= 0; --i)
if (a_Url_cmp(url, history[i].url) == 0)
break;
if (i >= 0) {
dFree(history[i].title);
history[i].title = dStrdup(title);
} else {
MSG_ERR("a_History_set_title_by_url: %s not found\n", URL_STR(url));
}
}
/**
* Free all the memory used by this module
*/
void a_History_freeall()
{
int i;
for (i = 0; i < history_size; ++i) {
a_Url_free(history[i].url);
dFree(history[i].title);
}
dFree(history);
}
|