summaryrefslogtreecommitdiff
path: root/content/llcache.c
Commit message (Collapse)AuthorAgeFilesLines
* improve comments in low level cache and remove completed todoVincent Sanders2014-12-041-4/+4
|
* move the low bandwidth check to allow for an average over a much longer timeVincent Sanders2014-12-031-21/+72
|
* Use translated messgae for low bandwidth errorVincent Sanders2014-12-021-1/+1
|
* cope with backing store writeout making no progressVincent Sanders2014-12-011-44/+52
|
* ensure the backing store write reports at least a minimal amount of timeVincent Sanders2014-12-011-0/+7
|
* Improve writeout rescheduling if list of objects is completed quicklyVincent Sanders2014-11-301-9/+11
|
* correctly calculate writeout bandwidth and properly impose limitsVincent Sanders2014-11-291-19/+63
|
* Improve llcache writeout stratagyVincent Sanders2014-11-281-21/+42
|
* update the backing store to allow for invalidating entries which have an ↵Vincent Sanders2014-11-271-1/+5
| | | | allocation
* stop using gettimeofday and use the monotonic time interface fron nsutilsVincent Sanders2014-11-261-8/+10
|
* caclulate the total amount of time spent writing an object outVincent Sanders2014-11-251-19/+34
| | | | | | In order to calculate the writeout bandwidth we need to know how long it took to write the data to peristant storage in addition to how much was written.
* correctly release source data from llcacheVincent Sanders2014-11-231-1/+8
|
* Improve doxygen comments and add todo for cache and backing storeVincent Sanders2014-11-231-56/+135
|
* change the persistant data store to owning the allocationsVincent Sanders2014-11-221-19/+17
|
* Doxygen cleanupsVincent Sanders2014-11-091-3/+3
|
* Update the core to use the split operations table headersVincent Sanders2014-10-161-2/+5
| | | | Second in the series to decouple the core API usage from the frontends.
* clean up the fetcher factory and improve its APIVincent Sanders2014-06-191-8/+0
|
* turn off debugging and add some comments and todo from dsilversVincent Sanders2014-06-031-7/+9
|
* Adjust the llcache behaviour to use scheduler for user notification.Daniel Silverstone2014-06-031-2/+43
| | | | | | | | | | | | | This change updates the llcache to use the scheduler to notify users of the llcache of events. This should be just as safe as before and is part of an effort to remove hlcache_poll and llcache_poll eventually because fetchers should schedule themselves if need-be. This is a big change despite the diminutive nature of the patch. Please report issues promptly if they turn up after this and are not visible before it. Signed-off-by: Daniel Silverstone <dsilvers@netsurf-browser.org> Reviewed-by: Vincent Sanders <vince@netsurf-browser.org>
* attempt to purge low level cache on out of memory during fetchVincent Sanders2014-05-291-42/+60
|
* Fix leak of url schemes.Michael Drake2014-05-161-0/+1
|
* add helpers for time_t reading/writingVincent Sanders2014-05-151-26/+36
|
* add strptime compatabilityVincent Sanders2014-05-131-0/+2
|
* Extend low level source data cache with persistant storageVincent Sanders2014-05-131-139/+854
|
* Improve llcache header processingVincent Sanders2014-03-091-7/+22
| | | | | | By skipping empty headers and correctly dealing with whitespace around header names we store fewer entries with better adherance to allowed values in http responses.
* only try and cache http and https urlsVincent Sanders2014-03-091-7/+28
|
* remove unnecessary caching of whether a url has a query elementVincent Sanders2014-03-091-10/+1
|
* make nsurl_defragment() API more obvious and remove duplicated parameter ↵Vincent Sanders2014-03-091-7/+3
| | | | checking
* Make llcache debugging less invasiveVincent Sanders2014-02-211-67/+33
|
* Witespace cleanup to prepare for backing store additionVincent Sanders2014-02-211-122/+121
|
* Use corestrings.Michael Drake2014-01-241-28/+6
|
* Pass fetch redirect info up to content layer as content_msg. Mark redirect ↵Michael Drake2013-05-271-2/+13
| | | | origin URLs as visited in browser window content callback. Note this doesn't mean we track redirects, it just lets us get the :visited link style on links that redirect.
* ensure parameter contract is metVincent Sanders2013-05-041-0/+1
|
* free memory on error pathVincent Sanders2013-05-011-2/+6
|
* Initial changes ready to improve caching decisionsVincent Sanders2013-01-071-28/+63
|
* Downgrade TLS version support if it turns out the server can't cope with ↵John-Mark Bell2013-01-041-0/+53
| | | | TLSv1.1.
* Fixup for nsurl urldb.Michael Drake2012-10-091-1/+1
|
* cleanup and reorganise low level cache source ready for extending with disc ↵Vincent Sanders2012-04-281-1476/+1420
| | | | | | cache svn path=/trunk/netsurf/; revision=13893
* Fix bogus cache validation decisionJohn Mark Bell2011-12-081-1/+1
| | | | svn path=/trunk/netsurf/; revision=13261
* Rename nsurl_enquire to nsurl_has_component.Michael Drake2011-11-271-2/+2
| | | | svn path=/trunk/netsurf/; revision=13183
* Clean up fetch callback API. Inject some long-needed type safety.John Mark Bell2011-11-081-33/+35
| | | | svn path=/trunk/netsurf/; revision=13137
* Avoid making a new nsurl to remove fragment if there is no fragment.Michael Drake2011-10-051-5/+10
| | | | svn path=/trunk/netsurf/; revision=12958
* Make llcache_handle_get_url return a nsurl.Michael Drake2011-09-281-4/+2
| | | | svn path=/trunk/netsurf/; revision=12905
* Port llcache to nsurl.Michael Drake2011-09-281-150/+97
| | | | svn path=/trunk/netsurf/; revision=12904
* Port fetch layer to nsurl. Remove unused fetch_get_referer function.Michael Drake2011-09-271-3/+45
| | | | svn path=/trunk/netsurf/; revision=12899
* Make high level cache, low level cache and image cache all be initialised ↵Vincent Sanders2011-09-101-35/+54
| | | | | | | | | from passed parameters Calculate all cache sizes from single memory cache size option and sanity check have a single global struct to hold all parameters instead of several individual variables svn path=/trunk/netsurf/; revision=12784
* Handle zero-length documents correctlyJohn Mark Bell2011-09-081-0/+18
| | | | svn path=/trunk/netsurf/; revision=12778
* Sniff content types where appropriate.John Mark Bell2011-09-041-1/+16
| | | | | | We never sniff for CSS, nor for non-page artefacts (e.g. treeview icons) svn path=/trunk/netsurf/; revision=12707
* Implement todoJohn Mark Bell2011-05-161-4/+1
| | | | svn path=/trunk/netsurf/; revision=12418
* Squash static analyser warningJohn Mark Bell2011-05-161-3/+0
| | | | svn path=/trunk/netsurf/; revision=12416