BetSelection.cc

Public software => Gambling Programming => Community Software => Questions & Answers => Topic started by: Stepkevh on November 26, 2012, 10:46:16 PM

Title: VB.net - Leaking memory in webbrowser
Post by: Stepkevh on November 26, 2012, 10:46:16 PM
I'm using the axWebbrowser component because the normal webbrowser component isn't capable of
getting the newwindow event properly.

Looked at other fora and there they spoke of creating an extented webbrowser event  ???

Because i did'nt manage to do that i took the axWb component and worked with that.

The weirdest point comes now,
if i run the bot on my computer it can run for about 1500 spins and suddenly stops,
if a buddy of me runs it he can't get further then 530 spins.

On my computer the memory starts at 80000 kB and ends around 120000 kB.
On my buddys computer it starts at 85000 kB and stays stable with a max of 95000 kB.

I've read on other fora that the WB component dairs to leak memory because of the flash it plays inside it.
In this case that's the casino table...
But why isn't my buddys memory skyrocketing and mine is ??
And that also does'nt explain the different hangs on 1500 and 530 spins...

What i can say is that i ran the bot with DebugDiag and in the dump is written that Flash.ocx is causing leaks.

Is there a way to get that memory back, or other solutions to that webbrowser problem ?

Stephan



Title: Re: VB.net - Leaking memory in webbrowser
Post by: Stepkevh on November 27, 2012, 06:30:55 AM
Updated the videocard driver last evening.

Changed some coding, especially the getpixel code.
I don't use the getpixel api anymore, i used the inbuild getpixel function now.

Rebuilded the bot and ran it.
Send it to my buddy and he ran it also.

Now we both get the same error.

The bot runs for 1250 spins and then halts with an error on "ntdll.dll"

Any ideas ?
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Ralph on November 27, 2012, 07:10:06 AM
"ntdll.dll" is very often in problem.  It is not easy to know which of the many problems it may be. The dll is from the older NT. Microsoft has some support pages handling some of the problems, which can be deadlock, malware infections, registery mess and other. You can try to reinstall windows, and if it not helps, it is probably not any damage in your system. The problems looks some different on your friends computer.

If you find the problem is from the casino flash, it should probably give such a problems in the webbrowsers, they had to deal with the problem at Adobe.
have you got any support from Adobe?
A memory leak from flash is not a likley reason. 

Check if any missing in coding can cause the browser to  reload the casino without dispose the former. a "New" in the wrong place in the code can be what it takes.   If you read the screen (as you must do every spin) look so you dispose all Bitmaps you read after theire use, otherwise it can be a lot of memory used which grows after each spins, and the GC not release.

There can be other reasons as well, in fact hard to advice.





Title: Re: VB.net - Leaking memory in webbrowser
Post by: Stepkevh on November 27, 2012, 07:27:45 AM
Ralph,

I'm using the piece of code that you provided on the hobbycode thread.


Friend Function PixelValue(ByVal ex As Integer, ByVal ey As Integer)
Dim BMP As New Drawing.Bitmap(1, 1)
Dim GFX As System.Drawing.Graphics = System.Drawing.Graphics.FromImage(BMP)
GFX.CopyFromScreen(New Drawing.Point(ex, ey), New Drawing.Point(0, 0), BMP.Size)
Dim myColor = BMP.GetPixel(0, 0)
 
PixelValue = myColor.R & myColor.G & myColor.B 
GC.Collect()
End Function


You're saying i need to dispose the bitmap properly, then what do i need to add in the code ?

Just a simple

BMP.Dispose
GFX.Dispose


instead of GC.collect ?
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Ralph on November 27, 2012, 07:57:10 AM
Yes you shall dispose the BMP, but it do not seems to be so much memory for a few pixels, but always dispose and try again.
I will check if I may have done some change after I post it.
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Ralph on November 27, 2012, 08:05:40 AM
If you find the screen reading cause problem with the memory, you can try an other way. It will however change the returnvalue for all of the numbers.



   Friend Function checksumman(ex, yj)
        Dim ms As New MemoryStream
        Dim bmpBytes() As Byte
       
        Dim BMP As New Drawing.Bitmap(1,1)
        Dim GFX As System.Drawing.Graphics = System.Drawing.Graphics.FromImage(BMP)
        GFX.CopyFromScreen(ex, yj, 0, 0, BMP.Size)


        BMP.Save(ms, ImageFormat.Bmp)
        bmpBytes = ms.GetBuffer()
        BMP.Dispose()
        ms.Close()
        checksumman = bmpBytes
    End Function
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Stepkevh on November 27, 2012, 11:36:33 AM
allright,

changed the code with bmp.dispose where needed.
memory leaks less but isn't completely over yet.

is it possible that the "Function Pixelvalue(ByVal ex As Integer, ByVal ey As Integer)" itself leaks

because vb.net says that's "pixelvalue is an object"

so declaring it as "Function Pixelvalue(ByVal ex As Integer, ByVal ey As Integer) As Integer"

should'nt that be better because pixelvalue returns a value and isn't a sub ??

otherwise the code always keeps pixelvalue in memory because its an object.

just correct me if i'm wrong.

Meanwhile i took a screenshot of the hanging, you will see that when the app hangs there's always
something missing on the table, this time it is the spinbutton.
Sometimes i get a black box painted over the "cashier" item or a big black box painted over "Statistics & connection status" items.

Could it be that the form or so doesn't repaint properly ?
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Ophis on November 27, 2012, 11:44:01 AM
Quote from: Stepkevh on November 27, 2012, 11:36:33 AM
Meanwhile i took a screenshot of the hanging, you will see that when the app hangs there's always
something missing on the table, this time it is the spinbutton.
Sometimes i get a black box painted over the "cashier" item or a big black box painted over "Statistics & connection status" items.
Could it be that the form or so doesn't repaint properly ?

