Ticket T242111
Visible to All Users

NullReferenceException in DevExpress.Utils.Text.FontsCache.GetFontCacheByFont

created 10 years ago

Hello,

We just had an exception raised with one of our clients which seems to be a problem in the DevX code (NullReference).

We've not been able to reproduce, and the user just restarted and it was OK after that.

I appreciate this is a very old version, but do you know the cause, and if it has been fixed in later versions? We are in the process of upgrading to the latest versions.

Thanks
Paul Green

C#
2015-05-14 13:05:01,198 [ErrorThread] ERROR MetaBit.Xilix.Core.Error.ErrorManager - UserMessage: Exception running XiliX UserMessage: オブジェクト参照がオブジェクト インスタンスに設定されていません。 CurrentProcess: USER Handles=430 CurrentProcess: GUI Handles=435 Exception: System.NullReferenceException: オブジェクト参照がオブジェクト インスタンスに設定されていません。 場所 DevExpress.Utils.Text.FontsCache.GetFontCacheByFont(Graphics graphics, Font font) 場所 DevExpress.XtraEditors.ViewInfo.BaseEditViewInfo.GetTextAscentHeight() 場所 DevExpress.XtraEditors.ViewInfo.TextEditViewInfo.CalcTextBaseline(Graphics g) 場所 DevExpress.XtraEditors.ViewInfo.TextEditViewInfo.CalcViewInfo(Graphics g) 場所 DevExpress.XtraGrid.Views.Grid.ViewInfo.GridViewInfo.UpdateCellEditViewInfo(GridCellInfo cell, Point mousePos, Boolean canFastRecalculate, Boolean calc) 場所 DevExpress.XtraGrid.Views.Grid.ViewInfo.GridViewInfo.CreateCellEditViewInfo(GridCellInfo cell, Boolean calc, Boolean allowCache) 場所 DevExpress.XtraGrid.Views.Grid.ViewInfo.GridViewInfo.RequestCellEditViewInfo(GridCellInfo cell) 場所 DevExpress.XtraGrid.Views.Grid.Drawing.GridPainter.DrawRegularRowCell(GridViewDrawArgs e, GridCellInfo ci) 場所 DevExpress.XtraGrid.Views.Grid.Drawing.GridPainter.DrawRegularRow(GridViewDrawArgs e, GridDataRowInfo ri) 場所 MetaBit.Xilix.XmlGrid.Grid.XGridViewPainter.DrawRegularRow(GridViewDrawArgs e, GridDataRowInfo ri) 場所 c:\Jenkins\jobs\xilixclient2_1_37\workspace\xml\MetaBit.Xilix.Xml\MetaBit.Xilix.XmlGrid\Grid\XGridViewPainter.cs:行 159 場所 DevExpress.XtraGrid.Views.Grid.Drawing.GridPainter.DrawRow(GridViewDrawArgs e, GridRowInfo ri) 場所 DevExpress.XtraGrid.Views.Grid.Drawing.GridPainter.DrawRows(GridViewDrawArgs e) 場所 DevExpress.XtraGrid.Views.Grid.Drawing.GridPainter.DrawContents(GridViewDrawArgs e) 場所 DevExpress.XtraGrid.Views.Grid.Drawing.GridPainter.Draw(ViewDrawArgs ee) 場所 MetaBit.Xilix.XmlGrid.Grid.XGridViewPainter.Draw(ViewDrawArgs ee) 場所 c:\Jenkins\jobs\xilixclient2_1_37\workspace\xml\MetaBit.Xilix.Xml\MetaBit.Xilix.XmlGrid\Grid\XGridViewPainter.cs:行 92 場所 DevExpress.XtraGrid.Views.Base.BaseView.Draw(GraphicsCache e) 場所 DevExpress.XtraGrid.GridControl.OnPaint(PaintEventArgs e) 場所 System.Windows.Forms.Control.PaintWithErrorHandling(PaintEventArgs e, Int16 layer) 場所 System.Windows.Forms.Control.WmPaint(Message& m) 場所 System.Windows.Forms.Control.WndProc(Message& m) 場所 DevExpress.XtraEditors.Container.EditorContainer.WndProc(Message& m) 場所 DevExpress.XtraGrid.GridControl.WndProc(Message& m) 場所 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m) 場所 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m) 場所 System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
Comments (3)
DevExpress Support Team 10 years ago

    Hi,

    I cannot confirm that this issue is caused by our controls. It looks like it is not stably reproduced on your customer's side since you said that it disappeared after your customer restarted your application. I see that you use a custom GridControl since I found the MetaBit.Xilix.XmlGrid.Grid.XGridViewPainter.Draw and MetaBit.Xilix.XmlGrid.Grid.XGridViewPainter.DrawRegularRow methods in your call stack. Can your customer reproduce this issue if you replace your custom grid with a regular one? If not, it means that the issue lies in your custom grid implementation.

    Another possible cause of such a problem is that you use multiple threads in your application and access a grid implicitly or explicitly from a background thread. Please check this point. In addition, I recommend that you review the Can I avoid the ArgumentOutOfRangeException when updating the Grid's data KB article.

    I look forward to your response.

    SV SV
    Stephan Verbeeck 9 years ago

      I have reverse engineered the applied logic and in all cases there was 1 common factor that is the cause of errors:

      1. Object reference not set to an instance of an object.
      2. Object is currently in use elsewhere.
        The error is the introduction of "DevExpress.Utils.Text.FontsCache.GetFontCacheByFont(Graphics graphics, Font font)".
        This class shares windows fonts between threads and that is STRICTLY FORBIDDEN.   Windows usage of GDI resources (during paint message handling but also stuff like "DevExpress.Utils.Text.TextUtils.GetStringSize(Graphics g, String text, Font font, StringFormat stringFormat, Int32 maxWidth, Int32 maxHeight, IWordBreakProvider wordBreakProvider, Boolean& isCropped)") is restricted to the thread that has created the GDI resource.
        In other words: "Only the thread that has created a font or window may use it, all other threads are not allowed to send windows paint messages to those windows".  Measuring the size of a font in a window is also some type of paint action (although invisible because only the size of the painted text is returned).
        Solution (only one of both should be implemented):
      3. The class "Text.FontsCache" must add the current-thread-ID to the ID that is used to store the created font in the cache.
      4. Each thread must make its own instance of the class "Text.FontsCache".
      DevExpress Support Team 9 years ago

        Hello Stephan,

        Thank you for sharing the result of your research with us. We greatly appreciate your feedback and want to discuss this problem further. I created a separate ticket on your behalf: T311768: FontsCache might be sharing GDI resources between different threads. Let us continue the conversation there.

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.