mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
72ace35626
--HG-- rename : browser/components/thumbnails/BrowserPageThumbs.manifest => toolkit/components/thumbnails/BrowserPageThumbs.manifest rename : browser/components/thumbnails/Makefile.in => toolkit/components/thumbnails/Makefile.in rename : browser/components/thumbnails/PageThumbs.jsm => toolkit/components/thumbnails/PageThumbs.jsm rename : browser/components/thumbnails/PageThumbsProtocol.js => toolkit/components/thumbnails/PageThumbsProtocol.js rename : browser/components/thumbnails/PageThumbsWorker.js => toolkit/components/thumbnails/PageThumbsWorker.js rename : browser/components/thumbnails/test/Makefile.in => toolkit/components/thumbnails/test/Makefile.in rename : browser/components/thumbnails/test/background_red.html => toolkit/components/thumbnails/test/background_red.html rename : browser/components/thumbnails/test/background_red_redirect.sjs => toolkit/components/thumbnails/test/background_red_redirect.sjs rename : browser/components/thumbnails/test/browser_thumbnails_bug726727.js => toolkit/components/thumbnails/test/browser_thumbnails_bug726727.js rename : browser/components/thumbnails/test/browser_thumbnails_capture.js => toolkit/components/thumbnails/test/browser_thumbnails_capture.js rename : browser/components/thumbnails/test/browser_thumbnails_expiration.js => toolkit/components/thumbnails/test/browser_thumbnails_expiration.js rename : browser/components/thumbnails/test/browser_thumbnails_privacy.js => toolkit/components/thumbnails/test/browser_thumbnails_privacy.js rename : browser/components/thumbnails/test/browser_thumbnails_redirect.js => toolkit/components/thumbnails/test/browser_thumbnails_redirect.js rename : browser/components/thumbnails/test/browser_thumbnails_storage.js => toolkit/components/thumbnails/test/browser_thumbnails_storage.js rename : browser/components/thumbnails/test/browser_thumbnails_storage_migrate3.js => toolkit/components/thumbnails/test/browser_thumbnails_storage_migrate3.js rename : browser/components/thumbnails/test/head.js => toolkit/components/thumbnails/test/head.js rename : browser/components/thumbnails/test/privacy_cache_control.sjs => toolkit/components/thumbnails/test/privacy_cache_control.sjs
109 lines
2.8 KiB
JavaScript
109 lines
2.8 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/**
|
|
* A worker dedicated for the I/O component of PageThumbs storage.
|
|
*
|
|
* Do not rely on the API of this worker. In a future version, it might be
|
|
* fully replaced by a OS.File global I/O worker.
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
importScripts("resource://gre/modules/osfile.jsm");
|
|
|
|
let PageThumbsWorker = {
|
|
handleMessage: function Worker_handleMessage(aEvent) {
|
|
let msg = aEvent.data;
|
|
let data = {result: null, data: null};
|
|
|
|
switch (msg.type) {
|
|
case "removeFile":
|
|
data.result = this.removeFile(msg);
|
|
break;
|
|
case "expireFilesInDirectory":
|
|
data.result = this.expireFilesInDirectory(msg);
|
|
break;
|
|
case "moveOrDeleteAllThumbnails":
|
|
data.result = this.moveOrDeleteAllThumbnails(msg);
|
|
break;
|
|
default:
|
|
data.result = false;
|
|
data.detail = "message not understood";
|
|
break;
|
|
}
|
|
|
|
self.postMessage(data);
|
|
},
|
|
|
|
removeFile: function Worker_removeFile(msg) {
|
|
try {
|
|
OS.File.remove(msg.path);
|
|
return true;
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
},
|
|
|
|
expireFilesInDirectory: function Worker_expireFilesInDirectory(msg) {
|
|
let entries = this.getFileEntriesInDirectory(msg.path, msg.filesToKeep);
|
|
let limit = Math.max(msg.minChunkSize, Math.round(entries.length / 2));
|
|
|
|
for (let entry of entries) {
|
|
this.removeFile(entry);
|
|
|
|
// Check if we reached the limit of files to remove.
|
|
if (--limit <= 0) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
},
|
|
|
|
getFileEntriesInDirectory:
|
|
function Worker_getFileEntriesInDirectory(aPath, aSkipFiles) {
|
|
let skip = new Set(aSkipFiles);
|
|
let iter = new OS.File.DirectoryIterator(aPath);
|
|
|
|
return [entry
|
|
for (entry in iter)
|
|
if (!entry.isDir && !entry.isSymLink && !skip.has(entry.name))];
|
|
},
|
|
|
|
moveOrDeleteAllThumbnails:
|
|
function Worker_moveOrDeleteAllThumbnails(msg) {
|
|
if (!OS.File.exists(msg.from))
|
|
return true;
|
|
|
|
let iter = new OS.File.DirectoryIterator(msg.from);
|
|
for (let entry in iter) {
|
|
if (entry.isDir || entry.isSymLink) {
|
|
continue;
|
|
}
|
|
|
|
let from = OS.Path.join(msg.from, entry.name);
|
|
let to = OS.Path.join(msg.to, entry.name);
|
|
|
|
try {
|
|
OS.File.move(from, to, {noOverwrite: true, noCopy: true});
|
|
} catch (e) {
|
|
OS.File.remove(from);
|
|
}
|
|
}
|
|
iter.close();
|
|
|
|
try {
|
|
OS.File.removeEmptyDir(msg.from);
|
|
} catch (e) {
|
|
// This could fail if there's something in
|
|
// the folder we're not permitted to remove.
|
|
}
|
|
|
|
return true;
|
|
}
|
|
};
|
|
|
|
self.onmessage = PageThumbsWorker.handleMessage.bind(PageThumbsWorker);
|