summaryrefslogtreecommitdiff
path: root/frontends/amiga/hotlist.c
blob: 44691742c4c78ec4d459821794feda0f111b2eb4 (plain)
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
/*
 * Copyright 2008, 2009 Chris Young <chris@unsatisfactorysoftware.co.uk>
 *
 * 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/>.
 */

#include <string.h>
#include <proto/exec.h>

#include "utils/nsurl.h"
#include "desktop/hotlist.h"
#include "netsurf/mouse.h"
#include "netsurf/window.h"

#include "amiga/hotlist.h"
#include "amiga/tree.h"

struct ami_hotlist_ctx {
	void *userdata;
	int level;
	int item;
	const char *folder; /* folder we're interested in */
	bool in_menu; /* set if we are in that folder */
	bool found; /* set if the folder is found */
	bool (*cb)(void *userdata, int level, int item, const char *title, nsurl *url, bool folder);
};


void ami_hotlist_initialise(const char *hotlist_file)
{
	tree_hotlist_path = hotlist_file;
	hotlist_window = ami_tree_create(TREE_HOTLIST, NULL);
	if(!hotlist_window) return;
}

void ami_hotlist_free(const char *hotlist_file)
{
	ami_tree_destroy(hotlist_window);
	hotlist_window = NULL;
}


static nserror ami_hotlist_folder_enter_cb(void *ctx, const char *title)
{
	struct ami_hotlist_ctx *menu_ctx = (struct ami_hotlist_ctx *)ctx;

	if(menu_ctx->in_menu == true) {
		if(menu_ctx->cb(menu_ctx->userdata, menu_ctx->level, menu_ctx->item, title, NULL, true) == true)
			menu_ctx->item++;
	} else {
		if((menu_ctx->level == 0) && (strcmp(title, menu_ctx->folder) == 0)) {
			menu_ctx->in_menu = true;
			menu_ctx->found = true;
		}
	}
	menu_ctx->level++;
	return NSERROR_OK;
}

static nserror ami_hotlist_address_cb(void *ctx, nsurl *url, const char *title)
{
	struct ami_hotlist_ctx *menu_ctx = (struct ami_hotlist_ctx *)ctx;

	if(menu_ctx->in_menu == true) {
		if(menu_ctx->cb(menu_ctx->userdata, menu_ctx->level, menu_ctx->item, title, url, false) == true)
			menu_ctx->item++;
	}
	
	return NSERROR_OK;
}

static nserror ami_hotlist_folder_leave_cb(void *ctx)
{
	struct ami_hotlist_ctx *menu_ctx = (struct ami_hotlist_ctx *)ctx;

	menu_ctx->level--;

	if((menu_ctx->in_menu == true) && (menu_ctx->level == 0))
		menu_ctx->in_menu = false;

	return NSERROR_OK;
}

nserror ami_hotlist_scan(void *userdata, int first_item, const char *folder,
	bool (*cb_add_item)(void *userdata, int level, int item, const char *title, nsurl *url, bool folder))
{
	nserror error;
	struct ami_hotlist_ctx ctx;

	ctx.level = 0;
	ctx.item = first_item;
	ctx.folder = folder;
	ctx.in_menu = false;
	ctx.userdata = userdata;
	ctx.cb = cb_add_item;
	ctx.found = false;

	error = hotlist_iterate(&ctx,
		ami_hotlist_folder_enter_cb,
		ami_hotlist_address_cb,
		ami_hotlist_folder_leave_cb);

	if((error == NSERROR_OK) && (ctx.found == false))
		hotlist_add_folder(folder, false, 0);

	return error;
}