When application hangs... it stops everything inside... also flash loading/rendering.
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Stepkevh on November 27, 2012, 06:50:51 PM
Okay,

changed the code again.

now in that way that the table loads in an external ie webbrowser (not loading in the form)

with good hopes i started the bot, looked at memory and stayed pretty stable

and guess what ... after around 1300 spins it stopped working again  ???

so there has to be something wrong in my code but its weird that it stops after 1300 times running the same code  >:(
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Ralph on November 27, 2012, 08:21:47 PM
It is still suspection of memory leak, as it runs well probably until the memory runs out.  My bot can run for long, but are a bit cpu demanded.
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Stepkevh on November 27, 2012, 08:25:07 PM
Ralph,

its not a memory leak i think.

because the memory of the bot stays between 50000 and 60000 kB

and the explorer window with the casino table stays at 72000 kB.

Is it possible that the call stack exceeds a limit ?
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Stepkevh on November 28, 2012, 11:40:41 AM
Back again after a lot of trial and (t)error   :P


Stupid "me" found the problem.

Looked at my call stack and saw that i created a recursive loop.

Problem solved by making an itteration loop  :thumbsup:
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Ralph on November 28, 2012, 11:52:30 AM
Fine!  It is usally so you find it examinating the code, as it is very hard to guess whitout reading the code. 
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Stepkevh on November 28, 2012, 12:03:25 PM
But still i have the problem that the internal webbrowser leaks system memory

not that much but it leaks
and if i close the table it doesn't give all the memory back (webbrowser memory + leaked memory)

so i solved it with loading the table in an external explorer window.
if i close that it doesn't affect my bot memory and the IE memory is directly released.
i think that's the only option
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Ralph on November 28, 2012, 01:05:31 PM
Maybe, but if the users can use any browser, you may have issues regarding that. I do not know if you just read the screen and click and Excel do all other work, any browser will do.
I use javascript in my bot, and it should be some extra work coding the script for all browsers. Still not impossible but scripts are sometimes not readable in the same matter in all browsers. Margins can differ and can affect coordinates.. As any Windows has IE, you can tell the users it works best in IE.



Title: Re: VB.net - Leaking memory in webbrowser
Post by: Ophis on November 28, 2012, 01:08:12 PM
Quote from: Stepkevh on November 28, 2012, 12:03:25 PM
and if i close the table it doesn't give all the memory back

:cheer:  welcome in my world.

Quote from: Ralph on November 28, 2012, 01:05:31 PM
Margins can differ and can affect coordinates.
If you will get handle of a child of a child of child of a child... window in the browser you will get just the area where flash plugin is running.
coordinates will work in all browsers...

:applause:
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Stepkevh on November 28, 2012, 01:21:17 PM
The build in WB is IE so that's not a problem

Ophis,

It will give the memory back if i use a stop button.
But if i use the "exit" button from the table itself then i only get 1/3 of my memory back  ???

And i use the same code
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Ralph on November 28, 2012, 01:30:08 PM
Steff1


I faced this problem as well. I took a picture of the screen and used a label which cover the button of the casino, then I coded an event for the click which handel the thing. Still it can be problem if the user open a new window clicking a link  on a casino pages, and the forcing to stay is on. The script on the casino page can not know what's happen. So I do not let them for example deposit using the bot, it shall be in the ordinary webbrowser. It is a security matter as well.
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Ophis on November 28, 2012, 01:32:14 PM
Which Stop Button? In your bot?... What does Stop button do? Does it free some resources?

Maybe use onCloseQuery in WebBrowser.... this will be called whenever you use Exit button on BV table

Code (delphi) Select

//separate form just for casino table created on NewWindow2 event

procedure TTableForm.wbCloseQuery(Sender: TObject; var CanClose: Boolean);
begin
  CanClose:=False;
 
  //do some stuff that your STOP is doing or call smth like botSTOP:=True and put conditions in bot function to stop whenever it happen

  wb.Navigate('about:blank');
  Self.Free;
end;
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Ophis on November 28, 2012, 01:37:58 PM
...or you can make one function:

CloseCasinoTable

which will be called when pressing Stop Button AND closeQuery;

Code (delphi) Select

procedure TTableForm.wbCloseQuery(Sender: TObject; var CanClose: Boolean);
begin
  CanClose:=False;
  CloseCasinoTable;
end;


...so the same thing will happen whenever someone press STOP or just close the table with X
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Stepkevh on November 28, 2012, 01:39:55 PM
My browsers run in a tabcontrol.
So the code that i use for the "stop" button is
 
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click

' Stop Button
If TabControl1.TabCount > 1 Then
TabControl1.SelectedTab.Dispose()
End If 
newtab.AxWebBrowser1.Navigate("about:blank")
End Sub


This code releases the resource from the browser that contained the table

But if i click the "exit" on the casinotable itselfthen there is a FormClose triggered.
So i use the same code for the FormClosing event except that i add  e.cancel = true

but this doesn't release all the resources
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Ophis on November 28, 2012, 01:46:38 PM
before you call
TabControl1.SelectedTab.Dispose()
try calling
AxWebBrowser1.Navigate("about:blank")

this is IE...
in some cases it helps to navigate to blank to clear cached element before releasing memory...
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Stepkevh on November 28, 2012, 01:47:22 PM
found it, needed to use the code in the webbrowser.windowclosing event  :)
Title: Re: VB.net - Leaking memory in webbrowser
Post by: Ophis on November 28, 2012, 01:51:11 PM
use separate function to close table and free memory

function Destroy_The_Damn_Table
and call it on StopButtonClick AND WebBrowserCloseQuery