*更新:有两个人告诉我,如果没有真实/完整的代码,很难帮助我。你几乎在下面有它,但如果我忘记了什么,就在这里!Laserrental.ca/MemoryProblem.zip
使用的 Delphi 版本:2007
你好,
我是线程和虚拟列表视图的新手,所以我的问题可能很容易解决;但是,我已经被困了几天。基本上,这就是我所拥有的:
http://image.noelshack.com/fichiers/2012/32/1344440638-urlsloader.png
用户单击加载 URL,URL 存储在以下记录中:
type TVirtualList=record
Item:Integer; // Index
SubItem1:String; // Status
SubItem2:String; // URL
end;
...
var
LURLs : Array of TVirtualList;
并且该记录用于填充Virtual Listview。这是 OnData 代码:
procedure TForm1.ListViewData(Sender: TObject; Item: TListItem);
begin
Item.Caption := IntToStr(LURLs[Item.Index].Item);
Item.SubItems.Add(LURLs[Item.Index].SubItem1);
Item.SubItems.Add(LURLs[Item.Index].SubItem2);
end;
当用户点击GO时,应用程序将启动一个线程来控制工作线程的创建。每个工作线程获取一个 URL,下载并解析它以获取更多信息。
现在,这是我的问题:内存消耗总是越来越高——至少,根据任务管理器的说法。如果我最小化应用程序并再次打开它,内存消耗会恢复正常......但虚拟内存消耗仍然非常高。现在,我知道很多人说任务管理器不可靠。然而,一段时间后,内存消耗变得如此之高,以至于无法再下载 URL。我收到EOutOfMemory错误。我的电脑变得超级慢。
根据 FastMM4,没有内存泄漏。
有趣的是:如果我清除 TVirtualList 记录,内存消耗——“正常”和虚拟的——都会恢复正常。但除非我这样做,否则它会保持在超高水平。显然,这是一个问题,因为我希望应用程序能够下载成千上万个 URL;但是有了这个错误,我不能走得太远。
清除 TVirtualList 记录的代码
ListView.Items.BeginUpdate;
SetLength(LURLs,0);
ListView.Items.Count := Length(LURLs);
ListView.Clear;
ListView.Items.EndUpdate;
因此,我将应用程序精简到了最基本的部分。没有解析,应用程序使用临界区加载单个本地 HMTL 文件,而不是下载文件。内存消耗问题仍然存在。
控制线程:
unit Loader;
interface
uses Classes, SysUtils, Windows, Thread, Forms;
type
TLoader = class(TThread)
private
{ Private declarations }
protected
procedure Execute; override;
procedure UpdateButtons;
procedure UpdateListView;
public
constructor Create;
end;
implementation
uses Main;
constructor TLoader.Create;
begin
inherited Create(False);
FreeOnTerminate := True;
end;
procedure TLoader.UpdateButtons;
begin
Form1.BSwitch(false); // Re-enable interface
end;
procedure TLoader.UpdateListView;
begin
Form1.ListView.Items.Item[BarP].MakeVisible(false); // Scroll down the listview
Application.ProcessMessages;
end;
procedure TLoader.Execute;
begin
while (BarP < Length(LURLs)) and (not(Terminated)) do // Is there any URL left?
begin
if (ThreadsR < StrToInt(Form1.Threads.Text)) then // Have we met the threads limit?
begin
Synchronize(UpdateListView);
TThreadWorker.Create(LURLs[BarP].SubItem1, BarP);
InterlockedIncrement(ThreadsR);
Inc(BarP);
end else Sleep(100);
end;
while (not(ThreadsR = 0)) do Sleep(100);
Synchronize(UpdateButtons);
end;
end.
工作线程:
unit Thread;
interface
uses Classes, SysUtils, Windows, Forms;
type
TThreadWorker = class(TThread)
private
{ Private declarations }
Position : Integer;
HtmlSourceCode : TStringList;
StatusMessage, TURL : String;
procedure UpdateStatus;
procedure EndThread;
procedure AssignVariables;
procedure DownloadURL;
protected
procedure Execute; override;
public
constructor Create(URL : String ; LNumber : Integer);
end;
implementation
uses Main;
var CriticalSection: TRTLCriticalSection;
constructor TThreadWorker.Create(URL : String ; LNumber : Integer);
begin
inherited Create(False);
TURL := URL;
Position := LNumber;
FreeOnTerminate := True;
end;
procedure TThreadWorker.UpdateStatus;
begin
LURLs[Position].SubItem1 := StatusMessage;
Form1.ListView.UpdateItems(Position,Position);
end;
procedure TThreadWorker.EndThread;
begin
StatusMessage := 'Success';
Synchronize(UpdateStatus);
InterlockedIncrement(NDone);
// I free Synapse THTTPSend variable.
HtmlSourceCode.Free;
InterlockedDecrement(ThreadsR);
end;
procedure TThreadWorker.AssignVariables;
begin
StatusMessage := 'Working...';
Synchronize(UpdateStatus);
// I initialize Synapse THTTPsend variable.
HtmlSourceCode := TStringList.Create;
end;
procedure TThreadWorker.DownloadURL;
begin
(* This is where I download the URL with Synapse. The result file is then loaded
with HtmlSourceCode for further parsing. *)
EnterCriticalSection(CriticalSection);
HtmlSourceCode.LoadFromFile(ExtractFilePath(application.exename)+'testfile.html');
LeaveCriticalSection(CriticalSection);
Randomize;
Sleep(1000+Random(1500)); // Only for simulation
end;
procedure TThreadWorker.Execute;
begin
AssignVariables;
DownloadURL;
EndThread;
end;
initialization
InitializeCriticalSection(CriticalSection);
finalization
DeleteCriticalSection(CriticalSection);
end.