Espero que isso ajude alguém.
Porque Jas- exemplo em jsfiddle não funciona para mim, eu vim com esta solução. (obrigado a Serge Seletskyy e Shourav pelos bits que usei no código abaixo)
Abaixo está a função que pode ser usada para testar quanto espaço está disponível para localStorage e (se alguma chave já estiver em IS) quanto espaço resta.
É um pouco de força bruta, mas funciona em quase todos os navegadores ... exceto no Firefox. Bem, no FF de desktop leva anos (4-5min) para ser concluído, e no Android simplesmente trava.
Abaixo da função está um breve resumo dos testes que fiz em diferentes navegadores em diferentes plataformas. Aproveitar!
function testLocalStorage() {
var timeStart = Date.now();
var timeEnd, countKey, countValue, amountLeft, itemLength;
var occupied = leftCount = 3; //Shurav's comment on initial overhead
//create localStorage entries until localStorage is totally filled and browser issues a warning.
var i = 0;
while (!error) {
try {
//length of the 'value' was picked to be a compromise between speed and accuracy,
// the longer the 'value' the quicker script and result less accurate. This one is around 2Kb
localStorage.setItem('testKey' + i, '11111111112222222222333333333344444444445555555555666661111111111222222222233333333334444444444555555555566666');
} catch (e) {
var error = e;
}
i++;
}
//if the warning was issued - localStorage is full.
if (error) {
//iterate through all keys and values to count their length
for (var i = 0; i < localStorage.length; i++) {
countKey = localStorage.key(i);
countValue = localStorage.getItem(localStorage.key(i));
itemLength = countKey.length + countValue.length;
//if the key is one of our 'test' keys count it separately
if (countKey.indexOf("testKey") !== -1) {
leftCount = leftCount + itemLength;
}
//count all keys and their values
occupied = occupied + itemLength;
}
;
//all keys + values lenght recalculated to Mb
occupied = (((occupied * 16) / (8 * 1024)) / 1024).toFixed(2);
//if there are any other keys then our 'testKeys' it will show how much localStorage is left
amountLeft = occupied - (((leftCount * 16) / (8 * 1024)) / 1024).toFixed(2);
//iterate through all localStorage keys and remove 'testKeys'
Object.keys(localStorage).forEach(function(key) {
if (key.indexOf("testKey") !== -1) {
localStorage.removeItem(key);
}
});
}
//calculate execution time
var timeEnd = Date.now();
var time = timeEnd - timeStart;
//create message
var message = 'Finished in: ' + time + 'ms \n total localStorage: ' + occupied + 'Mb \n localStorage left: ' + amountLeft + "Mb";
//put the message on the screen
document.getElementById('scene').innerText = message; //this works with Chrome,Safari, Opera, IE
//document.getElementById('scene').textContent = message; //Required for Firefox to show messages
}
E como prometido acima, alguns testes em diferentes navegadores:
GalaxyTab 10.1
- Maxthon Pad 1.7 ~ 1130ms 5Mb
- Firefox 20.0 (Beta 20.0) travou ambos
- Chrome 25.0.1364.169 ~ 22250ms / 5Mb
- Nativo (identifica-se como Safari 4.0 / Webkit534.30) ~ 995ms / 5Mb
iPhone 4s iOS 6.1.3
- Safari ~ 520ms / 5Mb
- Como HomeApp ~ 525ms / 5Mb
- iCab ~ 710ms / 5mb
MacBook Pro OSX 1.8.3 (Core 2 Duo 2.66 8 Gb de memória)
- Safari 6.0.3 ~ 105ms / 5Mb
- Chrome 26.0.1410.43 ~ 3400ms / 5Mb
- Firefox 20.0 300150ms (!) / 10Mb (depois de reclamar sobre a longa execução do script)
iPad 3 iOS 6.1.3
- Safari ~ 430ms / 5Mb
- iCab ~ 595ms / 5mb
Windows 7 -64b (Core 2 Duo 2,93 6 Gb de memória)
- Safari 5.1.7 ~ 80ms / 5Mb
- Chrome 26.0.1410.43 ~ 1220ms / 5Mb
- Firefox 20.0 228500ms (!) / 10Mb (após reclamar sobre a longa execução do script)
- IE9 ~ 17900ms /9.54Mb (se algum console.log estiver no código, não funciona até que DevTools seja aberto)
- Opera 12,15 ~ 4212ms / 3,55Mb (isto é quando 5Mb é selecionado, mas o Opera pergunta educadamente se queremos aumentar a quantidade de lS, infelizmente ele trava se o teste for realizado algumas vezes consecutivas)
Vitória 8 (no Paralelo 8)