AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Programmierung allgemein Netzwerke Delphi Memory full mit TWebBrowser
Thema durchsuchen
Ansicht
Themen-Optionen

Memory full mit TWebBrowser

Ein Thema von DavidKlimas · begonnen am 28. Apr 2019 · letzter Beitrag vom 31. Aug 2020
Antwort Antwort
DavidKlimas

Registriert seit: 24. Sep 2006
Ort: Arlon, Belgien
71 Beiträge
 
#1

Memory full mit TWebBrowser

  Alt 28. Apr 2019, 09:47
Hallo,

ich hab folgenden Code, welcher in einem Thread läuft. Leider wird nicht der ganze speicher freigegeben. Wenn ich die funktion vielmals ausführe stürzt Delphi irgendwann mit dem Fehler "Memory full" ab.

Weiss jemand warum der Speicher nicht freigegeben wird ? Ich habs mit '.free' versucht, und mit 'Navigate('about:blank')', aber es wird nicht besser.

Delphi-Quellcode:
    
    NameThreadForDebugging('TBrowserThread');
    CoInitialize(nil);
    TBrowserEmulationAdjuster.SetBrowserEmulationDWORD(TBrowserEmulationAdjuster.IE11_Quirks);
    MyBrowser := TWebBrowser.Create(nil);
    MyBrowser.ParentWindow := Application.Handle;
    MyBrowser.Silent := True;
    MyBrowser.OnNewWindow2 := TMyActions.BlockNewWindow;
    MyBrowser.Navigate(PLink, 4);
    while MyBrowser.ReadyState <> 4 do Application.ProcessMessages;
    StartTime := Now;
    while SecondsBetween(Now, StartTime) < 4 do Application.ProcessMessages;
    document := MyBrowser.Document as IHTMLDocument2;
    PBrut := document.body.innerHTML;
    PLink := MyBrowser.LocationURL;
    MyBrowser.Navigate('about:blank');
    MyBrowser.Free;
    CoUnInitialize;
  Mit Zitat antworten Zitat
Benutzerbild von Bernhard Geyer
Bernhard Geyer

Registriert seit: 13. Aug 2002
17.170 Beiträge
 
Delphi 10.4 Sydney
 
#2

AW: Memory full mit TWebBrowser

  Alt 28. Apr 2019, 09:50
Welche Delphi-Version?
bei älteren Versionen muss man bei diversen Interfaces mittels ._Release-Aufruf auf COM-Interfaces nachhelfen.
Windows Vista - Eine neue Erfahrung in Fehlern.
  Mit Zitat antworten Zitat
HolgerX

Registriert seit: 10. Apr 2006
Ort: Leverkusen
961 Beiträge
 
Delphi 6 Professional
 
#3

AW: Memory full mit TWebBrowser

  Alt 28. Apr 2019, 12:00
Hmm..

Hallo,

ich hab folgenden Code, welcher in einem Thread läuft.
..

Delphi-Quellcode:
    
..
    while MyBrowser.ReadyState <> 4 do Application.ProcessMessages;
..
    while SecondsBetween(Now, StartTime) < 4 do Application.ProcessMessages;
..
Autsch....

Application.ProcessMessages;

in einem SubThread...
  Mit Zitat antworten Zitat
Benutzerbild von Bernhard Geyer
Bernhard Geyer

Registriert seit: 13. Aug 2002
17.170 Beiträge
 
Delphi 10.4 Sydney
 
#4

AW: Memory full mit TWebBrowser

  Alt 28. Apr 2019, 14:05
Hmm..

Hallo,

ich hab folgenden Code, welcher in einem Thread läuft.
..

Delphi-Quellcode:
    
..
    while MyBrowser.ReadyState <> 4 do Application.ProcessMessages;
..
    while SecondsBetween(Now, StartTime) < 4 do Application.ProcessMessages;
..
Autsch....

Application.ProcessMessages;

in einem SubThread...
Wobei hier fraglich ist wie es nicht schon hinten und vorne knallt.
Zugriff auf GUI/VCL-Elemente in einem Anderen Thread sind. sagen wir mal so: "Was für Kamikaze-Programmierer"
Windows Vista - Eine neue Erfahrung in Fehlern.
  Mit Zitat antworten Zitat
berens

Registriert seit: 3. Sep 2004
431 Beiträge
 
Delphi 2010 Professional
 
#5

AW: Memory full mit TWebBrowser

  Alt 31. Aug 2020, 10:23
Man verzeihe mir meinen Beitrag so lange Zeit nach Thread-Erstellung, aber die Lösung zu dem Thema ansich (von dem ich auch früher schon betroffen war) habe ich hier in der DP nicht wiederfinden können. Deshalb hier meine Erfahrungswerte zu dem Thema:

Es gibt einen Bug mit Memory Leak in der TWebbrowser Komponente bis einschl. Delphi XE2. Sobald man auf ".Document" zugreift, wird Arbeitsspeicher belegt, der nicht wieder freigegeben wird. Ein Workaround war -meines Wissens- die Verwendung von ".DefaultInterface.Document", die "Lösung" war das manuelle patchen der Delphi-Quellcodedateien für den TWebbrowser.

Problembeschreibung hier: https://stackoverflow.com/questions/...er-memory-leak

Lösungsbeschreibung mit weiteren wichtigen Hinweisen: https://marc.durdin.net/2012/07/unde...-olectrls-pas/

