Click here to Skip to main content
15,881,709 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
Hi,

I have an ItemsPanel extended with my IscrollInfoLogic, ContainerGenerator etc.. (Virtualizing)

The ItemsPanel contains FrameworkElements which have a Property type of Drawing.

If the Item is visible i do:
On the Onrender if the DrawingProperty is not null i go with dc.DrawDrawing(*).
else
If it's not visible i just nullify the Drawing property to be eligible for GC.

The ammount of Ram being used just before the GC starts collecting are insane and even after the collection seems that something is being left.

For being more accurate:

C#
// This is Freezed() and is being set by an async service
            public Drawing PageDraw
        {
            get
            {
                return m_PageDraw;
            }
            set
            {
                if (m_PageDraw != value)
                {
                    m_PageDraw = value;
                    InvalidateVisual();
                }
            }
        }

        private Drawing m_PageDraw;

        protected override void OnRender(DrawingContext dc)
        {
            base.OnRender(dc);

            dc.DrawRectangle(Brushes.LightGray, new Pen(Brushes.Black, 1), new Rect(0, 0, Width, Height));

            if (PageDraw != null )
            {
                dc.DrawDrawing(PageDraw); // If i do not do this the memory taken increasing and decreasing within reasonable limits and time
            }
        }

        void DummyEllement_Unloaded(object sender, RoutedEventArgs e)
        {
            PageDraw = null;  
        }



The Drawing consist of various Bitmaps sometimes small sometimes big.
The results are the same even if i use only small bitmaps.

To avoid long threads consider the following:
1. Wpf native BitmapCache is not being used since i create my BitmapImage with Stream // So no leak or huge number here.
2. The stream and the Bitmap itself are being disposed right after the Drawing is RenderClosed() // Also the stream is a stream inside a stream to avoid the wpf's annoying "ownage stream behavior"
Posted
Updated 23-Sep-12 1:42am
v2
Comments
Sergey Alexandrovich Kryukov 23-Sep-12 11:25am    
Where is the definition of the type "Drawing"?
--SA
BeStelios 23-Sep-12 11:29am    
Seriously...
http://msdn.microsoft.com/en-us/library/system.windows.media.drawing(v=vs.100).aspx
Sergey Alexandrovich Kryukov 23-Sep-12 12:11pm    
Oops! My bad, I mechanically asked... Thank you for clarification, I'll look at your question again...

So, what makes you thinking that you have memory leak or something? When you talk about the RAM used, how do you know it. For example, if you simply looked at Task Manager, you would have very inaccurate results...
--SA
BeStelios 23-Sep-12 14:07pm    
When i say there is a leak or that the Garbage Collector is simply leaving things behind because they are somehow referenced there is no possibility that my results are inaccurate.

Actually the fact that i created a question means that i have double,triple,x checked.

I know there is a leak because:
Program Starts at 70Mb.
After some scrolls up - down we go to 1.3 GB.
Then a collection is being executed and you can notice the memory Drops to 800-900 where it should be MAX 160-200.

Also keep in mind :
dc.DrawDrawing(PageDraw); // If i do not do this the memory taken increasing and decreasing within reasonable limits and time.
What are the reasonable limits ? -> Without the rendering the Memory with continuous scrolling reaches 400-450 and then drops to 120.

So somehow the drawing after used for render on the framework element is being referenced/weakreferenced EVEN when the element is no longer Visible and even when its property m_PageDraw is null.

*Edit: Also note that the GC might start when the limit is reached (x86 or x64) making the whole OS hang for 1-2 secs.
Rare cases have thrown "out of memory exception" too.
Sergey Alexandrovich Kryukov 23-Sep-12 14:49pm    
That seems somewhat weird to me, but perhaps there is something to think about.

Anyway, I just can say for sure that, despite of one common naive misconception, the memory leaks in the managed systems is quite possible, but all such leaks could be called "by-design leaks". It's all boils down to understanding of a leak. It's easy to design a demonstration of such leak, harder to analyze some existing design...

--SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900