mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
deal with situation that storage quota on html5 localstorage is exceeded:
- browser/user can limit quota, we then get an exception which must NOT stall EGroupware! - we set a smaller MAX_LOGS of 200 instead of current 1000 - if currently more log items stored OR if exception.name=="QuotaExceededError" we clear whole log (trying to clear old limit of 1000 messages)
This commit is contained in:
parent
e9a3d69e46
commit
3ec6ffe264
@ -16,6 +16,15 @@
|
|||||||
egw_core;
|
egw_core;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Log debug messages to browser console and persistent html5 localStorage
|
||||||
|
*
|
||||||
|
* localStorage is limited by a clientside quota, so we need to deal with
|
||||||
|
* situation that storing something in localStorage will throw an exception!
|
||||||
|
*
|
||||||
|
* @param {string} _app
|
||||||
|
* @param {object} _wnd
|
||||||
|
*/
|
||||||
egw.extend('debug', egw.MODULE_GLOBAL, function(_app, _wnd) {
|
egw.extend('debug', egw.MODULE_GLOBAL, function(_app, _wnd) {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -43,7 +52,7 @@ egw.extend('debug', egw.MODULE_GLOBAL, function(_app, _wnd) {
|
|||||||
*
|
*
|
||||||
* @type Number
|
* @type Number
|
||||||
*/
|
*/
|
||||||
var MAX_LOGS = 1000;
|
var MAX_LOGS = 200;
|
||||||
/**
|
/**
|
||||||
* Number of last old log entry = next one to overwrite
|
* Number of last old log entry = next one to overwrite
|
||||||
*
|
*
|
||||||
@ -93,10 +102,24 @@ egw.extend('debug', egw.MODULE_GLOBAL, function(_app, _wnd) {
|
|||||||
{
|
{
|
||||||
window.localStorage[LASTLOG] = 0;
|
window.localStorage[LASTLOG] = 0;
|
||||||
}
|
}
|
||||||
|
// check if MAX_LOGS changed in code --> clear whole log
|
||||||
|
if (window.localStorage[LASTLOG] > MAX_LOGS)
|
||||||
|
{
|
||||||
|
clear_client_log();
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
window.localStorage[LOG_PREFIX+window.localStorage[LASTLOG]] = JSON.stringify(data);
|
window.localStorage[LOG_PREFIX+window.localStorage[LASTLOG]] = JSON.stringify(data);
|
||||||
|
window.localStorage[LASTLOG] = (1 + parseInt(window.localStorage[LASTLOG])) % MAX_LOGS;
|
||||||
}
|
}
|
||||||
catch(e) {
|
catch(e) {
|
||||||
|
switch (e.name)
|
||||||
|
{
|
||||||
|
case 'QuotaExceededError': // storage quota is exceeded --> delete whole log
|
||||||
|
|
||||||
|
clear_client_log();
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
// one of the args is not JSON.stringify, because it contains circular references eg. an et2 widget
|
// one of the args is not JSON.stringify, because it contains circular references eg. an et2 widget
|
||||||
for(var i=0; i < data.args.length; ++i)
|
for(var i=0; i < data.args.length; ++i)
|
||||||
{
|
{
|
||||||
@ -122,10 +145,16 @@ egw.extend('debug', egw.MODULE_GLOBAL, function(_app, _wnd) {
|
|||||||
data.args[i] = '** removed, circular reference **';
|
data.args[i] = '** removed, circular reference **';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
window.localStorage[LOG_PREFIX+window.localStorage[LASTLOG]] = JSON.stringify(data);
|
|
||||||
}
|
}
|
||||||
|
try {
|
||||||
|
window.localStorage[LOG_PREFIX+window.localStorage[LASTLOG]] = JSON.stringify(data);
|
||||||
window.localStorage[LASTLOG] = (1 + parseInt(window.localStorage[LASTLOG])) % MAX_LOGS;
|
window.localStorage[LASTLOG] = (1 + parseInt(window.localStorage[LASTLOG])) % MAX_LOGS;
|
||||||
}
|
}
|
||||||
|
catch(e) {
|
||||||
|
// ignore error, if eg. localStorage exceeds quota on client
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get log from localStorage with oldest message first
|
* Get log from localStorage with oldest message first
|
||||||
@ -166,7 +195,13 @@ egw.extend('debug', egw.MODULE_GLOBAL, function(_app, _wnd) {
|
|||||||
|
|
||||||
if (!window.localStorage) return false;
|
if (!window.localStorage) return false;
|
||||||
|
|
||||||
for(var i=0; i < MAX_LOGS; ++i)
|
max = MAX_LOGS;
|
||||||
|
// check if we have more log entries then allowed, happens if MAX_LOGS get changed in code
|
||||||
|
if (window.localStorage[LASTLOG] > MAX_LOGS)
|
||||||
|
{
|
||||||
|
max = 1000; // this should NOT be changed, if MAX_LOGS get's smaller!
|
||||||
|
}
|
||||||
|
for(var i=0; i < max; ++i)
|
||||||
{
|
{
|
||||||
if (typeof window.localStorage[LOG_PREFIX+i] != 'undefined')
|
if (typeof window.localStorage[LOG_PREFIX+i] != 'undefined')
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user