summaryrefslogtreecommitdiff
path: root/content/backing_store.h
blob: 849e11aeb20f004e6e0944052ad716bcbdf8e9ff (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
/*
 * Copyright 2014 Vincent Sanders <vince@netsurf-browser.org>
 *
 * 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/>.
 */

/** \file
 * Low-level source data cache backing store interface
 */

#ifndef NETSURF_CONTENT_LLCACHE_PRIVATE_H_
#define NETSURF_CONTENT_LLCACHE_PRIVATE_H_

#include "content/llcache.h"

/** storage control flags */
enum backing_store_flags {
	BACKING_STORE_NONE = 0, /**< no special processing */
	BACKING_STORE_META = 1, /**< data is metadata */
	BACKING_STORE_MMAP = 2, /**< when data is retrived this indicates the
				 * returned buffer may be memory mapped,
				 * flag must be cleared if the storage is
				 * allocated and is not memory mapped.
				 */
};

/** low level cache backing store operation table
 *
 * The low level cache (source objects) has the capability to make
 * objects and their metadata (headers etc) persistant by writing to a
 * backing store using these operations.
 */
struct gui_llcache_table {
	/**
	 * Initialise the backing store.
	 *
	 * @param parameters to configure backing store.
	 * @return NSERROR_OK on success or error code on faliure.
	 */
	nserror (*initialise)(const struct llcache_store_parameters *parameters);

	/**
	 * Finalise the backing store.
	 *
	 * @return NSERROR_OK on success or error code on faliure.
	 */
	nserror (*finalise)(void);

	/**
	 * Place an object in the backing store.
	 *
	 * @param url The url is used as the unique primary key for the data.
	 * @param flags The flags to control how the obejct is stored.
	 * @param data The objects data.
	 * @param datalen The length of the \a data.
	 * @return NSERROR_OK on success or error code on faliure.
	 */
	nserror (*store)(struct nsurl *url, enum backing_store_flags flags,
			 const uint8_t *data, const size_t datalen);

	/**
	 * Retrive an object from the backing store.
	 *
	 * @param url The url is used as the unique primary key for the data.
	 * @param flags The flags to control how the object is retrived.
	 * @param data The objects data.
	 * @param datalen The length of the \a data retrieved.
	 * @return NSERROR_OK on success or error code on faliure.
	 */
	nserror (*fetch)(struct nsurl *url, enum backing_store_flags *flags,
			 uint8_t **data, size_t *datalen);

	/**
	 * Invalidate a source object from the backing store.
	 *
	 * The entry (if present in the backing store) must no longer
	 * be returned as a result to the fetch or meta operations.
	 *
	 * @param url The url is used as the unique primary key to invalidate.
	 * @return NSERROR_OK on success or error code on faliure.
	 */
	nserror (*invalidate)(struct nsurl *url);
};

extern struct gui_llcache_table* null_llcache_table;
extern struct gui_llcache_table* filesystem_llcache_table;

#endif