Um 404-Verlinkungen in vielen Jahren vorzubeugen:
Zitat:
Understanding and correcting interface reference leaks in Delphi’s Vcl.OleCtrls.pas
July 2, 2012Bugs, Computing, Delphi, Development

Update 21 Sep 2015: This bug has been fixed in Delphi 10 Seattle.

I have spent quite some time recently tracing a memory leak in a Delphi application. It is quite a large application and makes a lot of use of embedded MSHTML (TWebBrowser and TEmbeddedWB) controls for presentation. Somehow, somewhere, we were leaking memory: users were reporting that after a few hours of use, the application slowed down, and checking Task Manager certainly reflected excessive memory usage.

The normal procedure to reproduce the memory leak was followed, including using tools such as AQtime and other debug logging tools. However, no leaks were detected using these tools, although we could see the memory usage increasing in Task Manager on our test machines. This suggested the memory we were leaking was not allocated by Delphi code: i.e. it was Windows or a 3rd party DLL. This doesn’t mean, of course, that it wasn’t our fault — just that it wasn’t allocated directly from Delphi source!

At this point, I was asked to trace this issue further. I ran Performance Monitor with a couple of key counters: Handle Count and Working Set. Running the test in question (involving opening and closing a window with an embedded web browser control) showed a gradual increase in both handle count and working set size. However, Performance Monitor unfortunately does not include a user handle (i.e. window handles) counter. It was when I noticed in Process Explorer that user handles were also increasing that I got my first break in tracing the cause.

It turned out that the embedded web browser window was not always being destroyed when its parent window was. This window had the class name “Internet Explorer_Server”.

With a bit more tracing, I found that the trigger was the Document or Application properties. If the Document property of the TWebBrowser control was ever referenced, the window was never destroyed (note, there are also some other properties that trigger the same behaviour — look for properties returning type IDispatch).

This set me to researching the Document property. It looks like this:

property Document: IDispatch index 203 read GetIDispatchProp;

Looking at GetIDispatchProp in Vcl.OleCtrls.pas, we see the following code:

function TOleControl.GetIDispatchProp(Index: Integer): IDispatch;
var
Temp: TVarData;
begin
GetProperty(Index, Temp);
Result := IDispatch(Temp.VDispatch);
end;

And here some alarm bells go off. Delphi, rather nicely, manages all the reference counting on interfaces. This works pretty smoothly, until you trick the compiler by casting other types to interfaces. Here the code in question is triggering an invisible call to IntfCopy in the line:

Result := IDispatch(Temp.VDispatch);

The IntfCopy function internally calls _AddRef on the object, but because of the cast to IDispatch from a Pointer, this new reference is never released. The fix is to change the function (and the similar GetIUnknownProp function) to:

function TOleControl.GetIDispatchProp(Index: Integer): IDispatch;
var
Temp: TVarData;
begin
GetProperty(Index, Temp);
Pointer(Result) := Temp.VDispatch;
end;

function TOleControl.GetIUnknownProp(Index: Integer): IUnknown;
var
Temp: TVarData;
begin
GetProperty(Index, Temp);
Pointer(Result) := Temp.VUnknown;
end;

By casting this way, we avoid the call to IntfCopy and hence the call to _AddRef. Alternatively, you could have called _Release on Result, but this would require another test to ensure that Result wasn’t nil (and also, of course, redundant _AddRef and _Release calls).

It turns out that this problem was identified way back in 1999 and the workaround has been commonly referenced since then. So I am not taking credit for the fix here! And yet it is still unresolved in Delphi XE2 — and so still causing trouble for Delphi programmers today! There are no clear references to the problem in QualityCentral that I could find (that’s about to change!)

But don’t stop reading yet!

“Now my app crashes”

There are frequent complaints online that this fix results in crashes. This is because other developers have engineered fixes to this reference leak in places where these GetIDispatchProp and/or GetIUnknownProp calls are made, rather than where the problem actually occurs. I have found this in TEmbeddedWB. TEmbeddedWB is a web browser hosting component that takes up where TWebBrowser leaves off, and it does fix a lot of the limitations of TWebBrowser.

But here are the places in the TEmbeddedWB source that you’ll need to “unfix” once you fix the root problem in Vcl.OleCtrls.pas:

EmbeddedWB.pas [2603]: (procedure TEmbeddedWB.SetUserAgentInt): Delete _Release call
EwbCore.pas [1367]: (procedure TCustomEmbeddedWB.SetDesignMode): Delete _Release call
EwbCore.pas [1404]: (procedure TCustomEmbeddedWB.SetDownloadOptions): Delete _Release call
EwbCore.pas [1468]: (procedure TCustomEmbeddedWB.SetUserInterfaceOptions): Delete _Release call
EwbTools.pas [1015]: (function GetBmpFromBrowser): Delete _Release call
EwbTools.pas [3164]: (function InvokeCMD): Delete _Release call

Note, you’ll also see an experimental fix buried — and disabled — in the TEmbeddedWB code (but without fixing the lines above), and without a whole lot of documentation as to why!

I have created a Quality Central report, along with a test case and example fix. I also checked the Delphi VCL source, and about 30 other components that we use, and found no more calls to _Release relating to this issue.
Delphi 10.4 32-Bit auf Windows 10 Pro 64-Bit, ehem. Delphi 2010 32-Bit auf Windows 10 Pro 64-Bit
  Mit Zitat antworten Zitat
Antwort Antwort

 

Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 03:50 Uhr.
Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz