mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-28 05:27:15 +03:00
Fix JS memory leak
The memory leak can be reproduced easily by opening two web pages of qbittorrent so that the WebUI pages are updated with full_update = true. If you have a large number of torrents, such as 100 torrents, you can observe a rapid increase in memory usage. This is caused by the incorrect usage of dispose and empty methods in the js codes and none of them garbage collect the elements. If event listeners are added to the DOM elements, those DOM elements will not be garbage collected at all event if they are not referenced or out of the scope, which will cause memory leaks. If some elements are expected to be removed, the correct way is to use destroy method instead. https://github.com/mootools/mootools-core/blob/master/Docs/Element/Element.md#element-method-dispose-elementdispose https://github.com/mootools/mootools-core/blob/master/Docs/Element/Element.md#element-method-empty-elementempty https://github.com/mootools/mootools-core/blob/master/Docs/Element/Element.md#element-method-destroy-elementdestroy Closes #19034. PR #19969.
This commit is contained in:
parent
19b88b7f4a
commit
9fde5634f1
7 changed files with 15 additions and 18 deletions
|
@ -455,7 +455,7 @@ window.addEvent('load', function() {
|
|||
const categoryList = $('categoryFilterList');
|
||||
if (!categoryList)
|
||||
return;
|
||||
categoryList.empty();
|
||||
categoryList.getChildren().each(c => c.destroy());
|
||||
|
||||
const create_link = function(hash, text, count) {
|
||||
let display_name = text;
|
||||
|
@ -540,8 +540,7 @@ window.addEvent('load', function() {
|
|||
if (tagFilterList === null)
|
||||
return;
|
||||
|
||||
while (tagFilterList.firstChild !== null)
|
||||
tagFilterList.removeChild(tagFilterList.firstChild);
|
||||
tagFilterList.getChildren().each(c => c.destroy());
|
||||
|
||||
const createLink = function(hash, text, count) {
|
||||
const html = '<a href="#" onclick="setTagFilter(' + hash + ');return false;">'
|
||||
|
@ -594,8 +593,7 @@ window.addEvent('load', function() {
|
|||
if (trackerFilterList === null)
|
||||
return;
|
||||
|
||||
while (trackerFilterList.firstChild !== null)
|
||||
trackerFilterList.removeChild(trackerFilterList.firstChild);
|
||||
trackerFilterList.getChildren().each(c => c.destroy());
|
||||
|
||||
const createLink = function(hash, text, count) {
|
||||
const html = '<a href="#" onclick="setTrackerFilter(' + hash + ');return false;">'
|
||||
|
|
|
@ -444,7 +444,7 @@ window.qBittorrent.ContextMenu = (function() {
|
|||
|
||||
updateCategoriesSubMenu: function(category_list) {
|
||||
const categoryList = $('contextCategoryList');
|
||||
categoryList.empty();
|
||||
categoryList.getChildren().each(c => c.destroy());
|
||||
categoryList.appendChild(new Element('li', {
|
||||
html: '<a href="javascript:torrentNewCategoryFN();"><img src="images/list-add.svg" alt="QBT_TR(New...)QBT_TR[CONTEXT=TransferListWidget]"/> QBT_TR(New...)QBT_TR[CONTEXT=TransferListWidget]</a>'
|
||||
}));
|
||||
|
|
|
@ -817,8 +817,7 @@ window.qBittorrent.DynamicTable = (function() {
|
|||
let rowPos = rows.length;
|
||||
|
||||
while ((rowPos < trs.length) && (trs.length > 0)) {
|
||||
trs[trs.length - 1].dispose();
|
||||
trs.pop();
|
||||
trs.pop().destroy();
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -840,7 +839,7 @@ window.qBittorrent.DynamicTable = (function() {
|
|||
this.selectedRows.erase(rowId);
|
||||
const tr = this.getTrByRowId(rowId);
|
||||
if (tr !== null) {
|
||||
tr.dispose();
|
||||
tr.destroy();
|
||||
this.rows.erase(rowId);
|
||||
return true;
|
||||
}
|
||||
|
@ -852,8 +851,7 @@ window.qBittorrent.DynamicTable = (function() {
|
|||
this.rows.empty();
|
||||
const trs = this.tableBody.getElements('tr');
|
||||
while (trs.length > 0) {
|
||||
trs[trs.length - 1].dispose();
|
||||
trs.pop();
|
||||
trs.pop().destroy();
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -1562,7 +1560,7 @@ window.qBittorrent.DynamicTable = (function() {
|
|||
|
||||
if (!country_code) {
|
||||
if (td.getChildren('img').length > 0)
|
||||
td.getChildren('img')[0].dispose();
|
||||
td.getChildren('img')[0].destroy();
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -50,8 +50,7 @@ window.qBittorrent.PropWebseeds = (function() {
|
|||
|
||||
removeRow: function(url) {
|
||||
if (this.rows.has(url)) {
|
||||
const tr = this.rows.get(url);
|
||||
tr.dispose();
|
||||
this.rows.get(url).destroy();
|
||||
this.rows.erase(url);
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -424,4 +424,6 @@
|
|||
|
||||
return exports();
|
||||
})();
|
||||
|
||||
Object.freeze(window.qBittorrent.Log);
|
||||
</script>
|
||||
|
|
|
@ -1884,7 +1884,7 @@ Use ';' to split multiple entries. Can use wildcard '*'.)QBT_TR[CONTEXT=OptionsD
|
|||
// Advanced Tab
|
||||
const updateNetworkInterfaces = function(default_iface, default_iface_name) {
|
||||
const url = 'api/v2/app/networkInterfaceList';
|
||||
$('networkInterface').empty();
|
||||
$('networkInterface').getChildren().each(c => c.destroy());
|
||||
new Request.JSON({
|
||||
url: url,
|
||||
method: 'get',
|
||||
|
@ -1911,7 +1911,7 @@ Use ';' to split multiple entries. Can use wildcard '*'.)QBT_TR[CONTEXT=OptionsD
|
|||
|
||||
const updateInterfaceAddresses = function(iface, default_addr) {
|
||||
const url = 'api/v2/app/networkInterfaceAddressList';
|
||||
$('optionalIPAddressToBind').empty();
|
||||
$('optionalIPAddressToBind').getChildren().each(c => c.destroy());
|
||||
new Request.JSON({
|
||||
url: url,
|
||||
method: 'get',
|
||||
|
|
|
@ -402,13 +402,13 @@
|
|||
});
|
||||
});
|
||||
|
||||
$('rssDetailsView').empty();
|
||||
$('rssDetailsView').getChildren().each(c => c.destroy());
|
||||
rssArticleTable.updateTable(false);
|
||||
};
|
||||
|
||||
const showDetails = (feedUid, articleID) => {
|
||||
markArticleAsRead(pathByFeedId.get(feedUid), articleID);
|
||||
$('rssDetailsView').empty();
|
||||
$('rssDetailsView').getChildren().each(c => c.destroy());
|
||||
let article = feedData[feedUid].filter((article) => article.id === articleID)[0];
|
||||
if (article) {
|
||||
$('rssDetailsView').append((() => {
|
||||
|
|
Loading…
Reference in a new issue